当前位置: > Linux教程 > linux基础 >

linux怎么修改远程连接端口号?怎么关闭远程链接?

时间:2014-08-04 18:17来源:linux.it.net.cn 作者:it

说到linux远程连接,就是ssh连接了,如何修改ssh远程连接的端口号呢?

一,Linux修改ssh端口22
vi /etc/ssh/ssh_config
vi /etc/ssh/sshd_config
然后,修改为port 8888
以root身份service sshd restart (redhat as3)
使用putty,端口8888
Linux下SSH默认的端口是22,为了安全考虑,现修改SSH的端口为1433。

修改方法:
/usr/sbin/sshd -p 1433
为增强安全
先增加一个普通权限的用户:
 

#useradd uploader
#passwd uploader
//设置密码

二,生产机器禁止root远程ssh登录:
#vi /etc/ssh/sshd_config

PermitRootLogin yes
改为
PermitRootLogin no

重启sshd服务,配置生效:
#service sshd restart

(责任编辑:IT)
------分隔线----------------------------
栏目列表
推荐内容