CISCO 3661
interface FastEthernet0/0
no ip address
service-policy output FE_MPLS
ip route-cache flow
duplex auto
speed auto
!
interface FastEthernet0/0.4
description -- TO MPLS PROVIDER --
bandwidth 2000
encapsulation dot1Q 12
ip address 192.168.100.6 255.255.255.252
ip access-group wan in
ip access-group wan_out out
!
ip route 192.168.30.0 255.255.255.252 192.168.100.5
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
CISCO 1751
interface Serial0/0
description --- Main Interface to Center -
no ip address
encapsulation frame-relay IETF
ip route-cache flow
no fair-queue
frame-relay traffic-shaping
frame-relay lmi-type ansi
hold-queue 10 out
!
interface Serial0/0.1 point-to-point
description --- to Center ---
bandwidth 128
ip address 192.168.30.2 255.255.255.252
frame-relay interface-dlci 696
class data128_2
!
ip route 0.0.0.0 0.0.0.0 192.168.30.1
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Как видно их кусков конфигов, то на рутере 1751 последняя миля использует
Frame Relay.
Проблема в QoS со стороны 1751 решена за счет интерфейса сериал с сервисной политикой.
А вот со стороны 3661 проблема в том что на выходе используется Ethernet и для включения
QoS поверх всего этого дела я вклинивал Tunnel:
policy-map t128
class class-default
shape average 128000
service-policy sub128
policy-map sub128
class voice
priority 96
1751
interface Tunnel0
bandwidth 128
ip address 192.168.30.6 255.255.255.252
service-policy output t128
tunnel source 192.168.30.2
tunnel destination 192.168.100.6
!
3661
interface Tunnel22
bandwidth 128
ip address 192.168.30.5 255.255.255.252
service-policy output t128
tunnel source 192.168.100.6
tunnel destination 192.168.30.2
!
P.S. А что такое bottleneck :)