Skip to content

Commit 9b7b17b

Browse files
committed
BGP unnumbered lab
1 parent 71482dd commit 9b7b17b

File tree

3 files changed

+38
-0
lines changed

3 files changed

+38
-0
lines changed

BGP/Unnumbered/README.md

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Unnumbered BGP
2+
3+
This directory contains *netlab* topology file for a two-router unnumbered BGP test lab.
4+
5+
![BGP unnumbered topology](graph.png)
6+
7+
After starting the lab, explore the BGP sessions, BGP tables, and IP routing tables on R1 and R2.
8+
9+
## Changing Device Types
10+
11+
This topology can be used with all network devices supporting unnumbered EBGP sessions, and all virtualization providers supported by *netlab*:
12+
13+
* To change device type, use the `-d xxx` CLI argument
14+
* To change the virtualization provider, use `-p` CLI argument.
15+
16+
For example, to start the lab with FRR containers, use:
17+
18+
```
19+
netlab up -d frr -p clab
20+
```

BGP/Unnumbered/graph.png

14.2 KB
Loading

BGP/Unnumbered/topology.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
module: [ bgp ]
3+
defaults.device: cumulus
4+
provider: clab
5+
6+
nodes:
7+
r1:
8+
bgp.as: 65001
9+
r2:
10+
bgp.as: 65002
11+
12+
links:
13+
- r1:
14+
r2:
15+
unnumbered: True
16+
- r1:
17+
r2:
18+
unnumbered: True

0 commit comments

Comments
 (0)