I'm trying to verify that a couple of our servers can communicate via certain ports before migrating some of our services to them, and that they're not blocked by our organizations firewall ACLs.
Makes Sense
[mrduki@mybox1~]$ nc -ul 40000
---
[mrduki@mybox2~]$ nc -zvuw2 mybox1.com 40000
Connection to mybox1.com 40000 port [udp/*] succeeded!
Doesn't Make Sense
[mrduki@mybox1~]$ nc -ul 40000
[mrduki@mybox1~]$ ^C
---
[mrduki@mybox2~]$ nc -zvuw2 mybox1.com 40000
Connection to mybox1.com 40000 port [udp/*] succeeded!
In fact, if I do a port scan from 40000-40100
, every single port succeeds.
If I do the same tests without -u
(so that it tests TCP instead of UDP), I get 40000 (tcp) timed out: Operation now in progress
errors, as I would expect (since I have no such TCP service listening on 40000
).
Doing a sudo netstat -alnp | grep LISTEN
on mybox1
though shows no such services listening on these ports. So what am I missing?