Anyone know of a tool to test tcp connections in linux.. I'm looking for something to tell me if it experienced a dropped packet or such
Tell me more
×
Server Fault is a question and answer site for
professional system and network administrators. It's 100% free, no registration required.
|
tcpdump serves this purpose. http://www.tcpdump.org/tcpdump_man.html |
|||
|
|
|
tcptrack - Monitor TCP connections on the network |
|||
|
|
|
Server: Open a tcp port with netcat so for example to open port 80 tcp I would use: nc -l 80 Client: Check the tcp port with telnet so to connect to port 80: telnet destination_ip 80 |
|||
|
|