RIP Interop between Different Hardware Platforms
RoUtermOnKey Discussion Forums
February 06, 2012, 02:25:52 PM *
Welcome, Guest. Please login or register.

Login with username, password and session length
News: Account registration is disabled for now. Some folks who want to advertise garbage on routermonkey.org are who you can thank!  Remember - this is a totally FREE site, If you vandalize the free info sites - they go away and then there is nobody to research the technology that you little script kiddies are using to hassle us.
 
   Home   Help Search Login Register  
Pages: [1]
  Print  
Author Topic: RIP Interop between Different Hardware Platforms  (Read 1200 times)
notoriousBG
Global Moderator
Sr. Member
*****
Posts: 308


No! Monkey


« on: August 15, 2007, 06:33:32 PM »

Recently I had a colleague who was trying to pass RIP v2 updates from a Cisco 4500 router to an Extreme Summit48 without any success.

In the following debug example on the Cisco you see that RIP is using a multicast address to send its updates.

Aug 15 17:59:41: RIP: sending v2 update to 224.0.0.9 via Ethernet0 (192.168.99.26)
Aug 15 17:59:41: RIP: build update entries
Aug 15 17:59:41:        0.0.0.0/0 via 0.0.0.0, metric 2, tag 0
Aug 15 17:59:41:        1.1.1.1/32 via 0.0.0.0, metric 2, tag 0
Aug 15 17:59:41:        1.1.1.2/32 via 0.0.0.0, metric 2, tag 0

A quick workaround I suggested to him was to use the “neighbor” statement in the RIP process to force the updates to be unicast, this worked like a charm.

Example:
router rip
 version 2
 redistribute static
 network 192.168.99.0
 neighbor 192.168.99.25
 default-metric 2
 no auto-summary


Also, make sure on the Extreme side you are not filtering RIP.

Example:
config rip add vlan "vlan100"
config rip txmode v2only vlan "vlan100"
config rip rxmode v2only vlan "vlan100"
config rip vlan "vlan100" trusted-gateway None
config rip vlan "vlan100" import-filter None
config rip vlan "vlan100" export-filter None

Probably could have just turned up multicast on the Extreme interface adjacent to the Cisco.  Anyone out there running this scenario?

Regards.
-noto
« Last Edit: November 02, 2007, 01:26:38 AM by notoriousBG » Logged
CCIE2008
Newbie
*
Posts: 7


Grrrr - Give me all your routers!


« Reply #1 on: August 17, 2007, 12:35:17 AM »

That was lazy - just fire up multicast on the Extreme through the GUI.  This is done under the "ipforwarding" section.  That should have worked for your friends problem.

Cheers
« Last Edit: November 02, 2007, 01:31:00 AM by notoriousBG » Logged
notoriousBG
Global Moderator
Sr. Member
*****
Posts: 308


No! Monkey


« Reply #2 on: September 11, 2007, 10:32:45 PM »

K - dunno till now.  Like I said, this was just a "quick fix" suggestion but indeed you were right.

I bought an Extreme Summit24e3 on eBay and configured it as seen in the code example and infact it did behave properly.  I also had to add the rip global command "enable rip export direct cost 2 tag 0" to get the extreme and the cisco to play nice, you didn't mention that?

Here is my config example:

Code:
:
<<< Log from 10.0.107.13 started September 11, 2007, 22:11:36 >>>
Summit24e3:2 # sh config                                                           

#                                                                                 
# Summit24e3 Configuration generated Wed Sep 12 03:11:34 2007                     
# Software Version 6.2e.0 (Build 10)   By Release_Master on Wed 05/29/2002  15:22:5
1                                                                                 

