-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathgraph.d2
More file actions
66 lines (66 loc) · 967 Bytes
/
Copy pathgraph.d2
File metadata and controls
66 lines (66 loc) · 967 Bytes
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
AS_65000 {
label: AS 65000
fw {
label: "fw [asav]\n10.0.0.1/32"
shape: "oval"
style.font-size: 20
}
}
AS_65001 {
label: AS 65001
int {
label: "int [frr]\n10.0.0.2/32"
shape: "oval"
style.font-size: 20
}
}
AS_65100 {
label: AS 65100
ext {
label: "ext [frr]\n10.0.0.3/32"
shape: "oval"
style.font-size: 20
}
}
lan_1 {
label: 172.16.0.0/24
shape: "rectangle"
style.border-radius: 8
style.font-size: 20
}
h1 -> lan_1 {
}
h2 -> lan_1 {
}
AS_65001.int -> lan_1 {
}
lan_2 {
label: 172.16.1.0/24
shape: "rectangle"
style.border-radius: 8
style.font-size: 20
}
AS_65001.int -> lan_2 {
}
AS_65000.fw -> lan_2 {
}
lan_3 {
label: 172.16.2.0/24
shape: "rectangle"
style.border-radius: 8
style.font-size: 20
}
AS_65000.fw -> lan_3 {
}
AS_65100.ext -> lan_3 {
}
lan_4 {
label: 172.16.3.0/24
shape: "rectangle"
style.border-radius: 8
style.font-size: 20
}
AS_65100.ext -> lan_4 {
}
x -> lan_4 {
}