Centos7更改sshd监听端口号&配置selinux:修订间差异
来自三线的随记
小无编辑摘要 |
小无编辑摘要 |
||
第22行: | 第22行: | ||
lsof -iTCP -sTCP:LISTEN -n | grep sshd | 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_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