1つのネットワーク上に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
私の問題は、ポリシーをTunnel1に割り当てることができないため、クラスマップが一致しないことです。FastEthernet0/ 1のみです。
きっとこの仕事をするために何かがあるに違いない...私は何をすべきか?