Well I have tcpdump loaded on the router, but the first capture I initiated was a bit overwhelming and didn't break from displaying everything from terminal. Is there a basic capture that would cover only DHCP requests to limit the volume of information?So does your router see those requests and provide a response?
Maybe we’ll have to tcpdump on the router like @JDB suggested to see which hop is dropping the ball here. tcpdump on router + AP/Bridge would help a lot.
Code:
tcpdump -i any '((port 67 or port 68) and (udp[8:1] = 0x1))'
I see the following, but my command must be a bit wonky as the log file isn't saving as I would expect and it is just displaying in the SSH. It does have some results populating though on the router:
Code:
admin1@RT-AC86U:/tmp/home/root# tcpdump -i any -vvv -s 1500 '((port 67 or port 68) and (udp[8:1] = 0x1))' | tee /tmp/mnt/entware/dhcp.log
tcpdump: listening on any, link-type LINUX_SLL (Linux cooked), capture size 1500 bytes
16:22:48.011502 IP (tos 0x0, ttl 64, id 0, offset 0, flags [none], proto UDP (17), length 308)
0.0.0.0.bootpc > 255.255.255.255.bootps: [udp sum ok] BOOTP/DHCP, Request from 00:62:6e:53:b8:80 (oui Unknown), length 280, xid 0x20067928, Flags [none] (0x0000)
Client-IP DEfoscam3
Client-Ethernet-Address 00:62:6e:53:b8:80 (oui Unknown)
Vendor-rfc1048 Extensions
Magic Cookie 0x63825363
DHCP-Message Option 53, length 1: Request
Client-ID Option 61, length 7: ether 00:62:6e:53:b8:80
MSZ Option 57, length 2: 576
Parameter-Request Option 55, length 7:
Subnet-Mask, Default-Gateway, Domain-Name-Server, Hostname
Domain-Name, BR, NTP
Vendor-Class Option 60, length 12: "udhcp 1.21.1"
END Option 255, length 0
16:22:48.011525 IP (tos 0x0, ttl 64, id 0, offset 0, flags [none], proto UDP (17), length 308)
0.0.0.0.bootpc > 255.255.255.255.bootps: [udp sum ok] BOOTP/DHCP, Request from 00:62:6e:53:b8:80 (oui Unknown), length 280, xid 0x20067928, Flags [none] (0x0000)
Client-IP DEfoscam3
Client-Ethernet-Address 00:62:6e:53:b8:80 (oui Unknown)
Vendor-rfc1048 Extensions
Magic Cookie 0x63825363
DHCP-Message Option 53, length 1: Request
Client-ID Option 61, length 7: ether 00:62:6e:53:b8:80
MSZ Option 57, length 2: 576
Parameter-Request Option 55, length 7:
Subnet-Mask, Default-Gateway, Domain-Name-Server, Hostname
Domain-Name, BR, NTP
Vendor-Class Option 60, length 12: "udhcp 1.21.1"
END Option 255, length 0
Last edited: