File tree Expand file tree Collapse file tree 4 files changed +14
-2
lines changed Expand file tree Collapse file tree 4 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -311,7 +311,14 @@ im_client.py [-u|--xmlrpc-url <url>] [-r|--restapi-url <url>] [-v|--verify-ssl]
311
311
312
312
`` sshvm <infId> <vmId> [show_only] ``
313
313
Connect with SSH with the specified virtual machine `` vmId `` associated to the infrastructure with ID
314
- infrastructure with ID `` infId `` .
314
+ infrastructure with ID `` infId `` . In case that the specified VM does not have public IP the client
315
+ will try to connect using the virtual machine with ID `` 0 `` as SSH proxy.
316
+ The `` show_only `` parameter is optional
317
+ and is a flag to specify if ssh command will only be shown in stdout instead of executed.
318
+
319
+ `` ssh <infId> [show_only] ``
320
+ Connect with SSH with the virtual machine with ID `` 0 `` associated to the infrastructure with ID
321
+ infrastructure with ID `` infId `` .
315
322
The `` show_only `` parameter is optional
316
323
and is a flag to specify if ssh command will only be shown in stdout instead of executed.
317
324
Original file line number Diff line number Diff line change @@ -97,3 +97,7 @@ IM-client 1.5.7
97
97
* Add support for ProxyCommand ssh.
98
98
* Add force option to delete operation.
99
99
100
+ IM-client 1.5.8
101
+ * Fix error where context flag ignored in add and remove resource in case of REST APA.
102
+ * Add Bearer token command.
103
+ * Add support for ProxyCommand ssh to internal VMs using master VM as proxy.
Original file line number Diff line number Diff line change @@ -1139,6 +1139,7 @@ def get_parser():
1139
1139
parser .add_operation_help ('stopvm' , '<inf_id> <vm_id>' )
1140
1140
parser .add_operation_help ('rebootvm' , '<inf_id> <vm_id>' )
1141
1141
parser .add_operation_help ('sshvm' , '<inf_id> <vm_id> [show_only]' )
1142
+ parser .add_operation_help ('ssh' , '<inf_id> [show_only]' )
1142
1143
parser .add_operation_help ('export' , '<inf_id> [delete]' )
1143
1144
parser .add_operation_help ('import' , '<json_file>' )
1144
1145
parser .add_operation_help ('getoutputs' , '<inf_id>' )
Original file line number Diff line number Diff line change 18
18
19
19
from setuptools import setup
20
20
21
- version = "1.5.7 "
21
+ version = "1.5.8 "
22
22
23
23
setup (name = "IM-client" , version = version ,
24
24
author = 'GRyCAP - Universitat Politecnica de Valencia' ,
You can’t perform that action at this time.
0 commit comments