Skip to content

Commit e344071

Browse files
committed
use host-specific ports in SSH config utility
limit SSH connections to the configured hosts
1 parent 93a5cf1 commit e344071

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tensorhive/core/ssh.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,12 @@ def build_dedicated_config_for(host: Hostname, user: Username) -> Tuple[HostsCon
3636
valid `config` and `pconfig` parameter to `get_client()` function.
3737
"""
3838
assert host and user, 'Arguments must not be None!'
39+
assert host in SSH.AVAILABLE_NODES
3940
hosts_config = {
4041
host: {
4142
'user': user,
42-
'pkey': SSH.KEY_FILE
43+
'pkey': SSH.KEY_FILE,
44+
'port': SSH.AVAILABLE_NODES[host]['port']
4345
}
4446
}
4547
# Read config extracted from hosts_config.ini (proxy is common for all hosts)

0 commit comments

Comments
 (0)