本地网络外的 SSH

本地网络外的 SSH

我在东芝 Satellite L655 上安装了 Ubuntu 14.04 LTS。

我最近在机器上安装了一个 SSH 服务器,使用 连接时工作正常,192.168.1.3但当我尝试使用公共 IP 地址时,它会返回Connection times out

我已经进行端口转发:

在此处输入图片描述

sudo iptables -L输出 :

Chain INPUT (policy ACCEPT)
target     prot opt source               destination

Chain FORWARD (policy ACCEPT)
target     prot opt source               destination

Chain OUTPUT (policy ACCEPT)
target     prot opt source               destination

/etc/ssh/sshd_confighttp://paste.ubuntu.com/10739399/

sudo netstat -pln | fgrep ssh输出 :

tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      952/sshd
tcp6       0      0 :::22                   :::*                    LISTEN      952/sshd
unix  2      [ ACC ]     STREAM     LISTENING     12292    1247/ssh-agent      /tmp/ssh-DUPQCwc5sHdL/agent.1246
unix  2      [ ACC ]     STREAM     LISTENING     56778    3637/ssh-agent      /tmp/ssh-ouP0FhPELKCM/agent.3636
unix  2      [ ACC ]     STREAM     LISTENING     13982    1869/gnome-keyring- /run/user/1000/keyring-f2DhKb/ssh

相关内容