From owner-freebsd-hackers Mon Sep 15 16:31:03 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id QAA03000 for hackers-outgoing; Mon, 15 Sep 1997 16:31:03 -0700 (PDT) Received: from panda.hilink.com.au (panda.hilink.com.au [203.8.15.25]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id QAA02992 for ; Mon, 15 Sep 1997 16:30:58 -0700 (PDT) Received: (from danny@localhost) by panda.hilink.com.au (8.8.5/8.8.5) id JAA27115; Tue, 16 Sep 1997 09:30:20 +1000 (EST) Date: Tue, 16 Sep 1997 09:30:19 +1000 (EST) From: "Daniel O'Callaghan" To: Yonny Cardenas cc: hackers@FreeBSD.ORG Subject: Re: Interface DOWN In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-hackers@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > > Why gated down an interface? > > The following message is show : > > router_a gated[190]: if_rtdown: DOWN route for interface ppp0 > 200.20.30.1/255.255.255.255 > router_b gated[154]: if_rtdown: DOWN route for interface ed0 > 168.176.1.5/255.255 You probably did not declare the interface to be passive. You should declare ppp interfaces to be passive; not sure why ed0 went down. I use: interfaces { interface all passive ; } ; Danny