Description:
With the following Add-in script you can bind physical interfaces to LAG and assign LACP on LANCOM Switches of the XS series.
List of used variables:
Variable | Description |
---|---|
Add-in code:
/** config.addScriptLine("interface 1/0/15"); //Adding the physical 1/0/15... config.addScriptLine("addport 0/3/1"); // ...into the logical interface (LAG) 1 0/3/1 config.addScriptLine("exit"); config.addScriptLine("interface 1/0/16"); //Adding the physical 1/0/16... config.addScriptLine("addport 0/3/1"); // ...into the logical interface (LAG1) 0/3/1 config.addScriptLine("exit"); config.addScriptLine("interface lag 1"); // Setting the Link Aggregation Group (LAG) from Static to LACP -> no port-channel static config.addScriptLine("no port-channel static"); config.addScriptLine("exit"); }; |
---|