summaryrefslogtreecommitdiff
path: root/tests/topotests/sbfd_topo1/sbfd_topo1.dot
blob: 437e8230ce20320e42bf078ebef5d99d268f8ec5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
## Color coding:
#########################
##  Main FRR: #f08080  red
##  Switches: #d0e0d0  gray
##  RIP:      #19e3d9  Cyan
##  RIPng:    #fcb314  dark yellow
##  OSPFv2:   #32b835  Green
##  OSPFv3:   #19e3d9  Cyan
##  ISIS IPv4 #fcb314  dark yellow
##  ISIS IPv6 #9a81ec  purple
##  BGP IPv4  #eee3d3  beige
##  BGP IPv6  #fdff00  yellow
##### Colors (see http://www.color-hex.com/)

graph template {
	label="template";

	# Routers
	r1 [
		shape=doubleoctagon,
		label="A\nAS 100\n1.1.1.1",
		fillcolor="#f08080",
		style=filled,
	];
	r2 [
		shape=doubleoctagon
		label="B\nAS 200\n1.1.1.2",
		fillcolor="#f08080",
		style=filled,
	];

	# Switches
	s1 [
		shape=oval,
		label="s1\n192.168.0.0/24",
		fillcolor="#d0e0d0",
		style=filled,
	];


	# Connections
	r1 -- s1 [label="A-eth0"];
	r2 -- s1 [label="B-eth0"];

}