Chcę otworzyć port 8040 na moim centos, ale ciągle odmawia połączenia.
Oto co zrobiłem:
iptables -I INPUT -m state --state NEW -p tcp --dport 8040 -j ACCEPT
iptables -I INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT
/etc/init.d/iptables save
sudo service iptables restart
sudo iptables -L
Chain INPUT (policy ACCEPT)
target prot opt source destination
ACCEPT all -- anywhere anywhere state RELATED,ESTABLISHED
ACCEPT tcp -- anywhere anywhere state NEW tcp dpt:8040
acctboth all -- anywhere anywhere
telnet localhost 8040
Trying 127.0.0.1...
telnet: connect to address 127.0.0.1: Connection refused
Co jeszcze muszę zrobić?
Aktualizacja:
Próbowałem wyłączyć iptables i selinux, nadal otrzymuję odmowę połączenia.