centos-rhel服务器相关 / 未分类 · 2013年6月5日

centos网络配置 auto

#考虑到有些人不喜欢用 vim 所以直接用cat
[root@centos5 ~]# cd /etc/sysconfig/network-scripts/
[root@centos5 network-scripts]# cat >ifcfg-eth0<< "EOF" DEVICE=eth0 BOOTPROTO=static BROADCAST=192.168.1.255 #HWADDR=08:00:27:86:4B:60 IPADDR=192.168.1.36 NETMASK=255.255.255.0 NETWORK=192.168.1.0 GATEWAY=192.168.1.1 TYPE=Ethernet ONBOOT=yes EOF
#设置dns客户端
[root@centos5 ~]# cd /etc
[root@centos5 etc]# cat > resolv.conf << "EOF" nameserver 8.8.8.8 nameserver 8.8.4.4 EOF
#重启网络
[root@centos5 network-scripts]# /etc/init.d/network restart
此方法适合于 rhel系统 (centos rhel fedora etc)
此文应布鲁图同学而写
最基本的CentOS 网络配置,这个可以参考一下,不错呢
http://os.51cto.com/art/201003/191114.htm