标签:网络设备 配置文件 net linux中 文件 art bootproto etc ifcfg
1、编辑Linux中的网络配置文件
vi /etc/sysconfig/network-scripts/ifcfg-ens33 #注 网络配置文件名可能会有不同,在输入到ifcfg时,可以连续按两下tab键,获取提示,比如我的机器 为 ifcfg-ens33
内容替换如下:
TYPE=”Ethernet”
BOOTPROTO=”static”
NAME=”ens33”
UUID=”1f093d71-07de-4ca5-a424-98e13b4e9532”
DEVICE=”ens33”
ONBOOT=”yes” #网络设备开机启动
IPADDR=”192.168.126.110”
NETMASK=”255.255.255.0” #子网掩码
GATEWAY=”192.168.126.1” #网关IP
DNS1= 8.8.8.8
DNS2=8.8.8.4
3、重启网络服务
service network restart
4、DNS文件配置
vi /etc/resolv.conf
nameserver 8.8.8.8
nameserver 8.8.4.4
标签:网络设备 配置文件 net linux中 文件 art bootproto etc ifcfg
原文地址:https://www.cnblogs.com/xinxin-xinxin/p/11869610.html