发布网友 发布时间:2022-04-19 23:52
共4个回答
热心网友 时间:2022-04-14 05:49
修改Linux远程端口的方法如下:
一、首先,远程进去 linux。
二、.ssh的配置文件是在/etc/ssh/sshd_config这个文件里的。
三、修改端口就是通过编辑这个文件实现vi /etc/ssh/sshd_config。
四、找到#port 22 这一行,默认端口 22,可以把前面的#删除,然后把 22改为其它的端口。
五、例如把原来的那一行改为 Port 43999,这样子重启ssh以后ssh的端口就是43999了。
六、可以看到系统已经监听43999这个端口了,其实它是ssh服务的。
这样就可以完成修改了。
热心网友 时间:2022-04-14 07:07
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端口就会连接失败。
热心网友 时间:2022-04-14 08:42
不能连接的主要原因是因为防火墙阻挡了新的端口,说明你的永久的更改了sshd的端口,但是防火墙策略确是临时的(也就是重启就会失效的),lz可以将防火墙策略保存,以便重启机器后仍然能使ssh新端口正常服务,不受防火墙阻拦.如果lz所用防火墙的iptables的话CentOS/RedHat系统可以使用下面命令保存:serviceiptablessave系统重启就会自动加载保存的内容Debian/Ubuntu系统可使用下面命令保存和重载:iptables-save>/etc/iptables-ruleiptables-restore/etc/iptables-rule(必要时应加sudo)热心网友 时间:2022-04-14 10:33
修改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 命令查看一下。