博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
修改ssh端口后无法连接ssh了?
阅读量:6288 次
发布时间:2019-06-22

本文共 1270 字,大约阅读时间需要 4 分钟。

分类:
Linux
(71)

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

[plain]
  1. [richard@localhost ~]$ vi /etc/ssh/sshd_config  

 

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

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

[plain]
  1. [root@localhost richard]# /etc/rc.d/init.d/sshd restart  
  2. 停止 sshd:                                                [确定]  
  3. 正在启动 sshd:                                            [确定]  

然后使用xshell连接发现连接不上!!!

找了好久才发现原来是iptables的问题,解决方法如下:

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

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

重启        iptables

[plain]
  1. service iptables restart  

再连接发现好了!

你可能感兴趣的文章
配置Quartz
查看>>
Linux 线程实现机制分析
查看>>
继承自ActionBarActivity的activity的activity theme问题
查看>>
设计模式01:简单工厂模式
查看>>
项目经理笔记一
查看>>
Hibernate一对一外键双向关联
查看>>
mac pro 入手,php环境配置总结
查看>>
MyBatis-Plus | 最简单的查询操作教程(Lambda)
查看>>
rpmfusion 的国内大学 NEU 源配置
查看>>
spring jpa 配置详解
查看>>
IOE,为什么去IOE?
查看>>
Storm中的Worker
查看>>
dangdang.ddframe.job中页面修改表达式后进行检查
查看>>
Web基础架构:负载均衡和LVS
查看>>
Linux下c/c++相对路径动态库的生成与使用
查看>>
SHELL实现跳板机,只允许用户执行少量允许的命令
查看>>
SpringBoot 整合Redis
查看>>
2014上半年大片早知道
查看>>
Android 6.0指纹识别App开发案例
查看>>
正文提取算法
查看>>