Subversion Repositories

?revision_form?Rev ?revision_input??revision_submit??revision_endform?

Rev 15 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
3 magnus 1
# options to use when starting oidentd as daemon:
2
# -m	lookup masquaraded connections in /etc/oidentd_masq.users
3
# -f	forward requests for masquaraded connections to real host
4
# -q	don't log connections to oidentd
31 magnus 5
# -l <number> Limit the number of simultaneous connections to <number>
3 magnus 6
# see oidentd(8) for detailed list
31 magnus 7
OIDENT_OPTIONS="-mf -l 10"
3 magnus 8
 
9
# user / group
10
OIDENT_USER=oident
11
OIDENT_GROUP=oident
12
 
13
# Allow the default router to act as an oidentd proxy? (yes/no)
14
# this is needed behind a masquarading router that runs oidentd -f
15
# if your identd proxy is not the default router, you have to
16
# manually specify it via -P
17
OIDENT_BEHIND_PROXY=yes
18