├── .gitignore ├── Ansible-NXOS-master ├── ADD_VXLAN_TENANT │ ├── roles │ │ └── leaf │ │ │ ├── tasks │ │ │ └── main.yml │ │ │ └── vars │ │ │ └── main.yml │ └── site.yml ├── Ansible-NXOS │ └── VxLAN-BGP-EVPN │ │ ├── host_vars │ │ ├── leaf-1.yml │ │ ├── leaf-2.yml │ │ ├── n9k1.yml │ │ └── n9k2.yml │ │ ├── hosts │ │ ├── roles │ │ ├── leaf │ │ │ ├── tasks │ │ │ │ └── main.yml │ │ │ └── vars │ │ │ │ └── main.yml │ │ └── spine │ │ │ ├── tasks │ │ │ └── main.yml │ │ │ └── vars │ │ │ └── main.yml │ │ └── site.yml ├── L2_vlan_IP_config.yaml ├── Port_Profiles │ ├── group_vars │ │ └── XYZ.yml │ ├── host_vars │ │ ├── n9kv-1.yml │ │ └── n9kv-2.yml │ └── site.yaml ├── copy_apply_patch.yml ├── create_apply_ACL.yml ├── create_vlan.yml ├── interface_ansible.yml ├── scheduler.yml ├── snmp_ansible.yml ├── tacacs_ansible.yml ├── tacacs_config.yml └── vlan_ansible.yml ├── NXAPI_REST-master ├── BGP_EVPN_REST │ ├── Features │ │ ├── Leaf-1.json │ │ ├── Leaf-2.json │ │ ├── Spine-1.json │ │ └── Spine-2.json │ ├── Overlay │ │ ├── Leaf-1.json │ │ ├── Leaf-2.json │ │ ├── Spine-1.json │ │ └── Spine-2.json │ ├── Switchport_Configuration │ │ ├── Leaf-1.json │ │ ├── Leaf-2.json │ │ ├── Spine-1.json │ │ └── Spine-2.json │ ├── Underlay │ │ ├── Leaf-1.json │ │ ├── Leaf-2.json │ │ ├── Spine-1.json │ │ └── Spine-2.json │ └── VTEP_Configuration │ │ ├── Leaf-1.json │ │ └── Leaf-2.json └── README.md ├── Puppet-NXOS-master ├── Puppet-VXLAN-CVD │ ├── LICENSE │ ├── README.md │ ├── data │ │ ├── common.yaml │ │ └── evpn_vxlan_node_data │ │ │ ├── leaf_1.yaml │ │ │ ├── leaf_2.yaml │ │ │ ├── spine_1.yaml │ │ │ └── spine_2.yaml │ ├── examples │ │ ├── Logs │ │ │ ├── Leaf_1 config output │ │ │ │ ├── puppet run log for Leaf_1 switch.txt │ │ │ │ └── switch console output for Leaf_1.txt │ │ │ ├── Leaf_2 config output │ │ │ │ ├── puppet run log for Leaf_2 switch.txt │ │ │ │ └── switch console output for Leaf_2.txt │ │ │ ├── Spine_1 config output │ │ │ │ ├── puppet run log for Spine_1 switch.txt │ │ │ │ └── switch console output for Spine_1.txt │ │ │ ├── Spine_2 config output │ │ │ │ ├── puppet run log for Spine_2 switch.txt │ │ │ │ └── switch console output for Spine_2.txt │ │ │ └── Usecases Logs │ │ │ │ ├── Add a new Host Interface │ │ │ │ ├── Leaf_1 hieradata after.txt │ │ │ │ ├── Leaf_1 hieradata before.txt │ │ │ │ ├── Usecase 1 Leaf_1 config after.txt │ │ │ │ ├── Usecase 1 Leaf_1 config before.txt │ │ │ │ └── log of delta applied in puppet run .txt │ │ │ │ ├── Add a new Leaf Switch │ │ │ │ ├── Spine_1 hieradata after.txt │ │ │ │ ├── Spine_1 hieradata before.txt │ │ │ │ ├── Usecase 4 Spine_1 config after.txt │ │ │ │ ├── Usecase 4 Spine_1 config before.txt │ │ │ │ └── log of delta applied in puppet run .txt │ │ │ │ ├── Add a new Spine Switch │ │ │ │ ├── Leaf_1 hieradata after.txt │ │ │ │ ├── Leaf_1 hieradata before.txt │ │ │ │ ├── Usecase 5 Leaf_1 config after.txt │ │ │ │ ├── Usecase 5 Leaf_1 config before.txt │ │ │ │ └── log of delta applied in puppet run .txt │ │ │ │ ├── Add a new VPC port-channel │ │ │ │ ├── Leaf_1 hieradata after.txt │ │ │ │ ├── Leaf_1 hieradata before.txt │ │ │ │ ├── Usecase 2 Leaf_1 config after.txt │ │ │ │ ├── Usecase 2 Leaf_1 config before.txt │ │ │ │ └── log of delta applied in puppet run .txt │ │ │ │ └── Add additional Uplink from Leafs to Spines │ │ │ │ ├── Leaf_1 hieradata after.txt │ │ │ │ ├── Leaf_1 hieradata before.txt │ │ │ │ ├── Usecase 3 Leaf_1 config after.txt │ │ │ │ ├── Usecase 3 Leaf_1 config before.txt │ │ │ │ └── log of delta applied in puppet run .txt │ │ ├── hieradata │ │ │ ├── leaf_1.yaml │ │ │ ├── leaf_2.yaml │ │ │ ├── ref │ │ │ │ ├── leaf_1.yaml │ │ │ │ ├── leaf_2.yaml │ │ │ │ ├── spine_1.yaml │ │ │ │ └── spine_2.yaml │ │ │ ├── spine_1.yaml │ │ │ └── spine_2.yaml │ │ └── site.pp │ ├── hiera.yaml │ ├── images │ │ ├── Profiles.jpg │ │ └── Topology.jpg │ ├── manifests │ │ ├── bgp │ │ │ ├── leaf.pp │ │ │ └── spine.pp │ │ ├── enable_features │ │ │ ├── leaf.pp │ │ │ └── spine.pp │ │ ├── host_or_server_facing_interface.pp │ │ ├── interface.pp │ │ ├── interface_portchannel.pp │ │ ├── interface_svi.pp │ │ ├── l2vni.pp │ │ ├── l3vni.pp │ │ ├── ospf.pp │ │ ├── peer_backup_svi.pp │ │ ├── peer_gateway_svi.pp │ │ ├── peer_keepalive.pp │ │ ├── peer_links.pp │ │ ├── pim │ │ │ ├── leaf.pp │ │ │ └── spine.pp │ │ ├── portchannel.pp │ │ ├── profile │ │ │ ├── leaf_switch.pp │ │ │ └── spine_switch.pp │ │ ├── role │ │ │ ├── leaf_switch.pp │ │ │ └── spine_switch.pp │ │ ├── underlay_interface.pp │ │ ├── vpc_domain.pp │ │ └── vtep_interface.pp │ └── metadata.json ├── README.md ├── evpn_vxlan_manifests │ ├── install.pp │ ├── modules │ │ └── ciscopuppet │ │ │ └── manifests │ │ │ ├── bgp.pp │ │ │ ├── bgp_cfg_data.pp │ │ │ ├── evpn.pp │ │ │ ├── evpn_cfg_data.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ ├── l3_interface.pp │ │ │ ├── l3_interface_cfg_data.pp │ │ │ ├── profile.pp │ │ │ ├── role.pp │ │ │ ├── site.pp │ │ │ ├── vlan.pp │ │ │ ├── vlan_cfg_data.pp │ │ │ ├── vpc.pp │ │ │ └── vpc_cfg_data.pp │ └── site.pp ├── interface_puppet.pp ├── ospf_puppet.pp ├── snmp_puppet.pp ├── tacacs_puppet.pp └── vlan_puppet.pp ├── README.md ├── YANG ├── NX-OS │ ├── RESTCONF │ │ ├── 1. Create L2VNI 20200.postman_collection.json │ │ ├── 2. Create L2VNI 20201.postman_collection.json │ │ ├── 3. Read Status.postman_collection.json │ │ ├── 4. Delete L2VNI 20200.postman_collection.json │ │ ├── 4. Delete L2VNI 20201.postman_collection.json │ │ ├── 5. Enable VXLAN Routing for Tenant-20000.postman_collection.json │ │ └── 6. Disable VXLAN Routing for Tenant-20000.postman_collection.json │ └── YDK │ │ ├── README.md │ │ ├── acl_set.py │ │ ├── acl_set_ssh.py │ │ ├── nve_ir_peers_get.py │ │ ├── nve_peers_get.py │ │ ├── vxlan_create.py │ │ └── vxlan_delete.py └── OpenConfig │ ├── RESTCONF │ ├── curl_commands.txt │ ├── get_interface_config.xml │ ├── set_ip_and_vrrp_on_interface.xml │ └── set_vrrp_on_subinterface.xml │ └── YDK │ └── oc-interfaces.py ├── guestshell_import_export ├── README ├── gs_import.yaml ├── schema.json └── validator.py ├── off-box ├── config-mgmt │ ├── README.md │ ├── fex_config.py │ ├── html │ │ ├── fex_10.1.150.12_.html │ │ ├── int_transciever_10.1.150.12_.html │ │ └── interfacedesc_10.1.150.12_.html │ ├── interface_desc_cdp.py │ ├── interface_desc_lldp.py │ ├── l2_vlan_mgmt.py │ ├── l3_vlan_mgmt.py │ ├── nexus_automation.cfg │ ├── nx_automation.cfg │ ├── nxtoolkit_create_bgp.py │ ├── templates │ │ ├── config_fex.jinja │ │ ├── update_interfacedesc.jinja │ │ └── update_intspeed.jinja │ ├── transceiver.py │ └── vlan_config.py ├── monitoring │ ├── README.md │ ├── check_version.py │ ├── check_version_switch_IPs_example_file │ ├── html │ │ ├── interface_10.1.150.12_.html │ │ └── systemresc_10.1.150.12_.html │ ├── interface_monitor.py │ ├── nexus_automation.cfg │ ├── push_intf_config.py │ ├── systemresc_monitor.py │ └── templates │ │ ├── monitor_interface.jinja │ │ └── monitor_systemresc.jinja └── troubleshoot │ └── README.md ├── on-box ├── config-mgmt │ ├── README.md │ ├── fex_config.py │ ├── interface_desc_cdp.py │ ├── interface_desc_lldp.py │ ├── l2_vlan_mgmt.py │ ├── l3_vlan_mgmt.py │ ├── transceiver.py │ └── vlan_config.py ├── monitoring │ ├── README.md │ ├── interface_monitor.py │ └── systemresc_monitor.py └── troubleshoot │ ├── README.md │ └── intf_name_and_status.py └── restconf ├── RESTCONF ├── 1. Create L2VNI 20200.postman_collection.json ├── 2. Create L2VNI 20201.postman_collection.json ├── 3. Read Status.postman_collection.json ├── 4. Delete L2VNI 20200.postman_collection.json ├── 4. Delete L2VNI 20201.postman_collection.json ├── 5. Enable VXLAN Routing for Tenant-20000.postman_collection.json └── 6. Disable VXLAN Routing for Tenant-20000.postman_collection.json ├── fabric.py ├── host_vars ├── n9kv-leaf-1.yml ├── n9kv-leaf-2.yml ├── n9kv-spine-1.yml └── n9kv-spine-2.yml └── models ├── bgp.txt ├── interfaces.txt ├── leaf ├── bgp.txt ├── dns.txt ├── features.txt ├── interfaces.txt ├── ntp.txt ├── overlay.txt ├── underlay.txt └── vlans.txt ├── overlay.txt └── spine ├── bgp.txt ├── dns.txt ├── features.txt ├── interfaces.txt ├── ntp.txt ├── overlay.txt └── underlay.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/.gitignore -------------------------------------------------------------------------------- /Ansible-NXOS-master/ADD_VXLAN_TENANT/roles/leaf/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Ansible-NXOS-master/ADD_VXLAN_TENANT/roles/leaf/tasks/main.yml -------------------------------------------------------------------------------- /Ansible-NXOS-master/ADD_VXLAN_TENANT/roles/leaf/vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Ansible-NXOS-master/ADD_VXLAN_TENANT/roles/leaf/vars/main.yml -------------------------------------------------------------------------------- /Ansible-NXOS-master/ADD_VXLAN_TENANT/site.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Ansible-NXOS-master/ADD_VXLAN_TENANT/site.yml -------------------------------------------------------------------------------- /Ansible-NXOS-master/Ansible-NXOS/VxLAN-BGP-EVPN/host_vars/leaf-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Ansible-NXOS-master/Ansible-NXOS/VxLAN-BGP-EVPN/host_vars/leaf-1.yml -------------------------------------------------------------------------------- /Ansible-NXOS-master/Ansible-NXOS/VxLAN-BGP-EVPN/host_vars/leaf-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Ansible-NXOS-master/Ansible-NXOS/VxLAN-BGP-EVPN/host_vars/leaf-2.yml -------------------------------------------------------------------------------- /Ansible-NXOS-master/Ansible-NXOS/VxLAN-BGP-EVPN/host_vars/n9k1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Ansible-NXOS-master/Ansible-NXOS/VxLAN-BGP-EVPN/host_vars/n9k1.yml -------------------------------------------------------------------------------- /Ansible-NXOS-master/Ansible-NXOS/VxLAN-BGP-EVPN/host_vars/n9k2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Ansible-NXOS-master/Ansible-NXOS/VxLAN-BGP-EVPN/host_vars/n9k2.yml -------------------------------------------------------------------------------- /Ansible-NXOS-master/Ansible-NXOS/VxLAN-BGP-EVPN/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Ansible-NXOS-master/Ansible-NXOS/VxLAN-BGP-EVPN/hosts -------------------------------------------------------------------------------- /Ansible-NXOS-master/Ansible-NXOS/VxLAN-BGP-EVPN/roles/leaf/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Ansible-NXOS-master/Ansible-NXOS/VxLAN-BGP-EVPN/roles/leaf/tasks/main.yml -------------------------------------------------------------------------------- /Ansible-NXOS-master/Ansible-NXOS/VxLAN-BGP-EVPN/roles/leaf/vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Ansible-NXOS-master/Ansible-NXOS/VxLAN-BGP-EVPN/roles/leaf/vars/main.yml -------------------------------------------------------------------------------- /Ansible-NXOS-master/Ansible-NXOS/VxLAN-BGP-EVPN/roles/spine/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Ansible-NXOS-master/Ansible-NXOS/VxLAN-BGP-EVPN/roles/spine/tasks/main.yml -------------------------------------------------------------------------------- /Ansible-NXOS-master/Ansible-NXOS/VxLAN-BGP-EVPN/roles/spine/vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Ansible-NXOS-master/Ansible-NXOS/VxLAN-BGP-EVPN/roles/spine/vars/main.yml -------------------------------------------------------------------------------- /Ansible-NXOS-master/Ansible-NXOS/VxLAN-BGP-EVPN/site.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Ansible-NXOS-master/Ansible-NXOS/VxLAN-BGP-EVPN/site.yml -------------------------------------------------------------------------------- /Ansible-NXOS-master/L2_vlan_IP_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Ansible-NXOS-master/L2_vlan_IP_config.yaml -------------------------------------------------------------------------------- /Ansible-NXOS-master/Port_Profiles/group_vars/XYZ.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Ansible-NXOS-master/Port_Profiles/group_vars/XYZ.yml -------------------------------------------------------------------------------- /Ansible-NXOS-master/Port_Profiles/host_vars/n9kv-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Ansible-NXOS-master/Port_Profiles/host_vars/n9kv-1.yml -------------------------------------------------------------------------------- /Ansible-NXOS-master/Port_Profiles/host_vars/n9kv-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Ansible-NXOS-master/Port_Profiles/host_vars/n9kv-2.yml -------------------------------------------------------------------------------- /Ansible-NXOS-master/Port_Profiles/site.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Ansible-NXOS-master/Port_Profiles/site.yaml -------------------------------------------------------------------------------- /Ansible-NXOS-master/copy_apply_patch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Ansible-NXOS-master/copy_apply_patch.yml -------------------------------------------------------------------------------- /Ansible-NXOS-master/create_apply_ACL.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Ansible-NXOS-master/create_apply_ACL.yml -------------------------------------------------------------------------------- /Ansible-NXOS-master/create_vlan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Ansible-NXOS-master/create_vlan.yml -------------------------------------------------------------------------------- /Ansible-NXOS-master/interface_ansible.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Ansible-NXOS-master/interface_ansible.yml -------------------------------------------------------------------------------- /Ansible-NXOS-master/scheduler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Ansible-NXOS-master/scheduler.yml -------------------------------------------------------------------------------- /Ansible-NXOS-master/snmp_ansible.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Ansible-NXOS-master/snmp_ansible.yml -------------------------------------------------------------------------------- /Ansible-NXOS-master/tacacs_ansible.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Ansible-NXOS-master/tacacs_ansible.yml -------------------------------------------------------------------------------- /Ansible-NXOS-master/tacacs_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Ansible-NXOS-master/tacacs_config.yml -------------------------------------------------------------------------------- /Ansible-NXOS-master/vlan_ansible.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Ansible-NXOS-master/vlan_ansible.yml -------------------------------------------------------------------------------- /NXAPI_REST-master/BGP_EVPN_REST/Features/Leaf-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/NXAPI_REST-master/BGP_EVPN_REST/Features/Leaf-1.json -------------------------------------------------------------------------------- /NXAPI_REST-master/BGP_EVPN_REST/Features/Leaf-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/NXAPI_REST-master/BGP_EVPN_REST/Features/Leaf-2.json -------------------------------------------------------------------------------- /NXAPI_REST-master/BGP_EVPN_REST/Features/Spine-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/NXAPI_REST-master/BGP_EVPN_REST/Features/Spine-1.json -------------------------------------------------------------------------------- /NXAPI_REST-master/BGP_EVPN_REST/Features/Spine-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/NXAPI_REST-master/BGP_EVPN_REST/Features/Spine-2.json -------------------------------------------------------------------------------- /NXAPI_REST-master/BGP_EVPN_REST/Overlay/Leaf-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/NXAPI_REST-master/BGP_EVPN_REST/Overlay/Leaf-1.json -------------------------------------------------------------------------------- /NXAPI_REST-master/BGP_EVPN_REST/Overlay/Leaf-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/NXAPI_REST-master/BGP_EVPN_REST/Overlay/Leaf-2.json -------------------------------------------------------------------------------- /NXAPI_REST-master/BGP_EVPN_REST/Overlay/Spine-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/NXAPI_REST-master/BGP_EVPN_REST/Overlay/Spine-1.json -------------------------------------------------------------------------------- /NXAPI_REST-master/BGP_EVPN_REST/Overlay/Spine-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/NXAPI_REST-master/BGP_EVPN_REST/Overlay/Spine-2.json -------------------------------------------------------------------------------- /NXAPI_REST-master/BGP_EVPN_REST/Switchport_Configuration/Leaf-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/NXAPI_REST-master/BGP_EVPN_REST/Switchport_Configuration/Leaf-1.json -------------------------------------------------------------------------------- /NXAPI_REST-master/BGP_EVPN_REST/Switchport_Configuration/Leaf-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/NXAPI_REST-master/BGP_EVPN_REST/Switchport_Configuration/Leaf-2.json -------------------------------------------------------------------------------- /NXAPI_REST-master/BGP_EVPN_REST/Switchport_Configuration/Spine-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/NXAPI_REST-master/BGP_EVPN_REST/Switchport_Configuration/Spine-1.json -------------------------------------------------------------------------------- /NXAPI_REST-master/BGP_EVPN_REST/Switchport_Configuration/Spine-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/NXAPI_REST-master/BGP_EVPN_REST/Switchport_Configuration/Spine-2.json -------------------------------------------------------------------------------- /NXAPI_REST-master/BGP_EVPN_REST/Underlay/Leaf-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/NXAPI_REST-master/BGP_EVPN_REST/Underlay/Leaf-1.json -------------------------------------------------------------------------------- /NXAPI_REST-master/BGP_EVPN_REST/Underlay/Leaf-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/NXAPI_REST-master/BGP_EVPN_REST/Underlay/Leaf-2.json -------------------------------------------------------------------------------- /NXAPI_REST-master/BGP_EVPN_REST/Underlay/Spine-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/NXAPI_REST-master/BGP_EVPN_REST/Underlay/Spine-1.json -------------------------------------------------------------------------------- /NXAPI_REST-master/BGP_EVPN_REST/Underlay/Spine-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/NXAPI_REST-master/BGP_EVPN_REST/Underlay/Spine-2.json -------------------------------------------------------------------------------- /NXAPI_REST-master/BGP_EVPN_REST/VTEP_Configuration/Leaf-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/NXAPI_REST-master/BGP_EVPN_REST/VTEP_Configuration/Leaf-1.json -------------------------------------------------------------------------------- /NXAPI_REST-master/BGP_EVPN_REST/VTEP_Configuration/Leaf-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/NXAPI_REST-master/BGP_EVPN_REST/VTEP_Configuration/Leaf-2.json -------------------------------------------------------------------------------- /NXAPI_REST-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/NXAPI_REST-master/README.md -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/LICENSE -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/README.md -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/data/common.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/data/evpn_vxlan_node_data/leaf_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/data/evpn_vxlan_node_data/leaf_1.yaml -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/data/evpn_vxlan_node_data/leaf_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/data/evpn_vxlan_node_data/leaf_2.yaml -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/data/evpn_vxlan_node_data/spine_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/data/evpn_vxlan_node_data/spine_1.yaml -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/data/evpn_vxlan_node_data/spine_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/data/evpn_vxlan_node_data/spine_2.yaml -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Leaf_1 config output/puppet run log for Leaf_1 switch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Leaf_1 config output/puppet run log for Leaf_1 switch.txt -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Leaf_1 config output/switch console output for Leaf_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Leaf_1 config output/switch console output for Leaf_1.txt -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Leaf_2 config output/puppet run log for Leaf_2 switch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Leaf_2 config output/puppet run log for Leaf_2 switch.txt -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Leaf_2 config output/switch console output for Leaf_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Leaf_2 config output/switch console output for Leaf_2.txt -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Spine_1 config output/puppet run log for Spine_1 switch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Spine_1 config output/puppet run log for Spine_1 switch.txt -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Spine_1 config output/switch console output for Spine_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Spine_1 config output/switch console output for Spine_1.txt -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Spine_2 config output/puppet run log for Spine_2 switch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Spine_2 config output/puppet run log for Spine_2 switch.txt -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Spine_2 config output/switch console output for Spine_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Spine_2 config output/switch console output for Spine_2.txt -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Usecases Logs/Add a new Host Interface/Leaf_1 hieradata after.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Usecases Logs/Add a new Host Interface/Leaf_1 hieradata after.txt -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Usecases Logs/Add a new Host Interface/Leaf_1 hieradata before.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Usecases Logs/Add a new Host Interface/Leaf_1 hieradata before.txt -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Usecases Logs/Add a new Host Interface/Usecase 1 Leaf_1 config after.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Usecases Logs/Add a new Host Interface/Usecase 1 Leaf_1 config after.txt -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Usecases Logs/Add a new Host Interface/Usecase 1 Leaf_1 config before.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Usecases Logs/Add a new Host Interface/Usecase 1 Leaf_1 config before.txt -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Usecases Logs/Add a new Host Interface/log of delta applied in puppet run .txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Usecases Logs/Add a new Host Interface/log of delta applied in puppet run .txt -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Usecases Logs/Add a new Leaf Switch/Spine_1 hieradata after.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Usecases Logs/Add a new Leaf Switch/Spine_1 hieradata after.txt -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Usecases Logs/Add a new Leaf Switch/Spine_1 hieradata before.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Usecases Logs/Add a new Leaf Switch/Spine_1 hieradata before.txt -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Usecases Logs/Add a new Leaf Switch/Usecase 4 Spine_1 config after.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Usecases Logs/Add a new Leaf Switch/Usecase 4 Spine_1 config after.txt -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Usecases Logs/Add a new Leaf Switch/Usecase 4 Spine_1 config before.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Usecases Logs/Add a new Leaf Switch/Usecase 4 Spine_1 config before.txt -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Usecases Logs/Add a new Leaf Switch/log of delta applied in puppet run .txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Usecases Logs/Add a new Leaf Switch/log of delta applied in puppet run .txt -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Usecases Logs/Add a new Spine Switch/Leaf_1 hieradata after.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Usecases Logs/Add a new Spine Switch/Leaf_1 hieradata after.txt -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Usecases Logs/Add a new Spine Switch/Leaf_1 hieradata before.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Usecases Logs/Add a new Spine Switch/Leaf_1 hieradata before.txt -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Usecases Logs/Add a new Spine Switch/Usecase 5 Leaf_1 config after.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Usecases Logs/Add a new Spine Switch/Usecase 5 Leaf_1 config after.txt -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Usecases Logs/Add a new Spine Switch/Usecase 5 Leaf_1 config before.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Usecases Logs/Add a new Spine Switch/Usecase 5 Leaf_1 config before.txt -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Usecases Logs/Add a new Spine Switch/log of delta applied in puppet run .txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Usecases Logs/Add a new Spine Switch/log of delta applied in puppet run .txt -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Usecases Logs/Add a new VPC port-channel/Leaf_1 hieradata after.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Usecases Logs/Add a new VPC port-channel/Leaf_1 hieradata after.txt -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Usecases Logs/Add a new VPC port-channel/Leaf_1 hieradata before.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Usecases Logs/Add a new VPC port-channel/Leaf_1 hieradata before.txt -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Usecases Logs/Add a new VPC port-channel/Usecase 2 Leaf_1 config after.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Usecases Logs/Add a new VPC port-channel/Usecase 2 Leaf_1 config after.txt -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Usecases Logs/Add a new VPC port-channel/Usecase 2 Leaf_1 config before.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Usecases Logs/Add a new VPC port-channel/Usecase 2 Leaf_1 config before.txt -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Usecases Logs/Add a new VPC port-channel/log of delta applied in puppet run .txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Usecases Logs/Add a new VPC port-channel/log of delta applied in puppet run .txt -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Usecases Logs/Add additional Uplink from Leafs to Spines/Leaf_1 hieradata after.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Usecases Logs/Add additional Uplink from Leafs to Spines/Leaf_1 hieradata after.txt -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Usecases Logs/Add additional Uplink from Leafs to Spines/Leaf_1 hieradata before.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Usecases Logs/Add additional Uplink from Leafs to Spines/Leaf_1 hieradata before.txt -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Usecases Logs/Add additional Uplink from Leafs to Spines/Usecase 3 Leaf_1 config after.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Usecases Logs/Add additional Uplink from Leafs to Spines/Usecase 3 Leaf_1 config after.txt -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Usecases Logs/Add additional Uplink from Leafs to Spines/Usecase 3 Leaf_1 config before.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Usecases Logs/Add additional Uplink from Leafs to Spines/Usecase 3 Leaf_1 config before.txt -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Usecases Logs/Add additional Uplink from Leafs to Spines/log of delta applied in puppet run .txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/Logs/Usecases Logs/Add additional Uplink from Leafs to Spines/log of delta applied in puppet run .txt -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/hieradata/leaf_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/hieradata/leaf_1.yaml -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/hieradata/leaf_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/hieradata/leaf_2.yaml -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/hieradata/ref/leaf_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/hieradata/ref/leaf_1.yaml -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/hieradata/ref/leaf_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/hieradata/ref/leaf_2.yaml -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/hieradata/ref/spine_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/hieradata/ref/spine_1.yaml -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/hieradata/ref/spine_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/hieradata/ref/spine_2.yaml -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/hieradata/spine_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/hieradata/spine_1.yaml -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/hieradata/spine_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/hieradata/spine_2.yaml -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/site.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/examples/site.pp -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/hiera.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/hiera.yaml -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/images/Profiles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/images/Profiles.jpg -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/images/Topology.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/images/Topology.jpg -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/manifests/bgp/leaf.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/manifests/bgp/leaf.pp -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/manifests/bgp/spine.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/manifests/bgp/spine.pp -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/manifests/enable_features/leaf.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/manifests/enable_features/leaf.pp -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/manifests/enable_features/spine.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/manifests/enable_features/spine.pp -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/manifests/host_or_server_facing_interface.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/manifests/host_or_server_facing_interface.pp -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/manifests/interface.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/manifests/interface.pp -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/manifests/interface_portchannel.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/manifests/interface_portchannel.pp -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/manifests/interface_svi.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/manifests/interface_svi.pp -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/manifests/l2vni.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/manifests/l2vni.pp -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/manifests/l3vni.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/manifests/l3vni.pp -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/manifests/ospf.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/manifests/ospf.pp -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/manifests/peer_backup_svi.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/manifests/peer_backup_svi.pp -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/manifests/peer_gateway_svi.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/manifests/peer_gateway_svi.pp -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/manifests/peer_keepalive.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/manifests/peer_keepalive.pp -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/manifests/peer_links.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/manifests/peer_links.pp -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/manifests/pim/leaf.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/manifests/pim/leaf.pp -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/manifests/pim/spine.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/manifests/pim/spine.pp -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/manifests/portchannel.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/manifests/portchannel.pp -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/manifests/profile/leaf_switch.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/manifests/profile/leaf_switch.pp -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/manifests/profile/spine_switch.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/manifests/profile/spine_switch.pp -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/manifests/role/leaf_switch.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/manifests/role/leaf_switch.pp -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/manifests/role/spine_switch.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/manifests/role/spine_switch.pp -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/manifests/underlay_interface.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/manifests/underlay_interface.pp -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/manifests/vpc_domain.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/manifests/vpc_domain.pp -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/manifests/vtep_interface.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/manifests/vtep_interface.pp -------------------------------------------------------------------------------- /Puppet-NXOS-master/Puppet-VXLAN-CVD/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/Puppet-VXLAN-CVD/metadata.json -------------------------------------------------------------------------------- /Puppet-NXOS-master/README.md: -------------------------------------------------------------------------------- 1 | # Puppet-NXOS 2 | -------------------------------------------------------------------------------- /Puppet-NXOS-master/evpn_vxlan_manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/evpn_vxlan_manifests/install.pp -------------------------------------------------------------------------------- /Puppet-NXOS-master/evpn_vxlan_manifests/modules/ciscopuppet/manifests/bgp.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/evpn_vxlan_manifests/modules/ciscopuppet/manifests/bgp.pp -------------------------------------------------------------------------------- /Puppet-NXOS-master/evpn_vxlan_manifests/modules/ciscopuppet/manifests/bgp_cfg_data.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/evpn_vxlan_manifests/modules/ciscopuppet/manifests/bgp_cfg_data.pp -------------------------------------------------------------------------------- /Puppet-NXOS-master/evpn_vxlan_manifests/modules/ciscopuppet/manifests/evpn.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/evpn_vxlan_manifests/modules/ciscopuppet/manifests/evpn.pp -------------------------------------------------------------------------------- /Puppet-NXOS-master/evpn_vxlan_manifests/modules/ciscopuppet/manifests/evpn_cfg_data.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/evpn_vxlan_manifests/modules/ciscopuppet/manifests/evpn_cfg_data.pp -------------------------------------------------------------------------------- /Puppet-NXOS-master/evpn_vxlan_manifests/modules/ciscopuppet/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/evpn_vxlan_manifests/modules/ciscopuppet/manifests/init.pp -------------------------------------------------------------------------------- /Puppet-NXOS-master/evpn_vxlan_manifests/modules/ciscopuppet/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/evpn_vxlan_manifests/modules/ciscopuppet/manifests/install.pp -------------------------------------------------------------------------------- /Puppet-NXOS-master/evpn_vxlan_manifests/modules/ciscopuppet/manifests/l3_interface.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/evpn_vxlan_manifests/modules/ciscopuppet/manifests/l3_interface.pp -------------------------------------------------------------------------------- /Puppet-NXOS-master/evpn_vxlan_manifests/modules/ciscopuppet/manifests/l3_interface_cfg_data.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/evpn_vxlan_manifests/modules/ciscopuppet/manifests/l3_interface_cfg_data.pp -------------------------------------------------------------------------------- /Puppet-NXOS-master/evpn_vxlan_manifests/modules/ciscopuppet/manifests/profile.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/evpn_vxlan_manifests/modules/ciscopuppet/manifests/profile.pp -------------------------------------------------------------------------------- /Puppet-NXOS-master/evpn_vxlan_manifests/modules/ciscopuppet/manifests/role.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/evpn_vxlan_manifests/modules/ciscopuppet/manifests/role.pp -------------------------------------------------------------------------------- /Puppet-NXOS-master/evpn_vxlan_manifests/modules/ciscopuppet/manifests/site.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/evpn_vxlan_manifests/modules/ciscopuppet/manifests/site.pp -------------------------------------------------------------------------------- /Puppet-NXOS-master/evpn_vxlan_manifests/modules/ciscopuppet/manifests/vlan.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/evpn_vxlan_manifests/modules/ciscopuppet/manifests/vlan.pp -------------------------------------------------------------------------------- /Puppet-NXOS-master/evpn_vxlan_manifests/modules/ciscopuppet/manifests/vlan_cfg_data.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/evpn_vxlan_manifests/modules/ciscopuppet/manifests/vlan_cfg_data.pp -------------------------------------------------------------------------------- /Puppet-NXOS-master/evpn_vxlan_manifests/modules/ciscopuppet/manifests/vpc.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/evpn_vxlan_manifests/modules/ciscopuppet/manifests/vpc.pp -------------------------------------------------------------------------------- /Puppet-NXOS-master/evpn_vxlan_manifests/modules/ciscopuppet/manifests/vpc_cfg_data.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/evpn_vxlan_manifests/modules/ciscopuppet/manifests/vpc_cfg_data.pp -------------------------------------------------------------------------------- /Puppet-NXOS-master/evpn_vxlan_manifests/site.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/evpn_vxlan_manifests/site.pp -------------------------------------------------------------------------------- /Puppet-NXOS-master/interface_puppet.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/interface_puppet.pp -------------------------------------------------------------------------------- /Puppet-NXOS-master/ospf_puppet.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/ospf_puppet.pp -------------------------------------------------------------------------------- /Puppet-NXOS-master/snmp_puppet.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/snmp_puppet.pp -------------------------------------------------------------------------------- /Puppet-NXOS-master/tacacs_puppet.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/tacacs_puppet.pp -------------------------------------------------------------------------------- /Puppet-NXOS-master/vlan_puppet.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/Puppet-NXOS-master/vlan_puppet.pp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/README.md -------------------------------------------------------------------------------- /YANG/NX-OS/RESTCONF/1. Create L2VNI 20200.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/YANG/NX-OS/RESTCONF/1. Create L2VNI 20200.postman_collection.json -------------------------------------------------------------------------------- /YANG/NX-OS/RESTCONF/2. Create L2VNI 20201.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/YANG/NX-OS/RESTCONF/2. Create L2VNI 20201.postman_collection.json -------------------------------------------------------------------------------- /YANG/NX-OS/RESTCONF/3. Read Status.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/YANG/NX-OS/RESTCONF/3. Read Status.postman_collection.json -------------------------------------------------------------------------------- /YANG/NX-OS/RESTCONF/4. Delete L2VNI 20200.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/YANG/NX-OS/RESTCONF/4. Delete L2VNI 20200.postman_collection.json -------------------------------------------------------------------------------- /YANG/NX-OS/RESTCONF/4. Delete L2VNI 20201.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/YANG/NX-OS/RESTCONF/4. Delete L2VNI 20201.postman_collection.json -------------------------------------------------------------------------------- /YANG/NX-OS/RESTCONF/5. Enable VXLAN Routing for Tenant-20000.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/YANG/NX-OS/RESTCONF/5. Enable VXLAN Routing for Tenant-20000.postman_collection.json -------------------------------------------------------------------------------- /YANG/NX-OS/RESTCONF/6. Disable VXLAN Routing for Tenant-20000.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/YANG/NX-OS/RESTCONF/6. Disable VXLAN Routing for Tenant-20000.postman_collection.json -------------------------------------------------------------------------------- /YANG/NX-OS/YDK/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/YANG/NX-OS/YDK/README.md -------------------------------------------------------------------------------- /YANG/NX-OS/YDK/acl_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/YANG/NX-OS/YDK/acl_set.py -------------------------------------------------------------------------------- /YANG/NX-OS/YDK/acl_set_ssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/YANG/NX-OS/YDK/acl_set_ssh.py -------------------------------------------------------------------------------- /YANG/NX-OS/YDK/nve_ir_peers_get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/YANG/NX-OS/YDK/nve_ir_peers_get.py -------------------------------------------------------------------------------- /YANG/NX-OS/YDK/nve_peers_get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/YANG/NX-OS/YDK/nve_peers_get.py -------------------------------------------------------------------------------- /YANG/NX-OS/YDK/vxlan_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/YANG/NX-OS/YDK/vxlan_create.py -------------------------------------------------------------------------------- /YANG/NX-OS/YDK/vxlan_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/YANG/NX-OS/YDK/vxlan_delete.py -------------------------------------------------------------------------------- /YANG/OpenConfig/RESTCONF/curl_commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/YANG/OpenConfig/RESTCONF/curl_commands.txt -------------------------------------------------------------------------------- /YANG/OpenConfig/RESTCONF/get_interface_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/YANG/OpenConfig/RESTCONF/get_interface_config.xml -------------------------------------------------------------------------------- /YANG/OpenConfig/RESTCONF/set_ip_and_vrrp_on_interface.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/YANG/OpenConfig/RESTCONF/set_ip_and_vrrp_on_interface.xml -------------------------------------------------------------------------------- /YANG/OpenConfig/RESTCONF/set_vrrp_on_subinterface.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/YANG/OpenConfig/RESTCONF/set_vrrp_on_subinterface.xml -------------------------------------------------------------------------------- /YANG/OpenConfig/YDK/oc-interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/YANG/OpenConfig/YDK/oc-interfaces.py -------------------------------------------------------------------------------- /guestshell_import_export/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/guestshell_import_export/README -------------------------------------------------------------------------------- /guestshell_import_export/gs_import.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/guestshell_import_export/gs_import.yaml -------------------------------------------------------------------------------- /guestshell_import_export/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/guestshell_import_export/schema.json -------------------------------------------------------------------------------- /guestshell_import_export/validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/guestshell_import_export/validator.py -------------------------------------------------------------------------------- /off-box/config-mgmt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/off-box/config-mgmt/README.md -------------------------------------------------------------------------------- /off-box/config-mgmt/fex_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/off-box/config-mgmt/fex_config.py -------------------------------------------------------------------------------- /off-box/config-mgmt/html/fex_10.1.150.12_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/off-box/config-mgmt/html/fex_10.1.150.12_.html -------------------------------------------------------------------------------- /off-box/config-mgmt/html/int_transciever_10.1.150.12_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/off-box/config-mgmt/html/int_transciever_10.1.150.12_.html -------------------------------------------------------------------------------- /off-box/config-mgmt/html/interfacedesc_10.1.150.12_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/off-box/config-mgmt/html/interfacedesc_10.1.150.12_.html -------------------------------------------------------------------------------- /off-box/config-mgmt/interface_desc_cdp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/off-box/config-mgmt/interface_desc_cdp.py -------------------------------------------------------------------------------- /off-box/config-mgmt/interface_desc_lldp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/off-box/config-mgmt/interface_desc_lldp.py -------------------------------------------------------------------------------- /off-box/config-mgmt/l2_vlan_mgmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/off-box/config-mgmt/l2_vlan_mgmt.py -------------------------------------------------------------------------------- /off-box/config-mgmt/l3_vlan_mgmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/off-box/config-mgmt/l3_vlan_mgmt.py -------------------------------------------------------------------------------- /off-box/config-mgmt/nexus_automation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/off-box/config-mgmt/nexus_automation.cfg -------------------------------------------------------------------------------- /off-box/config-mgmt/nx_automation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/off-box/config-mgmt/nx_automation.cfg -------------------------------------------------------------------------------- /off-box/config-mgmt/nxtoolkit_create_bgp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/off-box/config-mgmt/nxtoolkit_create_bgp.py -------------------------------------------------------------------------------- /off-box/config-mgmt/templates/config_fex.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/off-box/config-mgmt/templates/config_fex.jinja -------------------------------------------------------------------------------- /off-box/config-mgmt/templates/update_interfacedesc.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/off-box/config-mgmt/templates/update_interfacedesc.jinja -------------------------------------------------------------------------------- /off-box/config-mgmt/templates/update_intspeed.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/off-box/config-mgmt/templates/update_intspeed.jinja -------------------------------------------------------------------------------- /off-box/config-mgmt/transceiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/off-box/config-mgmt/transceiver.py -------------------------------------------------------------------------------- /off-box/config-mgmt/vlan_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/off-box/config-mgmt/vlan_config.py -------------------------------------------------------------------------------- /off-box/monitoring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/off-box/monitoring/README.md -------------------------------------------------------------------------------- /off-box/monitoring/check_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/off-box/monitoring/check_version.py -------------------------------------------------------------------------------- /off-box/monitoring/check_version_switch_IPs_example_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/off-box/monitoring/check_version_switch_IPs_example_file -------------------------------------------------------------------------------- /off-box/monitoring/html/interface_10.1.150.12_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/off-box/monitoring/html/interface_10.1.150.12_.html -------------------------------------------------------------------------------- /off-box/monitoring/html/systemresc_10.1.150.12_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/off-box/monitoring/html/systemresc_10.1.150.12_.html -------------------------------------------------------------------------------- /off-box/monitoring/interface_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/off-box/monitoring/interface_monitor.py -------------------------------------------------------------------------------- /off-box/monitoring/nexus_automation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/off-box/monitoring/nexus_automation.cfg -------------------------------------------------------------------------------- /off-box/monitoring/push_intf_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/off-box/monitoring/push_intf_config.py -------------------------------------------------------------------------------- /off-box/monitoring/systemresc_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/off-box/monitoring/systemresc_monitor.py -------------------------------------------------------------------------------- /off-box/monitoring/templates/monitor_interface.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/off-box/monitoring/templates/monitor_interface.jinja -------------------------------------------------------------------------------- /off-box/monitoring/templates/monitor_systemresc.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/off-box/monitoring/templates/monitor_systemresc.jinja -------------------------------------------------------------------------------- /off-box/troubleshoot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/off-box/troubleshoot/README.md -------------------------------------------------------------------------------- /on-box/config-mgmt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/on-box/config-mgmt/README.md -------------------------------------------------------------------------------- /on-box/config-mgmt/fex_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/on-box/config-mgmt/fex_config.py -------------------------------------------------------------------------------- /on-box/config-mgmt/interface_desc_cdp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/on-box/config-mgmt/interface_desc_cdp.py -------------------------------------------------------------------------------- /on-box/config-mgmt/interface_desc_lldp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/on-box/config-mgmt/interface_desc_lldp.py -------------------------------------------------------------------------------- /on-box/config-mgmt/l2_vlan_mgmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/on-box/config-mgmt/l2_vlan_mgmt.py -------------------------------------------------------------------------------- /on-box/config-mgmt/l3_vlan_mgmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/on-box/config-mgmt/l3_vlan_mgmt.py -------------------------------------------------------------------------------- /on-box/config-mgmt/transceiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/on-box/config-mgmt/transceiver.py -------------------------------------------------------------------------------- /on-box/config-mgmt/vlan_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/on-box/config-mgmt/vlan_config.py -------------------------------------------------------------------------------- /on-box/monitoring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/on-box/monitoring/README.md -------------------------------------------------------------------------------- /on-box/monitoring/interface_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/on-box/monitoring/interface_monitor.py -------------------------------------------------------------------------------- /on-box/monitoring/systemresc_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/on-box/monitoring/systemresc_monitor.py -------------------------------------------------------------------------------- /on-box/troubleshoot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/on-box/troubleshoot/README.md -------------------------------------------------------------------------------- /on-box/troubleshoot/intf_name_and_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/on-box/troubleshoot/intf_name_and_status.py -------------------------------------------------------------------------------- /restconf/RESTCONF/1. Create L2VNI 20200.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/restconf/RESTCONF/1. Create L2VNI 20200.postman_collection.json -------------------------------------------------------------------------------- /restconf/RESTCONF/2. Create L2VNI 20201.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/restconf/RESTCONF/2. Create L2VNI 20201.postman_collection.json -------------------------------------------------------------------------------- /restconf/RESTCONF/3. Read Status.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/restconf/RESTCONF/3. Read Status.postman_collection.json -------------------------------------------------------------------------------- /restconf/RESTCONF/4. Delete L2VNI 20200.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/restconf/RESTCONF/4. Delete L2VNI 20200.postman_collection.json -------------------------------------------------------------------------------- /restconf/RESTCONF/4. Delete L2VNI 20201.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/restconf/RESTCONF/4. Delete L2VNI 20201.postman_collection.json -------------------------------------------------------------------------------- /restconf/RESTCONF/5. Enable VXLAN Routing for Tenant-20000.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/restconf/RESTCONF/5. Enable VXLAN Routing for Tenant-20000.postman_collection.json -------------------------------------------------------------------------------- /restconf/RESTCONF/6. Disable VXLAN Routing for Tenant-20000.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/restconf/RESTCONF/6. Disable VXLAN Routing for Tenant-20000.postman_collection.json -------------------------------------------------------------------------------- /restconf/fabric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/restconf/fabric.py -------------------------------------------------------------------------------- /restconf/host_vars/n9kv-leaf-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/restconf/host_vars/n9kv-leaf-1.yml -------------------------------------------------------------------------------- /restconf/host_vars/n9kv-leaf-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/restconf/host_vars/n9kv-leaf-2.yml -------------------------------------------------------------------------------- /restconf/host_vars/n9kv-spine-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/restconf/host_vars/n9kv-spine-1.yml -------------------------------------------------------------------------------- /restconf/host_vars/n9kv-spine-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/restconf/host_vars/n9kv-spine-2.yml -------------------------------------------------------------------------------- /restconf/models/bgp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/restconf/models/bgp.txt -------------------------------------------------------------------------------- /restconf/models/interfaces.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/restconf/models/interfaces.txt -------------------------------------------------------------------------------- /restconf/models/leaf/bgp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/restconf/models/leaf/bgp.txt -------------------------------------------------------------------------------- /restconf/models/leaf/dns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/restconf/models/leaf/dns.txt -------------------------------------------------------------------------------- /restconf/models/leaf/features.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/restconf/models/leaf/features.txt -------------------------------------------------------------------------------- /restconf/models/leaf/interfaces.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/restconf/models/leaf/interfaces.txt -------------------------------------------------------------------------------- /restconf/models/leaf/ntp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/restconf/models/leaf/ntp.txt -------------------------------------------------------------------------------- /restconf/models/leaf/overlay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/restconf/models/leaf/overlay.txt -------------------------------------------------------------------------------- /restconf/models/leaf/underlay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/restconf/models/leaf/underlay.txt -------------------------------------------------------------------------------- /restconf/models/leaf/vlans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/restconf/models/leaf/vlans.txt -------------------------------------------------------------------------------- /restconf/models/overlay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/restconf/models/overlay.txt -------------------------------------------------------------------------------- /restconf/models/spine/bgp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/restconf/models/spine/bgp.txt -------------------------------------------------------------------------------- /restconf/models/spine/dns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/restconf/models/spine/dns.txt -------------------------------------------------------------------------------- /restconf/models/spine/features.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/restconf/models/spine/features.txt -------------------------------------------------------------------------------- /restconf/models/spine/interfaces.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/restconf/models/spine/interfaces.txt -------------------------------------------------------------------------------- /restconf/models/spine/ntp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/restconf/models/spine/ntp.txt -------------------------------------------------------------------------------- /restconf/models/spine/overlay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/restconf/models/spine/overlay.txt -------------------------------------------------------------------------------- /restconf/models/spine/underlay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacenter/opennxos/HEAD/restconf/models/spine/underlay.txt --------------------------------------------------------------------------------