diff options
author | peter <peter@FreeBSD.org> | 1998-03-21 14:26:02 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1998-03-21 14:26:02 +0000 |
commit | 73a9e18f54aacc548960dde4894eb3ab58b0da45 (patch) | |
tree | 223e49531bc63bc924922af54c09258c6c83617c /etc/MAKEDEV | |
parent | 83a35267b710f3b2eaccd6dc38e8ff281c84a581 (diff) | |
download | FreeBSD-src-73a9e18f54aacc548960dde4894eb3ab58b0da45.zip FreeBSD-src-73a9e18f54aacc548960dde4894eb3ab58b0da45.tar.gz |
/dev nodes for ipfilter
Diffstat (limited to 'etc/MAKEDEV')
-rw-r--r-- | etc/MAKEDEV | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/etc/MAKEDEV b/etc/MAKEDEV index 508be1f..56803e9 100644 --- a/etc/MAKEDEV +++ b/etc/MAKEDEV @@ -105,8 +105,9 @@ # labpc* National Instrument's Lab-PC and LAB-PC+ # perfmon CPU performance-monitoring counters # pci PCI configuration-space access from user mode +# ipl ipfilter control devices (ipl, ipnat, ipstate, ipauth) # -# $Id: MAKEDEV,v 1.157 1998/03/01 22:18:28 steve Exp $ +# $Id: MAKEDEV,v 1.158 1998/03/12 12:00:26 bde Exp $ # PATH=/sbin:/bin/:/usr/bin:/usr/sbin:$PATH @@ -203,7 +204,7 @@ all) sh MAKEDEV mse0 psm0 sysmouse # cdev, mouse sh MAKEDEV pcaudio speaker # cdev, noise sh MAKEDEV lpt0 lpt1 lpt2 # cdev, printer - sh MAKEDEV bpf0 tun0 # cdev, network + sh MAKEDEV bpf0 tun0 ipl # cdev, network sh MAKEDEV ch0 perfmon tw0 # cdev, miscellaneous sh MAKEDEV apm card0 card1 # cdev, laptop ;; @@ -1146,6 +1147,15 @@ perfmon) chmod 640 perfmon ;; +ipl) + mknod ipl c 79 0 + mknod ipnat c 79 1 + mknod ipstate c 79 2 + mknod ipstate c 79 3 + chown root:wheel ipl ipnat ipstate ipauth + chmod 600 ipl ipnat ipstate ipauth + ;; + local) umask 0 # XXX should be elsewhere sh MAKEDEV.local |