是否可以为每个服务实例指定带宽参数?

网络工程 思科-ios
2022-02-12 16:09:15

我有一个具有多个服务实例和每个服务实例的监管器的物理接口:

interface GigabitEthernet0/3
 switchport trunk allowed vlan none
 switchport mode trunk
 mtu 9192
 service instance 201 ethernet test
  encapsulation dot1q 201
  rewrite ingress tag pop 1 symmetric
  l2protocol forward
  service-policy input bw-20Mbps
  service-policy output set-8021p-0
  xconnect 192.0.2.28 18921000 encapsulation mpls
   mtu 1516
 !
 service instance 255 ethernet test2
   encapsulation dot1q 255
   /* output removed for brevity */

目前所有服务实例上报的 SNMPifSpeed值为1000000000物理接口带宽。例子:

$ snmpwalk -v 2c -c public ME3600X ifDescr.20541
IF-MIB::ifDescr.20541 = STRING: GigabitEthernet0/3.ServiceInstance.201
$ snmpwalk -v 2c -c public ME3600X ifSpeed.20541
IF-MIB::ifSpeed.20541 = Gauge32: 1000000000
$ 

这会弄乱 NMS 中的统计信息。是否可以为每个服务实例指定带宽参数?

0个回答
没有发现任何回复~