-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate-variables.yaml
More file actions
100 lines (87 loc) · 1.61 KB
/
template-variables.yaml
File metadata and controls
100 lines (87 loc) · 1.61 KB
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
96
97
98
99
100
# Values that can be considered "secrets", provided in this file are exemplary
# secret-variables.yaml file with appropriate overrides should be created
#
# Take a look at common/template-variables.yaml
# to see some docs and examples
hostname: aprouter
#security:
# root_password: ...
#
# ssh:
# keys:
# - ...
#
#letsencrypt:
# enabled: true
# domain: ...
# acme:
# email: ...
# route53:
# access_key_id: ...
# access_key_secret: ...
wireless:
radios:
radio0:
country: PL
enabled: false
cell_density: 0
radio1:
country: PL
enabled: false
cell_density: 0
# Appropriate networks are to be defined
# in secret-variables.yaml
networks: {}
networks:
lan:
proto: none
device: br-lan
vlan:
id: 99
ports:
- lan1:t
guest:
proto: none
device: br-lan
vlan:
id: 20
ports:
- lan1:t
iot:
proto: none
device: br-lan
vlan:
id: 30
ports:
- lan1:t
iot_int:
proto: none
device: br-lan
vlan:
id: 31
ports:
- lan1:t
cluster:
proto: none
device: br-lan
vlan:
id: 40
ports:
- lan1:t
admin:
proto: dhcp
device: br-lan
vlan:
id: 80
ports:
- lan1:t
dhcp:
default_dns_server: 192.168.80.1
custom_commands: |-
# Get rid of DHCP, DHCPv6 and firewall that are not needed on a dumb AP
/etc/init.d/dnsmasq disable
/etc/init.d/dnsmasq stop || true
/etc/init.d/odhcpd disable
/etc/init.d/odhcpd stop || true
/etc/init.d/firewall disable
/etc/init.d/firewall stop || true