亚洲av成人无遮挡网站在线观看,少妇性bbb搡bbb爽爽爽,亚洲av日韩精品久久久久久,兔费看少妇性l交大片免费,无码少妇一区二区三区

  免費(fèi)注冊(cè) 查看新帖 |

Chinaunix

  平臺(tái) 論壇 博客 文庫(kù)
最近訪問板塊 發(fā)新帖
查看: 5177 | 回復(fù): 2
打印 上一主題 下一主題

Configuring BRI Backup Interface with Dialer Profiles [復(fù)制鏈接]

論壇徽章:
1
榮譽(yù)版主
日期:2011-11-23 16:44:17
跳轉(zhuǎn)到指定樓層
1 [收藏(0)] [報(bào)告]
發(fā)表于 2002-06-27 16:58 |只看該作者 |倒序?yàn)g覽
Configuration

This configuration uses a BRI circuit to backup a serial link. It also uses the Open Shortest Path First (OSPF) routing protocol between the two routers. Once the backup connection is activated, you must ensure that the routing table is updated to use the new backup link. Only one side (maui-soho-01) is configured to dial out. The other side (maui-nas-05) is configured to accept the call.

In this configuration we have a Cisco 1604 router connected to a Cisco 3640 router using a serial connection. Both routers are also equipped with BRI interfaces that will be used for the backup link. The Cisco 1604 is running Cisco IOS

論壇徽章:
1
榮譽(yù)版主
日期:2011-11-23 16:44:17
2 [報(bào)告]
發(fā)表于 2002-06-27 17:03 |只看該作者

Configuring BRI Backup Interface with Dialer Profiles

  有沒有實(shí)例!兩邊都使用isdn的話,雙方如何配置?

論壇徽章:
1
榮譽(yù)版主
日期:2011-11-23 16:44:17
3 [報(bào)告]
發(fā)表于 2002-06-27 17:11 |只看該作者

Configuring BRI Backup Interface with Dialer Profiles

剛才貼錯(cuò)了:)
maui-soho-01 (1600)

maui-soho-01#show running-config
Building configuration...

Current configuration : 1687 bytes
!
version 12.1
no service single-slot-reload-enable
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname maui-soho-01
!
logging rate-limit console 10 except errors
aaa new-model
aaa authentication login default local
aaa authentication login NO_AUTHEN none
aaa authentication ppp default local
!--- basic AAA configuration for ppp calls
enable secret 5 <deleted>;
!
username maui-nas-05 password 0 cisco
!--- username for remote router (maui-nas-05) and shared secret(used for
!--- CHAP authentication)
!--- shared secret must be the same on both sides
ip subnet-zero
no ip finger
!
isdn switch-type basic-ni
!
interface Loopback0
ip address 172.17.1.1 255.255.255.0
!--- The loopback address will be used by OSPF for the router ID.
!
interface Ethernet0
ip address 172.16.1.1 255.255.255.0
!
interface Serial0
!--- Primary Interface
backup delay 10 30
!--- Backup link will be activated 10 seconds after primary link goes down.
!--- Backup link will be deactivated 30 seconds after primary link is restored.
backup interface Dialer1
!--- Interface Dialer 1 will provide backup.
ip address 192.168.10.2 255.255.255.252
encapsulation ppp
no fair-queue
clockrate 64000
ppp authentication chap
!
interface BRI0
ip unnumbered Loopback0
!--- unnumbered to the Loopback 0 address
encapsulation ppp
dialer pool-member 10
!--- Assign BRI0 as member of dialer pool 10.
!--- Dialer pool 10 is specified in interface Dialer 1.
isdn switch-type basic-ni
isdn spid1 51255511110101 5551111
isdn spid2 51255511120101 5551112
ppp authentication chap
!--- Use ppp chap authentication.
ppp multilink
!
interface Dialer1
!--- Dialer 1 provides backup for the serial link.
ip address 172.20.10.2 255.255.255.0
!--- Address for the dialer interface.
!--- The remote side dialer interface is in the same subnet.
encapsulation ppp
dialer pool 10
!--- defines Dialer pool 10
!--- BRI 0 is a member of this pool.
dialer remote-name maui-nas-05
!--- specifies remote router name
!--- This name must match that used by the remote router to authenticate itself.
dialer idle-timeout 900
!--- Idle timeout is set to 900 seconds (15 minutes).
!--- The link will be disconnected if there is no interesting traffic for 900 secs.
!--- Since OSPF hellos are interesting traffic, this will reset the idle timeout
!--- and cause the link to stay up until the primary link is restored.
dialer string 5552222
!--- defines the destination routers phone number
dialer load-threshold 80 outbound
!--- This sets the outbound load level for traffic at which
!---additional connections will be added to the MP bundle load level.
!--- Values range from 1 (unloaded) to 255 (fully loaded). The threshold
!--- in this case is 80/255=32%.
dialer-group 1
!--- apply interesting traffic definition from dialer-list 1
ppp authentication chap
!--- use ppp chap authentication
ppp multilink
!
router ospf 5
log-adjacency-changes
network 172.16.1.0 0.0.0.255 area 0
network 172.17.1.0 0.0.0.255 area 0
network 172.20.10.0 0.0.0.255 area 0
network 192.168.10.0 0.0.0.3 area 0
!
ip classless
no ip http server
!
dialer-list 1 protocol ip permit
!--- All IP traffic is designated as interesting.
!--- This is applied to Interface Dialer 1 using dialer-group 1.
!--- OSPF hello packets will trigger the dial.
!
line con 0
exec-timeout 0 0
login authentication NO_AUTHEN
transport input none
line vty 0 4
!
end

