Configuring the load balancing feature, Table 12 – Brocade Network OS NETCONF Operations Guide v4.1.1 User Manual

Page 415

Advertising
background image

Network OS NETCONF Operations Guide

383

53-1003231-02

Configuring the vLAG ignore split option

26

<rpc-reply message-id="1007" xmlns="urn:ietf:params:xml:ns:netconf:base:1.0">

<ok/>

</rpc-reply>

Configuring the load balancing feature

This feature allows you to configure the load balancing feature on a remote routing bridge which is
not a member of the vLAG (also known as a non-local routing bridge), to forward traffic to a vLAG. To
distribute the traffic among the possible paths towards the vLAG, you can configure the vLAG
load-balancing flavor on RB2. Available flavors are listed in

Table 12

.

Additionally, a routing bridge can be set to a different flavor for different vLAGs present in the
cluster. This feature is available for each routing bridge and each vLAG, so different load-balance
flavors can be set for traffic directed towards different vLAGs.

The following example sets the flavor to “destination MAC address and VID-based load balancing.”

<?xml version="1.0" encoding="UTF-8"?>

<rpc message-id="1008" xmlns="urn:ietf:params:xml:ns:netconf:base:1.0">

<edit-config>

<target>

<running/>

</target>

<config>

<rbridge-id xmlns="urn:brocade.com:mgmt:brocade-rbridge">

<rbridge-id>2</rbridge-id>

<fabric xmlns=”urn:brocade.com:mgmt:brocade-fabric-service”>

<port-channel>

<name>20</name>

<vlag-load-balance>dst-mac-vid</vlan-load-balance>

</port-channel>

</fabric>

</rbridge-id>

</config>

</edit-config>

</rpc>

<rpc-reply message-id="1008" xmlns="urn:ietf:params:xml:ns:netconf:base:1.0">

<ok/>

</rpc-reply>

The following example shows use of the <get-config> RPC to retrieve the configuration by displaying
the contents of the <rbridge-id> node.

TABLE 12

Load balance flavor

Flavor

Definition

dst-mac-vid

Destination MAC address and VID-based load balancing.

src-mac-vid

Source MAC address and VID-based load balancing.

src-dst-mac-vid

Source and Destination MAC address and VID-based load balancing.

src-dst-ip

Source and Destination IP address-based load balancing.

src-dst-ip-mac-vid

Source and Destination IP and MAC address and VID-based load balancing.

src-dst-ip-port

Source and Destination IP and TCP/UDP port-based load balancing.

src-dst-ip-mac-vid-port

Source and Destination IP, MAC address, VID and TCP/UDP port-based load balancing.

Advertising