From 065887d0f76919e55fa3c9067f9407d33f47fd86 Mon Sep 17 00:00:00 2001 From: shin Date: Sun, 9 Jan 2000 04:35:39 +0000 Subject: Remove BROADCAST flag from faith interface, -it not seems to be necessary -to avoid dhcp messages or something like that sent to faith interface The problem reported by: Jim Bloom --- sys/net/if_faith.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/net/if_faith.c') diff --git a/sys/net/if_faith.c b/sys/net/if_faith.c index 0e21af7..60e871c 100644 --- a/sys/net/if_faith.c +++ b/sys/net/if_faith.c @@ -82,8 +82,8 @@ faithattach(faith) ifp->if_name = "faith"; ifp->if_unit = i; ifp->if_mtu = FAITHMTU; - /* Change to BROADCAST experimentaly to announce its prefix. */ - ifp->if_flags = /* IFF_LOOPBACK */ IFF_BROADCAST | IFF_MULTICAST; + /* LOOPBACK commented out to announce IPv6 routes to faith */ + ifp->if_flags = /* IFF_LOOPBACK | */ IFF_MULTICAST; ifp->if_ioctl = loioctl; ifp->if_output = looutput; ifp->if_type = IFT_FAITH; -- cgit v1.1