Centos7更改sshd监听端口号&配置selinux:修订间差异

来自三线的随记
(Admin移动页面Centos7更改ssh端口号Centos7更改sshd监听端口号&配置selinux,不留重定向)
无编辑摘要
 
(未显示同一用户的2个中间版本)
第1行: 第1行:
selinux开启。
selinux开启。


yum provides semanage
需要用到semanage命令


yum -y install policycoreutils-python
查看semanage命令提供者
yum provides semanage
安装工具
yum -y install policycoreutils-python
修改selinux
semanage port -m -t ssh_port_t -p tcp 443
修改sshd配置文件<code>/etc/ssh/sshd_config</code> 中<code>Port</code>字段


semanage port -m -t ssh_port_t -p tcp 443
重启sshd服务
systemctl restart sshd
成功监听


修改sshd配置文件,重启服务成功监听
通过ss、netstat或lsof等命令可以查看
ss -nplt| grep sshd
 
lsof -iTCP:22 -sTCP:LISTEN -n
 
lsof -iTCP -sTCP:LISTEN -n | grep sshd
[[分类:Linux]]
[[分类:Linux]]
[[分类:SSH]]

2022年3月29日 (二) 14:17的最新版本

selinux开启。

需要用到semanage命令

查看semanage命令提供者

yum provides semanage

安装工具

yum -y install policycoreutils-python

修改selinux

semanage port -m -t ssh_port_t -p tcp 443

修改sshd配置文件/etc/ssh/sshd_configPort字段

重启sshd服务

systemctl restart sshd

成功监听

通过ss、netstat或lsof等命令可以查看

ss -nplt| grep sshd
lsof -iTCP:22 -sTCP:LISTEN -n
lsof -iTCP -sTCP:LISTEN -n | grep sshd