我从全球网络访问我的Linux机器(Ubuntu)。
我想类似地打覆树莓派。
然后,我将树莓派3模型B +配置为与设置Ubuntu相同的方式。 关于路由器的端口转发和sshd_config端口设置。
但是,我无法访问我的树莓派。 另一方面,我可以从本地网络访问两台计算机。
我没有做过不同的设置,也不知道如何知道不同的设置。
我应该怎么办?
我检查了$ ss -atn
命令,但似乎并不奇怪。
非常感谢您的答复。
这是raspi中的ss命令结果。 端口在这里是假的。
username@raspberrypi:~ $ ss -atn
State Recv-Q Send-Q Local Address:Port Peer Address:Port
LISTEN 0 128 *:10100 *:*
LISTEN 0 128 127.0.0.1:52698 *:*
ESTAB 0 140 192.168.0.10:10100 192.168.0.2:52592
LISTEN 0 128 :::10100 :::*
LISTEN 0 128 ::1:52698 :::*
下一个在我的Ubuntu中。
username@ubuntu-System:~$ ss -atn
State Recv-Q Send-Q Local Address:Port Peer Address:Port
LISTEN 0 128 *:10500 *:*
LISTEN 0 5 127.0.1.1:53 *:*
LISTEN 0 5 127.0.0.1:631 *:*
LISTEN 0 128 127.0.0.1:52698 *:*
ESTAB 0 0 192.168.0.30:10500 192.168.0.2:54645
LISTEN 0 128 :::10500 :::*
LISTEN 0 5 ::1:631 :::*
LISTEN 0 128 ::1:52698 :::*
端口53(DNS)和631(IPP)似乎打开了,但ESTAB没有打开。重要吗?