如何修改Linux远程端口/如何修改ssh端口
1、编辑sshd配置,修改默认的端口,执行命令vim /etc/ssh/sshd_config,找到#Port 22一段,这里是标识默认使用22端口。
2、保存并退出,重启sshd,/etc/init.d/sshd restart,这样的话5002和22两个端口同时工作了。
3、端口添加好了,要修改防火墙,vim /etc/sysconfig/iptables-A INPUT -m state --state NEW -m tcp -p tcp --dport 5002 -j ACCEPT,添加5002端口。
4、保存并退出,重启防火墙service iptables restart。
5、使用ssh工具连接5002端口,来测试是否成功,如下图说明5002端口成功了。
6、使用5002端口连接成功后,再次编辑sshd_config的设置,将里边的Port 22删除,重启sshd服务即可,在通过22端口就会连接失败。
2018-07-30 · 为您提供更好的产品和服务
修改ssh端口参见图文教程
http://jingyan.baidu.com/article/414eccf61b23ca6b431f0ad8.html
如何修改ssh默认端口
修改的是 /etc/ssh/sshd_config 文件
[root@linux ~]# vi /etc/ssh/sshd_config
# $OpenBSD: sshd_config,v 1.69 2004/05/23 23:59:53 dtucker Exp $
# This is the sshd server system-wide configuration file. See
# sshd_config(5) for more information.
# This sshd was compiled with PATH=/usr/local/bin:/bin:/usr/bin
# The strategy used for options in the default sshd_config shipped with
# OpenSSH is to specify options with their default value where
# possible, but leave them commented. Uncommented options change a
# default value.
Port 8284 //以前这个前面是有 # 号的,而且默认是 22 ,修改一下就ok了
#Protocol 2,1
#ListenAddress 0.0.0.0
#ListenAddress ::
# HostKey for protocol version 1
#HostKey /etc/ssh/ssh_host_key
# HostKeys for protocol version 2
#HostKey /etc/ssh/ssh_host_rsa_key
#HostKey /etc/ssh/ssh_host_dsa_key
重起ssh服务,修改端口才生效
[root@Linux ~]# service sshd restart
Stopping sshd: [ OK ]
Starting sshd: [ OK ]
[root@linux ~]#
为了检验是否正确,可以使用 netstat -an 命令查看一下。
广告 您可能关注的内容 |