I use this configuration for testing RIP and OSPF.  In the RIP case I
generate version 2 multicast packets on all Ethernet interfaces (this
is a Sun IPC, Ethernet interfaces are named le0, le1...).  This is a
safe way for me to test RIP the `production' gateways on this network
do not support RIP version 2.

In the OSPF case I test against several Proteon routers running OSPF.
I've configured all interface to be priority 2 so the Proteon routers
(which have are configured with priority 1) will become designated
routers.  I also specify a simple password authentication of
`YYYYYYYY' for all Ethernet interfaces (which is all this system has).

Jeff


#options noinstall;

interfaces {
	interface le0 passive ;
} ;

autonomoussystem 283 ;

snmp yes ;

rip yes {
	broadcast ;
	defaultmetric 5 ;
	interface le version 2 multicast ;
} ;

ospf yes {
	traceoptions lsabuild protocol;
	monauthkey "XXXXXXXX" ;
	backbone {
		authtype simple ;
		interface all {
			priority 2 ;
		} ;
		interface le {
			authkey "YYYYYYYY" ;
		} ;
	} ;
};

static {
	default gateway 132.236.200.200 preference 140 retain ;
} ;

