하나의 네트워크에 IPIP 터널을 통과하여 서버에 연결되는 SIP 전화가 있습니다.
다음과 같이 적절한 VOIP 트래픽을 감시하도록 QOS 규칙을 설정했습니다.
class-map match-any class-voice
description Voice
match dscp af11
match dscp cs4
match dscp cs3
!
policy-map qos-out
class class-voice
priority 100
!
interface Tunnel1
description Tunnel to VOIP Server
ip address 10.10.0.2 255.255.255.252
tunnel source FastEthernet0/1
tunnel destination 172.16.100.100
tunnel mode ipip
!
interface FastEthernet0/1
description Internet
bandwidth 1000
ip address dhcp
service-policy output qos-out
문제는 터널 맵에 정책을 할당 할 수 없기 때문에 클래스 맵이 일치하지 않고 FastEthernet0 / 1 만 발생한다는 것입니다.
분명히이 일을 할 수있는 무언가가 있어야합니다 ... 어떻게해야합니까?