├── LICENSE ├── Readme.md ├── webinar-1 ├── Readme.md ├── configs │ ├── README.md │ ├── frr-bms1.conf │ ├── frr-bms2.conf │ ├── leaf1.conf │ ├── leaf2.conf │ └── spine1.conf ├── demo-cast │ ├── Readme.md │ └── demo1.cast ├── eBPF │ └── ether-fix.c ├── img │ ├── Readme.md │ └── lab-topo.png ├── pdf │ └── modern-dc-part1.pdf └── python │ ├── pip-requirements.txt │ └── qfx-rfc5549.py ├── webinar-2 ├── Readme.md ├── config │ ├── comp1 │ │ ├── frr │ │ │ └── frr.conf │ │ ├── libvirt │ │ │ ├── net-green.xml │ │ │ └── net-red.xml │ │ └── setup.sh │ ├── comp2 │ │ ├── frr │ │ │ └── frr.conf │ │ ├── lxc │ │ │ ├── green.conf │ │ │ └── red.conf │ │ └── setup.sh │ ├── comp3 │ │ ├── frr │ │ │ └── frr.conf │ │ ├── k8s_cni │ │ │ └── cni.conf │ │ ├── k8s_templates │ │ │ ├── namespace-green.json │ │ │ ├── namespace-red.json │ │ │ └── run-my-nginx.yaml │ │ ├── kube-proxy │ │ │ └── kube-proxy-configmap.yaml │ │ └── setup.sh │ ├── comp4 │ │ ├── frr │ │ │ └── frr.conf │ │ ├── k8s_cni │ │ │ └── cni.conf │ │ └── setup.sh │ ├── comp5 │ │ ├── frr │ │ │ └── frr.conf │ │ ├── k8s_cni │ │ │ └── cni.conf │ │ └── setup.sh │ ├── comp6 │ │ └── netplan │ │ │ └── 40-bond.yaml │ ├── leaf1 │ │ ├── README.md │ │ └── leaf1.conf │ ├── leaf2 │ │ ├── README.md │ │ └── leaf2.conf │ └── spine1 │ │ ├── README.md │ │ └── spine.conf ├── demo-cast │ ├── Readme.md │ ├── webinar2-1-vm.cast │ ├── webinar2-2-lxc.cast │ ├── webinar2-3-k8s-1.cast │ ├── webinar2-4-k8s-2.cast │ ├── webinar2-5-k8s-3.cast │ └── webinar2-6-bms.cast ├── presentation │ └── modern-dc-part-2.pdf └── topology │ ├── topology.pdf │ └── topology.png └── webinar-3 ├── Readme.md ├── configs ├── GW │ ├── Readme.md │ ├── clean_tunnels.sh │ ├── frr.conf │ ├── setup.sh │ ├── wg0.conf │ └── ztp.sh ├── HUB │ ├── frr.conf │ ├── ipsec.conf │ ├── ipsec.secrets │ ├── modules.conf │ ├── setup.sh │ ├── sysctl.conf │ ├── wg0.conf │ ├── wg1.conf │ ├── wg2.conf │ └── wg3.conf ├── OpenWrt │ ├── frr.conf │ ├── setup.sh │ └── wg0.conf ├── comp1 │ ├── frr.conf │ ├── net-green-dhcp_with-mac.xml │ ├── net-red-dhcp_with-mac.xml │ └── setup.sh ├── comp2 │ ├── frr.conf │ └── setup.sh ├── fw1 │ └── fw1.conf ├── leaf1 │ └── leaf1.conf ├── leaf2 │ └── leaf2.conf ├── mikrotik │ └── mt.conf ├── orangepi │ ├── demo.service │ ├── frr.conf │ ├── setup.sh │ └── wg0.conf └── spine1 │ └── spine.conf ├── demo └── demo_cli.md ├── presentation └── modern-dc-part-3.pdf └── topology ├── topology.pdf └── topology.png /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/Readme.md -------------------------------------------------------------------------------- /webinar-1/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-1/Readme.md -------------------------------------------------------------------------------- /webinar-1/configs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-1/configs/README.md -------------------------------------------------------------------------------- /webinar-1/configs/frr-bms1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-1/configs/frr-bms1.conf -------------------------------------------------------------------------------- /webinar-1/configs/frr-bms2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-1/configs/frr-bms2.conf -------------------------------------------------------------------------------- /webinar-1/configs/leaf1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-1/configs/leaf1.conf -------------------------------------------------------------------------------- /webinar-1/configs/leaf2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-1/configs/leaf2.conf -------------------------------------------------------------------------------- /webinar-1/configs/spine1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-1/configs/spine1.conf -------------------------------------------------------------------------------- /webinar-1/demo-cast/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-1/demo-cast/Readme.md -------------------------------------------------------------------------------- /webinar-1/demo-cast/demo1.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-1/demo-cast/demo1.cast -------------------------------------------------------------------------------- /webinar-1/eBPF/ether-fix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-1/eBPF/ether-fix.c -------------------------------------------------------------------------------- /webinar-1/img/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-1/img/Readme.md -------------------------------------------------------------------------------- /webinar-1/img/lab-topo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-1/img/lab-topo.png -------------------------------------------------------------------------------- /webinar-1/pdf/modern-dc-part1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-1/pdf/modern-dc-part1.pdf -------------------------------------------------------------------------------- /webinar-1/python/pip-requirements.txt: -------------------------------------------------------------------------------- 1 | junos-eznc -------------------------------------------------------------------------------- /webinar-1/python/qfx-rfc5549.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-1/python/qfx-rfc5549.py -------------------------------------------------------------------------------- /webinar-2/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-2/Readme.md -------------------------------------------------------------------------------- /webinar-2/config/comp1/frr/frr.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-2/config/comp1/frr/frr.conf -------------------------------------------------------------------------------- /webinar-2/config/comp1/libvirt/net-green.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-2/config/comp1/libvirt/net-green.xml -------------------------------------------------------------------------------- /webinar-2/config/comp1/libvirt/net-red.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-2/config/comp1/libvirt/net-red.xml -------------------------------------------------------------------------------- /webinar-2/config/comp1/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-2/config/comp1/setup.sh -------------------------------------------------------------------------------- /webinar-2/config/comp2/frr/frr.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-2/config/comp2/frr/frr.conf -------------------------------------------------------------------------------- /webinar-2/config/comp2/lxc/green.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-2/config/comp2/lxc/green.conf -------------------------------------------------------------------------------- /webinar-2/config/comp2/lxc/red.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-2/config/comp2/lxc/red.conf -------------------------------------------------------------------------------- /webinar-2/config/comp2/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-2/config/comp2/setup.sh -------------------------------------------------------------------------------- /webinar-2/config/comp3/frr/frr.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-2/config/comp3/frr/frr.conf -------------------------------------------------------------------------------- /webinar-2/config/comp3/k8s_cni/cni.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-2/config/comp3/k8s_cni/cni.conf -------------------------------------------------------------------------------- /webinar-2/config/comp3/k8s_templates/namespace-green.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-2/config/comp3/k8s_templates/namespace-green.json -------------------------------------------------------------------------------- /webinar-2/config/comp3/k8s_templates/namespace-red.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-2/config/comp3/k8s_templates/namespace-red.json -------------------------------------------------------------------------------- /webinar-2/config/comp3/k8s_templates/run-my-nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-2/config/comp3/k8s_templates/run-my-nginx.yaml -------------------------------------------------------------------------------- /webinar-2/config/comp3/kube-proxy/kube-proxy-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-2/config/comp3/kube-proxy/kube-proxy-configmap.yaml -------------------------------------------------------------------------------- /webinar-2/config/comp3/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-2/config/comp3/setup.sh -------------------------------------------------------------------------------- /webinar-2/config/comp4/frr/frr.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-2/config/comp4/frr/frr.conf -------------------------------------------------------------------------------- /webinar-2/config/comp4/k8s_cni/cni.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-2/config/comp4/k8s_cni/cni.conf -------------------------------------------------------------------------------- /webinar-2/config/comp4/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-2/config/comp4/setup.sh -------------------------------------------------------------------------------- /webinar-2/config/comp5/frr/frr.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-2/config/comp5/frr/frr.conf -------------------------------------------------------------------------------- /webinar-2/config/comp5/k8s_cni/cni.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-2/config/comp5/k8s_cni/cni.conf -------------------------------------------------------------------------------- /webinar-2/config/comp5/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-2/config/comp5/setup.sh -------------------------------------------------------------------------------- /webinar-2/config/comp6/netplan/40-bond.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-2/config/comp6/netplan/40-bond.yaml -------------------------------------------------------------------------------- /webinar-2/config/leaf1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-2/config/leaf1/README.md -------------------------------------------------------------------------------- /webinar-2/config/leaf1/leaf1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-2/config/leaf1/leaf1.conf -------------------------------------------------------------------------------- /webinar-2/config/leaf2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-2/config/leaf2/README.md -------------------------------------------------------------------------------- /webinar-2/config/leaf2/leaf2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-2/config/leaf2/leaf2.conf -------------------------------------------------------------------------------- /webinar-2/config/spine1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-2/config/spine1/README.md -------------------------------------------------------------------------------- /webinar-2/config/spine1/spine.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-2/config/spine1/spine.conf -------------------------------------------------------------------------------- /webinar-2/demo-cast/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-2/demo-cast/Readme.md -------------------------------------------------------------------------------- /webinar-2/demo-cast/webinar2-1-vm.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-2/demo-cast/webinar2-1-vm.cast -------------------------------------------------------------------------------- /webinar-2/demo-cast/webinar2-2-lxc.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-2/demo-cast/webinar2-2-lxc.cast -------------------------------------------------------------------------------- /webinar-2/demo-cast/webinar2-3-k8s-1.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-2/demo-cast/webinar2-3-k8s-1.cast -------------------------------------------------------------------------------- /webinar-2/demo-cast/webinar2-4-k8s-2.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-2/demo-cast/webinar2-4-k8s-2.cast -------------------------------------------------------------------------------- /webinar-2/demo-cast/webinar2-5-k8s-3.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-2/demo-cast/webinar2-5-k8s-3.cast -------------------------------------------------------------------------------- /webinar-2/demo-cast/webinar2-6-bms.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-2/demo-cast/webinar2-6-bms.cast -------------------------------------------------------------------------------- /webinar-2/presentation/modern-dc-part-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-2/presentation/modern-dc-part-2.pdf -------------------------------------------------------------------------------- /webinar-2/topology/topology.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-2/topology/topology.pdf -------------------------------------------------------------------------------- /webinar-2/topology/topology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-2/topology/topology.png -------------------------------------------------------------------------------- /webinar-3/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-3/Readme.md -------------------------------------------------------------------------------- /webinar-3/configs/GW/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-3/configs/GW/Readme.md -------------------------------------------------------------------------------- /webinar-3/configs/GW/clean_tunnels.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-3/configs/GW/clean_tunnels.sh -------------------------------------------------------------------------------- /webinar-3/configs/GW/frr.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-3/configs/GW/frr.conf -------------------------------------------------------------------------------- /webinar-3/configs/GW/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-3/configs/GW/setup.sh -------------------------------------------------------------------------------- /webinar-3/configs/GW/wg0.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-3/configs/GW/wg0.conf -------------------------------------------------------------------------------- /webinar-3/configs/GW/ztp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-3/configs/GW/ztp.sh -------------------------------------------------------------------------------- /webinar-3/configs/HUB/frr.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-3/configs/HUB/frr.conf -------------------------------------------------------------------------------- /webinar-3/configs/HUB/ipsec.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-3/configs/HUB/ipsec.conf -------------------------------------------------------------------------------- /webinar-3/configs/HUB/ipsec.secrets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-3/configs/HUB/ipsec.secrets -------------------------------------------------------------------------------- /webinar-3/configs/HUB/modules.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-3/configs/HUB/modules.conf -------------------------------------------------------------------------------- /webinar-3/configs/HUB/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-3/configs/HUB/setup.sh -------------------------------------------------------------------------------- /webinar-3/configs/HUB/sysctl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-3/configs/HUB/sysctl.conf -------------------------------------------------------------------------------- /webinar-3/configs/HUB/wg0.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-3/configs/HUB/wg0.conf -------------------------------------------------------------------------------- /webinar-3/configs/HUB/wg1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-3/configs/HUB/wg1.conf -------------------------------------------------------------------------------- /webinar-3/configs/HUB/wg2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-3/configs/HUB/wg2.conf -------------------------------------------------------------------------------- /webinar-3/configs/HUB/wg3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-3/configs/HUB/wg3.conf -------------------------------------------------------------------------------- /webinar-3/configs/OpenWrt/frr.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-3/configs/OpenWrt/frr.conf -------------------------------------------------------------------------------- /webinar-3/configs/OpenWrt/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-3/configs/OpenWrt/setup.sh -------------------------------------------------------------------------------- /webinar-3/configs/OpenWrt/wg0.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-3/configs/OpenWrt/wg0.conf -------------------------------------------------------------------------------- /webinar-3/configs/comp1/frr.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-3/configs/comp1/frr.conf -------------------------------------------------------------------------------- /webinar-3/configs/comp1/net-green-dhcp_with-mac.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-3/configs/comp1/net-green-dhcp_with-mac.xml -------------------------------------------------------------------------------- /webinar-3/configs/comp1/net-red-dhcp_with-mac.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-3/configs/comp1/net-red-dhcp_with-mac.xml -------------------------------------------------------------------------------- /webinar-3/configs/comp1/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-3/configs/comp1/setup.sh -------------------------------------------------------------------------------- /webinar-3/configs/comp2/frr.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-3/configs/comp2/frr.conf -------------------------------------------------------------------------------- /webinar-3/configs/comp2/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-3/configs/comp2/setup.sh -------------------------------------------------------------------------------- /webinar-3/configs/fw1/fw1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-3/configs/fw1/fw1.conf -------------------------------------------------------------------------------- /webinar-3/configs/leaf1/leaf1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-3/configs/leaf1/leaf1.conf -------------------------------------------------------------------------------- /webinar-3/configs/leaf2/leaf2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-3/configs/leaf2/leaf2.conf -------------------------------------------------------------------------------- /webinar-3/configs/mikrotik/mt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-3/configs/mikrotik/mt.conf -------------------------------------------------------------------------------- /webinar-3/configs/orangepi/demo.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-3/configs/orangepi/demo.service -------------------------------------------------------------------------------- /webinar-3/configs/orangepi/frr.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-3/configs/orangepi/frr.conf -------------------------------------------------------------------------------- /webinar-3/configs/orangepi/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-3/configs/orangepi/setup.sh -------------------------------------------------------------------------------- /webinar-3/configs/orangepi/wg0.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-3/configs/orangepi/wg0.conf -------------------------------------------------------------------------------- /webinar-3/configs/spine1/spine.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-3/configs/spine1/spine.conf -------------------------------------------------------------------------------- /webinar-3/demo/demo_cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-3/demo/demo_cli.md -------------------------------------------------------------------------------- /webinar-3/presentation/modern-dc-part-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-3/presentation/modern-dc-part-3.pdf -------------------------------------------------------------------------------- /webinar-3/topology/topology.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-3/topology/topology.pdf -------------------------------------------------------------------------------- /webinar-3/topology/topology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codilime/modern-dc/HEAD/webinar-3/topology/topology.png --------------------------------------------------------------------------------