利用Cisco2611实现163拨号( 二 )


interface Serial0/1
physical-layer async
ip address negotiated //IP地址协商
no ip directed-broadcast
ip nat outside
encapsulation ppp //端口封装PPP
dialer in-band //支持DDR(按需拨号)
dialer string 163 //拨号电话163
dialer hold-queue 10
dialer-group 1
async default routing 
async mode interactive
ppp authentication pap callin
ppp pap sent-username 163 password 163
ip nat inside source list 2 interface Serial0/1 overload //复用动态地址转换
ip classless
ip route 0.0.0.0 0.0.0.0 Serial0/1 140 // 添加一个缺省路由
Access-list 2 permit any //答应内部网络访问
dialer-list 1 protocol ip permit
line 2
modem InOut
modem autoconfigure discovery
speed 115200
flowcontrol hardware
line vty 0 4
login local
end
三、常用调试方法
由于网络连接涉及多种设备,调测过程中经常会出现各种各样的问题,为了便于分析了解故障原因,需要一些调试手段,常见的调试命令为:
l debug modem
l debug chat-script
l debug dialer
l debug ppp negotiation
l show interface s0/0(s0/1) //显示端口状态
l show ip route //观测路由是否生成
l ping IP地址
由于网络设备的限制,本次测试仅限于Cisco2611路由器,该配置亦适用于1600系列、2500系列、3600系列路由器 。

推荐阅读