diff options
Diffstat (limited to 'docs/configexamples/autotest/L3VPN_EVPN/_include/PE3.conf')
-rw-r--r-- | docs/configexamples/autotest/L3VPN_EVPN/_include/PE3.conf | 89 |
1 files changed, 89 insertions, 0 deletions
diff --git a/docs/configexamples/autotest/L3VPN_EVPN/_include/PE3.conf b/docs/configexamples/autotest/L3VPN_EVPN/_include/PE3.conf new file mode 100644 index 00000000..a1bdd97e --- /dev/null +++ b/docs/configexamples/autotest/L3VPN_EVPN/_include/PE3.conf @@ -0,0 +1,89 @@ +set system host-name PE3 +set interfaces ethernet eth0 address 'dhcp' +set interfaces ethernet eth0 description 'out-of-band management' +set interfaces ethernet eth0 vrf 'mgmt' +set service ssh vrf 'mgmt' +set vrf name mgmt table '1000' + +set interfaces dummy dum0 address '172.29.255.3/32' + +set interfaces ethernet eth2 address '172.29.0.5/31' +set interfaces ethernet eth2 description 'link to pe2' +set interfaces ethernet eth2 mtu '1600' +set interfaces ethernet eth3 address '172.29.0.7/31' +set interfaces ethernet eth3 description 'link to pe1' +set interfaces ethernet eth3 mtu '1600' + +set protocols ospf area 0 network '172.29.0.4/31' +set protocols ospf area 0 network '172.29.0.6/31' +set protocols ospf interface eth2 network 'point-to-point' +set protocols ospf interface eth3 network 'point-to-point' +set protocols ospf log-adjacency-changes detail +set protocols ospf parameters abr-type 'cisco' +set protocols ospf parameters router-id '172.29.255.3' +set protocols ospf passive-interface 'default' +set protocols ospf passive-interface-exclude 'eth3' +set protocols ospf passive-interface-exclude 'eth2' +set protocols ospf redistribute connected + +set protocols bgp address-family l2vpn-evpn advertise ipv4 unicast +set protocols bgp address-family l2vpn-evpn advertise-all-vni +set protocols bgp local-as '100' +set protocols bgp neighbor 172.29.255.1 peer-group 'ibgp' +set protocols bgp neighbor 172.29.255.2 peer-group 'ibgp' +set protocols bgp parameters log-neighbor-changes +set protocols bgp parameters router-id '172.29.255.3' +set protocols bgp peer-group ibgp address-family l2vpn-evpn +set protocols bgp peer-group ibgp remote-as '100' +set protocols bgp peer-group ibgp update-source 'dum0' + +set interfaces vxlan vxlan2000 mtu '1500' +set interfaces vxlan vxlan2000 parameters nolearning +set interfaces vxlan vxlan2000 port '4789' +set interfaces vxlan vxlan2000 source-address '172.29.255.3' +set interfaces vxlan vxlan2000 vni '2000' + +set vrf name blue protocols bgp address-family ipv4-unicast redistribute connected +set vrf name blue protocols bgp address-family l2vpn-evpn advertise ipv4 unicast +set vrf name blue protocols bgp local-as '100' +set vrf name blue table '2000' +set vrf name blue vni '2000' + +set interfaces vxlan vxlan3000 mtu '1500' +set interfaces vxlan vxlan3000 parameters nolearning +set interfaces vxlan vxlan3000 port '4789' +set interfaces vxlan vxlan3000 source-address '172.29.255.3' +set interfaces vxlan vxlan3000 vni '3000' + +set vrf name red protocols bgp address-family ipv4-unicast redistribute connected +set vrf name red protocols bgp address-family l2vpn-evpn advertise ipv4 unicast +set vrf name red protocols bgp local-as '100' +set vrf name red table '3000' +set vrf name red vni '3000' + +set interfaces vxlan vxlan4000 mtu '1500' +set interfaces vxlan vxlan4000 parameters nolearning +set interfaces vxlan vxlan4000 port '4789' +set interfaces vxlan vxlan4000 source-address '172.29.255.3' +set interfaces vxlan vxlan4000 vni '4000' + +set vrf name green protocols bgp address-family ipv4-unicast redistribute connected +set vrf name green protocols bgp address-family l2vpn-evpn advertise ipv4 unicast +set vrf name green protocols bgp local-as '100' +set vrf name green table '4000' +set vrf name green vni '4000' + +set interfaces bridge br2000 address '10.1.3.1/24' +set interfaces bridge br2000 description 'customer blue' +set interfaces bridge br2000 member interface eth4 +set interfaces bridge br2000 member interface vxlan2000 +set interfaces bridge br2000 vrf 'blue' + +set interfaces bridge br4000 address '10.3.3.1/24' +set interfaces bridge br4000 description 'customer green' +set interfaces bridge br4000 member interface eth6 +set interfaces bridge br4000 member interface vxlan4000 +set interfaces bridge br4000 vrf 'green' + +set interfaces ethernet eth4 description 'customer blue' +set interfaces ethernet eth6 description 'customer green'
\ No newline at end of file |