Page 1 of 1

Problem with set-up DHCP Server on NanoPe Neo

Posted: Sat Jan 21, 2017 12:20 pm
by denis-evs
Hello, i need to start DHCP server on NanoPI Neo. I have installed isc-dhcp-server packet . I have edited nano /etc/default/isc-dhcp-server with INTERFACES='eth0', also i have edited conf file for DHCP like this:

subnet 192.168.1.0 netmask 255.255.255.0 {
range 192.168.1.2 192.168.1.32;
option domain-name "den.local";
option domain-name-servers 8.8.8.8, 8.8.4.4;
option routers 192.168.0.3;
option broadcast-address 192.168.1.255;
default-lease-time 604800;
max-lease-time 604800; }
and then i have restarted services. But my notebook dont receives ip address via DHCP. May be i something miss?

Re: Problem with set-up DHCP Server on NanoPe Neo

Posted: Sun Jan 22, 2017 2:41 am
by jjm
denis-evs wrote:
Hello, i need to start DHCP server on NanoPI Neo. I have installed isc-dhcp-server packet . I have edited nano /etc/default/isc-dhcp-server with INTERFACES='eth0', also i have edited conf file for DHCP like this:

subnet 192.168.1.0 netmask 255.255.255.0 {
range 192.168.1.2 192.168.1.32;
option domain-name "den.local";
option domain-name-servers 8.8.8.8, 8.8.4.4;
option routers 192.168.0.3;
option broadcast-address 192.168.1.255;
default-lease-time 604800;
max-lease-time 604800; }
and then i have restarted services. But my notebook dont receives ip address via DHCP. May be i something miss?


Hi,
I suggest you run successfully on computer that verify your steps are correct, and then do it on the board. You can refer to this link:
https://help.ubuntu.com/community/dhcp3-server

thank you!