/etc/identd.conf is in pidentd 3.0.19.ds1-7.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | # /etc/identd.conf - an example configuration file
#-- The syslog facility for error messages
# syslog:facility = daemon
#-- User and group (from passwd database) to run as
server:user = nobody
#-- Override the group id
# server:group = kmem
#-- What port to listen on when started as a daemon or from /etc/inittab
# server:port = 113
#-- The socket backlog limit
# server:backlog = 256
#-- Where to write the file containing our process id
# server:pid-file = "/var/run/identd/identd.pid"
#-- Maximum number of concurrent requests allowed (0 = unlimited)
# server:max-requests = 0
#-- Enable some protocol extensions like "VERSION" or "QUIT"
protocol:extensions = enabled
#-- Allow multiple queries per connection
protocol:multiquery = enabled
#-- Timeout in seconds since connection or last query. Zero = disable
# protocol:timeout = 120
#-- Maximum number of threads doing kernel lookups
# kernel:threads = 8
#-- Maximum number of queued kernel lookup requests
# kernel:buffers = 32
#-- Maximum number of time to retry a kernel lookup in case of failure
# kernel:attempts = 5
#-- Disable username lookups (only return uid numbers)
# result:uid-only = no
#-- Enable the ".noident" file
# result:noident = enabled
#-- Charset token to return in replies
# result:charset = "US-ASCII"
#-- Opsys token to return in replies
# result:opsys = "UNIX"
#-- Log all request replies to syslog (none == don't)
# result:syslog-level = none
#-- Enable encryption (only available if linked with a DES library)
# result:encrypt = no
#-- Path to the DES key file (only available if linked with a DES library)
# encrypt:key-file = "/usr/local/etc/identd.key"
#-- Include a machine local configuration file
# include = /etc/identd.conf
|