sshd修改端口后无法远程连接linux

修改ssh端口后无法连接ssh了

vi /etc/ssh/sshd_config

  1. This is the sshd server system-wide configuration file.  See  
  2. # sshd_config(5) for more information.  
  3.   
  4. # This sshd was compiled with PATH=/usr/local/bin:/bin:/usr/bin  
  5.   
  6. # The strategy used for options in the default sshd_config shipped with  
  7. # OpenSSH is to specify options with their default value where  
  8. # possible, but leave them commented.  Uncommented options change a  
  9. # default value.  
  10.   
  11. Port  20010  //以前这个前面是有 # 号的,而且默认是 22 ,修改一下就ok了  
  12. #AddressFamily any  
  13. #ListenAddress 0.0.0.0  
  14. #ListenAddress ::  
  15.   
  16. # Disable legacy (protocol version 1) support in the server for new  
  17. # installations. In future the default will change to require explicit  
  18. # activation of protocol 1  
  19. Protocol 2  

重起ssh服务,修改端口才生效

  1. /etc/rc.d/init.d/sshd restart  
  2. 停止 sshd:                                                [确定]  
  3. 正在启动 sshd:                                            [确定] 

修改/etc/sysconfig/iptables文件,增加如下一行:

  1. -A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 8080 -j ACCEPT  

重启        iptables

service iptables restart   

 

转载于:https://my.oschina.net/shymilex/blog/805687

你可能感兴趣的:(sshd修改端口后无法远程连接linux)