forked from ipspace/netlab-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Unnumbered BGP | ||
|
||
This directory contains *netlab* topology file for a two-router unnumbered BGP test lab. | ||
|
||
![BGP unnumbered topology](graph.png) | ||
|
||
After starting the lab, explore the BGP sessions, BGP tables, and IP routing tables on R1 and R2. | ||
|
||
## Changing Device Types | ||
|
||
This topology can be used with all network devices supporting unnumbered EBGP sessions, and all virtualization providers supported by *netlab*: | ||
|
||
* To change device type, use the `-d xxx` CLI argument | ||
* To change the virtualization provider, use `-p` CLI argument. | ||
|
||
For example, to start the lab with FRR containers, use: | ||
|
||
``` | ||
netlab up -d frr -p clab | ||
``` |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
module: [ bgp ] | ||
defaults.device: cumulus | ||
provider: clab | ||
|
||
nodes: | ||
r1: | ||
bgp.as: 65001 | ||
r2: | ||
bgp.as: 65002 | ||
|
||
links: | ||
- r1: | ||
r2: | ||
unnumbered: True | ||
- r1: | ||
r2: | ||
unnumbered: True |