カスタマーインターフェイスでのMF分類子のファイアウォールフィルターの設定
IPv6 の MF 分類子を設定して CoS に関心のあるパケットを検出し、DSCP に依存しない適切な転送クラスにパケットを割り当てます。顧客向けリンクで MF 分類子を設定するには、促進転送トラフィックのポリサーを設定し、トラフィックを分類するファイアウォール フィルターを設定します。
[edit firewall] policer ef-FIN-Policer-Profile { if-exceeding { bandwidth-percent 10; burst-size-limit 2k; } then loss-priority high; } family inet6 { filter mf-classifier { filter-specific; term AV { from { destination-address { 0:0:FFFF:172.16.79.11; } } then { loss-priority low; forwarding-class af-AV-class; } } term Finance { from { destination-address { O:0:FFFF:172.16.79.63; } } then { policer ef-FIN-Policer-Profile; forwarding-class ef-FIN-class; } } term Network-Control { from { traffic-class 192; # 192 is the 110000 traffic class. } then { forwarding-class nc-CONTROL-class; # This is network control traffic. } } term Data { then forwarding-class be-DATA-class; # The rest is data. } } }