What shall I use in the IP address?
When I’m using the code above, I don’t receive the message at all. When executing ‘netstat’ command, while I’m putting the 2nd NIC IP address, ,I don’t see it at all.
Your code creates a UDP endpoint. That is not suitable for sniffing traffic. I don’t think it’s possible to do that with asyncio, as it doesn’t support raw sockets. You’d need to use the socket module instead, with a RAW socket type.
A UDP server is not the same thing as sniffing all traffic. Are you listening for UDP traffic being sent to you, or are you trying to snoop traffic being sent to a different application? Sniffing usually requires raw sockets and root access, regardless of the port number.
Incidentally, the reason you’re not seeing it in netstat may be because you’re listening on “all IPv4” rather than on a specific IP address. So in netstat, it’ll probably only show up with the 0.0.0.0 listen address rather than the one your’e searching for.