I have a CentOS machine, and I opened a port on witch I should get a stream (actually it is the 5004 port - rtp). However, seems like the stream is not received.
Is there anyway to check on status of a port? (I mean not on/of... but if anything is received).
You can use
lsof -i :5004
to see if any process has that port open. Alternately, if you're not sure about the port in use but do know the process that is listening, you can uselsof -p process_id
to find the port.First, you can use
netstat
to see state of port.Second, you can use
tcpdump
to see traffic going in and out on that port.reports traffic on
eth0
to port 5004.Check 'iptables -L' for any rule blocking port 5004 and turn off firewall and selinux in 'system-config-securitylevel'