Command
IP RIP Send
Use
This command is used tell RIP what version to sends its updates in for a specified interface. Can be sent in Version 1, Version 2, or both. Useful if you have a legacy host that runs RIP but only supports Version 1.
Syntax
Router(config-if)#ip rip send version <version> <version>
Example
In this example, we will configure RIP on R2 to send RIPv1 and RIPv2 updates to R1. First, we will configure RIPv2 for all interfaces on R2.
Notice how RIPv2 only allows RIPv2 packets to be sent
R2(config)#router rip R2(config)#do show ip protocols |
Next we will configure R1’s Fa0/0 to allow RIP to send either version 1 or version 2 packets.
R2(config-if)#int fa0/0 R2(config-if)#ip rip send version 1 2 |
Now RIP is able to send in both versions
R2(config-if)#do show ip protocols |