我可以通过家庭网络中连接的SSH连接数字海洋水滴,但不能连接到工作网络

时间:2017-06-05 14:54:19

标签: networking ssh server digital-ocean

...方案

WiFi Network home =可以通过SSH与我的Digital Ocean服务器连接; WiFi网络工作=无法通过SSH与我的数字海洋服务器连接;

WiFi网络工作SSH调试:

OpenSSH_6.6.1, OpenSSL 1.0.1f 6 Jan 2014
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: Applying options for *
debug2: ssh_connect: needpriv 0
debug1: Connecting to xxx.xxx.xxx.xxx [xxx.xxx.xxx.xxx] port 22.
debug1: connect to address xxx.xxx.xxx.xxx port 22: Connection timed out
ssh: connect to host xxx.xxx.xxx.xxx port 22: Connection timed out

任何?

1 个答案:

答案 0 :(得分:0)

尝试用nc检查

nc -zvw4 your_host 22

如果没有打开 - 您的网络中可能不允许22端口,您可以向网络管理员询问

服务器上的

通过iptables从443转发到22,例如:

iptables -t nat -I PREROUTING -i eth0 -p tcp -m tcp --dport 443 -j REDIRECT --to-ports 22