Using HSRP on Token Ring
Problem
You want to configure HSRP on a Token Ring.
Solution
You can use HSRP on a Token Ring LAN exactly the same as in Recipe 22.1 if the only protocol on the segment is IP. However, if you have any other protocols, and particularly if the ring uses any source-route bridging, you must use a slightly different configuration:
Router1#configure terminalEnter configuration commands, one per line. End with CNTL/Z. Router1(config)#interfaceRouter1(config-if)#Tokenring0ip addressRouter1(config-if)#172.22.1.3standby ipRouter1(config-if)#172.22.1.1standby use-biaRouter1(config-if)#standby priorityRouter1(config-if)#120standby preemptRouter1(config-if)#exitRouter1(config)#endRouter1#
The second router is configured similarly:
Router2#configure terminalEnter configuration commands, one per line. End with CNTL/Z. Router2(config)#interfaceRouter2(config-if)#Tokenring0ip addressRouter2(config-if)#172.22.1.2standby ipRouter2(config-if)#172.22.1.1standby use-biaRouter2(config-if)#standby priorityRouter2(config-if)#110standby preemptRouter2(config-if)#exitRouter2(config)#endRouter2#
Discussion
The biggest functional difference between a Token Ring LAN and an Ethernet LAN is that Token Ring bridging is usually source-routed, while Ethernet almost always uses transparent bridging. Consequently, Token Ring devices use a Routing Information Field (RIF), which contains MAC address information.
This is particularly important when the two HSRP routers reside ...