Configuring port mirroring or monitor session on Dell OS 10 switches

From Notes_Wiki

Home > Switch configuration notes > Configuring port mirroring or monitor session on Dell OS 10 switches

The steps are exactly same as older article Mirroring ports on Cisco switches

Creating port mirroring

To create port mirroring use following steps:

  1. Remove configuration from destination port
    config t
    interface <Interface-no>
    no switchport
    no shut
  2. Create monitor session
    config t
    monitor session 1
    source <Interface> direction both
    destination <Interface>
    no shut
    There are session IDs from 1 to 10+ for multiple monitor sessions.
  3. Validate session is running as expected
    show monitor session 1
    There are session IDs from 1 to 10+ for multiple monitor sessions.


To remove the created session use:

config t
    no monitor session 1


If we do not want to remove the configuration but only disable monitoring (port mirroring) temporarily then use:

config t
    monitor session 1
        shut


Refer:



Home > Switch configuration notes > Configuring port mirroring or monitor session on Dell OS 10 switches