]> git.proxmox.com Git - mirror_frr.git/blob - tests/topotests/bgp_vrf_netns/bgp-vrf-netns-topo.dot
bgp_vrf_netns: add basic test to support netns backend with netns
[mirror_frr.git] / tests / topotests / bgp_vrf_netns / bgp-vrf-netns-topo.dot
1 ## Color coding:
2 #########################
3 ## Main FRR: #f08080 red
4 ## Switches: #d0e0d0 gray
5 ## RIP: #19e3d9 Cyan
6 ## RIPng: #fcb314 dark yellow
7 ## OSPFv2: #32b835 Green
8 ## OSPFv3: #19e3d9 Cyan
9 ## ISIS IPv4 #fcb314 dark yellow
10 ## ISIS IPv6 #9a81ec purple
11 ## BGP IPv4 #eee3d3 beige
12 ## BGP IPv6 #fdff00 yellow
13 ##### Colors (see http://www.color-hex.com/)
14
15 graph bgp_vrf_netns_eBGP_topo1 {
16 label="bgp vrf netns topo1 - eBGP with different AS numbers";
17 labelloc="t";
18
19 # Routers
20 r1 [
21 label="r1\nrtr-id 10.0.255.1/32",
22 shape=doubleoctagon,
23 fillcolor="#f08080",
24 style=filled,
25 ];
26
27 # 1 Switch for eBGP Peers
28 s1 [
29 label="s1\n10.0.1.0/24",
30 shape=oval,
31 fillcolor="#d0e0d0",
32 style=filled,
33 ];
34
35 # 1 ExaBGP Peers AS 101
36 peer1 [
37 label="eBGP peer1\nAS101\nrtr-id 10.0.1.101/32",
38 shape=rectangle,
39 fillcolor="#eee3d3",
40 style=filled,
41 ];
42
43 # Connections
44 r1 -- s1 [label="eth0\n.1"];
45
46 peer1 -- s1 [label="eth0\n.101"];
47
48 # Arrange network to make cleaner diagram
49 { rank=same peer1 } -- s1 -- { rank=same r1 } [style=invis]
50 }