标签:iptables gateway tar 开启 off conf 网络配置 restart 防火墙
vim /etc/sysconfig/network/ifcfg-eth*
ONBOOT=yes
BOOTPROTO=static
IPADDR=192.168.1.66
NETMASK=255.255.255.0
GATEWAY=192.168.1.1
DNS1=8.8.8.8
第一项是确保本地网卡eth0开启。
第二项表示不使用dhcp服务,如果是手动配置静态的ip地址,BOOTPROTO的值可以为none或者static。
第三项表示设置IP地址。
第四项表示设置子网掩码。
第五项表示设置网关。
第六项表示设置首选DNS服务器,其实DNS有自己的配置文件/etc/resolv.conf,在这里设置DNS,就是把它写入了DNS的配置文件/etc/resolv.conf。
重启网络服务即可: service network restart
关掉防火墙:chkconfig iptables off
标签:iptables gateway tar 开启 off conf 网络配置 restart 防火墙
原文地址:https://www.cnblogs.com/gaobo543013306/p/10184573.html