ssh埠修改無法連線

2021-08-01 14:56:39 字數 397 閱讀 8877

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

>> port 20010  //以前這個前面是有 # 號的,而且預設是 22 ,修改一下就ok了  

2) /etc/rc.d/init.d/sshd restart  

3) 然後使用xshell連線發現連線不上!!!

找了好久才發現原來是iptables的問題,解決方法如下:

-a rh-firewall-1-input -m state --state new -m tcp -p tcp --dport 8080 -j accept 

或  注釋掉全部 -a 

4) 重啟        iptables   》 service iptables restart  

ssh放行埠 修改SSH預設埠 SSH免密登入

修改ssh預設埠 先檢視預設的埠 netstat anlp grep sshd 輸出 現在預設監聽22埠 tcp 0 0 0.0.0.0 22 0.0.0.0 listen 1558 sshd tcp 0 36 192.168.0.245 22 101.84.36.232 32708 establi...

CentOS修改SSH預設埠

首先修改配置檔案 vi etc ssh sshd config 找到 port 22一段,這裡是標識預設使用22埠,修改為如下 port 22 www.2cto.com port 800 然後儲存退出 執行 etc init.d sshd restart 這樣ssh埠將同時工作與22和800上。啟用...

CentOS 修改SSH預設埠

首先修改配置檔案 vi etc ssh sshd config 找到 port 22一段,這裡是標識預設使用22埠,修改為如下 port 22 port 800 然後儲存退出 執行 etc init.d sshd restart 這樣ssh埠將同時工作與22和800上。啟用800埠。執行 etc i...