Linux高级配置
3.1 静态IP设置
1 | vim /etc/sysconfig/network-scripts/ifcfg-ens33 |
3.2 hostname设置
3.2.1 临时设置(立即生效,重启后失效)
1 | hostname # 查看域名 |
3.2.2 永久设置(机器重启后才能生效)
1 | vim /etc/hostname |
3.3 防火墙关闭
3.3.1 临时关闭
1 | systemctl stop fire # 关闭防火墙 |
3.3.2 永久关闭
1 | systemctl disable firewalld # 永久关闭防火墙,移除开机启动项 |