/etc/ippl.conf is in ippl 1.4.14-12.2+b1.
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 75 | # IP protocols logger - Configuration file
# See ippl.conf(5)
# User used
# ---------
# Specify the user (declared in /etc/passwd) used to run the
# logging threads. The ippl process visible in the process table
# is still running as root! Look in /proc/pid/task to see the threads
# running as Debian-ippl
runas Debian-ippl
# Resolve hostnames?
# ------------------
# Uncomment the line below to enable DNS lookups
#resolve all
# Use ident?
# ----------
# Uncomment the line below to enable IDENT lookups
#ident
# Log end of TCP connections ?
# ----------------------------
# Uncomment the line below to enable logging of closing TCP connections
# See the BUGS file.
#logclosing
# Expiration of DNS data
# ----------------------
#expire 3600
# Log in a file
# -------------
# Uncomment this line if you want to log messages into a /var/log/ippl.log
# See ippl.conf(5) for the syntax.
#log-in all /var/log/ippl/all.log
#log-in udp /var/log/ippl/udp.log
# Protocols logged
# ----------------
run icmp tcp
# Uncomment the line below to log UDP traffic.
# See ippl.conf(5) for recommendations.
#run udp
# Resolve tcp/udp port to service name?
# -------------------------------------
# portresolve icmp tcp udp
# Set noportresolve <protocol-list> to log port numbers instead
# Logging format
# ----------------
# If you want to see the destination address, the ports, etc
# Or if you want to log the minimal information.
# See ippl.conf(5) for details.
#logformat detailed all
# Filtering of packets logged
# ---------------------------
# Do not log answers to echo requests
ignore icmp type echo_reply
# Log telnet connections using ident and name resolution
log options ident,resolve tcp port telnet
# Do not log UDP from localhost
#ignore udp from localhost
# Do not log DNS queries
#ignore udp port domain
#ignore udp srcport domain
# End of configuration
# Copyright (C) 1998-1999 Hugo Haas - Etienne Bernard
|