Blame xinetd.conf.auth

Packit Service 14ae58
# default: off
Packit Service 14ae58
# description: The authd server handles ident protocol requests. \
Packit Service 14ae58
# The Identification Protocol (a.k.a., "ident", a.k.a., "the Ident \
Packit Service 14ae58
# Protocol") provides a means to determine the identity of a user of a \
Packit Service 14ae58
# particular TCP connection.  Given a TCP port number pair, it returns \
Packit Service 14ae58
# a character string which identifies the owner of that connection on \
Packit Service 14ae58
# the server's system. UNDERSTAND THE RISKS REGARDING PRIVACY (I.E. \
Packit Service 14ae58
# SPAM HARVESTERS) BEFORE RUNNING THIS DAEMON WITH NO ARGUMENTS.
Packit Service 14ae58
service auth
Packit Service 14ae58
{
Packit Service 14ae58
        disable         = yes
Packit Service 14ae58
        socket_type     = stream
Packit Service 14ae58
        wait            = no
Packit Service 14ae58
        user            = ident
Packit Service 14ae58
        cps             = 4096 10
Packit Service 14ae58
        instances       = UNLIMITED
Packit Service 14ae58
        server          = /usr/local/sbin/in.authd
Packit Service 14ae58
        server_args     = -t60 --xerror --os -E
Packit Service 14ae58
}