Задача - пустить трафик от двух разных узлов через одну циску на два разных канала от одного провайдера, подключенных через PPPoE. Сделал всю как по учебнику, нивкакую не хочет. В чем можэет быть затыка?локальный адрес циски: 192.168.0.13
узел1: 192.168.0.11
узел1: 192.168.0.12
sh ver - Cisco IOS Software, C880 Software (C880DATA-UNIVERSALK9_NPE-M), Version 15.1(1)T1, RELEASE SOFTWARE (fc2)
version 15.1
no service pad
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname test
!
boot-start-marker
boot-end-marker
!
!
no aaa new-model
memory-size iomem 10
ip source-route
!
!
!
!
no ip cef
no ipv6 cef
!
!
!
!
license udi pid CISCO881-K9 sn FCZ1435C0H6
!
!
!
!
!
!
!
!
interface FastEthernet0
!
interface FastEthernet1
!
interface FastEthernet2
!
interface FastEthernet3
!
interface FastEthernet4
no ip address
duplex auto
speed auto
pppoe-client dial-pool-number 2
pppoe-client dial-pool-number 1
!
interface Vlan1
ip address 192.168.0.13 255.255.255.0
ip nat inside
ip virtual-reassembly
!
interface Dialer1
ip address negotiated
ip mtu 1492
ip nat outside
ip virtual-reassembly
encapsulation ppp
ip policy route-map map1
dialer pool 1
dialer-group 1
ppp authentication chap callin
ppp chap hostname login
ppp chap password 0 pass
no cdp enable
!
interface Dialer2
ip address negotiated
ip mtu 1492
ip nat outside
ip virtual-reassembly
encapsulation ppp
ip policy route-map map2
dialer pool 2
dialer-group 2
ppp authentication chap callin
ppp chap hostname login2
ppp chap password 0 pass2
no cdp enable
!
ip forward-protocol nd
no ip http server
no ip http secure-server
!
ip nat inside source route-map map1 interface Dialer1 overload
ip nat inside source route-map map2 interface Dialer2 overload
!
access-list 1 permit 192.168.0.11
access-list 2 permit 192.168.0.12
!
!
!
!
route-map map1 permit 10
match ip address 1
set interface Dialer1
!
route-map map2 permit 10
match ip address 2
set interface Dialer2
!
!
control-plane
!
!
line con 0
no modem enable
line aux 0
line vty 0 4
login
transport input all
!
end