No empty .Rs/.Re
[netbsd-mini2440.git] / share / examples / ftpd / ftpusers
blob4172310d3de9b50984377a192b61f6517b4ee829
1 #       $NetBSD: ftpusers,v 1.2 2000/01/09 13:19:19 lukem Exp $
3 # example /etc/ftpusers
6 # prevent the following from logging in:
7 #       - users `root' and `toor'
8 #       - members of the group `noftp'
9 #       - connections from 10.0.0.0/8
10 #       - connections from *.spammer.com
12 root                    deny
13 toor                    deny
14 *:noftp                 deny
15 *@10.0.0.0/8            deny
16 *@*.spammer.com         deny
18 # anonymous ftp connections from *.NetBSD.org and 204.152.186.0/24 go into
19 # class `localguest'
21 ftp@*.NetBSD.org        allow   localguest
22 ftp@204.152.186.0/24    allow   localguest
24 # permit anonymous ftp connections from elsewhere (both entries are required,
25 # for backwards compatibility, although `ftp' is the user checked in other
26 # rules)
28 ftp                     allow
29 anonymous               allow
31 # users who are members of a group name which ends with `src', connecting
32 # from any host in the *.NetBSD.org domain become class `source'
34 *:*src@*.NetBSD.org     allow   source
36 # prevent all other users
38 *                       deny