Firewall fiasco: Difference between revisions
Jump to navigation
Jump to search
Eddynetweb (talk | contribs) (Information on Oidentd) |
Eddynetweb (talk | contribs) m (Eddynetweb moved page Oidentd port information to Firewall fiasco without leaving a redirect) |
(No difference)
|
Revision as of 17:01, 11 March 2017
Issue
"oidentd" won't authenticate a proper mask without opening port 113 on whatever firewall application you're using to manage connections. This is especially present if you use ZNC and you desire to allow such identification authentication.
Solution
Open up port 113 through your firewall. Here's an example with IPTables:
iptables -t filter -I INPUT -p 113 -j ACCEPT
iptables -t filter -I OUTPUT -p 113 -j ACCEPT
Good luck!