Hi,
I can't seem to find a solution to my dilemma, so don't know if it's actually possible. I recently got a laptop(running Kubuntu Feisty) and what I want to do is connect it to my desktop PC (running openSUSE 10.1). The desktop has one network card sitting at eth0.
What I wanted to do was get a dhcp server running on the desktop listening on eth0 (openSUSE's dhcp setup didn't seem to work for me). After *much* mucking about I got dhcpd to listen on eth0 by running
My dhcpd.conf file is pretty bare bones, it has the following:
Code:
ddns-update-style ad-hoc;
subnet 10.0.0.0 netmask 255.255.255.0 {
range 10.0.0.3 10.0.0.20;
option broadcast-address 10.0.0.255;
}
When I connect the two with a network cable, nothing happens. What am I doing wrong? (the laptop connects to other dhcp servers, so I don't think there is a problem on the laptop side)