]> git.proxmox.com Git - mirror_frr.git/blob - tests/topotests/eigrp-topo1/test_eigrp_topo1.dot
Merge pull request #5627 from chiragshah6/mdev
[mirror_frr.git] / tests / topotests / eigrp-topo1 / test_eigrp_topo1.dot
1 ## GraphViz file for test_eigrp_topo1
2 ##
3 ## Color coding:
4 #########################
5 ## Main FRR: #f08080 red
6 ## Switches: #d0e0d0 gray
7 ## RIP: #19e3d9 Cyan
8 ## RIPng: #fcb314 dark yellow
9 ## EIGRP: #696969
10 ## OSPFv2: #32b835 Green
11 ## OSPFv3: #19e3d9 Cyan
12 ## ISIS IPv4 #fcb314 dark yellow
13 ## ISIS IPv6 #9a81ec purple
14 ## BGP IPv4 #eee3d3 beige
15 ## BGP IPv6 #fdff00 yellow
16 ##### Colors (see http://www.color-hex.com/)
17
18 graph test_eigrp_topo1 {
19 overlap=false;
20 constraint=false;
21
22 // title
23 labelloc="t";
24 label="Test Topologoy EIGRP Topo1";
25
26 ######################
27 # Routers
28 ######################
29
30 # Main FRR Router with all protocols
31 R1 [shape=doubleoctagon, label="R1 FRR\nMain Router", fillcolor="#f08080", style=filled];
32
33 # EIGRP Routers
34 R2 [shape=doubleoctagon, label="R2 FRR\nEIGRP Router", fillcolor="#19e3d9", style=filled];
35 R3 [shape=doubleoctagon, label="R3 FRR\nEIGRP Router", fillcolor="#19e3d9", style=filled];
36
37 ######################
38 # Network Lists
39 ######################
40
41 SW1_R1_stub [label="SW1\n192.168.1.0/24", fillcolor="#d0e0d0", style=filled];
42
43 # EIGRP Networks
44 SW2_R1_R2 [label="SW2\nEIGRPv2\n193.1.1.0/26", fillcolor="#d0e0d0", style=filled];
45 SW3_R2_R3 [label="SW3\nEIGRPv1\n193.1.2.0/24", fillcolor="#d0e0d0", style=filled];
46 SW4_R3 [label="SW4\n192.168.3.0/24", fillcolor="#d0e0d0", style=filled];
47 Net_R3_remote [label="Static Net\n192.168.2.0/24"];
48
49 ######################
50 # Network Connections
51 ######################
52 R1 -- SW1_R1_stub [label = "eth0\n.1\n::1"];
53
54 # EIGRP Network
55 R1 -- SW2_R1_R2 [label = "eth1\n.1"];
56 SW2_R1_R2 -- R2 [label = "eth0\n.2"];
57 R2 -- SW3_R2_R3 [label = "eth1\n.1"];
58 SW3_R2_R3 -- R3 [label = "eth1\n.2"];
59 R3 -- SW4_R3 [label = "eth0\n.1"];
60 SW4_R3 -- Net_R3_remote [label = ".10"];
61
62 }