JavaScript is required to for searching.
Skip Navigation Links
Exit Print View
Sun Ethernet Fabric Operating System

SLB Administration Guide

search filter icon
search icon

Document Information

Using This Documentation

Product Notes

Related Documentation

Acronyms and Abbreviations

CLI Command Modes

Feedback

Support and Accessibility

SLB Overview

Configuring the SLB Topology Example

SLB Description

SLB Topology Example

SLB Configuration Guidelines and Prerequisites

Default Settings

Configuring the SLB-L2 Topology Example

SLB-L2 Description

SLB-L2 Topology Example

SLB-L2 Configuration Guidelines and Prerequisites

Default Settings

Conditions for a Member Participating in Load Distribution

Configuring SLB Entries

Create SLB Server Members

Remove SLB Server Members

Set the Traffic Distribution Policy

Restore the Default Traffic Distribution Policy

Create Multiple LBGs

Set the ICMP Parameters

Set the Health-Monitor Parameters

Server Health-Check Function

Configuring SLB-L2 Entries

Create SLB-L2 Server Members

Remove SLB-L2 Port Members

View the Traffic Distribution Policy

Restore the Default Traffic Distribution Policy

Set the Failover Method

Restore the Default Failover Method

Create Multiple SLB-L2 Groups

Creating Example SLB Configurations

Creating a Basic SLB Configuration

Basic SLB Configuration

Basic SLB Configuration Steps

Set Up the Switch (Basic SLB)

Set Up the Client (Basic SLB)

Set Up the Server (Basic SLB)

Enable the Switch Ports (Basic SLB)

Save the Current Configuration (Basic SLB)

Creating a Separate VLAN SLB Configuration

Separate VLAN SLB Configuration

Configuration With Separate VLANs Steps

Set Up the Switch (Separate VLAN SLB)

Set Up the Client (Separate VLAN SLB)

Set Up the Server (Separate VLAN SLB)

Enable the Switch Ports (Separate VLAN SLB)

Save the Current Configuration (Separate VLAN SLB)

Creating a Multiple SLB Group Configuration

Multiple-SLB-Group Configuration

Configuration With Multiple SLB Groups Steps

Set Up Switch A

Set Up Switch B

Set Up the Client (Multiple SLB Group)

Set Up the Servers in SLB Group 1

Set Up the Servers in SLB Group 2

Enable the Switch Ports (Multiple SLB Group)

Save the Current Configuration (Multiple SLB Group)

Creating a Failover Example

Failover Example

Trigger a Failover

Restart the Server Following Failure

Creating SLB-L2 Configuration Examples

Bump-In-The-Wire Configuration

Creating a Single-Switch Configuration

Basic Single-Switch Configuration

Create a Single-Switch Configuration

Creating a Dual-Switch Configuration

Dual-Switch Configuration

Create a Dual-Switch Configuration

Creating an SLB-L2 Failover Example

SLB-L2 Failover Example

Trigger a Failover

Restart the Interface Following Failure

Set Up the Switch (Basic SLB)

Shut down SLB-related switch ports on the switch.

  1. Enter Global Configuration mode so you can shut down SLB-related switch ports on the switch.
    SEFOS# configure terminal
  2. Shut down switch ports connected to the client network.
    SEFOS(config)# interface range extreme-ethernet 0/3-6
    SEFOS(config-if-range)# shutdown
    SEFOS(config-if-range)# exit
  3. Shut down switch ports connected to the servers.
    SEFOS(config)# interface range extreme-ethernet 0/15-18
    SEFOS(config-if-range)# shutdown
    SEFOS(config-if-range)# exit
  4. Set up the interface address of the switch.
    SEFOS(config)# interface vlan 1
    SEFOS(config-if)# shutdown
    SEFOS(config-if)# ip address 192.0.0.100 255.255.255.0
    SEFOS(config-if)# no shutdown
    SEFOS(config-if)# exit
  5. Set up SLB entries.
    SEFOS(config)# slb 10.10.10.0 255.255.255.0 192.0.0.1,192.0.0.2,192.0.0.3
    SEFOS(config)# slb standby 10.10.10.0 255.255.255.0 192.0.0.4
  6. Set the traffic distribution hash policy (if needed).
    SEFOS(config)# slb policy src-ip
    SEFOS(config)# end
  7. View the updated configuration.
    SEFOS# show slb
     
    SLB Group ID: 1 Virtual IP: 10.10.10.0/24
    Server Members:
    IP Address       Vlan  MacAddress        Port State     Comments
    ================ ====  ================= ==== ========= ==================
    192.0.0.1        ----  --:--:--:--:--:-- ---- IDLE
    192.0.0.2        ----  --:--:--:--:--:-- ---- IDLE
    192.0.0.3        ----  --:--:--:--:--:-- ---- IDLE
    192.0.0.4        ----  --:--:--:--:--:-- ---- STANDBY   (down)

    The preceding output shows that all active servers are in idle state (not reachable from the switch) and that the standby server is also unreachable from the switch (marked as down in the Comments column).