最近,我更换了我的网卡,与新卡和网络连接的问题很少,英特尔Xeon 5500/核心i7白盒服务器运行64位Ubuntu12.10。最后,我卸载了网络管理器,并从/etc/network/interfaces中设置了网络。到目前一切尚好。
然后我开始认识到静态IP会自动变成动态的!我必须手动切换,从关闭网络(通过ifdown eth0),并使它重新(通过ifup eth0)在开始。经过一些研究,我最终卸载了动态IP (dhcp选项),解决了这个问题。服务器总是在静态IP上。差不多一个月以来一切都很完美。假期过后,我回到了办公室,现在根本没有任何联系!
来自/etc/网络/接口:
# The loopback network interface
auto lo
iface lo inet loopback
auto eth0
# iface eth0 inet dhcp
iface eth0 inet static
address 128.95.165.148
netmask 255.255.255.0
network 128.95.165.0
broadcast 128.95.165.255
gateway 128.95.165.100
dns-morgul 128.95.120.1 129.95.112.1发布于 2014-01-10 01:14:43
您必须更新到Ubuntu13.10,对12.10的支持已经失效,您将发现新网卡的性能提升和更好的兼容性,我建议您清理安装Ubuntu 13.10,因为您所做的更改,保存所有数据,清理安装,然后您将看到新的wifi卡正在运行。
https://askubuntu.com/questions/403215
复制相似问题