Centos7更改sshd监听端口号&配置selinux:修订间差异
来自三线的随记
小 (Admin移动页面Centos7更改ssh端口号至Centos7更改sshd监听端口号&配置selinux,不留重定向) |
小无编辑摘要 |
||
第7行: | 第7行: | ||
semanage port -m -t ssh_port_t -p tcp 443 | semanage port -m -t ssh_port_t -p tcp 443 | ||
修改sshd配置文件<code>/etc/ssh/sshd_config</code> 中<code>Port</code>字段 | |||
重启sshd服务 | |||
systemctl restart sshd | |||
成功监听 | |||
通过ss、netstat或lsof等命令可以查看 | |||
ss -nplt| grep sshd | |||
lsof -iTCP:22 -sTCP:LISTEN -n | |||
lsof -iTCP -sTCP:LISTEN -n | grep sshd | |||
[[分类:Linux]] | [[分类:Linux]] |
2022年3月29日 (二) 14:15的版本
selinux开启。
yum provides semanage
yum -y install policycoreutils-python
semanage port -m -t ssh_port_t -p tcp 443
修改sshd配置文件/etc/ssh/sshd_config
中Port
字段
重启sshd服务
systemctl restart sshd
成功监听
通过ss、netstat或lsof等命令可以查看
ss -nplt| grep sshd
lsof -iTCP:22 -sTCP:LISTEN -n
lsof -iTCP -sTCP:LISTEN -n | grep sshd