create vlan "vlan2"                                                               
create vlan "vlan3"                                                               
create vlan "vlan101"                                                             
#                                                                                 
#                                                                                 
#                                                                                 
# Config information for VLAN Default.                                             
config vlan "Default" tag 1     # VLAN-ID=0x1  Global Tag 1                       
config vlan "Default" ipaddress 192.168.11.1 255.255.255.0                         
configure vlan "Default" add port 24 untagged                                     
configure vlan "Default" add port 24 mac-limit no-limit                           
#                                                                                 
#                                                                                 
#                                                                                 
#                                                                                 
#                                                                                 
# Config information for VLAN vlan2.                                               
config vlan "vlan2" tag 2     # VLAN-ID=0x2  Global Tag 3                         
config vlan "vlan2" ipaddress 192.168.12.1 255.255.255.0                           
configure vlan "vlan2" add port 23 untagged                                       
configure vlan "vlan2" add port 23 mac-limit no-limit                             
#                                                                                 
#                                                                                 
#                                                                                 
# Config information for VLAN vlan3.                                               
config vlan "vlan3" tag 3     # VLAN-ID=0x3  Global Tag 4                         
config vlan "vlan3" ipaddress 192.168.13.1 255.255.255.0                           
configure vlan "vlan3" add port 22 untagged                                       
configure vlan "vlan3" add port 22 mac-limit no-limit                             
#                                                                                 
#                                                                                 
#                                                                                 
# Config information for VLAN vlan101.                                             
config vlan "vlan101" tag 101     # VLAN-ID=0x65  Global Tag 5                     
config vlan "vlan101" ipaddress 172.30.100.17 255.255.255.248                     
configure vlan "vlan101" add port 1 untagged                                       
configure vlan "vlan101" add port 1 mac-limit no-limit                             
#                                                                                 
#                                                                                 
# Syslog configuration                                                             
configure syslog add 10.0.107.13 local7 debug                                     
enable syslog                                                                     
# SNMP Configuration                                                               

configure snmp delete community readonly all                                       
configure snmp delete community readwrite all                                     
configure snmp add community readonly encrypted "<removed>"                           
configure snmp delete community readwrite encrypted "<removed>"                     
configure snmp sysName "Summit24e3"                                               
disable dlcs port 1                                                               
configure port 1 auto on                                                           
enable edp port 1                                                                 
disable dlcs port 2                                                               
configure port 2 auto on                                                           
enable edp port 2                                                                 
disable dlcs port 3                                                               
configure port 3 auto on                                                           
enable edp port 3                                                                 
disable dlcs port 4                                                               
configure port 4 auto on                                                           
enable edp port 4                                                                 
disable dlcs port 5                                                               
configure port 5 auto on                                                           
enable edp port 5                                                                 
#                                                                                 
#                                                                                 
disable dlcs port 6                                                               
configure port 6 auto on                                                           
enable edp port 6                                                                 
disable dlcs port 7                                                               
configure port 7 auto on                                                           
enable edp port 7                                                                 
disable dlcs port 8                                                               
configure port 8 auto on                                                           
enable edp port 8                                                                 
disable dlcs port 9                                                               
configure port 9 auto on                                                           
enable edp port 9                                                                 
disable dlcs port 10                                                               
configure port 10 auto on                                                         
enable edp port 10                                                                 
#                                                                                 
#                                                                                 
disable dlcs port 11                                                               
configure port 11 auto on                                                         
enable edp port 11                                                                 
disable dlcs port 12                                                               
configure port 12 auto on                                                         
enable edp port 12                                                                 
disable dlcs port 13                                                               
configure port 13 auto on                                                         
enable edp port 13                                                                 
disable dlcs port 14                                                               
configure port 14 auto on                                                         
enable edp port 14                                                                 
disable dlcs port 15                                                               
configure port 15 auto on                                                         
enable edp port 15                                                                 
#                                                                                 
#                                                                                 
disable dlcs port 16                                                               
configure port 16 auto on                                                         
enable edp port 16                                                                 
disable dlcs port 17                                                               
configure port 17 auto on                                                         
enable edp port 17                                                                 
disable dlcs port 18                                                               
configure port 18 auto on                                                         
enable edp port 18                                                                 
disable dlcs port 19                                                               
configure port 19 auto on                                                         
enable edp port 19                                                                 
disable dlcs port 20                                                               
configure port 20 auto on                                                         
enable edp port 20                                                                 
#                                                                                 
#                                                                                 
disable dlcs port 21                                                               
configure port 21 auto on                                                         
enable edp port 21                                                                 
disable dlcs port 22                                                               
configure port 22 auto on                                                         
enable edp port 22                                                                 
disable dlcs port 23                                                               
configure port 23 auto on                                                         
enable edp port 23                                                                 
disable dlcs port 24                                                               
configure port 24 auto on                                                         
enable edp port 24                                                                 
disable dlcs port 25                                                               
configure port 25 auto on                                                         
enable edp port 25                                                                 
#                                                                                 
#                                                                                 
disable dlcs port 26                                                               
configure port 26 auto on                                                         
enable edp port 26                                                                 
#                                                                                 
#                                                                                 

# Spanning tree information                                                       
enable stpd s0 port 1                                                             
configure stpd s0 port cost 100 1                                                 
enable stpd s0 port 22                                                             
configure stpd s0 port cost 19 22                                                 
enable stpd s0 port 23                                                             
configure stpd s0 port cost 19 23                                                 
enable stpd s0 port 24                                                             
configure stpd s0 port cost 19 24                                                 
#                                                                                 
#                                                                                 

# MAC FDB configuration and static entries                                         

# -- IP Interface[0] = "Default"                                                   
enable ipforwarding vlan Default                                                   

# -- IP Interface[1] = "vlan2"                                                     
enable ipforwarding vlan vlan2                                                     

# -- IP Interface[2] = "vlan3"                                                     
enable ipforwarding vlan vlan3                                                     

# -- IP Interface[3] = "vlan101"                                                   
enable ipforwarding vlan vlan101                                                   

# Global IP settings.                                                             
#                                                                                 
#                                                                                 
#                                                                                 
# IP ARP Configuration                                                             
#                                                                                 
# IP Route Configuration                                                           
#                                                                                 
#                                                                                 
# Multicast configuration                                                         
enable ipmcforwarding vlan101                                                     
enable ipmcforwarding vlan3                                                       
enable ipmcforwarding vlan2                                                       
enable ipmcforwarding Default                                                     
#                                                                                 
#                                                                                 
# RIP interface configuration                                                     
config rip add vlan vlan101                                                       
config rip rxmode v2only vlan vlan101                                             
config rip add vlan vlan3                                                         
config rip rxmode v2only vlan vlan3                                               
config rip add vlan vlan2                                                         
config rip rxmode v2only vlan vlan2                                               
config rip add vlan Default                                                       
config rip txmode v1comp vlan Default                                             
# RIP global parameter configuration                                               
enable rip export static cost 2 tag 0                                             
enable rip export direct cost 2 tag 0                                             
enable rip originate-default cost 2 tag 0                                         
# RIP Global enable/disable state                                                 
enable rip                                                                         
#                                                                                 
#                                                                                 

# SNTP client configuration                                                       

# Mac Vlan Configurations                                                         
#                                                                                 
#                                                                                 

#                                                                                 
# End of configuration file for "Summit24e3".                                     
#                                                                                 
Summit24e3:3 #                                                                     
<<< Log from 10.0.107.13 ended September 11, 2007, 22:11:52 >>>
« Last Edit: November 02, 2007, 01:31:12 AM by notoriousBG » Logged
notoriousBG
Global Moderator
Sr. Member
*****
Posts: 308


No! Monkey


« Reply #3 on: September 11, 2007, 11:05:31 PM »

By the way CCIE2008, no GUI that I could find on the Summit24e3 (cause using a GUI is lazy) j/k Smiley

I do appreciate you pitching in on our forums!

-noto
« Last Edit: November 02, 2007, 01:31:33 AM by notoriousBG » Logged
CCIE2008
Newbie
*
Posts: 7


Grrrr - Give me all your routers!


« Reply #4 on: November 14, 2007, 01:21:21 AM »

I see that!

Also like the config examples you've added for the RIP topic! Do you have more Rip redistribution sample configs?

Later
« Last Edit: November 14, 2007, 01:24:20 AM by CCIE2008 » Logged
notoriousBG
Global Moderator
Sr. Member
*****
Posts: 308


No! Monkey


« Reply #5 on: November 15, 2007, 01:59:47 PM »

Hi, CCIE2008!

I have some lab configs that need to be slightly sanitized & then can be posted.  Relevent routing protocols will be; RIP, OSPF, BGP4 and RIPv6.  Would like to have some discussion on ISIS at some point if there are any ISIS veterans out there that want to contribute.  It will be some time before I can get to that in the Ankeny Lab.

BTW, I've created a new section called "Files" and a subsection called "Lab Scenarios/Configuration Samples" which will contain labs that I've worked on.  My most recent lab is posted right now.  They are what they are and there is no implied warranty Smiley

Regards,
-noto
« Last Edit: November 15, 2007, 02:05:12 PM by notoriousBG » Logged
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.3 | SMF © 2006-2007, Simple Machines LLC Valid XHTML 1.0! Valid CSS!