Using STUN
Problem
You want to connect two serial devices through an IP network.
Solution
STUN provides the ability to emulate an SDLC circuit through an IP network. To simply connect two SDLC or two HDLC ports on different routers, you can use the following:
Stun-A#configure terminal
Enter configuration commands, one per line. End with CNTL/Z. Stun-A(config)#interface
Stun-A(config-if)#
Loopback0
ip address
Stun-A(config-if)#
10.1.15.5 255.255.255.252
exit
Stun-A(config)#stun peer-name
Stun-A(config)#
10.1.15.5
stun protocol-group
1
basic
Stun-A(config)#interface
Stun-A(config-if)#
Serial1
encapsulation stun
Stun-A(config-if)#nrzi-encoding
Stun-A(config-if)#clock rate
Stun-A(config-if)#
19200
stun group
Stun-A(config-if)#
1
stun route all tcp
Stun-A(config-if)#
10.1.15.9
exit
Stun-A(config)#end
Stun-A#
And this router would connect this serial port to a port on a second router that is configured as follows:
Stun-B#configure terminal
Enter configuration commands, one per line. End with CNTL/Z. Stun-B(config)#interface
Stun-B(config-if)#
Loopback0
ip address
Stun-B(config-if)#
10.1.15.9 255.255.255.252
exit
Stun-B(config)#stun peer-name
Stun-B(config)#
10.1.15.9
stun protocol-group
1
basic
Stun-B(config)#interface
Stun-B(config-if)#
Serial1
encapsulation stun
Stun-B(config-if)#nrzi-encoding
Stun-B(config-if)#clock rate
Stun-B(config-if)#
19200
stun group
Stun-B(config-if)#
1
stun route all tcp
Stun-B(config-if)#
10.1.15.5
exit
Stun-B(config)#end
Stun-B#
You can also do more interesting things with STUN. ...
Get Cisco IOS Cookbook, 2nd Edition now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.