Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 16 Aug 1996 15:29:53 -0400
From:      Chris Shenton <cshenton@it.hq.nasa.gov>
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?
Message-ID:  <199608161929.TAA18444@wirehead.it.hq.nasa.gov>
In-Reply-To: Your message of "Fri, 16 Aug 1996 14:40:24 -0400"
References:  <Pine.3.89.9608161452.B369-0100000@solar.os.com>

next in thread | previous in thread | raw e-mail | index | archive | help
On Fri, 16 Aug 1996 14:40:24 -0400
Craig Shrimpton <craigs@os.com> 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;
        } ;
} ;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199608161929.TAA18444>