문제

I am creating a dhcp client in Linux(Ubuntu). I am creating a udp socket and binding it to port 68 and then call recvfrom. I receive a permission denied bind error. I suspect there is a daemon or process which is already bound to port 68. How do I find it?

도움이 되었습니까?

해결책

You need to be super user to bind to ports lower than 1024, have you tried running it with sudo?

To find out if something is bound to port 68, do:

sudo netstat -l -u -n -p | grep 68

다른 팁

Question: Are you root? You must be root to bind to a privileged port (less that 1024).

netstat is your guy for finding all your network connections.

you want something like netstat -l, to display listening endpoints.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top