Chapter 6 Trunks
ZyWALL (ZLD) CLI Reference Guide
67
6.5 Trunk Command Examples
The following example creates a weighted round robin trunk for Ethernet interfaces ge1 and
ge2. The
ZyWALL sends twice as much traffic through ge1.
The following example creates a least load first trunk for Ethernet interface ge3 and VLAN 5.
The
ZyWALL sends new session traffic through the least utilized of these interfaces.
The following example creates a spill-over trunk for Ethernet interfaces ge1 and ge3. The
ZyWALL sends traffic through ge1 until it hits the limit of 1000 kbps. The ZyWALL sends
anything over 1000 kbps through ge3.
Router# configure terminal
Router(config)# interface-group wrr-example
Router(if-group)# mode trunk
Router(if-group)# algorithm wrr
Router(if-group)# interface 1 ge1 weight 2
Router(if-group)# interface 2 ge2 weight 1
Router(if-group)# exit
Router(config)#
Router# configure terminal
Router(config)# interface-group llf-example
Router(if-group)# mode trunk
Router(if-group)# algorithm llf
Router(if-group)# interface 1 ge3
Router(if-group)# interface 2 vlan5
Router(if-group)# exit
Router(config)#
Router# configure terminal
Router(config)# interface-group spill-example
Router(if-group)# mode trunk
Router(if-group)# algorithm spill-over
Router(if-group)# interface 1 ge1 limit 1000
Router(if-group)# interface 2 ge3 limit 1000
Router(if-group)# exit
Router(config)#