Important note about SSL VPN compatibility for 20.0 MR1 with EoL SFOS versions and UTM9 OS. Learn more in the release notes.

This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

RIP V2

I have a scenario where i need to publish only some part of the whole RIP information on a particular Interface.How can i achieve that?

Right now all the routing data is sent on all the interfaces.



This thread was automatically locked due to age.
Parents
  • To restrict the route advertisements over a particular interface in RIP, you can configure an "access-list" and then use it in "distribute-list" over the interface. The configurations are available in RIP-CLI. 

    Example configuration : 

    router rip
     distance 120
     network 200.200.200.0/24
     redistribute static
     timers basic 5 10 10
     distribute-list abc out Port2
    exit
    !
    access-list abc seq 5 permit 1.1.1.0/24
    access-list abc seq 10 deny 2.2.2.0/24
    access-list abc seq 15 permit 3.3.3.0/24
       

    The above configuration will advertise only 1.1.1.0/24 and 3.3.3.0/24 over Port2. 

    If a post solves your question please use the 'Verify Answer' button.

Reply
  • To restrict the route advertisements over a particular interface in RIP, you can configure an "access-list" and then use it in "distribute-list" over the interface. The configurations are available in RIP-CLI. 

    Example configuration : 

    router rip
     distance 120
     network 200.200.200.0/24
     redistribute static
     timers basic 5 10 10
     distribute-list abc out Port2
    exit
    !
    access-list abc seq 5 permit 1.1.1.0/24
    access-list abc seq 10 deny 2.2.2.0/24
    access-list abc seq 15 permit 3.3.3.0/24
       

    The above configuration will advertise only 1.1.1.0/24 and 3.3.3.0/24 over Port2. 

    If a post solves your question please use the 'Verify Answer' button.

Children