December 2006
Intermediate to advanced
1188 pages
72h 8m
English
You want to authenticate your RIP traffic to ensure that unauthorized equipment cannot affect how traffic is routed through your network.
The following set of commands enables plain-text RIP authentication:
Router1#configure terminalEnter configuration commands, one per line. End with CNTL/Z. Router1(config)#key chainRouter1(config-keychain)#ORAkeyRouter1(config-keychain-key)#1key-stringRouter1(config-keychain-key)#oreillyexitRouter1(config)#interfaceRouter1(config-subif)#FastEthernet0/0.1ip rip authentication key-chainRouter1(config-subif)#ORAip rip authentication mode textRouter1(config-subif)#exitRouter1(config)#endRouter1#
For greater security, Cisco routers can also use MD5-based authentication:
Router1#configure terminalEnter configuration commands, one per line. End with CNTL/Z. Router1(config)#key chainRouter1(config-keychain)#ORAkeyRouter1(config-keychain-key)#1key-stringRouter1(config-keychain-key)#oreillyexitRouter1(config)#interfaceRouter1(config-subif)#FastEthernet0/0.1ip rip authentication key-chainRouter1(config-subif)#ORAip rip authentication mode md5Router1(config-subif)#endRouter1#
RIP authentication is one of the protocol enhancements that appeared in Version 2. It is not available for Version 1.
The first configuration example in this recipe uses plain-text authentication. In general, we recommend using the MD5 authentication because the plain-text version is far too easy to break. ...
Read now
Unlock full access