Ident: Difference between revisions

From CSCWiki
Jump to navigation Jump to search
m (categories)
No edit summary
 
Line 1: Line 1:
[[Machine List#taurine|taurine]] needs to provide ident services to raise the IRC connection cap. A small ident daemon written by m4burns in Racket lives in <tt>/home/ident</tt> on taurine.
[[Machine List#taurine|taurine]] needs to provide ident services to raise the IRC connection cap. A small ident daemon written by m4burns and updated by ztseguin in Racket lives in <tt>/home/ident</tt> on taurine.


To get it running, run it as the `indent` user and add an iptables rule sending port 113 to port 1113.
To get it running, run it as the `indent` user and add an iptables rule sending port 113 to port 1113.
Line 5: Line 5:


iptables -t nat -A PREROUTING -p tcp --dport 113 -j REDIRECT --to-port 1113
iptables -t nat -A PREROUTING -p tcp --dport 113 -j REDIRECT --to-port 1113
ip6tables -t nat -A PREROUTING -p tcp --dport 113 -j REDIRECT --to-port 1113


[[Category:Systems]]
[[Category:Systems]]

Latest revision as of 14:33, 20 August 2017

taurine needs to provide ident services to raise the IRC connection cap. A small ident daemon written by m4burns and updated by ztseguin in Racket lives in /home/ident on taurine.

To get it running, run it as the `indent` user and add an iptables rule sending port 113 to port 1113.


 iptables -t nat -A PREROUTING -p tcp --dport 113 -j REDIRECT --to-port 1113
 ip6tables -t nat -A PREROUTING -p tcp --dport 113 -j REDIRECT --to-port 1113