Hi!

I have been struggling with this very weird behaviour of DHCPd server on OpenBSD 4.4 for some low-price routers such as EUSSO, Edimax, D-Link. DHCPd server log output seems OK (see below), but still those low-price routers get only IP address and mask, but no gateway IP adress, nor DNS IP configuration from DHCPd server. Meanwhile there is no problems with getting (FULL) IP configuration for MikroTik, OvisLink, Ubiquiti routers and even MS Windows DHCP client from OpenBSD 4.4 DHCPd server! :)

I have used the same configuration on OpenBSD 4.2 and there is no problem, but cannot get it work on OpenBSD 4.4. Why is that? What could have changed in DHCPd server since 4.2 relase?

Some of mine OpenBSD 4.4 router information below.

Thank you for your input,
Janis.



# uname -a
OpenBSD xxx.xxx.xxx.lv 4.4 GENERIC#0 i386

# ifconfig vlan51
vlan51: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> mtu 1500
        lladdr 00:1b:21:1e:2b:46
        description: vlan51
        vlan: 51 priority: 0 parent interface: em1
        groups: vlan
        inet6 fe80::21b:21ff:fe1e:2b46%vlan51 prefixlen 64 scopeid 0x5
        inet 192.168.51.254 netmask 0xffffff00 broadcast 192.168.51.255

# cat /etc/dhcpd.conf

deny unknown-clients;

option  domain-name "oic.lv";
option  domain-name-servers 195.13.171.6, 195.13.160.52;
default-lease-time 3600;
max-lease-time 3600;

subnet 192.168.51.0 netmask 255.255.255.0
{
        option routers  192.168.51.254;
host 3232248579 { hardware ethernet 00:50:18:48:CB:3D; fixed-address 192.168.51.3; }
}

# dhcpd -d vlan51
DHCPDISCOVER from 00:50:18:48:cb:3d via vlan51
DHCPOFFER on 192.168.51.3 to 00:50:18:48:cb:3d via vlan51
DHCPREQUEST for 192.168.51.3 from 00:50:18:48:cb:3d via vlan51
DHCPACK on 192.168.51.3 to 00:50:18:48:cb:3d via vlan51
DHCPRELEASE of 192.168.51.3 from 00:50:18:48:cb:3d via vlan51 (not found)
DHCPRELEASE of 192.168.51.3 from 00:50:18:48:cb:3d via vlan51 for nonexistent lease
DHCPDISCOVER from 00:50:18:48:cb:3d via vlan51
DHCPOFFER on 192.168.51.3 to 00:50:18:48:cb:3d via vlan51
DHCPREQUEST for 192.168.51.3 from 00:50:18:48:cb:3d via vlan51
DHCPACK on 192.168.51.3 to 00:50:18:48:cb:3d via vlan51

Reply via email to