Having spent ~3 hours today fighting my own unique battle, I can relay the following measures that I had to do:
- I had to uninstall Network Manager: sudo apt-get purge network-manager
- edit /etc/networking/interfaces, as shown below
- edit /etc/resolv.conf, as shown below
- restart networking and/or reboot: sudo /etc/init.d/networking restart
auto lo
iface lo inet loopback
auto eth1
iface eth1 inet static
address 192.168.0.11
netmask 255.255.255.0
gateway 192.168.0.1
# /etc/resolv.conf
nameserver 192.168.0.2
nameserver 192.168.0.1
HTH
No comments:
Post a Comment