Description

This article explains the workability of analyzer, Where the unicast traffic is dumped in multicast queue.

Symptoms

Topology:

IXIA-1
||
||
QFX5100 ====== IXIA-2
||
||
IXIA-3

 

  • Traffic is forwarded from IXIA-1 to IXIA-2 & anlyzer output is forward to IXIA-3

Solution

  • QFX5100 Configuration

set interfaces et-0/0/1 description IXIA-1

set interfaces et-0/0/1 unit 0 family ethernet-switching interface-mode trunk

set interfaces et-0/0/1 unit 0 family ethernet-switching vlan members vn130

set interfaces et-0/0/1 unit 0 family ethernet-switching vlan members v140

set interfaces et-0/0/2 description IXIA-2

set interfaces et-0/0/2 unit 0 family ethernet-switching interface-mode trunk

set interfaces et-0/0/2 unit 0 family ethernet-switching vlan members vn130

set interfaces et-0/0/2 unit 0 family ethernet-switching vlan members v140

set interfaces et-0/0/3 description IXIA-3

set interfaces et-0/0/3 unit 0 family ethernet-switching interface-mode trunk

set interfaces et-0/0/3 unit 0 family ethernet-switching vlan members vn120

set forwarding-options analyzer test input ingress vlan 130

set forwarding-options analyzer test input ingress vlan 140

set forwarding-options analyzer test output vlan 120

set vlans v140 vlan-id 140

set vlans vn120 vlan-id 120

set vlans vn130 vlan-id 130
 

  • On the input interface we've received the packets as unicast traffic.

Input interface et-0/0/1 statistics:
 Queue counters:       Queued packets  Transmitted packets      Dropped packets
    0                           116447               116447                    0
    3                                0                    0                    0
    4                                0                    0                    0
    7                              408                  408                    0
    8                                0                    0                    0

  MAC statistics:                      Receive         Transmit
    Total octets                     260143309          8864419
    Total packets                       171297           116855
    Unicast packets                     170855           116447
    Broadcast packets                       36                0
    Multicast packets                      406              408
    VLAN tagged frames                  170891

 

  • Output interfaces shows that traffic is forwarded as the unicast traffic toward the destination.

Output Interface et-0/0/2 statistics:
  Queue counters:       Queued packets  Transmitted packets      Dropped packets
    0                           170855               170855                    0
    3                                0                    0                    0
    4                                0                    0                    0
    7                              409                  409                    0
    8                               36                   36                    0

  MAC statistics:                      Receive         Transmit
    Total octets                       8873395        260144849
    Total packets                       116855           171300
    Unicast packets                     116447           170855
    Broadcast packets                        0               36
    Multicast packets                      408              409
    VLAN tagged frames                  116447

 

  • Analyzer will receive the traffic as unicast but forward the traffic to vlan members as multicast traffic.

Analyzer Interface et-0/0/3 statistics:
  Queue counters:       Queued packets  Transmitted packets      Dropped packets
    0                                0                    0                    0
    3                                0                    0                    0
    4                                0                    0                    0
    7                              410                  410                    0
    8                           116521               116521                    0

  MAC statistics:                      Receive         Transmit
    Total octets                        140696          9331062
    Total packets                          409           116931
    Unicast packets                          0           116485
    Broadcast packets                        0               36
    Multicast packets                      409              410


This is an expected behaviour.

Modification History

2024-09-21 : Article Created