我们单位网络电脑跟物理IP绑定。
我想用自己的笔记本上网。
在windows下修改物理IP可以上。
可是linux怎么搞不定呢。
Debian 系统,我只修改interfaces,将hwaddress ether加进去
可是局域网可以访问,internet访问不了。
我的interfaces:
###################################
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
allow-hotplug eth0
iface eth0 inet static
address 192.168.221.116
netmask 255.255.255.0
# network 192.168.221.0
broadcast 192.168.221.255
gateway 192.168.221.xx
hwaddress ether 00:0D:56:58F:E8
# dns-* options are implemented by the resolvconf package, if installed
dns-nameservers 192.168.xx.xx
################################
该如何解决? |