summaryrefslogtreecommitdiff
path: root/inventory/group_vars/accesspoints/vars.yml
blob: 1a841e13310e7595a1c19a589de995eac94b98d6 (plain) (blame)
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
---
accesspoint_wired_interface: eth0

accesspoint_wireless_frequency_bands:
  - 2g
  - 5g

accesspoint_wifi_device_htmode:
  2g: "HT20"
  5g: "VHT80"

accesspoint_wireless_device_paths:
  2g: "platform/ahb/18100000.wmac"
  5g: "pci0000:00/0000:00:00.0"


accesspoint_network_base: "{{ accesspoint_network_base_yaml | from_yaml }}"
accesspoint_network_base_yaml: |
  - name: globals 'globals'
    options:
      ula_prefix: "fc{{ '%02x:%04x:%04x' | format((255 | random(seed=inventory_hostname + '0')), (65535 | random(seed=inventory_hostname + '1')), (65535 | random(seed=inventory_hostname + '2'))) }}::/48"

  - name: interface 'loopback'
    options:
      device: lo
      proto: static
      ipaddr: 127.0.0.1
      netmask: 255.0.0.0

  {% if 'vlan' in network_mgmt_zone %}
  - name: device
    options:
      type: 8021q
      ifname: "{{ accesspoint_wired_interface }}"
      vid: {{ network_mgmt_zone.vlan }}
      name: "{{ accesspoint_wired_interface }}.{{ network_mgmt_zone.vlan }}"

  {% endif %}
  - name: interface 'mgmt'
    options:
      device: "{{ accesspoint_wired_interface }}{% if 'vlan' in network_mgmt_zone %}.{{ network_mgmt_zone.vlan }}{% endif %}"
      accept_ra: 0
      proto: static
      ipaddr: "{{ network_mgmt_zone.prefix | ansible.utils.ipaddr(network_mgmt_zone.offsets[inventory_hostname]) }}"


accesspoint_network_zones: "{{ accesspoint_network_zones_yaml | from_yaml }}"
accesspoint_network_zones_yaml: |
  {% for zone_name in accesspoint_zones.keys() %}
  - name: device
    options:
      type: 8021q
      ifname: "{{ accesspoint_wired_interface }}"
      vid: {{ network_zones[zone_name].vlan }}
      name: "{{ accesspoint_wired_interface }}.{{ network_zones[zone_name].vlan }}"

  - name: device
    options:
      type: bridge
      name: "br-{{ zone_name }}"
      ports:
      - "{{ accesspoint_wired_interface }}.{{ network_zones[zone_name].vlan }}"

  - name: "interface '{{ zone_name }}'"
    options:
      device: "br-{{ zone_name }}"
      accept_ra: 0
      proto: none
  {% endfor %}



accesspoint_wireless_devices: "{{ accesspoint_wireless_devices_yaml | from_yaml }}"
accesspoint_wireless_devices_yaml: |
  {% for band in accesspoint_wireless_frequency_bands %}
  - name: wifi-device 'radio{{ band }}'
    options:
      type: 'mac80211'
      channel: "{{ accesspoint_wifi_channels[band][inventory_hostname] }}"
      band: '{{ band }}'
      country: AT
      path: "{{ accesspoint_wireless_device_paths[band] }}"
      htmode: '{{ accesspoint_wifi_device_htmode[band] }}'
      cell_density: '0'
  {%   set txpower = accesspoint_wifi_txpower[band][inventory_hostname] %}
  {%   if txpower is defined %}
      txpower: '{{ txpower }}'
  {%   endif %}
  {% endfor %}


accesspoint_wireless_ifaces: "{{ accesspoint_wireless_ifaces_yaml | from_yaml }}"
accesspoint_wireless_ifaces_yaml: |
  {% for zone in accesspoint_zones.keys() %}
  {%   set outer_loop = loop %}
  {%   for band in accesspoint_wireless_frequency_bands %}
  - name: wifi-iface '{{ zone }}{{ band }}'
    options:
      device: 'radio{{ band }}'
      network: '{{ zone }}'
      mode: 'ap'
      ssid: '{{ accesspoint_zones[zone].ssid }}'
      encryption: '{{ accesspoint_zones[zone].encryption }}'
      key: '{{ accesspoint_zones[zone].key }}'
      disassoc_low_ack: '1'
      rsn_preauth: '1'
  {%     if accesspoint_80211r is defined %}
      ieee80211r: '1'
      mobility_domain: '{{ "%04x" % (accesspoint_80211r.mobility_domain_base + outer_loop.index0) }}'
      ft_over_ds: '1'
  {%     endif %}
  {%     if accesspoint_client_steering is defined %}
      bss_transition: '1'
      wnm_sleep_mode: '1'
      time_advertisement: '2'
      time_zone: 'CET-1CEST,M3.5.0,M10.5.0/3'
      ieee80211k: '1'
      rrm_neighbor_report: '1'
      rrm_beacon_report: '1'
  {%     endif %}
  {%   endfor %}
  {% endfor %}




