Hide a Token Ring router

Hello,
my current frame relay switch is a Token Ring router (see My current lab English). Once a frame relay switch is configured there is no need to reach it any more. But what about messages on the main syslog server from the frame relay switch and the correct time on the this switch. Not so easy for a Token Ring router in an Ethernet router environment.

The solution is easy (it is always easy when you are writing a blog post about a problem that you already solved). My frame relay switch is a Cisco 2521 and this is, you will guess it, a Token Ring router. I also use a Cisco 2501 router in my lab. Both routers have an AUX port and so I connect both routers together using a (so called) rollover English cable. For the configuration that enables routing on both AUX ports see Using the AUX port to connect two routers English.

On the Token Ring router (aka frame relay switch aka 2521) we need two static routes.

ip route 192.168.1.0 255.255.255.0 Async4
ip route 0.0.0.0 0.0.0.0 192.168.1.1

The first route is a static route to my Ethernet network and the second a static route to the default gateway of this network. (The IP address 192.168.1.1 belongs to my DSL router.)

On the other router (aka 2501) we need three extra lines to hide the Token Ring router.

!
interface Ethernet0
 [...]
 ip nat outside
 [...]
!
interface Async1
 description from aux to aux r2521a
 ip address 192.168.255.253 255.255.255.252
 ip nat inside
 [...]
!
ip nat inside source static 192.168.255.254 192.168.1.254
!

Yes, it is only a simple “static nat insde” line. But this line does the trick! With this trick the Token Ring router is hiding behind an IP address that belongs to my Ethernet IP address range.

HTH!
Bye, Tore



This entry was posted in Cisco, General and tagged , , , . Bookmark the permalink.

Leave a Reply

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