liunx7.4/7.7 配置网络IP、修改远程端口

刚安装一台liunx 7.7 的时候,首先配置网络IP

配置IP地址

命令:vi /etc/sysconfig/network-scripts/ifcfg-ens33
liunx7.4/7.7 配置网络IP、修改远程端口_第1张图片
图片来自互联网

然后重启网络

service network restart

ping 一下

ping www.baidu.com
liunx7.4/7.7 配置网络IP、修改远程端口_第2张图片
显示这个代表上网成功

成功之后,修改远程端口

修改SELinux强制模式(enforcing)为宽容模式(permissive)
临时修改:输入命令 getenforce,如果输出结果为 Enforcing,执行命令 setenforce 0,再次 getenforce查看,结果为 Permissive
永久修改: vim /etc/selinux/config 编辑 selinux 配置文件,将 SELINUX=enforcing 这一行改为SELINUX=disabled 后保存退出;这里直接关闭 selinux
ps: 临时修改立刻生效,但机器关机再开机或直接重启就会失效变回原来的模式了,永久修改是在配置文件里修改,要关机重启后生效,且以后再关机重启都不会失效。

开始修改远程端口

修改 ssh 服务的配置文件 vim /etc/ssh/sshd_config ,在 #Port 22 这一行下面添加 Port 112233 保存退出

修改防火墙规则

firewall-cmd --zone=public --add-port=112233/tcp --permanent 会输出结果 success 表示成功
firewall-cmd --zone=public --query-port=112233/tcp 查看 112233 端口是否添加, yes 为已经有,no 就是没加
firewall-cmd --reload 重载防火墙规则
systemctl restart sshd 重启ssh服务

然后使用 putty 进行远程,成功。

常用命令:

防火墙:
firewall-cmd --state  // 查看防火墙状态
systemctl stop firewalld // 停止防火墙
systemctl start firewalld  // 启动防火墙
firewall-cmd --reload  // 重载防火墙
firewall-cmd --list-ports // 查看已经开放的端口
systemctl stop firewalld // 临时关闭防火墙
systemctl disable firewalld //  禁用防火墙开机启动
systemctl enable firewalld  // 启用防火墙开机启动
网络:
service network restart  // 重启网络
ssh:
service sshd restart // 重启 ssh 服务

你可能感兴趣的:(liunx7.4/7.7 配置网络IP、修改远程端口)