-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.yml
71 lines (60 loc) · 1.56 KB
/
main.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
60
61
62
63
64
65
66
67
68
69
70
71
---
# signing key for the ppa
gns3_ppa_key: F88F6D313016330404F710FC9A2FD067A2E3EF7B
# url of the PPA to use; just change this if you know what you are doing
gns3_ppa_url: http://ppa.launchpad.net/gns3/ppa/ubuntu
# set the distribution to use;
# if this is undefined, it will be set automatically
# gns3_ppa_distribution:
# gns3_ppa_component to use from the ppa
gns3_ppa_component: main
# gns3_ppa_packages: list of packages to install from ppa
gns3_ppa_packages:
- gns3-server
- gns3-gui
- dynamips
- ubridge
# list of packages to install via pip
gns3_pip_packages: []
# FIXME implement gns3-iou
# clean up the ppa after installation?
# be aware af the fact that this breaks idempotency
gns3_ppa_remove_after_install: true
# prereq
gns3_prereq:
- python3-pip
- python3-pyqt5
- python3-pyqt5.qtsvg
- python3-pyqt5.qtwebsockets
- qemu-system
- qemu-kvm
- qemu-utils
- libvirt-clients
- libvirt-daemon-system
- virtinst
- wireshark
- xtightvncviewer
- apt-transport-https
- ca-certificates
- curl
- gnupg2
- software-properties-common
# groups required for a user
gns3_groups:
- kvm
- libvirt
- docker
- ubridge
# - wireshark
# user/group to run the gns3 server
gns3_system_user: gns3
gns3_system_user_home: /opt/gns3
gns3_system_group: gns3
# server setting
# for description see:
# https://raw.githubusercontent.com/GNS3/gns3-server/master/conf/gns3_server.conf
gns3_server_bindip: 0.0.0.0
gns3_server_port: 3080
gns3_server_allowed_interfaces: "virbr0,{{ ansible_default_ipv4.interface }}"
gns3_server_default_nat_interface: virbr0
...