diff options
author | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 1999-12-09 13:59:58 +0000 |
---|---|---|
committer | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 1999-12-09 13:59:58 +0000 |
commit | d62b29b12c164a072217ec7865e01185435964d1 (patch) | |
tree | a71b398923a8b2d535f6389074ddb6313d196aee /etc | |
parent | 5292cfc403d7b1b27391a342e66456888f900c81 (diff) |
do not perform IPv6 initialization for loopback interface.
MUST make lo0 up before any IPv6 operations.
it will be considered a pilot error if you don't.
(I prefer to have lo0 initialized automatically)
Diffstat (limited to 'etc')
-rw-r--r-- | etc/netstart | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/etc/netstart b/etc/netstart index f945b1f3161..403c8c0c21e 100644 --- a/etc/netstart +++ b/etc/netstart @@ -1,6 +1,6 @@ #!/bin/sh - # -# $OpenBSD: netstart,v 1.51 1999/09/01 18:07:34 deraadt Exp $ +# $OpenBSD: netstart,v 1.52 1999/12/09 13:59:57 itojun Exp $ # Returns true if $1 contains only alphanumerics isalphanumeric() { @@ -36,6 +36,7 @@ else fi # set the address for the loopback interface +# it will also initialize IPv6 address for lo0 (::1 and others). ifconfig lo0 inet localhost # use loopback, not the wire |