I'm trying to have a site host on Red Hat 6.3 PCI compliant
through myControlScan.
The only failure I have is that port 36141:TCP is being
blocked somehow/somewhere, and I do not know where or how to
find out.
It is blocked from other servers on the network as well as
itself.
# nc -zv 127.0.0.1 36141
nc: connect to 127.0.0.1 port 36141 (tcp) failed:
Connection refused
(same result when using nc -zv localhost 36141 as well as
the website ip address)
36141:TCP should be open according to iptables. (iptable
list shown below)
# netstat -lnp | grep 36141
(shows nothing)
traceroute gets to myControlScan (207.198.99.3) via default
settings, port 80, port 80 TCP, and port 36141, BUT not
36141:TCP.
Confused.
# traceroute -p 36141 -P TCP 207.198.99.3
traceroute to 207.198.99.3 (207.198.99.3), 30 hops max, 60
byte packets
1 * * *
2 *^C
# traceroute -p 36141 207.198.99.3
traceroute to 207.198.99.3 (207.198.99.3), 30 hops max, 60
byte packets
1 67.22.106.161 (67.22.106.161) 0.679 ms 0.734 ms
0.873 ms
2 66.11.145.82 (66.11.145.82) 1.965 ms 1.963 ms 1.936
ms
iptable list below:
-----------------
# iptables -nL
Chain INPUT (policy ACCEPT)
target prot opt source destination
ACCEPT tcp -- 127.0.0.1
0.0.0.0/0
tcp dpt:111
ACCEPT tcp -- 10.200.139.34
0.0.0.0/0
tcp dpt:111
ACCEPT tcp -- 10.200.139.35
0.0.0.0/0
tcp dpt:111
ACCEPT tcp -- 172.16.1.164
0.0.0.0/0
tcp dpt:111
Chain FORWARD (policy ACCEPT)
target prot opt source destination
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
ACCEPT tcp -- 127.0.0.1
0.0.0.0/0
tcp dpt:111
ACCEPT tcp -- 10.200.139.34
0.0.0.0/0
tcp dpt:111
ACCEPT tcp -- 10.200.139.35
0.0.0.0/0
tcp dpt:111
ACCEPT tcp -- 172.16.1.164
0.0.0.0/0
tcp dpt:111
--------------------------------------------------------------------------
Any thoughts or ideas?
Thanks,
Tyhr