宿主机系统:win7旗舰版

虚拟机:VMware Workstation 8.0

服务器系统: centos6.0

网络:局域网

现在的情况:centos与宿主机之间能相互ping通,网络模式为桥接,但centos就是连不上网。


解决办法(三步):

1、添加ip地址

[root@localhost ~]# vi /etc/sysconfig/network-scripts/ifcfg-eth0

DEVICE="eth0"
BOOTPROTO="static"
IPADDR="192.168.1.10"
NETMASK="255.255.255.0"
HWADDR="00:0C:29:79:F4:65"
NM_CONTROLLED="no"
ONBOOT="yes"

2、添加网关

[root@localhost ~]# vi /etc/sysconfig/network

NETWORKING=yes
HOSTNAME=localhost.localdomain
GATEWAY=192.168.1.1

3、添加DNS

[root@localhost ~]# vi /etc/resolv.conf

nameserver 202.99.160.68   //换成你的DNS地址
nameserver 202.99.166.4

4、重启网卡的命令

service network restart  重启网卡

ifdown eth0  关闭网卡

ifup eth0   启动网卡


5、测试

[root@localhost ~]# ping www.baidu.com
PING www.a.shifen.com (61.135.169.125) 56(84) bytes of data.
64 bytes from 61.135.169.125: icmp_seq=1 ttl=52 time=53.1 ms
64 bytes from 61.135.169.125: icmp_seq=2 ttl=52 time=54.7 ms
64 bytes from 61.135.169.125: icmp_seq=3 ttl=52 time=54.6 ms

成功连接网络



Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