25.03.2013, 20:27
Quote:
In the iptables rules file, make sure the ACCEPT rules get placed before the DROP and REJECT rules.
This should allow IRC connections: Код:
iptables -A INPUT -i eth0 -p tcp -m tcp --sport 6667 -j ACCEPT iptables -A OUTPUT -o eth0 -p tcp -m tcp --dport 6667 -j ACCEPT |
Quote:
Some of the server providers block the default irc port on their routers completely, most of the irc networks such as ours have another alternative port that's rarely blocked: 8067, so I suggest trying that also.
|
EDIT: Seems like it only works when either the firewall is disabled completely, or after trying to connect, I restart the firewall- it will connect.