diff options
Diffstat (limited to 'src')
-rwxr-xr-x | src/ssh_tunnels_config_util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ssh_tunnels_config_util.py b/src/ssh_tunnels_config_util.py index 986f3ea..3b2ba6e 100755 --- a/src/ssh_tunnels_config_util.py +++ b/src/ssh_tunnels_config_util.py @@ -26,7 +26,7 @@ if __name__ == '__main__': target_host = f'{network_prefix}.{config[tun_host]["ipv4"]}' buf.append(f'-R 127.0.0.1:{http_bind_port}:{target_host}:{config[tun_host]["http_port"]}') - buf.append(f'-R 127.0.0.1:{ssh_bind_port}:{target_host}:22') + buf.append(f'-R 127.0.0.1:{ssh_bind_port}:{target_host}:{config[tun_host]["ssh_port"]}') i += 1 |