一、LInux设置网络
vi /etc/sysconfig/network-scripts/ifcfg-eth0 #编辑配置文件,添加修改以下内容(点击键盘i即可编辑)
BOOTPROTO=static #启用静态IP地址
ONBOOT=yes #开启自动启用网络设置
IPADDR=192.168.1.200 #设置IP地址
NETMASK=255.255.255.0 #设置子网掩码
GATEWAY=192.168.1.1 #设置网关
DNS1=192.168.1.1 #设置主DNS
DNS2=8.8.8.8 #设置备DNS
IPV6INIT=no #禁止IPV6
:wq! #保存退出
service ip6tables stop #停止IPV6服务
chkconfig ip6tables off #禁止IPV6开机启动
service yum-updatesd stop #关闭系统自动更新
chkconfig yun-updatesd off #禁止开机启动
service network restart #重启网络连接
ifconfig #查看IP地址
来源:https://www.cnblogs.com/niecheng0814/p/7192994.html