一、ifconfig 无法使用命令---安装net-tools
yum install net-tools
二、更改网卡信息(注意,变量和值之间的等号,不要有任何空格,可以通过/var/log/message查看启动日志)
[root@localhost ~]# vi /etc/sysconfig/network-scripts/ifcfg-ens160 TYPE=Ethernet BOOTPROTO=none NAME=ens160 DEVICE=ens160 DEFROUTE=yes ONBOOT=yes IPADDR=172.18.1.53 PREFIX=24 GATEWAY=172.18.1.254 进行systemctl restart network
三、配置DNS
[root@localhost ~]# vi /etc/resolv.conf nameserver 114.114.114.114
四、关闭防火墙
(1)临时关闭:
[root@localhost ~]# systemctl stop firewalld
(2)永久关闭
[root@localhost ~]# systemctl disable firewalld
五、关闭selinux
(1)临时关闭
[root@localhost ~]# setenforce 0
(2)永久关闭
[root@localhost ~]# vim /etc/selinux/config
SELINUX=disabled
(
文章评论