If you aren't getting the following error when trying to setup your LAN, then this post isn't much use to you: "the default gateway ip address is invalid"
I just downloaded and installed KDE Beta 044 on my laptop and got an error when setting up the network card (for a LAN). After searching online, it seems this is a known bug (?). Here's the problem and the fix:
Oh, just bear in mind, I'm still a Linux noob (only been using it for a couple of years!), so this may not be very pretty!
Ok, when you try to set up your network card in KDENetworkManager, you go through it all and get this on screen as an error: "the default gateway ip address is invalid". My LAN is as follows and is fairly straightforward...Desktop PC with nic set to IP 192.168.0.1, laptop with Mint installed which I want to set as IP 192.168.0 23. So, the KNetworkManager program which sits in the taskbar and loads with KDE should allow me to set this up. It doesn't! From what I've read, there's a bug in the gui. So, you can enter your settings, but it won't update the config file, hence the error message.
Ignore KDENetworkManager as you can't set your LAN up with it. Open Konsole and navigate to /etc/network/ - in this folder, there's a file you need to edit called "interfaces". So, type:
sudo kate interfaces - you'll be asked for either your user or root password depending on whether you set up root with one.
Kate will open the file and you'll see something like this:
auto lo
iface lo inet loopback
This was no good for me and shows that the KDENetworkManager app hasn't worked. None of my settings are there. So, I changed mine as follows:
#auto lo
#iface lo inet loopback
iface eth0 inet static
address 192.168.0.23
netmask 255.255.255.0
gateway 192.168.0.1
auto eth0
I then saved the "interfaces" file with Kate and reopened KDENetworkManager. The settings above are now showing in the gui and the laptop is working online.
Despite the convoluted way I did it, I hope this helps someone else
Regards,
Leaston



