Tagged Questions

0
votes
1answer
57 views

Can I force some ports for listening only(mean servermdoe)

In linux is there a way to tell the system that never give a port for client connection, but instead allocate it only for requests for listening(server). That is, given a port P, If a proc wants to ...
0
votes
2answers
690 views

How do I make a simple DNS server listening two ports simultaneously in python

I'm trying to build a DNS server in python. It must listen two ports (8007 - client, 8008 - admin). The client only send an URL and receives the respective IP. The admin has permissions to change the ...