Closed GoogleCodeExporter closed 9 years ago
A basic question but did you first install the DHCP server package?
The LUbuntu/Ubuntu 12.04 Linux has two different server packages:
isc-dhcp-server and dhcp3-server
I think you need to use the dhcp3-server package.
Original comment by ahrenh...@gmail.com
on 16 May 2014 at 4:18
Yes, I installed the dhcp3-server package but it still not working.
Original comment by AndreaDa...@gmail.com
on 16 May 2014 at 5:45
Attachments:
First, do a: sudo apt-get install isc-dhcp-server
The problem seems to be with your custom dhcpd.conf config. If you run "dhcpd"
on the "Router" server (n5), then you'll see the error message.
You need to add semicolons at the end of the new option lines, so it should
look like this:
pool {
range 192.168.1.100 192.168.1.150;
default-lease-time 600;
option routers 192.168.1.1;
option broadcast-address 192.168.1.255;
option subnet-mask 255.255.255.0;
}
Original comment by ahrenh...@gmail.com
on 13 Jun 2014 at 6:10
Oops...
Now it works fine.
Thank You
Original comment by AndreaDa...@gmail.com
on 13 Jun 2014 at 6:46
Original issue reported on code.google.com by
AndreaDa...@gmail.com
on 13 May 2014 at 9:32