How to enable IDENTD service for better connection authentication.
IDENTD is a service that helps IRC servers verify your identity and can improve your connection experience.
IDENTD (RFC 1413) is a protocol that allows IRC servers to query your computer to verify that you are the owner of the connection. This can:
netsh int ip set global taskoffload=disabledsudo apt-get install xinetd/etc/xinetd.d/auth file:service auth
{
socket_type = stream
protocol = tcp
wait = no
user = nobody
server = /usr/sbin/in.identd
server_args = -e -o
}
sudo service xinetd restartsudo apt-get install oidentdsudo service oidentd startsudo systemctl enable oidentdbrew install oidentdsudo brew services start oidentdImportant: Open port 113 (TCP) in your firewall:
iptables -A INPUT -p tcp --dport 113 -j ACCEPT/whois yournicknick!username@host instead of nick!~username@hostFor help, join #help and mention IDENTD issues.