Rev 15 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 15 | Rev 31 | ||
---|---|---|---|
1 | # options to use when starting oidentd as daemon: |
1 | # options to use when starting oidentd as daemon: |
2 | # -m lookup masquaraded connections in /etc/oidentd_masq.users |
2 | # -m lookup masquaraded connections in /etc/oidentd_masq.users |
3 | # -f forward requests for masquaraded connections to real host |
3 | # -f forward requests for masquaraded connections to real host |
4 | # -q don't log connections to oidentd |
4 | # -q don't log connections to oidentd |
- | 5 | # -l <number> Limit the number of simultaneous connections to <number> |
|
5 | # see oidentd(8) for detailed list |
6 | # see oidentd(8) for detailed list |
6 | OIDENT_OPTIONS="-mf" |
7 | OIDENT_OPTIONS="-mf -l 10" |
7 | 8 | ||
8 | # user / group |
9 | # user / group |
9 | OIDENT_USER=oident |
10 | OIDENT_USER=oident |
10 | OIDENT_GROUP=oident |
11 | OIDENT_GROUP=oident |
11 | 12 | ||
12 | # Allow the default router to act as an oidentd proxy? (yes/no) |
13 | # 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 | # 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 | # if your identd proxy is not the default router, you have to |
15 | # manually specify it via -P |
16 | # manually specify it via -P |
16 | OIDENT_BEHIND_PROXY=yes |
17 | OIDENT_BEHIND_PROXY=yes |
17 | 18 |