1. 修改ssh配置 nano /etc/ssh/sshd_config 找到#Port 22,将注释去掉,将22替换为自定义端口,比如16822 2. 开放端口,如果有安装iptables防火墙,添加端口放行规则: iptables -A INPUT -p tcp --dport 16822 -j ACCEPT
3. 重启sshd service ssh restart
标签:iptables,sshd,22,端口,16822,SSH,Debian11,ssh From: https://www.cnblogs.com/hiwjy/p/17321710.html