openwrt_arch: ath79
openwrt_target: generic
openwrt_profile: ubnt_unifiac-lite
openwrt_output_image_suffixes:
  - "{{ openwrt_target }}-{{ openwrt_profile }}-squashfs-sysupgrade.bin"

openwrt_packages_remove:
  - ppp
  - ppp-mod-pppoe
  - dnsmasq
  - firewall
  - firewall4
  - odhcpd
  - odhcpd-ipv6only
  - wpad-basic-wolfssl
openwrt_packages_add:
  - hostapd-wolfssl
  - haveged
  - htop
  - ip
  - nftables
  - less
  - nano
  - tcpdump-mini
  - horst
  - prometheus-node-exporter-lua
  - prometheus-node-exporter-lua-nat_traffic
  - prometheus-node-exporter-lua-netstat
  - prometheus-node-exporter-lua-openwrt
  ## we will install a custom version of these collectors, see below
  #- prometheus-node-exporter-lua-wifi
  #- prometheus-node-exporter-lua-wifi_stations
  ## manually install dependencies for wifi-collectors
  - libiwinfo-lua
  - libubus-lua

_accesspoint_client_steering_packages_extra_:
  none: []
  dawn:
  - dawn
  usteer:
  - usteer

openwrt_packages_extra: "{{ _accesspoint_client_steering_packages_extra_[accesspoint_client_steering.kind | default('none')] }}"


openwrt_mixin:
  /etc/sysctl.conf:
    content: |
      # Defaults are configured in /etc/sysctl.d/* and can be customized in this file
      #
      # disable IP forwarding, we don't need it since we are
      # only an AP that bridges VLANs to Wifi SSIDs
      net.ipv4.conf.default.forwarding=0
      net.ipv4.conf.all.forwarding=0
      net.ipv4.ip_forward=0
      net.ipv6.conf.default.forwarding=0
      net.ipv6.conf.all.forwarding=0

  /etc/dropbear/authorized_keys:
    content: "{{ ssh_keys_root | join('\n') }}\n"

  /etc/htoprc:
    file: "{{ global_files_dir }}/common/htoprc"

  /etc/rc.d/S21nftables:
    link: "../init.d/nftables"

  /etc/rc.d/K89nftables:
    link: "../init.d/nftables"

  /etc/init.d/nftables:
    mode: "0755"
    content: |
      #!/bin/sh /etc/rc.common

      START=21
      STOP=89

      start() {
        nft -f /etc/nftables.conf
      }

      stop() {
        nft flush ruleset
      }

  /etc/nftables.conf:
    content: |
      flush ruleset

      define nic_mgmt = {{ accesspoint_wired_interface }}.{{ network_zones.mgmt.vlan }}

      table inet global {
        chain input {
          type filter hook input priority filter; policy drop;
          ct state vmap { established: accept, related: accept, invalid: drop }
          iifname vmap { lo: accept, $nic_mgmt: accept }
        }

        chain forward {
          type filter hook forward priority filter; policy drop;
        }
      }

  /usr/lib/lua/prometheus-collectors/wifi.lua:
    mode: "0755"
    content: |
      -- This is a custom version of the upstream wifi and wifi_stations collectors. We want
      -- to know the number of stations connected but for privacy and metric cardinality
      -- reasons we don't care for MAC addresses and other details of all connected stations.

      local ubus = require "ubus"
      local iwinfo = require "iwinfo"

      local function scrape()
        local metric_wifi_network_quality = metric("wifi_network_quality","gauge")
        local metric_wifi_network_bitrate = metric("wifi_network_bitrate","gauge")
        local metric_wifi_network_noise = metric("wifi_network_noise_dbm","gauge")
        local metric_wifi_network_signal = metric("wifi_network_signal_dbm","gauge")
        local metric_wifi_stations = metric("wifi_stations", "gauge")

        local u = ubus.connect()
        local status = u:call("network.wireless", "status", {})

        for dev, dev_table in pairs(status) do
          for _, intf in ipairs(dev_table['interfaces']) do
            local ifname = intf['ifname']
            if ifname ~= nil then
              local iw = iwinfo[iwinfo.type(ifname)]
              local labels = {
                channel = iw.channel(ifname),
                ssid = iw.ssid(ifname),
                bssid = string.lower(iw.bssid(ifname)),
                mode = iw.mode(ifname),
                ifname = ifname,
                country = iw.country(ifname),
                frequency = iw.frequency(ifname),
                device = dev,
              }

              local qc = iw.quality(ifname) or 0
              local qm = iw.quality_max(ifname) or 0
              local quality = 0
              if qc > 0 and qm > 0 then
                quality = math.floor((100 / qm) * qc)
              end
              local stations = 0
              local assoclist = iw.assoclist(ifname)
              for _, _ in pairs(assoclist) do
                 stations = stations + 1
              end

              metric_wifi_network_quality(labels, quality)
              metric_wifi_network_noise(labels, iw.noise(ifname) or 0)
              metric_wifi_network_bitrate(labels, iw.bitrate(ifname) or 0)
              metric_wifi_network_signal(labels, iw.signal(ifname) or -255)
              metric_wifi_stations(labels, stations)
            end
          end
        end
      end

      return { scrape = scrape }

  /usr/bin/list-stations:
    mode: "0755"
    file: "{{ global_files_dir }}/common/openwrt/list-stations"


