-
Notifications
You must be signed in to change notification settings - Fork 9
/
lab-topology.yml
59 lines (53 loc) · 1.29 KB
/
lab-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
52
53
54
55
56
57
58
59
disk:
path: /var/lib/libvirt/images/
profile:
veos_lab:
disk:
# the image will be copied into images dir with VM name prefix
# this will be ignored if image already exists
- image: /home/petr/images/vEOS-lab-4.22.4M.qcow2
device: disk
format: qcow2
bus: ide
memory: 2048
vcpus: 1
cpu: host
boot: hd
events: on_poweroff=destroy,on_reboot=restart,on_crash=restart
console: pty,target_type=serial
os-type: linux
os-variant: fedora18
network:
model: e1000
wait: 0
vm:
- name: TEST1
profile: veos_lab
graphics:
type: vnc
port: 5901
base_mac: 00:0c:29:78:01:00 # will be incremented by 1 for every connection
connections:
- network: {name: default} # ma1
- TEST2 # e1
- TEST3 # e2
- name: TEST2
profile: veos_lab
graphics:
type: vnc
port: 5902
base_mac: 00:0c:29:78:02:00 # will be incremented by 1 for every connection
connections:
- network: {name: default} # ma1
- TEST1 # e1
- TEST3 # e2
- name: TEST3
profile: veos_lab
graphics:
type: vnc
port: 5903
base_mac: 00:0c:29:78:11:00 # will be incremented by 1 for every connection
connections:
- network: {name: default} # ma1
- TEST1
- TEST2