#
# Copyright(c) 2000-2004 Broadcom Corporation, all rights reserved
#
# Name:         team-sample
#
# Description:  This configuration script creates a SLB team with 3 
#               network interfaces, eth0, eth1 and eth2 with the 
#               team name "Team1". All 3 NICs are primary. One virtual 
#               interface is added to the team with the name "sw0" and 
#               the VLAN is not enabled.
#               This script is part of Broadcom Advanced Server Program
#               driver for Linux distribution.
#
# Updated:      Feb 3, 2005
#
# Configurable parameters:
#               TEAM_ID:       This number uniquely identifies a team. 
#               TEAM_TYPE:     0 = SLB, 1 = Generic Trunking/GEC/FEC, 2= 802.3ad
#                              3 = SLB (Auto-Fallback Disable)
#               LIVELINK_ENABLE: 1 = SLB (with LiveLink) 0 = SLB (without 
#                              LiveLink)  
#                              LiveLink is supported for SLB teams only.
#                              A value of 1 is ignored when TEAM_TYPE is not 
#                              0 (SLB).     
#               TEAM_NAME:     ascii name of the team
#               TEAM_PAx_NAME: ascii name of the physical interface x,
#                              where x can be 0 to 7.
#               TEAM_PAx_ROLE: role of the physical interface x
#                              0 = Primary, 1 = Hot-standby. This field
#                              must be 0 for Generic Trunking/GEC/FEC 
#                              and IEEE 802.3ad team.
#               TEAM_PAx_IP:   Unique IP to be used by each NIC when LiveLink 
#                              is enabled.  
#                              The format should be x.x.x.x.  
#                              If an IP unique to the subnet is not assigned, 
#                              the NIC will not be used when LiveLink is enabled.
#               TEAM_VAx_NAME: ascii name of the virtual interface x,
#                              where x can be 0 to 63
#               TEAM_VAx_VLAN: 802.1p VLAN ID of the virtual interface x.
#                              For untagged virtual interface, i.e. without
#                              VLAN enable, set it to 0. The valid VLAN ID
#                              can be 0 to 4094.
#               TEAM_VAx_IP:   IP address of the virtual interface x. The 
#                              format should be aa.bb.cc.dd.
#               TEAM_VAx_NETMASK: Subnet mask of the virtual interface x.
#                              The format should be mm.nn.oo.pp.
#               TEAM_VAx_BROADCAST: Optional broadcast address of the virtual
#                              interface x. The format should be qq.rr.ss.tt
#               TEAM_VAx_GW:   Optional default gateway. The format should
#                              be ww.xx.yy.zz. Usually one default gateway
#                              is specified for the system and it should
#                              be reacheable from one network interface.
#               PROBE_TARGET_IPx: Target IP addresses for LiveLink option.  
#                              The format shoud be x.x.x.x
#                              The first LiveLink target is required when 
#                              LiveLink is enabled. 
#                              Up to 3 additional targets may be defined.  
#			       	
#               PROBE_INTERVAL: Delay in seconds between sending LiveLink 
#                              packets.  
#                              Minimum value is 1, maximum = 1024.
#               MAX_RETRY:     Number of consecutively missed LiveLink replies 
#                              before a
#                              failover is triggered. Value is "n x 5".  
#                              i.e. Setting of 5 = Value of 25 (5 x 5)
#                              The max value is 50, the min value is 1.

TEAM_ID=0
TEAM_TYPE=0
TEAM_NAME=TeamSample

# Set to 1 to enable the probe packets feature. Set to 0 or remove to 
# disable probe packets
LIVE_LINK_ENABLE=0

# These are the probe target IP addresses. They must be unique on the subnet.
# The first probe target IP address must be specified if probe packets is used, 
# the other probe target IP addresses are optional
#PROBE_TARGET_IP0=
#PROBE_TARGET_IP1=
#PROBE_TARGET_IP2=
#PROBE_TARGET_IP3=

# 1st physical interface in the team
TEAM_PA0_NAME=eth0 
TEAM_PA0_ROLE=0
# The NIC IP addresses, it must be unique on the subnet
#TEAM_PA0_IP=

# 2nd physical interface in the team
#TEAM_PA1_NAME=eth1
#TEAM_PA1_ROLE=0
#TEAM_PA1_IP=

# 3rd physical interface in the team
#TEAM_PA2_NAME=eth2
#TEAM_PA2_ROLE=0
#TEAM_PA2_IP=

# 1st virtual interface in the team
TEAM_VA0_NAME=sw0
TEAM_VA0_VLAN=0
TEAM_VA0_IP=
TEAM_VA0_NETMASK=
# Optional broadcast address to override the default
TEAM_VA0_BROADCAST=

# Optional default gateway 
# One default gateway is usually specified for the system and it should be
# reacheable from one network interface
TEAM_VA0_GW=

# This is the delay between probes in seconds. The minimum delay is 1 second.
# This parameter must be specified if probe packets is used
# Minimum value is 1, maximum = 1024.
#PROBE_INTERVAL=5
# This the number of consecutively missed probe replies before a failover.
# For example, the current setting defines a latency of 25 seconds 
# ( 5 x 5 seconds ).
# This parameter must be specified if probe packets is used
# The max value is 50, the min value is 1.
#MAX_RETRY=5

