It\'s very annoying to have this limitation on my development box, when there won\'t ever be any users other than me.
I\'m aware of the standard workarounds, but non
Or patch your kernel and remove the check.
(Option of last resort, not recommended).
In net/ipv4/af_inet.c, remove the two lines that read
net/ipv4/af_inet.c
if (snum && snum < PROT_SOCK && !capable(CAP_NET_BIND_SERVICE)) goto out;
and the kernel won't check privileged ports anymore.