本文へ
Docs
Playground
Shumokuについて
サポート
EN
Docs
Playground
Shumokuについて
サポート
Playground
/ Network workspace
Reset sample
Render
Source
Code
Preview
+ Add file
main.yaml
cloud.yaml
perimeter.yaml
dmz.yaml
campus.yaml
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
name: "Sample Network" description: "Sample network with HA routers, firewall, DMZ and campus" settings: theme: light subgraphs: - id: cloud label: "Cloud Services" file: "./cloud.yaml" vendor: aws service: vpc resource: virtual-private-cloud-vpc style: fill: "accent-blue" strokeDasharray: "5 5" - id: perimeter label: "Perimeter (Edge + Security)" file: "./perimeter.yaml" style: fill: "accent-red" - id: dmz label: "DMZ" file: "./dmz.yaml" style: fill: "accent-amber" - id: campus label: "Campus" file: "./campus.yaml" style: fill: "surface-2" links: # Cloud to Perimeter (VPN) - from: node: vgw port: tun0 ip: 169.254.100.1/30 to: node: rt1 port: tun1 ip: 169.254.100.2/30 label: "IPsec VPN" type: dashed - from: node: vgw port: tun1 ip: 169.254.101.1/30 to: node: rt2 port: tun1 ip: 169.254.101.2/30 label: "IPsec VPN" type: dashed # Perimeter to DMZ - from: node: fw1 port: dmz ip: 10.100.0.2/24 to: node: dmz-sw port: uplink ip: 10.100.0.1/24 label: "DMZ" vlan: 100 bandwidth: 10G # Perimeter to Campus - from: node: fw1 port: inside ip: 10.0.2.1/30 to: node: core-sw port: eth1 ip: 10.0.2.2/30 label: "Active" bandwidth: 10G - from: node: fw2 port: inside ip: 10.0.2.5/30 to: node: core-sw port: eth2 ip: 10.0.2.6/30 label: "Standby" bandwidth: 10G
Preview
Code
Preview
Open
Download
No diagram yet
Choose Render to preview the YAML source.