The Nortel Ethernet Routing Switch 8600 supports port mirroring feature to analyze traffic ingressing/egressing a specific switch port. The ERS 8600 also supports remote port mirroring by moving mirrored traffic across a switch network to a remote switch port.
This allows you to deploy a centralized network analyzer or probe to capture packets for the entire Local Area Network (LAN). This is accomplished by encapsulating the mirrored packets in a remote mirroring encapsulation wrapper. The encapsulation frame is bridged through the network by a seperate port-based VLAN to the remote mirroring termination port.
The following example is taken from the Nortel document “Using Diagnostic Tools”.
We’ll mirror port 1/15 on S1 to port 1/15 on S3 using the remote mirroring feature of the ERS 8600 Switch. As I mentioned above the packets to be mirrored will be encapsulated and put onto a specific port-based VLAN to be bridged across the network. In the following example we’ll create VLAN 99 for this purpose.
Configure S3:
ERS-8610:5# config vlan 99 create byport 1 ERS-8610:5# config vlan 99 ports add 1/15, 2/8 ERS-8610:5# config ethernet 1/15 remote-mirroring create ERS-8610:5# config ethernet 1/15 remote-mirroring add-vlan-id 99 ERS-8610:5# config ethernet 1/15 remote-mirroring mode termination ERS-8610:5# config ethernet 1/15 remote-mirroring enable true
We’ll need to determine the MAC address of the switch port that will be connecting to the network analyzer (sniffer). We’ll need this information in order to configure the originating switch properly.
ERS-8610:5# config ethernet 1/15 remote-mirroring info port 1/15 Enable = TRUE Mode = termination srcmac = 00:e0:7b:82:9c:0e dstmac = 00:e0:7b:82:9d:9c ether-type = 0x8103 vlan-id-list =10
We’ll need to record the “dstmac” MAC address above as we’ll need it when configuring the origin switch.
Configure S1:
ERS-8610:5# config vlan 99 create byport 1 ERS-8610:5# config vlan 99 ports add 1/1 ERS-8610:5# config diag mirror-by-port 1 create in-port 1/15 out-port 1/1 mode both enable true remote-mirror-vlan-id 99 ERS-8610:5# config ethernet 1/1 remote-mirroring create ERS-8610:5# config ethernet 1/1 remote-mirroring dstmac 00:e0:7b:82:9d:9c ERS-8610:5# config ethernet 1/1 remote-mirroring enable true
Configure S2:
ERS-8610:5# config vlan 99 create byport 1 ERS-8610:5# config vlan 99 ports add 1/1,2/8
I’ve actually used this feature to mirror traffic from the ELAN interface on a Nortel Succession 1000M (Option 81C) from a closet ERS 8600 to a core ERS 8600 where I had a network analyzer setup to perform network traces.
I was and still am impressed with the feature.
Cheers!