I’m writing my own network stack for a hobby project. I’m developing this on Linux.
Let’s say I start with DHCP.
I create a DHCP request and send it, presumably via a raw socket.
Is it possible to prevent the kernel from responding to the DHCP response, so my code will be the sole responder?
Otherwise I assume both kernel and my code will be trying to negotiate the DHCP request and this would cause issues.