我在 /etc/ssh/sshd_config 中添加了行“Port 110”,就在现有行“Port 22”的下方,然后/etc/init.d/sshd restart
期望看到 sshd 在两个端口(22 和 110)上进行监听。然而 netstat -anp 显示 sshd 只监听默认端口(22)。
后来我尝试bash -x /etc/init.d/sshd restart
了,惊讶地看到 sshd 立即绑定到 110 端口!!!再次发布第二/etc/init.d/sshd restart
次忽略了我的更改。重新启动也忽略了我的更改,所以我被卡住并且完全困惑。
更新这种奇怪的行为只出现在低端口(<1024)
这是在 CentOS 6 服务器上。
细节
这是我对 /etc/ssh/sshd_config 的修改:
grep ^Port /etc/ssh/sshd_config
Port 22
Port 110
netstat 之后的输出bash -x /etc/init.d/sshd restart
netstat -anp | grep -i listen|grep sshd|grep -v :::
tcp 0 0 0.0.0.0:110 0.0.0.0:* LISTEN 7031/sshd
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 7031/sshd
netstat 之后的输出/etc/init.d/sshd restart
netstat -anp | grep -i listen|grep sshd|grep -v :::
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 8962/sshd
说服 sshd 绑定到端口 110 的另一种方法是在调试模式下运行它/usr/sbin/sshd -de
(注意这些listening on port 22,110
行,但我也通过连接到两个端口进行了测试):
/usr/sbin/sshd -de
debug1: sshd version OpenSSH_5.3p1
debug1: read PEM private key done: type RSA
debug1: private host key: #0 type 1 RSA
debug1: read PEM private key done: type DSA
debug1: private host key: #1 type 2 DSA
debug1: rexec_argv[0]='/usr/sbin/sshd'
debug1: rexec_argv[1]='-de'
Set /proc/self/oom_score_adj from 0 to -1000
debug1: Bind to port 22 on 0.0.0.0.
Server listening on 0.0.0.0 port 22.
debug1: Bind to port 22 on ::.
Server listening on :: port 22.
debug1: Bind to port 110 on 0.0.0.0.
Server listening on 0.0.0.0 port 110.
debug1: Bind to port 110 on ::.
Server listening on :: port 110.
SELinux 系统正在限制 1024 以下端口的端口绑定
您可以添加另一个端口
那将解决您的直接问题。