cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1015
Views
10
Helpful
3
Replies

Limit RIP network advertisement

Hanifeh
Level 1
Level 1

Hello

Can we limit the network advertisement in RIP?

for example in this picture assume that all routers run RIP v2, i want to router 3 just learn about 1.1.3.0/24 network NOT 1.1.2.0/24 network.

I appreciate if you can help me :)

 thanks in advance.Screenshot from 2018-05-11 15-05-05.png 

1 Accepted Solution

Accepted Solutions

Julio E. Moisa
VIP Alumni
VIP Alumni

Hi

Yes, you can, have you tried using distribute-list?

The configuration is:

 

 

ROUTER 3

 

access-list 1 deny 1.1.2.0 0.0.0.255     <-- it will deny just the subnet 1.1.2.0/24

access-list 1 permit any    <-- it will allow everything else

 

router rip

distribute-list 1 in     <--- it will filter the inbound traffic

 

Now wait to RIP refresh the routing table or execute: clear ip route *  and wait for the convergence.  

 

Hope it is useful

:-)

 




>> Marcar como útil o contestado, si la respuesta resolvió la duda, esto ayuda a futuras consultas de otros miembros de la comunidad. <<

View solution in original post

3 Replies 3

Julio E. Moisa
VIP Alumni
VIP Alumni

Hi

Yes, you can, have you tried using distribute-list?

The configuration is:

 

 

ROUTER 3

 

access-list 1 deny 1.1.2.0 0.0.0.255     <-- it will deny just the subnet 1.1.2.0/24

access-list 1 permit any    <-- it will allow everything else

 

router rip

distribute-list 1 in     <--- it will filter the inbound traffic

 

Now wait to RIP refresh the routing table or execute: clear ip route *  and wait for the convergence.  

 

Hope it is useful

:-)

 




>> Marcar como útil o contestado, si la respuesta resolvió la duda, esto ayuda a futuras consultas de otros miembros de la comunidad. <<

It worked :) 

thank you a lot for your time and your great answer. 

Hi,

You are welcome my friend, please dont forget to mark as answered for future references for other community members.

 

Thank you in advance, have a great day!

 

:-)




>> Marcar como útil o contestado, si la respuesta resolvió la duda, esto ayuda a futuras consultas de otros miembros de la comunidad. <<