From: Nektarios I. <ine...@gm...> - 2007-02-15 06:45:01
|
(continued....) I get the same erro code 0x3103 when I try to run most of JTPM Tools commands, that is why I am guessing that there must be something wrong with my linux configuration. Thomas suggested that I check if my system is accepting connections on port 3003. So I tried "telnet localhost 3003" to check that and I get the following: Trying ::1... telnet: connect to address ::1: Connection refused telnet: Unable to connect to remote host: Connection refused I have tried to google it and I found a couple of relevant articles, http://www.cyberciti.biz/faq/ftp-connection-refused-error-solution-to-problem/ and http://www.cyberciti.biz/faq/iptables-open-ftp-port-21/ but I have not been successful in finding a solution. Apparently from what I've found out, "::1" is the IP v6 of localhost but telnet seems that it does not support it, since when I try "telnet 127.0.0.1" I get the following: Connected to <my ISP's name> ( 127.0.0.1) and the terminal prompts me to enter my login details. However when I try "telnet 127.0.0.1 3003" I get this: Trying 127.0.0.1... telnet: connect to address 127.0.0.1: Connection refused telnet: Unable to connect to remote host: Connection refused - Show quoted text - Typing "iptables -L -n" gives me: Chain INPUT (policy ACCEPT) target prot opt source destination RH-Firewall-1-INPUT all -- 0.0.0.0/0 0.0.0.0/0 Chain FORWARD (policy ACCEPT) target prot opt source destination RH-Firewall-1-INPUT all -- 0.0.0.0/0 0.0.0.0/0 Chain OUTPUT (policy ACCEPT) target prot opt source destination Chain RH-Firewall-1-INPUT (2 references) target prot opt source destination ACCEPT all -- 0.0.0.0/0 0.0.0.0/0 ACCEPT icmp -- 0.0.0.0/0 0.0.0.0/0 icmp type 255 ACCEPT esp -- 0.0.0.0/0 0.0.0.0/0 ACCEPT ah -- 0.0.0.0/0 0.0.0.0/0 ACCEPT udp -- 0.0.0.0/0 224.0.0.251 udp dpt:5353 ACCEPT udp -- 0.0.0.0/0 0.0.0.0/0 udp dpt:631 ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 tcp dpt:631 ACCEPT all -- 0.0.0.0/0 0.0.0.0/0 state RELATED,ESTABLISHED ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 state NEW tcp dpt:21 ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 state NEW tcp dpt:25 ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 state NEW tcp dpt:22 ACCEPT udp -- 0.0.0.0/0 0.0.0.0/0 state NEW udp dpt:137 ACCEPT udp -- 0.0.0.0/0 0.0.0.0/0 state NEW udp dpt:138 ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 state NEW tcp dpt:139 ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 state NEW tcp dpt:445 ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 state NEW tcp dpt:443 ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 state NEW tcp dpt:23 REJECT all -- 0.0.0.0/0 0.0.0.0/0 reject-with icmp-host-prohibited Typing "ip6tables -L -n" gives this: Chain INPUT (policy ACCEPT) target prot opt source destination RH-Firewall-1-INPUT all ::/0 ::/0 Chain FORWARD (policy ACCEPT) target prot opt source destination RH-Firewall-1-INPUT all ::/0 ::/0 Chain OUTPUT (policy ACCEPT) target prot opt source destination Chain RH-Firewall-1-INPUT (2 references) target prot opt source destination ACCEPT all ::/0 ::/0 ACCEPT icmpv6 ::/0 ::/0 ACCEPT esp ::/0 ::/0 ACCEPT ah ::/0 ::/0 ACCEPT udp ::/0 ff02::fb/128 udp dpt:5353 ACCEPT udp ::/0 ::/0 udp dpt:631 ACCEPT tcp ::/0 ::/0 tcp dpt:631 ACCEPT tcp ::/0 ::/0 tcp dpt:21 ACCEPT tcp ::/0 ::/0 tcp spt:21 ACCEPT tcp ::/0 ::/0 tcp dpt:25 ACCEPT tcp ::/0 ::/0 tcp spt:25 ACCEPT tcp ::/0 ::/0 tcp dpt:22 ACCEPT tcp ::/0 ::/0 tcp spt:22 ACCEPT udp ::/0 ::/0 udp dpt:137 ACCEPT udp ::/0 ::/0 udp spt:137 ACCEPT udp ::/0 ::/0 udp dpt:138 ACCEPT udp ::/0 ::/0 udp spt:138 ACCEPT tcp ::/0 ::/0 tcp dpt:139 ACCEPT tcp ::/0 ::/0 tcp spt:139 ACCEPT tcp ::/0 ::/0 tcp dpt:445 ACCEPT tcp ::/0 ::/0 tcp spt:445 ACCEPT tcp ::/0 ::/0 tcp dpt:443 ACCEPT tcp ::/0 ::/0 tcp spt:443 ACCEPT tcp ::/0 ::/0 tcp dpt:23 ACCEPT tcp ::/0 ::/0 tcp spt:23 REJECT all ::/0 ::/0 reject-with icmp6-port-unreachable I tried to manually add port "3003" through "system-config-securitylevel" command (and also added Telnet and FTP to the "Trusted services") but nothing changes. I even tried turning the firewall completely off and disabling both iptables and ip6tables but I still get the same error. Thank you for your time, Nektarios |