When I want to listen on desired port on one server, I use netcat ie:
nc -l 8888
Then I can verify the server is actually listening on that port:
netstat -tlnp | grep 8888
tcp 0 0 0.0.0.0:8888 0.0.0.0:* LISTEN 2984/nc
tcp6 0 0 :::8888 :::* LISTEN 2984/nc
Those steps worked for centos 7, OpenVZ server. However if I perform the same steps on KVM debian 7 i can't see the server listening on port 8888. What could possibly be blocking netcat to listen on that port? Any ideas how can I debug this and get to the core problem?