Firewall fiasco

From eddynetweb's cesspit
Revision as of 17:55, 7 March 2017 by Eddynetweb (talk | contribs) (Information on Oidentd)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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!