I was under impression that when dhcp lease times out dhcp server will send NAK to client. So I set up 5min lease time for one client but client's dhcp does not receive NAK.
I am using openwrt as a "lab" to test client's dhcp behaviour, so I need openwrt to send NAK to client.
What I did so far:
/etc/config/dhcp
config host
option name 'test-ottt'
list mac '68:98:61:03:45:76'
option ip '192.168.1.133'
option leasetime '5m'
And observed with tcpdump on openwrt:
tcpdump -i br-lan port 67 or port 68 -vv
But I don't see any NAK: I see ACK in tcpdump meaning I'm not doing it right.
EDIT:
I see that's the correct behaviour actually... so my task now would be to somehow make a misconfiguration for this specific client so it will receive NAK?