Because of a lot of problems with the standard network manager in Kubuntu 9.04, I installed wicd at a friends computer. He needed to set a static IP, and the network manager would not set this.
Wicd is easy to set up and everything worked fine, except for one thing - it did not autoconnect when rebooting. After some searching I found a tip about checking the settings in /etc/network/interfaces and found that the section for the wired network was totally missing. The only thing in that file was the loopback interface.
So first I checked that I actually had a network interface running by typing this in a console window:
This showed the loopback interface and eth0. So I added a section for the eth0 interface like this
Everything is just perfect now and works as it should, but thought I would post this here just in case someone else comes across this.
Wicd is easy to set up and everything worked fine, except for one thing - it did not autoconnect when rebooting. After some searching I found a tip about checking the settings in /etc/network/interfaces and found that the section for the wired network was totally missing. The only thing in that file was the loopback interface.
So first I checked that I actually had a network interface running by typing this in a console window:
Code:
ifconfig
Code:
auto eth0 iface eth0 inet static address 192.168.0.42 network 192.168.0.0 netmask 255.255.255.0 broadcast 192.168.0.255 gateway 192.168.0.1
Comment