diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-08-27 11:46:21 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-08-27 11:46:21 +0000 |
commit | 97886bfb01258fb76d5f6eb169d0d05b0aa396bb (patch) | |
tree | 1662471303ba45e60bb03703eaa16510749ef200 /etc | |
parent | bf177e5b29d1962f95b715fbbc7eea38ab509b73 (diff) |
224.0.0.0 not 0.0.0.224; from peter@demon.net
Diffstat (limited to 'etc')
-rw-r--r-- | etc/netstart | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/netstart b/etc/netstart index 0fbcb0545b5..d8c939fe10c 100644 --- a/etc/netstart +++ b/etc/netstart @@ -1,6 +1,6 @@ #!/bin/sh - # -# $OpenBSD: netstart,v 1.8 1996/06/18 15:30:02 deraadt Exp $ +# $OpenBSD: netstart,v 1.9 1996/08/27 11:46:20 deraadt Exp $ # set these to "NO" to turn them off. otherwise, they're used as flags routed_flags=-q @@ -109,7 +109,7 @@ route add $hostname localhost route add -net 127 127.0.0.1 -reject # default multicast route -route add -net 224 -interface $hostname +route add -net 224.0.0.0 -interface $hostname # /etc/mygate, if it exists, contains the name of my gateway host # that name must be in /etc/hosts. |