openwrt_uci_base:
  system:
    - name: system
      options:
        hostname: '{{ inventory_hostname }}'
        timezone: 'CET-1CEST,M3.5.0,M10.5.0/3'
        ttylogin: '0'
        log_size: '64'
        urandom_seed: '0'

    - name: timeserver 'ntp'
      options:
        enabled: '{{ accesspoint_ntp_servers is defined | ternary("1", "0") }}'
        enable_server: '0'
        server: "{{ accesspoint_ntp_servers | default([]) }}"

    - name: led
      options:
        sysfs: blue:dome
        trigger: none

    - name: led
      options:
        sysfs: white:dome
        trigger: default-on
        default: 0

  dropbear:
    - name: dropbear
      options:
        PasswordAuth: 'off'
        RootPasswordAuth: 'off'
        Port: '{{ ansible_port }}'

  uhttpd:
    - name: uhttpd main
      options:
        enabled: '0'

  prometheus-node-exporter-lua:
    - name: prometheus-node-exporter-lua 'main'
      options:
        listen_interface: 'mgmt'
        listen_port: '9100'

  network: "{{ accesspoint_network_base + accesspoint_network_zones }}"
  wireless: "{{ accesspoint_wireless_devices + accesspoint_wireless_ifaces }}"


_accesspoint_client_steering_options_default_:
  dawn:
    network:
      broadcast_ip: "{{ network_mgmt_zone.prefix | ansible.utils.ipaddr('broadcast') }}"
  usteer:
    network: 'mgmt'
    syslog: '1'
    local_mode: '0'
    ipv6: '0'
    debug_level: '2'

openwrt_uci_client_steering: "{{ openwrt_uci_client_steering_yaml | from_yaml }}"
openwrt_uci_client_steering_yaml: |
  {% if accesspoint_client_steering is defined %}
  {%   if accesspoint_client_steering.kind == 'dawn' %}
  umdns:
    - name: umds
      options:
        jail: '1'
        network:
        - mgmt

  dawn:
  {%     for section, options in (_accesspoint_client_steering_options_default_.dawn | combine(accesspoint_client_steering.options | default({}))).items() %}
    - name: {{ section }}
      options:
  {%       for option, value in options.items() %}
        {{ option }}: {{ value }}
  {%       endfor %}
  {%     endfor %}
  {%   elif accesspoint_client_steering.kind == 'usteer' %}
  usteer:
    - name: usteer
      options:
  {%     for option,value in (_accesspoint_client_steering_options_default_.usteer | combine(accesspoint_client_steering.options | default({}))).items() %}
        {{ option }}: {{ value }}
  {%     endfor %}
  {%   endif %}
  {% endif %}


openwrt_uci: "{{ openwrt_uci_base | combine(accesspoint_client_steering is defined | ternary(openwrt_uci_client_steering, {})) }}"