Ключевые слова:cisco, modem, dialup, backup, link, serial, (найти похожие документы)
From: ВОЛКА <BOJIKA@mailru.com.>
Newsgroups: http://cisco.far.ru
Date: Mon, 20 Apr 2005 18:21:07 +0000 (UTC)
Subject: Резервный линк через dialup на Cisco
Оригинал: http://cisco.far.ru/backup.shtml
Задача состояла в следующем:
Есть циска 2610 + модем, по Serial0/0 подключена к инету. Иногда этот
канал падает. В этом случае требуется обеспечить доступ локальной сети
в internet по dialup`у. Циска должна звонить в инет при падении
Serial0/0 и разрывать соединение при его восстановлении.
Предложено решение: Настроить Backup на Serial0/1+DDR+NAT
version 12.0
service timestamps debug uptime
service timestamps log uptime
no service password-encryption
!
hostname Router
!
enable secret 5 ****
!
!
!
!
!
memory-size iomem 10
ip subnet-zero
ip host modem 2002 10.0.0.1
!
!
!
!
voice-port 1/0/0
!
voice-port 1/0/1
!
voice-port 1/1/0
!
voice-port 1/1/1
!
process-max-time 200
!
interface Ethernet0/0
ip address 10.0.0.1 255.255.255.0
no ip directed-broadcast
ip nat inside
!
interface Serial0/0
backup delay 60 30
backup interface Serial0/1
ip address 192.168.100.1 255.255.255.0
no ip directed-broadcast
encapsulation ppp
!
interface Serial0/1
physical-layer async
ip address negotiated
no ip directed-broadcast
ip nat outside
encapsulation ppp
dialer in-band
dialer string P9955555
dialer-group 1
async mode dedicated
no fair-queue
no cdp enable
ppp authentication pap callin
ppp pap sent-username guest password 7 082C585B
!
interface Serial0/2
no ip address
no ip directed-broadcast
shutdown
!
interface Serial0/3
no ip address
no ip directed-broadcast
shutdown
!
ip nat inside source list 100 interface Serial0/1 overload
ip classless
ip route 0.0.0.0 0.0.0.0 Serial0/0
ip route 0.0.0.0 0.0.0.0 Serial0/1 201
no ip http server
!
access-list 100 permit ip any any
dialer-list 1 protocol ip permit
!
!
line con 0
transport input none
line 2
autoselect ppp
modem InOut
modem autoconfigure type codex_3260
transport input all
stopbits 1
speed 38400
flowcontrol hardware
line aux 0
line vty 0 4
password ***
login
!
!
no scheduler allocate
end