SSH是什么?Linux如何修改SSH端口号

如题所述

1、ssh就是访问linux的一个服务或命令,类似telnet,不过比telnet安全
2、修改端口你需要保证/etc/sysconfig/selinux里SELINUX=disabled
执行setenforce 0立即生效
执行getenforce确认。
3、修改/etc/ssh/sshd_config
添加两行
Port 22
Port 33
这样会启动两个端口,等33端口可以访问了,再关闭Port 22,否则防火墙等设置可能会导致你无法访问服务器。
4、每次修改sshd_config需要重启sshd服务才能生效
/etc/init.d/sshd restart或者systemctl restart sshd
5、iptables -nvL检查防火墙设置
温馨提示:内容为网友见解,仅供参考
第1个回答  2016-08-30
ssh 和telnet 差不多, 都是远程登录的客户端, 只不过ssh更安全(加密方式), telnet是明文传输.ssh IP地址ssh 域名具体可以查看man ssh或者ssh --help查看一下
就是修改/etc/ssh/sshd_config //注意,容易和ssh_config相混合
步骤一
[root@localhost ssh]# more 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 22 //先把22注释掉
port 2501 //添加一个新的端口
#Protocol 2,1
步骤二
[root@localhost ~]# service sshd restart
Stopping sshd:[ OK ]
Starting sshd:[ OK ]
步骤三
用SecureCRT测试一下
第2个回答  2016-09-23
ssh 是专为远程登录会话和其他网络服务提供安全性的协议
linux 修改ssh
步骤1:"修改/etc/ssh/sshd_config 中的""Port"" 参数 默认是注释掉的端口为22 需要去掉"#"的注释 并修改后面的22为你所需要的端口
步骤2:修改完毕后需要重启ssh服务,使用命令 service sshd restart
相似回答