可确认一下,是否是公司的网络对外访问限制了MAC地址。
这种情况,建议设置成NAT模式。
是ubuntu 还是redhat? 没加网关 或者路由器有mac绑定。
Redhat/Centos
vi /etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE=eth0 设备名称
BOOTPROTO=dhcp /static 自动获取/静态ip
IPADDR=IP地址
NETMASK=掩码
GATEWAY=网关
ONBOOT=yes 开机激活网卡
#service network restart 重启网络
============================
Ubuntu
$sudo vi /etc/network/interfaces
iface eth0 inet dhcp (自动获取ip)
auto eth0
iface eth0 inet static
address 192.168.0.22
netmask 255.255.255.0
gateway 192.168.0.1
$ sudo /etc/init.d/networking restart 重启网络
用dhcp没有啊?