JavaScript is required to for searching.
Skip Navigation Links
Exit Print View
Oracle Switch ES1-24 Documentation
search filter icon
search icon

Document Information

Using This Documention

Product Notes

Related Documentation

CLI Command Modes

Feedback

Support and Accessibility

Installation

Understanding the Installation

Installation Task Overview

Front Panel Components

Rear Panel Components

Confirming Specifications

Physical Specifications

Electrical Specifications

Environmental Specifications

Understanding Cabling

Understanding Management and Power Cabling

Understanding Data Cabling

Single-Switch Location Guidelines

Preparing for Installation

ESD Precautions

Tools Needed for Installation

Verify Switch Kit Contents

Verify Rack Rail Kit Contents

Assemble an SFP+ Data Cable

Route Cables

Installing the Switch

Assemble a Filler

Attach the Rails to the Switch

Attach Telco Adapters to the Rack Slides

Attach the Rack Slides to the Rack

Install the Switch Into the Rack

Attach Power Cords

Install the Air Duct and Front Support

Attach Data and Management Cables

Prepare the Front Support and Small Air Duct

Powering On the Switch

Power On the Switch

Oracle ILOM Overview

Verify the DHCP-Assigned IP Address and Host Name

Configure Network Management From the CLI (SER MGT)

Log Into the Oracle ILOM Web (NET MGT)

Log Into the Oracle ILOM CLI (NET MGT)

Log Into the Oracle ILOM CLI (SER MGT)

Configuration

Administering the Switch

Log In to the Oracle ILOM CLI

Create a SEFOS User

Change a SEFOS User Privilege Level

Configure Network Management From the Web Interface

Configure Network Management From the CLI

Log Out of the Oracle ILOM CLI

Update the Firmware

Administering SEFOS

SEFOS Setup Tasks

Understanding SEFOS Basics

Basic SEFOS Topology

Default Configurations

Connect to SEFOS

Disconnect From SEFOS

Configuring the SEFOS Environment

Enable or Disable the Timeout for Line Connections

Configure the Default IP Address

Configure the IP Address for an Interface

Configure the Name of the Configuration File

Configure the Default VLAN ID

Enable or Disable Trap Generation on an Interface

Configure Debug Logging

Configure ACL Filters

Configure QoS

Configure Port Mirroring

Configure Rate Limiting

Configuring Save Parameters

Enable or Disable the Incremental Save Flag

Enable or Disable the Auto Save Flag

Managing Configuration Files

Save the Configuration to a File

Erase a Configuration File

Copy a Configuration File to a Remote Location

Copy a Configuration File From a Remote Location to Flash

Copy a Configuration File From One Remote Location or Flash to Another Remote Location or Flash

Managing Log Files

View a System Log

Copy a System Log to a Remote Location

View Debug Logs

Configuring the Switching Feature

Switching Feature Topology

Configure Initial Settings

Verify the Configuration

Configure VLAN Forwarding

Verify VLAN Membership

Configure RSTP

Configure LA

Save a Configuration

Configuring the Routing Feature

Routing Feature Topology

Configuring Static Routing

Configuring Dynamic Routing

Disabling Routing

Service

Detecting and Managing Faults

Front Panel LEDs

Rear Panel LEDs

Check Switch Status (LEDs)

Sensors Overview

Check Switch Status (Oracle ILOM)

Component Sensor Targets

Motherboard Sensor Targets

Preparing for Service

ESD Precautions

Tools Needed for Service

Replaceable Components

Remove the Front Support and Air Duct

Remove the CMA

Install the CMA

Servicing Power Supplies

Power Off a Power Supply

Remove a Power Supply

Install a Power Supply

Power On a Power Supply

Servicing the Fan Module

Remove the Fan Module

Install the Fan Module

Glossary

Index

Configure Port Mirroring

Port mirroring monitors the packets of a particular port on another port. The following example shows how to mirror all incoming packets on port 1 to port 2.

See Basic SEFOS Topology for the topology for this task. Type the following commands on the SEFOS-1 switch.

  1. Connect to SEFOS.

    See Connect to SEFOS.

  2. Configure the IP address of the switch as 12.0.0.1.
    SEFOS-1# configure terminal
    SEFOS-1(config)# interface vlan 1
    SEFOS-1(config-if)# shutdown
    SEFOS-1(config-if)# ip address 12.0.0.1  255.0.0.0
    SEFOS-1(config-if)# no shutdown
    SEFOS-1(config-if)# end
  3. View the ping between the host and the switch.
    SEFOS-1# ping 12.0.0.100
     
    Reply Received From :12.0.0.100, TimeTaken : 60 msecs
    Reply Received From :12.0.0.100, TimeTaken : 100 msecs
    Reply Received From :12.0.0.100, TimeTaken : 90 msecs
     
    --- 12.0.0.100 Ping Statistics ---
    3 Packets Transmitted, 3 Packets Received, 0% Packets Loss

    The ping reply from host A to the switch is not captured at port 2, which is connected to the packet capturing device prior to the port-mirroring configuration.

  4. Type the following commands on the SEFOS-1 switch to enable mirroring for incoming packets at port 1 to port 2.
    1. Enter Global Configuration mode.
      SEFOS-1# configure terminal
    2. Configure the destination interface for mirroring as port 2.
      SEFOS-1(config)# monitor session destination interface extreme-ethernet 0/2
    3. Configure the source interface for mirroring as port 1 and apply mirroring for incoming packets.
      SEFOS-1(config)# monitor session source interface extreme-ethernet 0/1 rx
    4. Exit Global Configuration mode.
      SEFOS-1(config-if)# end
    5. View the configuration details.
      SEFOS-1# show port-monitoring
       
      Port Monitoring  is enabled
      Monitor Port : Ex0/2
       
      Port        Ingress-Monitoring    Egress-Monitoring
      ----        ------------------    -----------------
      Ex0/1       Enabled               Disabled
      ...
  5. Ping 12.0.0.100 and verify that the ICMP reply was received at port 2.
    SEFOS-1# ping 12.0.0.100
  6. Verify that the ping reply from host A to the SEFOS-1 switch is captured at host B or using the packet-capturing device, such as IXIA or SmartBits.
    # tcpdump -xx -n -i eth3 icmp
    ...
    listening on eth3, link-type EN10MB (Ethernet), capture size 96 bytes 
    17:09:58.595583 IP 12.0.0.100 > 12.0.0.1: ICMP echo reply, id 0, seq 1, length 40
    ...
    0x0010:  003c 68e6 4000 ff01 fa75 0c00 0064 0c00
    17:09:58.617899 IP 12.0.0.100 > 12.0.0.1: ICMP echo reply, id 0, seq 2, length 40...
    0x0030:  a5a5 a5a5 a5a5 a5a5 a5a5 a5a5 a5a5 a5a5
    17:09:58.698280 IP 12.0.0.100 > 12.0.0.1: ICMP echo reply, id 0, seq 3, length 40...
Related Information