Compare commits

...

3 Commits

Author SHA1 Message Date
Gregor Michels 9afebe8438 add incident 031: adp enable backoffice wifi in tent 1 2022-12-23 16:18:11 +01:00
Gregor Michels d808775f39 hotfix for adp: also emit backoffice wifi in tent 1 2022-12-23 16:09:37 +01:00
Gregor Michels 0db1eb2c6a accesspoints: fix default dns and gateway
forgot to quote the ips

Fixes: bf1c7bd3ab
2022-12-23 16:06:15 +01:00
3 changed files with 32 additions and 4 deletions

View File

@ -1299,3 +1299,31 @@ Fortunately `Zyxel` replaced the devices.
* 17:09:30 - 17:10:15: `ffl-ans-sw-access02`
* quickly replaced device and connections
* => power cycle of all APs in `tent 2&3`
031 2022.12.23 14:00 (ADP) | enable backoffice wifi in tent 1
--------------------------------------------------------------
**intro**:
The facility management moved into the "logistics" container
**problem**:
Because there is no AP inside the container the wifi experience sucks.
The printer is unable to connect to the wifi and the notebook has 0 bars.
**hotfix**:
Also distribute backoffice wifi from `tent 1` because it is the nearest ap.
Commited through (`d808775`).
Rolled out at around 14:00.
**impact**:
* quick wifi outage for tent 1 (a few seconds)
**validation**:
* the wifi experience still sucks
* scanning sometimes works
* i see the backoffice devices from the logistics container associating and reassociating multiple times per minute
**longterm**:
* install an ap inside the logistics container
* ETA for installation: `29.12.2022`

View File

@ -10,8 +10,8 @@ config interface 'mgmt'
option proto 'static'
option ipaddr '{{ ip }}'
option netmask '255.255.255.0'
option gateway '{{ mgmt_gateway | default(10.84.1.1) }}'
list dns '{{ mgmt_gateway | default(10.84.1.1) }}'
option gateway '{{ mgmt_gateway | default('10.84.1.1') }}'
list dns '{{ mgmt_gateway | default('10.84.1.1') }}'
config interface 'clients'
option type 'bridge'

View File

@ -29,7 +29,7 @@ config wifi-iface 'backoffice_radio0'
option ssid '{{ backoffice_wifi_ssid }}'
option encryption '{{ backoffice_wifi_encryption }}'
option key '{{ backoffice_wifi_psk }}'
{% if not location | regex_search('office-.*') %}
{% if not location | regex_search('office-.*') and not inventory_hostname == 'ap-8f42' %}
option disabled '1'
{% endif %}
@ -63,6 +63,6 @@ config wifi-iface 'backoffice_radio1'
option ssid '{{ backoffice_wifi_ssid }}'
option encryption '{{ backoffice_wifi_encryption }}'
option key '{{ backoffice_wifi_psk }}'
{% if not location | regex_search('office-.*') %}
{% if not location | regex_search('office-.*') and not inventory_hostname == 'ap-8f42' %}
option disabled '1'
{% endif %}