Skip to content

Instantly share code, notes, and snippets.

@patrickkelso
Created August 25, 2015 23:17
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 patrickkelso/5cc60ddce81de7f09616 to your computer and use it in GitHub Desktop.
Save patrickkelso/5cc60ddce81de7f09616 to your computer and use it in GitHub Desktop.
class profile::arista::vlan1 {
eos_vlan { '301':
ensure => present,
}
eos_portchannel { "Port-Channel1":
lacp_mode => 'active',
members => ["Ethernet1","Ethernet2"],
}
eos_interface { "Port-Channel1":
description => "MLAG Peer link",
ensure => present,
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment