From owner-freebsd-questions Fri Aug 16 12:32:06 1996 Return-Path: owner-questions Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id MAA10200 for questions-outgoing; Fri, 16 Aug 1996 12:32:06 -0700 (PDT) Received: from apollo.it.hq.nasa.gov (apollo.it.hq.nasa.gov [131.182.119.87]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id MAA10195 for ; Fri, 16 Aug 1996 12:32:03 -0700 (PDT) Received: from wirehead.it.hq.nasa.gov (wirehead.it.hq.nasa.gov [131.182.119.88]) by apollo.it.hq.nasa.gov (8.6.12/8.6.12) with ESMTP id TAA13567; Fri, 16 Aug 1996 19:32:25 GMT Received: from localhost (cshenton@localhost) by wirehead.it.hq.nasa.gov (8.6.12/8.6.12) with SMTP id TAA18444; Fri, 16 Aug 1996 19:29:54 GMT Message-Id: <199608161929.TAA18444@wirehead.it.hq.nasa.gov> X-Authentication-Warning: wirehead.it.hq.nasa.gov: cshenton owned process doing -bs X-Authentication-Warning: wirehead.it.hq.nasa.gov: Host localhost didn't use HELO protocol To: craigs@os.com Cc: proot@horton.iaces.com, joerg_wunsch@uriah.heep.sax.de, questions@freebsd.org Subject: Re: Routed supports variable-length netmasks? In-Reply-To: Your message of "Fri, 16 Aug 1996 14:40:24 -0400" References: X-Mailer: Mew version 1.03 on Emacs 19.31.8 Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Date: Fri, 16 Aug 1996 15:29:53 -0400 From: Chris Shenton Sender: owner-questions@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Fri, 16 Aug 1996 14:40:24 -0400 Craig Shrimpton wrote: craigs> Gated works great for RIPv2. I'm running 2.1.0-STABLE and routed will craigs> not do R2 so I switched to gated running RIP. I don't know about 2.1.5's craigs> routed, but gated will handle most anything. I'm on 2.1.5-RELEASE and now have gated running, with a first attempt at a config file -- hairy. It seems to install and remove the /28 route upon connect/disconnect. Still have to build and config it on my SunOS system at home -- wish I had a "ports" collection there!! Let me show you my config file, and if you would, send me yours for comparison. This is rather new to me. Thanks # PPP server on Internet: sisyphus # ed1 205.215.4.64/24 # ppp0 207.31.83.5:207.31.83.6/30 (absinthe on homenet) # ppp1 ?? # PPP machine on homenet: absinthe # ppp0 207.31.83.6:207.31.83.5/30 (sisyphus on Internet) # le0 207.31.83.33/28 (on net 207.31.83.32/28) ############################################################################### traceoptions "/var/log/gated.log" replace size 50k files 3 general; interfaces { interface all passive; #?? define 207.31.83.6 pointtopoint 207.31.83.5; } ; # Use v2 on multicast i/fs; v1 compat if not. rip yes { interface all version 2; } ; # Static route to Internet, and static to homenet (when connected via ppp). static { default gateway 205.215.4.1 retain; 207.31.83.32 mask 255.255.255.240 gateway 207.31.83.6 interface ppp; } ; # Announce static routes to homenet when it is live. export proto rip { proto static { #Interface (ifname??, ip addr of remote) [metric #] 207.31.83.32 mask 255.255.255.240 metric 2; } ; } ;