Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Hide_comments

Scroll Ignore

Table of Contents

Description

Link Aggregation is using multiple physical channels in parallel at once as one logical channel to increase the total total link capacity of the link and provide redundancy.For example, it  This technology can be used, for example, to set up a high-capacity device-to-LAN backbone utilizing two Ethernet interfaces of the device. The total link speed of such backbone link between a device and a network switch, aggregating two available Ethernet interfaces. The total speed of such link will be a sum of the speeds of the Ethernet interfacesthe Ethernet interfaces speeds. Moreover, in case of one Ethernet connection failure its traffic will be passed to the other one without stooping the services. If later the fallen Ethernet connection will be reestablished the traffic will be sent over both Ethernet interfaces again.

Infinet Wireless LACP InfiNet Wireless LACP (Link Aggregation Control Protocol) realization fully complies with the IEEE 802.3ad standard for link aggregation. In addition, special proprietary LACP mode proprietary LACP mode can be enabled that provides enhancement of the efficiency of the process provides process efficiency enhancement over the standard mode.

For LACP configuration on IW devices the “lag” command is used.

 Syntax:

lag N [command] The link aggregation functionality is configured on the device using a "lagN" logical interface.

To activate the logical interface, the following command must be used:

Code Block
languagetext
themeEmacs
ifconfig lagN up

Otherwise, the settings will be applied to the interface, but will not be executed.

Warning
titleCAUTION

In case it is necessary to aggregate the interface through which the device management is perfomed, before activating the "lagN" interface, assign it an IP address by using the "ifconfig" command, to avoid loss of access.

Syntax:

Code Block
languagetext
themeEmacs
lag N [command] [(port|-port) (IFNAME | IFNAME...)]

...

Command:

  • "status" - show lag interface status
  • "migrate" - enable session migrate
  • "-migrate" - disable session migrate
  • "balance" - enable session-oriented load balancing
  • "-balance" - disable session-oriented load balancing
  • "mode" - switch lag inteface mode. Modes: (stand|fast)
  • "clear" - remove lag interface from configuration
  • "loadm" - show realtime per-port load status.

To enable link aggregation on the device the following command is used:

Code Block
languagejava
themeDJango
lag N port (IFNAME | IFNAME...)]

...


          where [command] is:
          status         - show lag interface status
          migrate        - enable session migrate
          -migrate       - disable session migrate
          balance        - enable session-oriented load balancing
          -balance       - disable session-oriented load balancing
          mode           - switch lag inteface mode. Modes: (stand|fast)
          clear          - remove lag interface from configuration
          loadm          - show realtime per-port load status

Parameters

Center
ParameterDescription

IFNAME | IFNAME...

An argument that defines the physical network interfaces (parent interfaces) that will be used for aggregation.

port|-port

Enables link aggregation on the device. Creates logical "lagN" interface in the system and assigns parent physical interfaces to it.

...

Example,

Code Block
languagejava
themeDJango
lag 1 port eth0 eth1

In this example “lag1” interface is created and two Ethernet interfaces of the device are assigned.

...

"-port" removes one or more parent interfaces from

...

configuration

...

.

...

Code Block
languagejava
themeDJango
lag 1 -port eth1

The following commands are used to manage LACP operation and get the statistics:

...

statusDisplays the "aggregation id" value, the load on each of the parent interfaces and its status.

...

migrate|-migrate

...

Enables/disables existing sessions migration between the available parent interfaces in case of the difference in the overload. By default, migration is allowed.

...

balance|-balance

...

Enables/disables distribution of new-coming sessions between the available parent interfaces depending on their load. By default, balancing is enabled.

...

mode (stand|fast)Sets the LACP mode. In

...

"standard" mode, LACP acts in accordance to the IEEE 802.3ad standard. In

...

"fast

...

" mode

...

, IW proprietary extensions are used: the timeout value is reduced to 2 seconds, the current network interface load information is added to the packet reserve fields, allowing to speed up the LACP response significantly depending on network conditions, optimize the aggregation systems, and obtain more accurate statistics.
clearRemoves the "lagN" interface configuration.
loadmShows the load statistics in real time on each of the parent interfaces.

Examples

Creates logical "lag1" interface, using both device Ethernet interfaces. Assign an "10.10.30.16/24" IP address to created interface. Activate the logical interface.

Code Block
languagetext
themeEmacs
lag 1 port eth0 eth1
ifconfig lag1 10.10.30.16/24
ifconfig lag1 up
lag1 link administratively up

Remove "eth1" interface from configuration.

Code Block
languagetext
themeEmacs
lag 1 -port eth1