|
1 |
| -| | | |
2 |
| -| ----------------------------- | -------------------------------------------------------------------------------- | |
3 |
| -| **Description** | A Nokia SR Linux connected back-to-back with Arista cEOS | |
4 |
| -| **Components** | [Nokia SR Linux][srl], Arista cEOS | |
5 |
| -| **Resource requirements**[^1] | :fontawesome-solid-microchip: 2 <br/>:fontawesome-solid-memory: 2 GB | |
6 |
| -| **Topology file** | [srlceos01.clab.yml][topofile] | |
7 |
| -| **Name** | srlceos01 | |
8 |
| -| **Version information**[^2] | `containerlab:0.9.0`, `srlinux:20.6.3-145`, `ceos:4.32.0F`, `docker-ce:19.03.13` | |
| 1 | +# Nokia SR Linux and Arista cEOS |
| 2 | + |
| 3 | +| | | |
| 4 | +| ----------------------------- | --------------------------------------------------------------------------- | |
| 5 | +| **Description** | A Nokia SR Linux connected back-to-back with Arista cEOS | |
| 6 | +| **Components** | [Nokia SR Linux][srl], Arista cEOS | |
| 7 | +| **Resource requirements**[^1] | :fontawesome-solid-microchip: 2 <br/>:fontawesome-solid-memory: 4 GB | |
| 8 | +| **Topology file** | [srlceos01.clab.yml][topofile] | |
| 9 | +| **Name** | srlceos01 | |
| 10 | +| **Version information**[^2] | `containerlab:0.56.0`, `srlinux:24.3.3`, `ceos:4.32.0F`, `docker-ce:26.0.0` | |
9 | 11 |
|
10 | 12 | ## Description
|
| 13 | + |
11 | 14 | A lab consists of an SR Linux node connected with Arista cEOS via a point-to-point ethernet link. Both nodes are also connected with their management interfaces to the `containerlab` docker network.
|
12 | 15 |
|
13 |
| -<div class="mxgraph" style="max-width:100%;border:1px solid transparent;margin:0 auto; display:block;" data-mxgraph="{"page":0,"zoom":1.5,"highlight":"#0000ff","nav":true,"check-visible-state":true,"resize":true,"url":"https://raw.githubusercontent.com/srl-labs/containerlab/diagrams/srlceos01.drawio"}"></div> |
| 16 | +<div class='mxgraph' style='max-width:100%;border:1px solid transparent;margin:0 auto; display:block;' data-mxgraph='{"page":0,"zoom":1.5,"highlight":"#0000ff","nav":true,"resize":true,"edit":"_blank","url":"https://raw.githubusercontent.com/srl-labs/containerlab/diagrams/srlceos01.drawio"}'></div> |
| 17 | + |
| 18 | +## Deployment |
| 19 | + |
| 20 | +The deployment process of this lab is explained in the [quickstart](../quickstart.md#deploying-a-lab). |
14 | 21 |
|
15 | 22 | ## Use cases
|
| 23 | + |
16 | 24 | This lab allows users to launch basic interoperability scenarios between Nokia SR Linux and Arista cEOS operating systems.
|
17 | 25 |
|
18 | 26 | ### BGP
|
| 27 | + |
19 | 28 | <div class="mxgraph" style="max-width:100%;border:1px solid transparent;margin:0 auto; display:block;" data-mxgraph="{"page":1,"zoom":1.5,"highlight":"#0000ff","nav":true,"check-visible-state":true,"resize":true,"url":"https://raw.githubusercontent.com/srl-labs/containerlab/diagrams/srlceos01.drawio"}"></div>
|
20 | 29 |
|
21 | 30 | This lab demonstrates a simple iBGP peering scenario between Nokia SR Linux and Arista cEOS. Both nodes exchange NLRI with their loopback prefix making it reachable.
|
22 | 31 |
|
23 | 32 | #### Configuration
|
| 33 | + |
24 | 34 | Once the lab is deployed with containerlab, use the following configuration instructions to make interfaces configuration and enable BGP on both nodes.
|
25 | 35 |
|
26 |
| -=== "srl" |
27 |
| - Get into SR Linux CLI with `docker exec -it clab-srlceos01-srl sr_cli` and start configuration |
28 |
| - ```bash |
29 |
| - # enter candidate datastore |
30 |
| - enter candidate |
31 |
| - |
32 |
| - # configure loopback and data interfaces |
33 |
| - set / interface ethernet-1/1 admin-state enable |
34 |
| - set / interface ethernet-1/1 subinterface 0 admin-state enable |
35 |
| - set / interface ethernet-1/1 subinterface 0 ipv4 address 192.168.1.1/24 |
36 |
| - |
37 |
| - set / interface lo0 subinterface 0 admin-state enable |
38 |
| - set / interface lo0 subinterface 0 ipv4 address 10.10.10.1/32 |
39 |
| - set / network-instance default interface ethernet-1/1.0 |
40 |
| - set / network-instance default interface lo0.0 |
41 |
| - |
42 |
| - # configure BGP |
43 |
| - set / network-instance default protocols bgp admin-state enable |
44 |
| - set / network-instance default protocols bgp router-id 10.10.10.1 |
45 |
| - set / network-instance default protocols bgp autonomous-system 65001 |
46 |
| - set / network-instance default protocols bgp group ibgp ipv4-unicast admin-state enable |
47 |
| - set / network-instance default protocols bgp group ibgp export-policy export-lo |
48 |
| - set / network-instance default protocols bgp neighbor 192.168.1.2 admin-state enable |
49 |
| - set / network-instance default protocols bgp neighbor 192.168.1.2 peer-group ibgp |
50 |
| - set / network-instance default protocols bgp neighbor 192.168.1.2 peer-as 65001 |
51 |
| - |
52 |
| - # create export policy |
53 |
| - set / routing-policy policy export-lo statement 10 match protocol local |
54 |
| - set / routing-policy policy export-lo statement 10 action accept |
55 |
| - |
56 |
| - # commit config |
57 |
| - commit now |
58 |
| - ``` |
59 |
| -=== "ceos" |
60 |
| - Get into cEOS CLI with `docker exec -it clab-srlceos01-ceos Cli` and start configuration |
61 |
| - ```bash |
62 |
| - # enter configuration mode |
63 |
| - configure |
64 |
| - ip routing |
65 |
| - |
66 |
| - # configure loopback and data interfaces |
67 |
| - interface Ethernet1 |
68 |
| - no switchport |
69 |
| - ip address 192.168.1.2/24 |
70 |
| - exit |
71 |
| - interface Loopback0 |
72 |
| - ip address 10.10.10.2/32 |
73 |
| - exit |
74 |
| - |
75 |
| - # configure BGP |
76 |
| - router bgp 65001 |
77 |
| - router-id 10.10.10.2 |
78 |
| - neighbor 192.168.1.1 remote-as 65001 |
79 |
| - network 10.10.10.2/32 |
80 |
| - exit |
81 |
| - ``` |
| 36 | +/// tab | SR Linux |
| 37 | +Get into SR Linux CLI with `ssh clab-srlceos01-srl` and start configuration. You can configure the node by typing in commands using the snippet below, or copy it entirely and paste it into the CLI. |
| 38 | + |
| 39 | +```{.srl .code-scroll-lg} |
| 40 | +# enter the candidate datastore |
| 41 | +enter candidate |
| 42 | +
|
| 43 | +# configure physical interface |
| 44 | +/ interface ethernet-1/1 { |
| 45 | + admin-state enable |
| 46 | + subinterface 0 { |
| 47 | + ipv4 { |
| 48 | + admin-state enable |
| 49 | + address 192.168.1.1/24 { |
| 50 | + } |
| 51 | + } |
| 52 | + } |
| 53 | +} |
| 54 | +
|
| 55 | +# configure loopback interface |
| 56 | +/ interface lo0 { |
| 57 | + subinterface 0 { |
| 58 | + ipv4 { |
| 59 | + admin-state enable |
| 60 | + address 10.10.10.1/32 { |
| 61 | + } |
| 62 | + } |
| 63 | + } |
| 64 | +} |
| 65 | +
|
| 66 | +# configure routing policy to import/export routes via BGP |
| 67 | +/ routing-policy { |
| 68 | + policy loopbacks-policy { |
| 69 | + statement 1 { |
| 70 | + match { |
| 71 | + protocol local |
| 72 | + } |
| 73 | + action { |
| 74 | + policy-result accept |
| 75 | + } |
| 76 | + } |
| 77 | + } |
| 78 | +} |
| 79 | +
|
| 80 | +/ network-instance default { |
| 81 | + # add physical and logical interface to the network instance |
| 82 | + interface ethernet-1/1.0 { |
| 83 | + } |
| 84 | + interface lo0.0 { |
| 85 | + } |
| 86 | + protocols { |
| 87 | + bgp { |
| 88 | + autonomous-system 65001 |
| 89 | + router-id 10.10.10.1 |
| 90 | + afi-safi ipv4-unicast { |
| 91 | + admin-state enable |
| 92 | + } |
| 93 | + group ibgp { |
| 94 | + export-policy loopbacks-policy |
| 95 | + import-policy loopbacks-policy |
| 96 | + } |
| 97 | + neighbor 192.168.1.2 { |
| 98 | + admin-state enable |
| 99 | + peer-as 65001 |
| 100 | + peer-group ibgp |
| 101 | + } |
| 102 | + } |
| 103 | + } |
| 104 | +} |
| 105 | +
|
| 106 | +commit now |
| 107 | +``` |
| 108 | + |
| 109 | +/// |
| 110 | +/// tab | cEOS |
| 111 | +Get into cEOS CLI with `ssh clab-srlceos01-ceos`[^3] and start configuration |
| 112 | + |
| 113 | +```bash |
| 114 | +# enter configuration mode |
| 115 | +enable |
| 116 | +configure |
| 117 | +ip routing |
| 118 | + |
| 119 | +# configure loopback and data interfaces |
| 120 | +interface Ethernet1 |
| 121 | + no switchport |
| 122 | + ip address 192.168.1.2/24 |
| 123 | +exit |
| 124 | +interface Loopback0 |
| 125 | + ip address 10.10.10.2/32 |
| 126 | +exit |
| 127 | + |
| 128 | +# configure BGP |
| 129 | +router bgp 65001 |
| 130 | + router-id 10.10.10.2 |
| 131 | + neighbor 192.168.1.1 remote-as 65001 |
| 132 | + network 10.10.10.2/32 |
| 133 | +exit |
| 134 | +exit |
| 135 | +``` |
| 136 | + |
| 137 | +/// |
82 | 138 |
|
83 | 139 | #### Verification
|
| 140 | + |
84 | 141 | Once BGP peering is established, the routes can be seen in GRT of both nodes:
|
85 | 142 |
|
86 |
| -=== "srl" |
87 |
| - ```bash |
88 |
| - A:srl# show network-instance default route-table ipv4-unicast summary | grep bgp |
89 |
| - | 10.10.10.2/32 | 0 | true | bgp | 0 | 170 | 192.168.1.2 (indirect) | None | |
90 |
| - ``` |
91 |
| - |
92 |
| -=== "ceos" |
93 |
| - ```bash |
94 |
| - ceos>show ip route |
95 |
| - |
96 |
| - VRF: default |
97 |
| - Codes: C - connected, S - static, K - kernel, |
98 |
| - O - OSPF, IA - OSPF inter area, E1 - OSPF external type 1, |
99 |
| - E2 - OSPF external type 2, N1 - OSPF NSSA external type 1, |
100 |
| - N2 - OSPF NSSA external type2, B - BGP, B I - iBGP, B E - eBGP, |
101 |
| - R - RIP, I L1 - IS-IS level 1, I L2 - IS-IS level 2, |
102 |
| - O3 - OSPFv3, A B - BGP Aggregate, A O - OSPF Summary, |
103 |
| - NG - Nexthop Group Static Route, V - VXLAN Control Service, |
104 |
| - DH - DHCP client installed default route, M - Martian, |
105 |
| - DP - Dynamic Policy Route, L - VRF Leaked, |
106 |
| - RC - Route Cache Route |
107 |
| - |
108 |
| - Gateway of last resort: |
109 |
| - K 0.0.0.0/0 [40/0] via 172.20.20.1, Management0 |
110 |
| - |
111 |
| - B I 10.10.10.1/32 [200/0] via 192.168.1.1, Ethernet1 |
112 |
| - C 10.10.10.2/32 is directly connected, Loopback0 |
113 |
| - C 172.20.20.0/24 is directly connected, Management0 |
114 |
| - C 192.168.1.0/24 is directly connected, Ethernet1 |
115 |
| - ``` |
| 143 | +/// tab | SR Linux |
| 144 | + |
| 145 | +```srl |
| 146 | +A:srl# show / network-instance default route-table ipv4-unicast prefix 10.*2/32 |
| 147 | +-------------------------------------------------------------------------------------------------------------------------------------------------- |
| 148 | +IPv4 unicast route table of network instance default |
| 149 | +-------------------------------------------------------------------------------------------------------------------------------------------------- |
| 150 | ++----------------+------+-----------+--------------------+---------+---------+--------+-----------+----------+----------+----------+-------------+ |
| 151 | +| Prefix | ID | Route | Route Owner | Active | Origin | Metric | Pref | Next-hop | Next-hop | Backup | Backup | |
| 152 | +| | | Type | | | Network | | | (Type) | Interfac | Next-hop | Next-hop | |
| 153 | +| | | | | | Instanc | | | | e | (Type) | Interface | |
| 154 | +| | | | | | e | | | | | | | |
| 155 | ++================+======+===========+====================+=========+=========+========+===========+==========+==========+==========+=============+ |
| 156 | +| 10.10.10.2/32 | 0 | bgp | bgp_mgr | True | default | 0 | 170 | 192.168. | ethernet | | | |
| 157 | +| | | | | | | | | 1.0/24 ( | -1/1.0 | | | |
| 158 | +| | | | | | | | | indirect | | | | |
| 159 | +| | | | | | | | | /local) | | | | |
| 160 | ++----------------+------+-----------+--------------------+---------+---------+--------+-----------+----------+----------+----------+-------------+ |
| 161 | +``` |
| 162 | + |
| 163 | +/// |
| 164 | +/// tab | cEOS |
| 165 | + |
| 166 | +```bash |
| 167 | +ceos>show ip route |
| 168 | + |
| 169 | +VRF: default |
| 170 | +Codes: C - connected, S - static, K - kernel, |
| 171 | + O - OSPF, IA - OSPF inter area, E1 - OSPF external type 1, |
| 172 | + E2 - OSPF external type 2, N1 - OSPF NSSA external type 1, |
| 173 | + N2 - OSPF NSSA external type2, B - BGP, B I - iBGP, B E - eBGP, |
| 174 | + R - RIP, I L1 - IS-IS level 1, I L2 - IS-IS level 2, |
| 175 | + O3 - OSPFv3, A B - BGP Aggregate, A O - OSPF Summary, |
| 176 | + NG - Nexthop Group Static Route, V - VXLAN Control Service, |
| 177 | + DH - DHCP client installed default route, M - Martian, |
| 178 | + DP - Dynamic Policy Route, L - VRF Leaked, |
| 179 | + RC - Route Cache Route |
| 180 | + |
| 181 | +Gateway of last resort: |
| 182 | +K 0.0.0.0/0 [40/0] via 172.20.20.1, Management0 |
| 183 | + |
| 184 | +B I 10.10.10.1/32 [200/0] via 192.168.1.1, Ethernet1 |
| 185 | +C 10.10.10.2/32 is directly connected, Loopback0 |
| 186 | +C 172.20.20.0/24 is directly connected, Management0 |
| 187 | +C 192.168.1.0/24 is directly connected, Ethernet1 |
| 188 | +``` |
116 | 189 |
|
| 190 | +/// |
117 | 191 | Data plane confirms that routes have been programmed to FIB:
|
| 192 | + |
118 | 193 | ```
|
119 | 194 | A:srl# ping 10.10.10.2 network-instance default
|
120 | 195 | Using network instance default
|
121 | 196 | PING 10.10.10.2 (10.10.10.2) 56(84) bytes of data.
|
122 | 197 | 64 bytes from 10.10.10.2: icmp_seq=1 ttl=64 time=3.47 ms
|
123 | 198 | ```
|
124 | 199 |
|
125 |
| - |
126 |
| - |
127 | 200 | [srl]: https://www.nokia.com/networks/products/service-router-linux-NOS/
|
128 |
| -[ceos]: |
129 | 201 | [topofile]: https://github.com/srl-labs/containerlab/tree/main/lab-examples/srlceos01/srlceos01.clab.yml
|
130 | 202 |
|
131 | 203 | [^1]: Resource requirements are provisional. Consult with the installation guides for additional information.
|
132 | 204 | [^2]: The lab has been validated using these versions of the required tools/components. Using versions other than stated might lead to a non-operational setup process.
|
133 |
| - |
134 |
| -<script type="text/javascript" src="https://viewer.diagrams.net/js/viewer-static.min.js" async></script> |
| 205 | +[^3]: Credentials `admin:admin` |
| 206 | +<script type="text/javascript" src="https://viewer.diagrams.net/js/viewer-static.min.js" async></script> |
0 commit comments