我在一个网络上有一些SIP电话,它们通过IPIP隧道到达服务器。
我已经设置QOS规则来监视适当的VOIP流量,如下所示:
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,因此无法匹配类映射。
当然,必须有一些东西可以使这项工作……我该怎么办?