Replies: 1 comment
-
Can you show |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
We have a static route configured in frr.conf that works properly on the node it is configured. We have redistribute static configured within the router configuration but the route does not seem to be distributed to the other nodes and is not present in their router database. The node that contains the static route in its configuration does have the route in its database. We are hoping someone can provide some insight on how to get the static route distributed to the other router nodes. Here is the underlying frr configuration file. In this case hwtunl122hw01 is an interface (GRE tunnel).
!-------------------------------------------------------------------------
!
! Initial FRR Configuration for IRIDIUM122 (leo) at eth1: 10.148.42.111
! LEO Nodes configured with all crosslinks
! GS nodes configured with links to TDRS and Terminal only (not LEOs)
! TDRS nodes cofigured with links to GS only (not LEOs)
!
!-------------------------------------------------------------------------
!
! default to using syslog. /etc/rsyslog.d/45-frr.conf places the log
! in /var/log/frr/frr.log
!
log file /var/log/frr/frr.log
log record-priority
!
interface mcvlan
ip ospf area 0
ip address 192.169.11.100/24
ip ospf network non-broadcast
!
! Tunnel tunl122l133c: from IRIDIUM122 (leo) to IRIDIUM133 (leo)
interface tunl122l133c
ip ospf area 0
ip address 192.168.1.5/30
ip ospf network non-broadcast
ip ospf dead-interval minimal hello-multiplier 4
!
! Tunnel tung01l122: from IRIDIUM122 (leo) to Whitesands (gt)
interface tung01l122
ip ospf area 0
ip address 192.168.11.2/30
ip ospf network non-broadcast
ip ospf dead-interval minimal hello-multiplier 4
!
ip route 192.169.15.100/24 hwtunl122hw01
!
router ospf
ospf router-id 10.148.42.111
neighbor 192.168.1.6
neighbor 192.168.11.1
passive-interface mcvlan
redistribute kernel
redistribute static
redistribute table
log-adjacency-changes detail
!
!
ip forwarding
!
debug ospf packet all
!
Beta Was this translation helpful? Give feedback.
All reactions