# Copyright (C) 2016-2017 Cumulus Networks, inc.
#
# All Rights reserved.
#
# This software is subject to the Cumulus Networks End User License Agreement available
# at the following locations:.
#
# Internet: https://cumulusnetworks.com/downloads/eula/latest/view/
#
# Cumulus Linux systems: /usr/share/cumulus/EULA.txt

Scenarios
=========


---- Breakout a QSFP into four individual interfaces

switch# net add interface swp2 breakout 4x
switch# net commit



---- Gang 4 SFP interfaces together into a higher speed interface
     NOTE: the starting interface in the glob must be a multiple of four + 1

switch# net add interface swp5-8 breakout /4
switch# net commit


---- Set the a 10G interface to 1G with auto-negotiation on

switch# net add interface swp3 link speed 10000
switch# net add interface swp3 link autoneg on
switch# net commit


---- Breakout a 100G interface to 4x25G and set one to 10G

switch# net add interface swp20 breakout 4x
switch# net add interface swp20s0 link speed 10000
switch# net commit
