├── .github └── workflows │ └── doc.yml ├── LICENSE ├── README.md ├── alpine_host ├── Dockerfile ├── README.md ├── build.sh └── entrypoint.sh ├── ceos_lab_template └── ceos.cfg.tpl ├── docs ├── images │ ├── aa_asym_mh_v2.png │ ├── avdasymirb_v2.png │ ├── avdcentralgw_v2.png │ ├── avdirb-ibgp-ospf_v2.png │ ├── avdirb_v2.png │ ├── evpn-dual-dc-lab-colored.png │ ├── mpls_v2.png │ └── sa_sym_mh_v2.png ├── index.md ├── install.md ├── labs │ ├── avd_asym_irb.md │ ├── avd_asym_multihoming.md │ ├── avd_central_any_gw.md │ ├── avd_dual_dc_l3_gw.md │ ├── avd_dual_dc_multi_domain.md │ ├── avd_sym_irb.md │ ├── avd_sym_irb_ibgp.md │ ├── avd_sym_sa_multihoming.md │ ├── mpls_evpn_irb.md │ └── mpls_ldp_l2evpn.md ├── quickStart.md ├── references.md ├── releases │ ├── v1.1.2.md │ ├── v2.0.0.md │ ├── v2.1.0.md │ ├── v2.2.0.md │ ├── v3.0.0.md │ ├── v3.1.0.md │ ├── v3.1.1.md │ ├── v3.1.2.md │ ├── v3.1.3.md │ └── v3.1.4.md ├── requirements.txt └── stylesheets │ └── extra.css ├── images ├── aa_asym_mh_v2.png ├── avdasymirb_v2.png ├── avdcentralgw_v2.png ├── avdirb-ibgp-ospf_v2.png ├── avdirb_v2.png ├── mpls_v2.png └── sa_sym_mh_v2.png ├── labs ├── evpn │ ├── avd_asym_irb │ │ ├── Makefile │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── AVD_LAB.yaml │ │ │ ├── DC1_CONNECTED_ENDPOINTS.yaml │ │ │ ├── DC1_FABRIC.yaml │ │ │ ├── DC1_LEAFS.yaml │ │ │ ├── DC1_NETWORK_SERVICES.yaml │ │ │ └── DC1_SPINES.yaml │ │ ├── host_l3_config │ │ │ └── l3_build.sh │ │ ├── inventory.yaml │ │ ├── playbooks │ │ │ └── fabric-deploy-config.yaml │ │ └── topology.yaml │ ├── avd_asym_multihoming │ │ ├── Makefile │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── AVD_LAB.yaml │ │ │ ├── DC1_CONNECTED_ENDPOINTS.yaml │ │ │ ├── DC1_FABRIC.yaml │ │ │ ├── DC1_NETWORK_SERVICES.yaml │ │ │ ├── DC1_PES.yaml │ │ │ └── DC1_SPINES.yaml │ │ ├── host_l3_config │ │ │ └── l3_build.sh │ │ ├── inventory.yaml │ │ ├── playbooks │ │ │ └── fabric-deploy-config.yaml │ │ └── topology.yaml │ ├── avd_central_any_gw │ │ ├── Makefile │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── AVD_LAB.yaml │ │ │ ├── DC1_CONNECTED_ENDPOINTS.yaml │ │ │ ├── DC1_FABRIC.yaml │ │ │ ├── DC1_L2_LEAFS.yaml │ │ │ ├── DC1_L3_LEAFS.yaml │ │ │ ├── DC1_NETWORK_SERVICES.yaml │ │ │ └── DC1_SPINES.yaml │ │ ├── host_l3_config │ │ │ └── l3_build.sh │ │ ├── inventory.yaml │ │ ├── playbooks │ │ │ └── fabric-deploy-config.yaml │ │ └── topology.yaml │ ├── avd_dual_dc_l3_gw │ │ ├── Makefile │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── AVD_FABRIC.yaml │ │ │ ├── CONNECTED_ENDPOINTS.yaml │ │ │ ├── DC1.yaml │ │ │ ├── DC1_BORDER_LEAVES.yaml │ │ │ ├── DC1_LEAVES.yaml │ │ │ ├── DC1_SPINES.yaml │ │ │ ├── DC2.yaml │ │ │ ├── DC2_BORDER_LEAVES.yaml │ │ │ ├── DC2_LEAVES.yaml │ │ │ ├── DC2_SPINES.yaml │ │ │ ├── NETWORK_SERVICES.yaml │ │ │ └── WAN_ROUTER.yaml │ │ ├── host_l3_config │ │ │ ├── dc1_l3_build.sh │ │ │ └── dc2_l3_build.sh │ │ ├── inventory.yaml │ │ ├── playbooks │ │ │ └── fabric-deploy-config.yaml │ │ └── topology.yaml │ ├── avd_dual_dc_multi_domain │ │ ├── Makefile │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── AVD_FABRIC.yaml │ │ │ ├── CONNECTED_ENDPOINTS.yaml │ │ │ ├── DC1.yaml │ │ │ ├── DC1_BORDER_LEAVES.yaml │ │ │ ├── DC1_LEAVES.yaml │ │ │ ├── DC1_SPINES.yaml │ │ │ ├── DC2.yaml │ │ │ ├── DC2_BORDER_LEAVES.yaml │ │ │ ├── DC2_LEAVES.yaml │ │ │ ├── DC2_SPINES.yaml │ │ │ ├── NETWORK_SERVICES.yaml │ │ │ └── WAN_ROUTER.yaml │ │ ├── host_l3_config │ │ │ ├── dc1_l3_build.sh │ │ │ └── dc2_l3_build.sh │ │ ├── inventory.yaml │ │ ├── playbooks │ │ │ └── fabric-deploy-config.yaml │ │ └── topology.yaml │ ├── avd_sym_irb │ │ ├── Makefile │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── AVD_LAB.yaml │ │ │ ├── DC1_CONNECTED_ENDPOINTS.yaml │ │ │ ├── DC1_FABRIC.yaml │ │ │ ├── DC1_L2_LEAFS.yaml │ │ │ ├── DC1_L3_LEAFS.yaml │ │ │ ├── DC1_NETWORK_SERVICES.yaml │ │ │ └── DC1_SPINES.yaml │ │ ├── host_l3_config │ │ │ └── l3_build.sh │ │ ├── inventory.yaml │ │ ├── playbooks │ │ │ └── fabric-deploy-config.yaml │ │ └── topology.yaml │ ├── avd_sym_irb_ibgp │ │ ├── Makefile │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── AVD_LAB.yaml │ │ │ ├── DC1_CONNECTED_ENDPOINTS.yaml │ │ │ ├── DC1_FABRIC.yaml │ │ │ ├── DC1_L3_LEAFS.yaml │ │ │ ├── DC1_NETWORK_SERVICES.yaml │ │ │ └── DC1_SPINES.yaml │ │ ├── host_l3_config │ │ │ └── l3_build.sh │ │ ├── inventory.yaml │ │ ├── playbooks │ │ │ └── fabric-deploy-config.yaml │ │ └── topology.yaml │ └── avd_sym_sa_multihoming │ │ ├── Makefile │ │ ├── ansible.cfg │ │ ├── group_vars │ │ ├── AVD_LAB.yaml │ │ ├── DC1_CONNECTED_ENDPOINTS.yaml │ │ ├── DC1_FABRIC.yaml │ │ ├── DC1_NETWORK_SERVICES.yaml │ │ ├── DC1_PES.yaml │ │ └── DC1_SPINES.yaml │ │ ├── host_l3_config │ │ └── l3_build.sh │ │ ├── inventory.yaml │ │ ├── playbooks │ │ └── fabric-deploy-config.yaml │ │ └── topology.yaml └── mpls_ldp_evpn │ ├── mpls_evpn_irb │ ├── Makefile │ ├── ansible.cfg │ ├── documentation │ │ └── devices │ │ │ └── .gitkeep │ ├── host_l3_config │ │ └── l3_build.sh │ ├── intended │ │ ├── configs │ │ │ └── .gitkeep │ │ └── structured_configs │ │ │ ├── DC1_P1.yml │ │ │ ├── DC1_P2.yml │ │ │ ├── DC1_PE11.yml │ │ │ ├── DC1_PE12.yml │ │ │ ├── DC1_PE21.yml │ │ │ └── DC1_PE22.yml │ ├── inventory.yaml │ ├── playbooks │ │ └── fabric-deploy-config.yaml │ └── topology.yaml │ └── mpls_ldp_l2evpn │ ├── Makefile │ ├── ansible.cfg │ ├── documentation │ └── devices │ │ └── .gitkeep │ ├── host_l3_config │ └── l3_build.sh │ ├── intended │ ├── configs │ │ └── .gitkeep │ └── structured_configs │ │ ├── DC1_P1.yml │ │ ├── DC1_P2.yml │ │ ├── DC1_PE11.yml │ │ ├── DC1_PE12.yml │ │ ├── DC1_PE21.yml │ │ └── DC1_PE22.yml │ ├── inventory.yaml │ ├── playbooks │ └── fabric-deploy-config.yaml │ └── topology.yaml └── mkdocs.yml /.github/workflows/doc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/.github/workflows/doc.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/README.md -------------------------------------------------------------------------------- /alpine_host/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/alpine_host/Dockerfile -------------------------------------------------------------------------------- /alpine_host/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/alpine_host/README.md -------------------------------------------------------------------------------- /alpine_host/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | docker build -t alpine-host . -------------------------------------------------------------------------------- /alpine_host/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/alpine_host/entrypoint.sh -------------------------------------------------------------------------------- /ceos_lab_template/ceos.cfg.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/ceos_lab_template/ceos.cfg.tpl -------------------------------------------------------------------------------- /docs/images/aa_asym_mh_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/docs/images/aa_asym_mh_v2.png -------------------------------------------------------------------------------- /docs/images/avdasymirb_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/docs/images/avdasymirb_v2.png -------------------------------------------------------------------------------- /docs/images/avdcentralgw_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/docs/images/avdcentralgw_v2.png -------------------------------------------------------------------------------- /docs/images/avdirb-ibgp-ospf_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/docs/images/avdirb-ibgp-ospf_v2.png -------------------------------------------------------------------------------- /docs/images/avdirb_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/docs/images/avdirb_v2.png -------------------------------------------------------------------------------- /docs/images/evpn-dual-dc-lab-colored.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/docs/images/evpn-dual-dc-lab-colored.png -------------------------------------------------------------------------------- /docs/images/mpls_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/docs/images/mpls_v2.png -------------------------------------------------------------------------------- /docs/images/sa_sym_mh_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/docs/images/sa_sym_mh_v2.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/docs/install.md -------------------------------------------------------------------------------- /docs/labs/avd_asym_irb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/docs/labs/avd_asym_irb.md -------------------------------------------------------------------------------- /docs/labs/avd_asym_multihoming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/docs/labs/avd_asym_multihoming.md -------------------------------------------------------------------------------- /docs/labs/avd_central_any_gw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/docs/labs/avd_central_any_gw.md -------------------------------------------------------------------------------- /docs/labs/avd_dual_dc_l3_gw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/docs/labs/avd_dual_dc_l3_gw.md -------------------------------------------------------------------------------- /docs/labs/avd_dual_dc_multi_domain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/docs/labs/avd_dual_dc_multi_domain.md -------------------------------------------------------------------------------- /docs/labs/avd_sym_irb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/docs/labs/avd_sym_irb.md -------------------------------------------------------------------------------- /docs/labs/avd_sym_irb_ibgp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/docs/labs/avd_sym_irb_ibgp.md -------------------------------------------------------------------------------- /docs/labs/avd_sym_sa_multihoming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/docs/labs/avd_sym_sa_multihoming.md -------------------------------------------------------------------------------- /docs/labs/mpls_evpn_irb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/docs/labs/mpls_evpn_irb.md -------------------------------------------------------------------------------- /docs/labs/mpls_ldp_l2evpn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/docs/labs/mpls_ldp_l2evpn.md -------------------------------------------------------------------------------- /docs/quickStart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/docs/quickStart.md -------------------------------------------------------------------------------- /docs/references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/docs/references.md -------------------------------------------------------------------------------- /docs/releases/v1.1.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/docs/releases/v1.1.2.md -------------------------------------------------------------------------------- /docs/releases/v2.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/docs/releases/v2.0.0.md -------------------------------------------------------------------------------- /docs/releases/v2.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/docs/releases/v2.1.0.md -------------------------------------------------------------------------------- /docs/releases/v2.2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/docs/releases/v2.2.0.md -------------------------------------------------------------------------------- /docs/releases/v3.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/docs/releases/v3.0.0.md -------------------------------------------------------------------------------- /docs/releases/v3.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/docs/releases/v3.1.0.md -------------------------------------------------------------------------------- /docs/releases/v3.1.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/docs/releases/v3.1.1.md -------------------------------------------------------------------------------- /docs/releases/v3.1.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/docs/releases/v3.1.2.md -------------------------------------------------------------------------------- /docs/releases/v3.1.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/docs/releases/v3.1.3.md -------------------------------------------------------------------------------- /docs/releases/v3.1.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/docs/releases/v3.1.4.md -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/stylesheets/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/docs/stylesheets/extra.css -------------------------------------------------------------------------------- /images/aa_asym_mh_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/images/aa_asym_mh_v2.png -------------------------------------------------------------------------------- /images/avdasymirb_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/images/avdasymirb_v2.png -------------------------------------------------------------------------------- /images/avdcentralgw_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/images/avdcentralgw_v2.png -------------------------------------------------------------------------------- /images/avdirb-ibgp-ospf_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/images/avdirb-ibgp-ospf_v2.png -------------------------------------------------------------------------------- /images/avdirb_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/images/avdirb_v2.png -------------------------------------------------------------------------------- /images/mpls_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/images/mpls_v2.png -------------------------------------------------------------------------------- /images/sa_sym_mh_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/images/sa_sym_mh_v2.png -------------------------------------------------------------------------------- /labs/evpn/avd_asym_irb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_asym_irb/Makefile -------------------------------------------------------------------------------- /labs/evpn/avd_asym_irb/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_asym_irb/ansible.cfg -------------------------------------------------------------------------------- /labs/evpn/avd_asym_irb/group_vars/AVD_LAB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_asym_irb/group_vars/AVD_LAB.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_asym_irb/group_vars/DC1_CONNECTED_ENDPOINTS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_asym_irb/group_vars/DC1_CONNECTED_ENDPOINTS.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_asym_irb/group_vars/DC1_FABRIC.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_asym_irb/group_vars/DC1_FABRIC.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_asym_irb/group_vars/DC1_LEAFS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_asym_irb/group_vars/DC1_LEAFS.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_asym_irb/group_vars/DC1_NETWORK_SERVICES.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_asym_irb/group_vars/DC1_NETWORK_SERVICES.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_asym_irb/group_vars/DC1_SPINES.yaml: -------------------------------------------------------------------------------- 1 | type: spine 2 | -------------------------------------------------------------------------------- /labs/evpn/avd_asym_irb/host_l3_config/l3_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_asym_irb/host_l3_config/l3_build.sh -------------------------------------------------------------------------------- /labs/evpn/avd_asym_irb/inventory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_asym_irb/inventory.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_asym_irb/playbooks/fabric-deploy-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_asym_irb/playbooks/fabric-deploy-config.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_asym_irb/topology.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_asym_irb/topology.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_asym_multihoming/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_asym_multihoming/Makefile -------------------------------------------------------------------------------- /labs/evpn/avd_asym_multihoming/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_asym_multihoming/ansible.cfg -------------------------------------------------------------------------------- /labs/evpn/avd_asym_multihoming/group_vars/AVD_LAB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_asym_multihoming/group_vars/AVD_LAB.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_asym_multihoming/group_vars/DC1_CONNECTED_ENDPOINTS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_asym_multihoming/group_vars/DC1_CONNECTED_ENDPOINTS.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_asym_multihoming/group_vars/DC1_FABRIC.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_asym_multihoming/group_vars/DC1_FABRIC.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_asym_multihoming/group_vars/DC1_NETWORK_SERVICES.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_asym_multihoming/group_vars/DC1_NETWORK_SERVICES.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_asym_multihoming/group_vars/DC1_PES.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_asym_multihoming/group_vars/DC1_PES.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_asym_multihoming/group_vars/DC1_SPINES.yaml: -------------------------------------------------------------------------------- 1 | type: spine 2 | -------------------------------------------------------------------------------- /labs/evpn/avd_asym_multihoming/host_l3_config/l3_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_asym_multihoming/host_l3_config/l3_build.sh -------------------------------------------------------------------------------- /labs/evpn/avd_asym_multihoming/inventory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_asym_multihoming/inventory.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_asym_multihoming/playbooks/fabric-deploy-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_asym_multihoming/playbooks/fabric-deploy-config.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_asym_multihoming/topology.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_asym_multihoming/topology.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_central_any_gw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_central_any_gw/Makefile -------------------------------------------------------------------------------- /labs/evpn/avd_central_any_gw/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_central_any_gw/ansible.cfg -------------------------------------------------------------------------------- /labs/evpn/avd_central_any_gw/group_vars/AVD_LAB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_central_any_gw/group_vars/AVD_LAB.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_central_any_gw/group_vars/DC1_CONNECTED_ENDPOINTS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_central_any_gw/group_vars/DC1_CONNECTED_ENDPOINTS.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_central_any_gw/group_vars/DC1_FABRIC.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_central_any_gw/group_vars/DC1_FABRIC.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_central_any_gw/group_vars/DC1_L2_LEAFS.yaml: -------------------------------------------------------------------------------- 1 | type: l3leaf 2 | -------------------------------------------------------------------------------- /labs/evpn/avd_central_any_gw/group_vars/DC1_L3_LEAFS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_central_any_gw/group_vars/DC1_L3_LEAFS.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_central_any_gw/group_vars/DC1_NETWORK_SERVICES.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_central_any_gw/group_vars/DC1_NETWORK_SERVICES.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_central_any_gw/group_vars/DC1_SPINES.yaml: -------------------------------------------------------------------------------- 1 | type: spine -------------------------------------------------------------------------------- /labs/evpn/avd_central_any_gw/host_l3_config/l3_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_central_any_gw/host_l3_config/l3_build.sh -------------------------------------------------------------------------------- /labs/evpn/avd_central_any_gw/inventory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_central_any_gw/inventory.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_central_any_gw/playbooks/fabric-deploy-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_central_any_gw/playbooks/fabric-deploy-config.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_central_any_gw/topology.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_central_any_gw/topology.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_dual_dc_l3_gw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_dual_dc_l3_gw/Makefile -------------------------------------------------------------------------------- /labs/evpn/avd_dual_dc_l3_gw/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_dual_dc_l3_gw/ansible.cfg -------------------------------------------------------------------------------- /labs/evpn/avd_dual_dc_l3_gw/group_vars/AVD_FABRIC.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_dual_dc_l3_gw/group_vars/AVD_FABRIC.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_dual_dc_l3_gw/group_vars/CONNECTED_ENDPOINTS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_dual_dc_l3_gw/group_vars/CONNECTED_ENDPOINTS.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_dual_dc_l3_gw/group_vars/DC1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_dual_dc_l3_gw/group_vars/DC1.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_dual_dc_l3_gw/group_vars/DC1_BORDER_LEAVES.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | type: l3leaf -------------------------------------------------------------------------------- /labs/evpn/avd_dual_dc_l3_gw/group_vars/DC1_LEAVES.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | type: l3leaf 3 | -------------------------------------------------------------------------------- /labs/evpn/avd_dual_dc_l3_gw/group_vars/DC1_SPINES.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | type: spine 3 | -------------------------------------------------------------------------------- /labs/evpn/avd_dual_dc_l3_gw/group_vars/DC2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_dual_dc_l3_gw/group_vars/DC2.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_dual_dc_l3_gw/group_vars/DC2_BORDER_LEAVES.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | type: l3leaf 3 | -------------------------------------------------------------------------------- /labs/evpn/avd_dual_dc_l3_gw/group_vars/DC2_LEAVES.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | type: l3leaf 3 | -------------------------------------------------------------------------------- /labs/evpn/avd_dual_dc_l3_gw/group_vars/DC2_SPINES.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | type: spine 3 | -------------------------------------------------------------------------------- /labs/evpn/avd_dual_dc_l3_gw/group_vars/NETWORK_SERVICES.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_dual_dc_l3_gw/group_vars/NETWORK_SERVICES.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_dual_dc_l3_gw/group_vars/WAN_ROUTER.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_dual_dc_l3_gw/group_vars/WAN_ROUTER.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_dual_dc_l3_gw/host_l3_config/dc1_l3_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_dual_dc_l3_gw/host_l3_config/dc1_l3_build.sh -------------------------------------------------------------------------------- /labs/evpn/avd_dual_dc_l3_gw/host_l3_config/dc2_l3_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_dual_dc_l3_gw/host_l3_config/dc2_l3_build.sh -------------------------------------------------------------------------------- /labs/evpn/avd_dual_dc_l3_gw/inventory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_dual_dc_l3_gw/inventory.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_dual_dc_l3_gw/playbooks/fabric-deploy-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_dual_dc_l3_gw/playbooks/fabric-deploy-config.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_dual_dc_l3_gw/topology.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_dual_dc_l3_gw/topology.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_dual_dc_multi_domain/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_dual_dc_multi_domain/Makefile -------------------------------------------------------------------------------- /labs/evpn/avd_dual_dc_multi_domain/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_dual_dc_multi_domain/ansible.cfg -------------------------------------------------------------------------------- /labs/evpn/avd_dual_dc_multi_domain/group_vars/AVD_FABRIC.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_dual_dc_multi_domain/group_vars/AVD_FABRIC.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_dual_dc_multi_domain/group_vars/CONNECTED_ENDPOINTS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_dual_dc_multi_domain/group_vars/CONNECTED_ENDPOINTS.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_dual_dc_multi_domain/group_vars/DC1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_dual_dc_multi_domain/group_vars/DC1.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_dual_dc_multi_domain/group_vars/DC1_BORDER_LEAVES.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | type: l3leaf -------------------------------------------------------------------------------- /labs/evpn/avd_dual_dc_multi_domain/group_vars/DC1_LEAVES.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | type: l3leaf 3 | -------------------------------------------------------------------------------- /labs/evpn/avd_dual_dc_multi_domain/group_vars/DC1_SPINES.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | type: spine 3 | -------------------------------------------------------------------------------- /labs/evpn/avd_dual_dc_multi_domain/group_vars/DC2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_dual_dc_multi_domain/group_vars/DC2.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_dual_dc_multi_domain/group_vars/DC2_BORDER_LEAVES.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | type: l3leaf 3 | -------------------------------------------------------------------------------- /labs/evpn/avd_dual_dc_multi_domain/group_vars/DC2_LEAVES.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | type: l3leaf 3 | -------------------------------------------------------------------------------- /labs/evpn/avd_dual_dc_multi_domain/group_vars/DC2_SPINES.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | type: spine 3 | -------------------------------------------------------------------------------- /labs/evpn/avd_dual_dc_multi_domain/group_vars/NETWORK_SERVICES.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_dual_dc_multi_domain/group_vars/NETWORK_SERVICES.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_dual_dc_multi_domain/group_vars/WAN_ROUTER.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_dual_dc_multi_domain/group_vars/WAN_ROUTER.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_dual_dc_multi_domain/host_l3_config/dc1_l3_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_dual_dc_multi_domain/host_l3_config/dc1_l3_build.sh -------------------------------------------------------------------------------- /labs/evpn/avd_dual_dc_multi_domain/host_l3_config/dc2_l3_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_dual_dc_multi_domain/host_l3_config/dc2_l3_build.sh -------------------------------------------------------------------------------- /labs/evpn/avd_dual_dc_multi_domain/inventory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_dual_dc_multi_domain/inventory.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_dual_dc_multi_domain/playbooks/fabric-deploy-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_dual_dc_multi_domain/playbooks/fabric-deploy-config.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_dual_dc_multi_domain/topology.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_dual_dc_multi_domain/topology.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_sym_irb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_sym_irb/Makefile -------------------------------------------------------------------------------- /labs/evpn/avd_sym_irb/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_sym_irb/ansible.cfg -------------------------------------------------------------------------------- /labs/evpn/avd_sym_irb/group_vars/AVD_LAB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_sym_irb/group_vars/AVD_LAB.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_sym_irb/group_vars/DC1_CONNECTED_ENDPOINTS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_sym_irb/group_vars/DC1_CONNECTED_ENDPOINTS.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_sym_irb/group_vars/DC1_FABRIC.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_sym_irb/group_vars/DC1_FABRIC.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_sym_irb/group_vars/DC1_L2_LEAFS.yaml: -------------------------------------------------------------------------------- 1 | type: l2leaf 2 | -------------------------------------------------------------------------------- /labs/evpn/avd_sym_irb/group_vars/DC1_L3_LEAFS.yaml: -------------------------------------------------------------------------------- 1 | type: l3leaf 2 | -------------------------------------------------------------------------------- /labs/evpn/avd_sym_irb/group_vars/DC1_NETWORK_SERVICES.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_sym_irb/group_vars/DC1_NETWORK_SERVICES.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_sym_irb/group_vars/DC1_SPINES.yaml: -------------------------------------------------------------------------------- 1 | type: spine 2 | -------------------------------------------------------------------------------- /labs/evpn/avd_sym_irb/host_l3_config/l3_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_sym_irb/host_l3_config/l3_build.sh -------------------------------------------------------------------------------- /labs/evpn/avd_sym_irb/inventory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_sym_irb/inventory.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_sym_irb/playbooks/fabric-deploy-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_sym_irb/playbooks/fabric-deploy-config.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_sym_irb/topology.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_sym_irb/topology.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_sym_irb_ibgp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_sym_irb_ibgp/Makefile -------------------------------------------------------------------------------- /labs/evpn/avd_sym_irb_ibgp/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_sym_irb_ibgp/ansible.cfg -------------------------------------------------------------------------------- /labs/evpn/avd_sym_irb_ibgp/group_vars/AVD_LAB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_sym_irb_ibgp/group_vars/AVD_LAB.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_sym_irb_ibgp/group_vars/DC1_CONNECTED_ENDPOINTS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_sym_irb_ibgp/group_vars/DC1_CONNECTED_ENDPOINTS.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_sym_irb_ibgp/group_vars/DC1_FABRIC.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_sym_irb_ibgp/group_vars/DC1_FABRIC.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_sym_irb_ibgp/group_vars/DC1_L3_LEAFS.yaml: -------------------------------------------------------------------------------- 1 | type: l3leaf 2 | -------------------------------------------------------------------------------- /labs/evpn/avd_sym_irb_ibgp/group_vars/DC1_NETWORK_SERVICES.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_sym_irb_ibgp/group_vars/DC1_NETWORK_SERVICES.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_sym_irb_ibgp/group_vars/DC1_SPINES.yaml: -------------------------------------------------------------------------------- 1 | type: spine 2 | -------------------------------------------------------------------------------- /labs/evpn/avd_sym_irb_ibgp/host_l3_config/l3_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_sym_irb_ibgp/host_l3_config/l3_build.sh -------------------------------------------------------------------------------- /labs/evpn/avd_sym_irb_ibgp/inventory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_sym_irb_ibgp/inventory.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_sym_irb_ibgp/playbooks/fabric-deploy-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_sym_irb_ibgp/playbooks/fabric-deploy-config.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_sym_irb_ibgp/topology.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_sym_irb_ibgp/topology.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_sym_sa_multihoming/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_sym_sa_multihoming/Makefile -------------------------------------------------------------------------------- /labs/evpn/avd_sym_sa_multihoming/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_sym_sa_multihoming/ansible.cfg -------------------------------------------------------------------------------- /labs/evpn/avd_sym_sa_multihoming/group_vars/AVD_LAB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_sym_sa_multihoming/group_vars/AVD_LAB.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_sym_sa_multihoming/group_vars/DC1_CONNECTED_ENDPOINTS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_sym_sa_multihoming/group_vars/DC1_CONNECTED_ENDPOINTS.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_sym_sa_multihoming/group_vars/DC1_FABRIC.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_sym_sa_multihoming/group_vars/DC1_FABRIC.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_sym_sa_multihoming/group_vars/DC1_NETWORK_SERVICES.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_sym_sa_multihoming/group_vars/DC1_NETWORK_SERVICES.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_sym_sa_multihoming/group_vars/DC1_PES.yaml: -------------------------------------------------------------------------------- 1 | type: l3leaf 2 | -------------------------------------------------------------------------------- /labs/evpn/avd_sym_sa_multihoming/group_vars/DC1_SPINES.yaml: -------------------------------------------------------------------------------- 1 | type: spine 2 | 3 | -------------------------------------------------------------------------------- /labs/evpn/avd_sym_sa_multihoming/host_l3_config/l3_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_sym_sa_multihoming/host_l3_config/l3_build.sh -------------------------------------------------------------------------------- /labs/evpn/avd_sym_sa_multihoming/inventory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_sym_sa_multihoming/inventory.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_sym_sa_multihoming/playbooks/fabric-deploy-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_sym_sa_multihoming/playbooks/fabric-deploy-config.yaml -------------------------------------------------------------------------------- /labs/evpn/avd_sym_sa_multihoming/topology.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/evpn/avd_sym_sa_multihoming/topology.yaml -------------------------------------------------------------------------------- /labs/mpls_ldp_evpn/mpls_evpn_irb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/mpls_ldp_evpn/mpls_evpn_irb/Makefile -------------------------------------------------------------------------------- /labs/mpls_ldp_evpn/mpls_evpn_irb/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/mpls_ldp_evpn/mpls_evpn_irb/ansible.cfg -------------------------------------------------------------------------------- /labs/mpls_ldp_evpn/mpls_evpn_irb/documentation/devices/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /labs/mpls_ldp_evpn/mpls_evpn_irb/host_l3_config/l3_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/mpls_ldp_evpn/mpls_evpn_irb/host_l3_config/l3_build.sh -------------------------------------------------------------------------------- /labs/mpls_ldp_evpn/mpls_evpn_irb/intended/configs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /labs/mpls_ldp_evpn/mpls_evpn_irb/intended/structured_configs/DC1_P1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/mpls_ldp_evpn/mpls_evpn_irb/intended/structured_configs/DC1_P1.yml -------------------------------------------------------------------------------- /labs/mpls_ldp_evpn/mpls_evpn_irb/intended/structured_configs/DC1_P2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/mpls_ldp_evpn/mpls_evpn_irb/intended/structured_configs/DC1_P2.yml -------------------------------------------------------------------------------- /labs/mpls_ldp_evpn/mpls_evpn_irb/intended/structured_configs/DC1_PE11.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/mpls_ldp_evpn/mpls_evpn_irb/intended/structured_configs/DC1_PE11.yml -------------------------------------------------------------------------------- /labs/mpls_ldp_evpn/mpls_evpn_irb/intended/structured_configs/DC1_PE12.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/mpls_ldp_evpn/mpls_evpn_irb/intended/structured_configs/DC1_PE12.yml -------------------------------------------------------------------------------- /labs/mpls_ldp_evpn/mpls_evpn_irb/intended/structured_configs/DC1_PE21.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/mpls_ldp_evpn/mpls_evpn_irb/intended/structured_configs/DC1_PE21.yml -------------------------------------------------------------------------------- /labs/mpls_ldp_evpn/mpls_evpn_irb/intended/structured_configs/DC1_PE22.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/mpls_ldp_evpn/mpls_evpn_irb/intended/structured_configs/DC1_PE22.yml -------------------------------------------------------------------------------- /labs/mpls_ldp_evpn/mpls_evpn_irb/inventory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/mpls_ldp_evpn/mpls_evpn_irb/inventory.yaml -------------------------------------------------------------------------------- /labs/mpls_ldp_evpn/mpls_evpn_irb/playbooks/fabric-deploy-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/mpls_ldp_evpn/mpls_evpn_irb/playbooks/fabric-deploy-config.yaml -------------------------------------------------------------------------------- /labs/mpls_ldp_evpn/mpls_evpn_irb/topology.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/mpls_ldp_evpn/mpls_evpn_irb/topology.yaml -------------------------------------------------------------------------------- /labs/mpls_ldp_evpn/mpls_ldp_l2evpn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/mpls_ldp_evpn/mpls_ldp_l2evpn/Makefile -------------------------------------------------------------------------------- /labs/mpls_ldp_evpn/mpls_ldp_l2evpn/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/mpls_ldp_evpn/mpls_ldp_l2evpn/ansible.cfg -------------------------------------------------------------------------------- /labs/mpls_ldp_evpn/mpls_ldp_l2evpn/documentation/devices/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /labs/mpls_ldp_evpn/mpls_ldp_l2evpn/host_l3_config/l3_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/mpls_ldp_evpn/mpls_ldp_l2evpn/host_l3_config/l3_build.sh -------------------------------------------------------------------------------- /labs/mpls_ldp_evpn/mpls_ldp_l2evpn/intended/configs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /labs/mpls_ldp_evpn/mpls_ldp_l2evpn/intended/structured_configs/DC1_P1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/mpls_ldp_evpn/mpls_ldp_l2evpn/intended/structured_configs/DC1_P1.yml -------------------------------------------------------------------------------- /labs/mpls_ldp_evpn/mpls_ldp_l2evpn/intended/structured_configs/DC1_P2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/mpls_ldp_evpn/mpls_ldp_l2evpn/intended/structured_configs/DC1_P2.yml -------------------------------------------------------------------------------- /labs/mpls_ldp_evpn/mpls_ldp_l2evpn/intended/structured_configs/DC1_PE11.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/mpls_ldp_evpn/mpls_ldp_l2evpn/intended/structured_configs/DC1_PE11.yml -------------------------------------------------------------------------------- /labs/mpls_ldp_evpn/mpls_ldp_l2evpn/intended/structured_configs/DC1_PE12.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/mpls_ldp_evpn/mpls_ldp_l2evpn/intended/structured_configs/DC1_PE12.yml -------------------------------------------------------------------------------- /labs/mpls_ldp_evpn/mpls_ldp_l2evpn/intended/structured_configs/DC1_PE21.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/mpls_ldp_evpn/mpls_ldp_l2evpn/intended/structured_configs/DC1_PE21.yml -------------------------------------------------------------------------------- /labs/mpls_ldp_evpn/mpls_ldp_l2evpn/intended/structured_configs/DC1_PE22.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/mpls_ldp_evpn/mpls_ldp_l2evpn/intended/structured_configs/DC1_PE22.yml -------------------------------------------------------------------------------- /labs/mpls_ldp_evpn/mpls_ldp_l2evpn/inventory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/mpls_ldp_evpn/mpls_ldp_l2evpn/inventory.yaml -------------------------------------------------------------------------------- /labs/mpls_ldp_evpn/mpls_ldp_l2evpn/playbooks/fabric-deploy-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/mpls_ldp_evpn/mpls_ldp_l2evpn/playbooks/fabric-deploy-config.yaml -------------------------------------------------------------------------------- /labs/mpls_ldp_evpn/mpls_ldp_l2evpn/topology.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/labs/mpls_ldp_evpn/mpls_ldp_l2evpn/topology.yaml -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arista-netdevops-community/avd-cEOS-Lab/HEAD/mkdocs.yml --------------------------------------------------------------------------------