MPLS on 2600XM Series Routers

MPLS on 2600XM Series Routers

I had difficulty finding an IOS version that would run MPLS on my 2611XM routers with 96MB RAM and 32MB flash, so thought I’d post the version that I’ve had success with.

The image that worked successfully was c2600-jk9o3s-mz.123-24.bin.

The routers are connected together on Fa0/1 on each router. Fa0/0 goes up to an ESXI box running two IOS XRv PE routers. It’s interesting to watch modern MPLS applications run over these old routers.

Due to the age of the IOS image, the default is Cisco’s TDP as opposed to LDP. Here’s the basic config I used to test MPLS:

R1

mpls label protocol ldp

interface Loopback0
  ip address 172.16.0.3 255.255.255.255

interface FastEthernet0/0
  ip address 10.0.0.9 255.255.255.252
  tag-switching ip

interface FastEthernet0/1
  ip address 10.0.0.6 255.255.255.252
  tag-switching ip

router ospf 1
  network 0.0.0.0 255.255.255.255 area 0

R2

mpls label protocol ldp

interface Loopback0
  ip address 172.16.0.2 255.255.255.255

interface FastEthernet0/0
  ip address 10.0.0.1 255.255.255.252
  tag-switching ip

interface FastEthernet0/1
  ip address 10.0.0.5 255.255.255.252
  tag-switching ip

router ospf 1
  network 0.0.0.0 255.255.255.255 area 0

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.