From 1655bad66bc8c2c1631bc88a78990d5f28d47132 Mon Sep 17 00:00:00 2001 From: jkaczmarski8 <65714337+jkaczmarski8@users.noreply.github.com> Date: Wed, 19 Aug 2020 15:15:50 +0200 Subject: [PATCH] Create README.md --- webinar-2/config/spine1/README.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 webinar-2/config/spine1/README.md diff --git a/webinar-2/config/spine1/README.md b/webinar-2/config/spine1/README.md new file mode 100644 index 0000000..58432f9 --- /dev/null +++ b/webinar-2/config/spine1/README.md @@ -0,0 +1,28 @@ +### Notes about spine1 EVPN configuration. + + +Spine1 acts as a route reflector for iBGP sessions from comp servers and leaf switches. It is not a VXLAN endpoint for any of the VNIs and does not have any routing instances configured. + + +Create iBGP configuration with route reflector functionality. +``` +bgp { + group ibgp { + type internal; + local-address c0d1:ffff::201; + family evpn { + signaling; + } + cluster 10.255.255.201; + multipath; + neighbor c0d1:ffff::1; + neighbor c0d1:ffff::2; + neighbor c0d1::1; + neighbor c0d1::2; + neighbor c0d1::3; + neighbor c0d1::4; + neighbor c0d1::5; + } +} + +```