Search results

  1. A

    Is port open automatically on linux?

    I used Socat and Netcat to listen on those port (10000 till port 19000 ) using loop. Unfortunately, the server was suddenly hung after opening so many ports The Netcat script as follows : first_port=10000 last_port=19000 for (( i = first_port+1; i <= last_port; i++ )) do ncat -l -k -p $i...
  2. A

    Is port open automatically on linux?

    I have an application to deliver the traffic from Server-A to Server-B. On Server-A : delivers traffic though from port 10000 till port 19000 randomly On Server-B (Centos 7) - receives the traffic from port 10000 till port 19000 - no firewall installed and no restriction on a specific port on...
Top