Skip to content

Instantly share code, notes, and snippets.

@kfiresmith
Created November 29, 2020 20:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kfiresmith/79244a1c0254a471cabcfd5214846a67 to your computer and use it in GitHub Desktop.
Save kfiresmith/79244a1c0254a471cabcfd5214846a67 to your computer and use it in GitHub Desktop.

Adding a new network LAG and vlans

Physical port & interface group steps

  • Select member physical interfaces
  • Install SFPs and patches
  • Network admin configures LACP LAG on switches
  • Create interface group
    • Dynamic multimode, probably IP based LB
    • Example command:
network port ifgrp create -node cluster-1-01 -ifgrp a0a -distr-func ip -mode multimode
  • Add ports to interface group
    • Example command:
network port ifgrp add-port -node cluster-1-01 -ifgrp a0a -port e0b

network port ifgrp add-port -node cluster-1-01 -ifgrp a0a -port e0c

Vlan configuration

After the LAG is up and working properly, you can add vlans. Define them by using the standard naming scheme to identify the vlan tag, for example: 'a0a-76' would mean add vlan 76 to interface group a0a.

network port vlan create -node cluster-1-01 -vlan-name  a0a-76
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment