Rev 15 | Go to most recent revision | Details | 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 |
||
5 | # see oidentd(8) for detailed list |
||
6 | OIDENT_OPTIONS="-mf" |
||
7 | |||
8 | # user / group |
||
9 | OIDENT_USER=oident |
||
10 | OIDENT_GROUP=oident |
||
11 | |||
12 | # Allow the default router to act as an oidentd proxy? (yes/no) |
||
13 | # this is needed behind a masquarading router that runs oidentd -f |
||
14 | # if your identd proxy is not the default router, you have to |
||
15 | # manually specify it via -P |
||
16 | OIDENT_BEHIND_PROXY=yes |
||
17 |