第一步:激活网卡
系统装好后默认的网卡是eth0,用下面的命令将这块网卡激活。
# ifconfig eth0 up
第二步:设置网卡进入系统时启动
第三步:修改网卡文件ifcfg-eth0
ONBOOT=yes
BOOTPROTO=dhcp
总结:
IPADDR=192.168.1.100
NETMASK=255.255.255.0
GATEWAY=192.168.1.1
DNS=8.8.8.8
BOOTPROTO=static
ONBOOT=yes
编辑/etc/network/interfaces
#
The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
allow-hotplug eth0
auto eth0
iface eth0 inet static
address 192.168.1.36
netmask 255.255.255.0
gateway 192.168.1.10
保存编辑结果,并重启网络服务
/etc/init.d/networking restart
已经可以用新的静态IP访问internet了。
版权声明:本文为博主原创文章,未经博主允许不得转载。