Router 1 version 11.1 service udp-small-servers service tcp-small-servers ! hostname Router1 ! interface Ethernet0 no ip address shutdown ! interface Serial0 no ip address shutdown ! interface Serial1 no ip address shutdown ! interface Async1 !---将拨号端口分配给AUX口 !---具体的拨号端口号码可以用#sh line 来查看AUX口的line号 ip address 192.168.0.1 255.255.255.0 !---两台路由器设的地址必须在一个子网里面 encapsulation ppp !---用PPP来封装数据包 async dynamic routing !---答应在此线路上运行路由协议 async mode dedicated ! no ip classless ip route 0.0.0.0 0.0.0.0 Async1 !---将async1设置为默认路由端口 logging buffered ! line con 0 exec-timeout 0 0 line aux 0 !---配置AUX的链路层属性 modem InOut transport input all !---在此线路上答应跑所有协议--此点非常重要,切记! rxspeed 38400 !---设置Rx速率 (这个设置两台路由器必须一致) txspeed 38400 !---设置Tx速率 (这个设置两台路由器必须一致) flowcontrol hardware line vty 0 4 login ! end
-------------------------------------------------
Router 2 version 11.1 service udp-small-servers service tcp-small-servers ! hostname Router1 ! interface Ethernet0 no ip address shutdown ! interface Serial0 no ip address shutdown ! interface Serial1 no ip address shutdown ! interface Async1 !---将拨号端口分配给AUX口 !---具体的拨号端口号码可以用#sh line 来查看AUX口的line号 ip address 192.168.0.2 255.255.255.0 !---两台路由器设的地址必须在一个子网里面 encapsulation ppp !---用PPP来封装数据包 async dynamic routing !---答应在此线路上运行路由协议 async mode dedicated ! no ip classless ip route 0.0.0.0 0.0.0.0 Async1 !---将async1设置为默认路由端口 logging buffered ! line con 0 exec-timeout 0 0 line aux 0 !---配置AUX的链路层属性 modem InOut transport input all !---在此线路上答应跑所有协议--此点非常重要,切记! rxspeed 38400 !---设置Rx速率 (这个设置两台路由器必须一致) txspeed 38400 !---设置Tx速率 (这个设置两台路由器必须一致) flowcontrol hardware line vty 0 4 login ! end
假如出现问题,如何调试呢?可以使用如下命令来查看: show line show line aux 0 shutdown和no shutdown来开始和重制aux口的状态 debug ppp negotiation 查看ppp的状态 好了,就写这么多了,愿大家都能调试成功! 遗憾:我试过用动态路由,比如rip,igrp,eigrp,ospf;但都不支持啊!看来这个功能还不是很强大啊!