- 论坛徽章:
- 0
|
我看了一个拨号服务器的配置:
Router:
hostname Router
enable secret 5 $1$EFqU$tYLJLrynNUKzE4bx6fmH//
!
interface Ethernet0
ip address 10.111.4.20 255.255.255.0
!
interface Async1
ip unnumbered Ethernet0
encapsulation ppp
keepalive 10
async mode interactive
peer default ip address pool Cisco2511-Group-142
!
ip local pool Cisco2511-Group-142 10.111.4.21 10.111.4.36
!
line con 0
exec-timeout 0 0
password cisco
!
line 1 16
modem InOut
modem autoconfigure discovery
flowcontrol hardware
!
line aux 0
transport input all
line vty 0 4
password cisco
!
end
而我的拨号服务器照着他的配(当然地址不一样)
由于我的2500的ios比较老
没有modem autoconfigure discovery 命令
所以我在配line时是这样配的
line X
modem InOut
transport input all
stopbits 1
rxspeed 38400
txspeed 38400
flowcontrol hardware
这样配了以后
客户端始终无法拨上,报远程主机无响应,折腾很长时间后
我在将黑体的地方改成async mode dedicated后拨号就好了
我觉得可能是因为原例中的line处配成modem autoconfigure discovery 后
必须配async mode interactive
而把line配成
line X
modem InOut
transport input all
stopbits 1
rxspeed 38400
txspeed 38400
flowcontrol hardware
后必须async mode dedicated
不知我这样理解对不对 |
|