maui-nas-05 (3640)

maui-nas-05#show running-config
Building configuration...

Current configuration:
!
version 12.1
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname maui-nas-05
!
aaa new-model
aaa authentication login default local
aaa authentication login NO_AUTHEN none
aaa authentication ppp default local
!--- basic AAA configuration for ppp calls
enable secret 5 <deleted>;
!
username maui-soho-01 password 0 cisco
!--- username for remote router (maui-soho-01) and shared secret
!---(used for CHAP authentication)
!--- shared secret must be the same on both sides
ip subnet-zero
!         
isdn switch-type basic-ni
!
interface Loopback0
ip address 172.22.1.1 255.255.255.0
!--- The loopback address will be used by OSPF for the router ID.
!
interface Ethernet0/0
ip address 172.22.53.105 255.255.255.0
!
interface Ethernet0/1
no ip address
shutdown
!
interface BRI1/0
ip unnumbered Loopback0
!--- unnumbered to the Loopback 0 address
encapsulation ppp
dialer pool-member 20
!--- Assign BRI0 as member of dialer pool 20.
!--- Dialer pool 20 is specified in interface Dialer 1.
isdn switch-type basic-ni
isdn spid1 51255522220101 5552222
isdn spid2 51255522230101 5552223
ppp authentication chap
!--- Use ppp chap authentication.
ppp multilink
!
! <<-- Unused interface configurations have been removed.
!
interface Serial2/0
!--- primary interface
ip address 192.168.10.1 255.255.255.252
encapsulation ppp
no fair-queue
ppp authentication chap
!
! <<--Unused interface configurations have been removed.
!
interface Dialer1
!--- Dialer 1 provides backup for the serial link.
ip address 172.20.10.1 255.255.255.0
!--- address for the dialer interface
!--- The remote side dialer interface is in the same subnet.
encapsulation ppp
dialer remote-name maui-soho-01
!--- specifies remote router name
!--- This name must match that used by the remote router to authenticate itself.
dialer pool 20
!--- defines dialer pool 20
dialer idle-timeout 900
!--- Idle timeout is set to 900 seconds (15 minutes).
!--- This is equal to the idle timeout set on maui-soho-01.
Dialer max-call 4096
dialer-group 1
!--- apply interesting traffic definition from dialer-list 1.
ppp authentication chap
!--- Use ppp chap authentication.
ppp multilink
!
router ospf 5
network 172.20.10.0 0.0.0.255 area 0
network 172.22.1.0 0.0.0.255 area 0
network 172.22.53.0 0.0.0.255 area 0
network 192.168.10.0 0.0.0.3 area 0
default-information originate
!--- transmit ospf default information
!--- This may be required for remote router to use the BRI DDR link.
!
ip classless
ip route 0.0.0.0 0.0.0.0 Ethernet0/0
no ip http server
!
dialer-list 1 protocol ip permit
!--- All IP traffic is designated as interesting.
!--- This is applied to Interface Dialer 1 using dialer-group 1.
!
line con 0
login authentication NO_AUTHEN
transport input none
line 97 102
line aux 0
line vty 0 4
!
end


您需要登錄后才可以回帖 登錄 | 注冊(cè)

本版積分規(guī)則 發(fā)表回復(fù)

  

北京盛拓優(yōu)訊信息技術(shù)有限公司. 版權(quán)所有 京ICP備16024965號(hào)-6 北京市公安局海淀分局網(wǎng)監(jiān)中心備案編號(hào):11010802020122 niuxiaotong@pcpop.com 17352615567
未成年舉報(bào)專區(qū)
中國(guó)互聯(lián)網(wǎng)協(xié)會(huì)會(huì)員  聯(lián)系我們:huangweiwei@itpub.net
感謝所有關(guān)心和支持過ChinaUnix的朋友們 轉(zhuǎn)載本站內(nèi)容請(qǐng)注明原作者名及出處

清除 Cookies - ChinaUnix - Archiver - WAP - TOP