Добрый день уважаемые.
Возникла тут задачка по OSPF.
Сначала вводная: есть две площадки - головной офис и филиал. Между ними есть два канала - основной и, соответственно резервный. Дабы резервный не болтался просто так и заодно снизить нагрузку на основной канал есть идея пустить по нему голосовой трафик от VoIP.
Теперь собственно задача: каким образом зарулить трафик из определенной сетки в резервный канал средствами OSPF, не используя для этого статику и route-map (такое вот требование руководства).
Пятый день курю документацию, но каменный цветок чего-то не выходит. Если уважаемые помогут направлением копания, либо другим каким ценным советом - буду очень благодарен!Конфиги:
10.10.100.0 - LAN головного офиса
10.110.100.0 - VoIP сеть головного офиса
10.20.100.0 - LAN филиала
10.220.100.0 - VoIP сеть филиала
192.168.1.0 - ISP 1
192.168.2.0 - ISP 2
Головной офис:
<skip>
!
interface Tunnel1
description ISP 1
ip address 10.0.0.2 255.255.255.252
ip ospf cost 5
qos pre-classify
keepalive 10 3
tunnel source FastEthernet0/0
tunnel destination 192.168.1.1
!
interface Tunnel2
description ISP 2
ip address 10.0.2.2 255.255.255.252
ip ospf cost 10
qos pre-classify
keepalive 10 3
tunnel source FastEthernet0/1
tunnel destination 192.168.2.1
!
interface FastEthernet0/0
description ISP 1
ip address 192.168.1.2 255.255.255.252
duplex auto
speed auto
!
interface FastEthernet0/1
description ISP 2
ip address 192.168.2.2 255.255.255.252
duplex auto
speed auto
!
interface FastEthernet1/0
no ip address
shutdown
duplex auto
speed auto
!
interface FastEthernet1/1
no ip address
shutdown
duplex auto
speed auto
!
interface loopback0
ip address 10.10.100.1 255.255.255.0
!
interface Loopback1
ip address 10.110.100.1 255.255.255.0
!
router ospf 1
router-id 10.10.100.1
log-adjacency-changes
redistribute connected subnets
redistribute static subnets
network 10.0.0.0 0.0.0.255 area 0
!
router ospf 2
router-id 10.110.100.1
log-adjacency-changes
redistribute connected subnets
redistribute static subnets
network 10.0.2.0 0.0.0.255 area 0
!
ip classless
!!!ip route 0.0.0.0 0.0.0.0 10.0.0.1
!!!ip route 0.0.0.0 0.0.0.0 10.0.2.1 200
!!!ip route 10.110.0.0 255.240.0.0 10.0.2.1
!
<skip>
!
end
===================================
!
hostname Filial
!
<skip>
!
interface Tunnel1
description ISP 1
ip address 10.0.0.1 255.255.255.252
qos pre-classify
keepalive 10 3
tunnel source FastEthernet0/0
tunnel destination 192.168.1.2
!
interface Tunnel2
description ISP 2
ip address 10.0.2.1 255.255.255.252
qos pre-classify
keepalive 10 3
tunnel source FastEthernet0/1
tunnel destination 192.168.2.2
!
interface FastEthernet0/0
description ISP 1
ip address 192.168.1.1 255.255.255.252
duplex auto
speed auto
!
interface FastEthernet0/1
description ISP 2
ip address 192.168.2.1 255.255.255.252
duplex auto
speed auto
!
interface FastEthernet1/0
no ip address
shutdown
duplex auto
speed auto
!
interface FastEthernet1/1
no ip address
shutdown
duplex auto
speed auto
!
interface Loopback0
ip address 10.20.100.1 255.255.255.0
!
interface Loopback1
ip address 10.220.100.1 255.255.255.0
!
router ospf 1
router-id 10.20.100.1
log-adjacency-changes
redistribute connected subnets
redistribute static subnets
passive-interface Tunnel2
network 10.0.0.0 0.0.0.255 area 0
network 10.20.100.0 0.0.0.255 area 0
!
router ospf 2
router-id 10.220.100.1
log-adjacency-changes
redistribute connected subnets
redistribute static subnets
passive-interface Tunnel1
network 10.0.2.0 0.0.0.255 area 0
network 10.220.100.0 0.0.0.255 area 0
!
ip classless
!
!!!ip route 0.0.0.0 0.0.0.0 10.0.0.2
!!!ip route 0.0.0.0 0.0.0.0 10.0.2.2 200
!!!ip route 10.160.0.0 255.240.0.0 10.0.2.2
!
<skip>
!
end