I'm trying to setup 2 firewalls that currently have a point to point in place. I've configured the 2 endpoints in a /29 network and confirmed connectivity across the links, but I'm not seeing the networks being advertised. Here is the configuration on side A:
set protocol rip
set interface "ethernet0/7" zone "Trust"
set interface ethernet0/7 ip 172.20.0.1/29
set interface ethernet0/7 nat
set vrouter "trust-vr"
set router-id 192.168.1.254
set access-list 10
set access-list 10 permit ip 192.168.1.0/24 1
set route-map name "InternalRoutes" permit 1
set match ip 10
set interface ethernet0/7 protocol rip
set interface ethernet0/7 protocol rip enable
set interface ethernet0/7 protocol rip route-map "InternalRoutes" out
Side B:
set interface "ethernet0/3" zone "Trust"
set interface ethernet0/3 ip 172.20.0.2/29
set interface ethernet0/3 nat
set vrouter "trust-vr"
set router-id 192.168.14.254
set access-list 10
set access-list 10 permit ip 192.168.14.0/24 1
set route-map name "InternalRoutes" permit 1
set match ip 10
set interface ethernet0/3 protocol rip
set interface ethernet0/3 protocol rip enable
set interface ethernet0/3 protocol rip route-map "InternalRoutes" out
What I'm trying to accomplish is the internal network at each location being advertised via RIP to the remote site (I could put in static routes but site B has an OSPF instance running w/ a 3rd location so is also learning the route that way w/ a higher metric for a backup route).