summaryrefslogtreecommitdiff
path: root/tests/topotests/ldp_oc_topo1/test_ldp_oc_topo1.dot
blob: 62058e3cb1a6d5546e6096254a3450c56d1994d5 (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
## 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="Test Topology - LDP-OC 1";

	# Routers
	r1 [
		shape=doubleoctagon,
		label="r1",
		fillcolor="#f08080",
		style=filled,
	];
	r2 [
		shape=doubleoctagon
		label="r2",
		fillcolor="#f08080",
		style=filled,
	];
	r3 [
		shape=doubleoctagon
		label="r3",
		fillcolor="#f08080",
		style=filled,
	];
	r4 [
		shape=doubleoctagon
		label="r4",
		fillcolor="#f08080",
		style=filled,
	];


	# Switches
	s0 [
		shape=oval,
		label="10.0.1.0/24",
		fillcolor="#d0e0d0",
		style=filled,
	];
	s1 [
		shape=oval,
		label="10.0.2.0/24",
		fillcolor="#d0e0d0",
		style=filled,
	];
	s2 [
		shape=oval,
		label="10.0.3.0/24",
		fillcolor="#d0e0d0",
		style=filled,
	];

	# Connections

	r1 -- s0 [label="eth0"];
	r2 -- s0 [label="eth0"];

	r2 -- s1 [label="eth1"];
	r3 -- s1 [label="eth0"];
	r4 -- s1 [label="eth0"];

	r2 -- s2 [label="eth2"];
	r3 -- s2 [label="eth1"];
}