-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvagrant_topology.yml
51 lines (47 loc) · 1.23 KB
/
vagrant_topology.yml
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
---
- name: MGMT
box: centos/7
forwarded_ports:
- { guest: 22, host: 20010 }
- { guest: 443, host: 21010 }
- { guest: 3389, host: 22010 }
script: mgmt.sh
syncfolders:
- { source: ".", destination: "/vagrant" }
# - { source: "./sync/", destination: "/home/vagrant/sync" }
- name: SW201
box: CumulusCommunity/cumulus-vx
switch_ports: 6
links:
- name: SW201:swp1 -- SW101:swp1
- name: SW201:swp2 -- SW102:swp1
forwarded_ports:
- { guest: 22, host: 20201 }
- { guest: 8080, host: 21201 }
- name: SW202
box: CumulusCommunity/cumulus-vx
switch_ports: 6
links:
- name: SW202:swp1 -- SW101:swp2
- name: SW202:swp2 -- SW102:swp2
forwarded_ports:
- { guest: 22, host: 20202 }
- { guest: 8080, host: 21202 }
- name: SW101
box: CumulusCommunity/cumulus-vx
switch_ports: 6
links:
- name: SW201:swp1 -- SW101:swp1
- name: SW202:swp1 -- SW101:swp2
forwarded_ports:
- { guest: 22, host: 20101 }
- { guest: 8080, host: 21101 }
- name: SW102
box: CumulusCommunity/cumulus-vx
switch_ports: 6
links:
- name: SW201:swp2 -- SW102:swp1
- name: SW202:swp2 -- SW102:swp2
forwarded_ports:
- { guest: 22, host: 20102 }
- { guest: 8080, host: 21102 }