I want to open multiple UDP sockets bound to the same port( say 8888). The different sockets will be bound to different vrfs in the system. What I understand is we need to set SO_REUSEPORT sockopts, but I don't see this available in net package of Go.
Could someone help how can I achieve this?
You could set
SO_REUSEPORT
throughunix.SetsockoptInt
Sample codes