1- L3 interface
2- BGP
Code Block | ||||
---|---|---|---|---|
| ||||
localhost#show interfaces status Port Name Status Vlan Duplex Speed Type Flags Et1 connected 1 full unconf EbraTestPhyPort Et2 connected 1 full unconf EbraTestPhyPort Ma1 connected routed a-full a-1G 10/100/1000 localhost#show ip interface brief Interface IP Address Status Protocol MTU Loopback0 10.0.0.1/32 up up 65535 Management1 10.0.2.15/24 up up 1500 |
On spine01 and spine02
Code Block | ||||
---|---|---|---|---|
| ||||
Spine1: ------- hostname spine01 interface Ethernet1 no switchport ip address 10.1.2.1/30 ! interface Loopback0 ip address 10.0.0.1/32 ! ip routing ! router bgp 65000 router-id 10.0.0.1 neighbor 10.1.2.2 remote-as 65000 neighbor 10.1.2.2 maximum-routes 12000 network 10.0.0.1/32 ! Spine2: ------- hostname spine02 interface Loopback0 ip address 10.0.0.2/32 interface Ethernet1 no switchport ip address 10.1.2.2/30 ip routing router bgp 65000 router-id 10.0.0.2 neighbor 10.1.2.1 remote-as 65000 neighbor 10.1.2.1 maximum-routes 12000 network 10.0.0.2/32 |
...