Compare commits

...

9 Commits

Author SHA1 Message Date
Gregor Michels c058853f73 activate public wifi on ans 2022-11-14 02:20:51 +01:00
Gregor Michels b5fefed0be pass: add missing root passwords for newest aps in ans
Fixes: a4718616a9
2022-11-14 02:03:18 +01:00
Gregor Michels f791ad76ab accesspoints: expand backoffice wifis to all office locations 2022-11-14 01:59:22 +01:00
Gregor Michels 329b09bd9a wifi ans: shorten backoffice ssid
cause it was too long (>32 chars)
2022-11-14 01:58:46 +01:00
Gregor Michels bf1c7bd3ab accesspoints: fix gateway and dns for ans aps 2022-11-14 01:35:23 +01:00
Gregor Michels 1e82bcc6b9 accesspoins ans: define channels and transmit power 2022-11-14 01:24:29 +01:00
Gregor Michels ce15f497e7 inventory: correct site for new aps
Fixes: a4718616a9
2022-11-14 01:23:55 +01:00
Gregor Michels a4718616a9 installed remaining accesspoints on ANS 2022-11-13 19:34:05 +01:00
Gregor Michels 5337a22df1 installed a few more accesspoints on the ANS 2022-11-13 19:29:38 +01:00
5 changed files with 21 additions and 15 deletions

View File

@ -7,15 +7,18 @@ ap-c495 ip=10.84.1.34 location=tent-3 channel_2g=1 channel_5g=48
ap-2bbf ip=10.84.1.30 location=tent-4 channel_2g=11 channel_5g=149
ap-1a38 ip=10.84.1.35 location=tent-5 channel_2g=6 channel_5g=153
ap-8f39 ip=10.84.1.37 location=tent-5 channel_2g=1 channel_5g=157
ap-b62f ip=10.85.1.31 location=tent-1
ap-b656 ip=10.85.1.35 location=tent-1
ap-b6ee ip=10.85.1.32 location=office-security
ap-b5df ip=10.85.1.38 location=office-social
ap-b6cb ip=10.85.1.33 location=office-facility
#ap-b641 ip=10.85.1.30 location=unknown
#ap-b6d7 ip=10.85.1.34 location=unknown
#ap-b644 ip=10.85.1.36 location=unknown
#ap-b634 ip=10.85.1.37 location=unknown
ap-b62f ip=10.85.1.31 location=tent-1 channel_2g=1 channel_5g=36 txpower_2g=18 txpower_5g=19
ap-b656 ip=10.85.1.35 location=tent-1 channel_2g=6 channel_5g=165 txpower_2g=18 txpower_5g=19
ap-b6ee ip=10.85.1.32 location=office-security channel_2g=1 channel_5g=48 txpower_2g=12 txpower_5g=13
ap-b5df ip=10.85.1.38 location=office-social channel_2g=11 channel_5g=153 txpower_2g=12 txpower_5g=13
ap-b6cb ip=10.85.1.33 location=office-facility channel_2g=6 channel_5g=60 txpower_2g=12 txpower_5g=13
ap-b641 ip=10.85.1.30 location=tent-2 channel_2g=1 channel_5g=136 txpower_2g=18 txpower_5g=19
ap-b6d7 ip=10.85.1.34 location=tent-2 channel_2g=6 channel_5g=104 txpower_2g=18 txpower_5g=19
ap-b644 ip=10.85.1.36 location=tent-2 channel_2g=11 channel_5g=124 txpower_2g=18 txpower_5g=19
ap-b634 ip=10.85.1.37 location=tent-3 channel_2g=1 channel_5g=116 txpower_2g=18 txpower_5g=19
ap-b6cc ip=10.85.1.39 location=tent-3 channel_2g=6 channel_5g=40 txpower_2g=18 txpower_5g=19
ap-b682 ip=10.85.1.40 location=tent-3 channel_2g=11 channel_5g=161 txpower_2g=18 txpower_5g=19
[accesspoints:vars]
ansible_remote_tmp=/tmp
@ -91,6 +94,8 @@ ap-b656
ap-b644
ap-b634
ap-b5df
ap-b682
ap-b6cc
ffl-ans-sw-distribution01
ffl-ans-sw-access01
ffl-ans-sw-access02
@ -98,7 +103,8 @@ ffl-ans-sw-access02
[site_ans:vars]
wifi_ssid="GU Arno-Nitzsche-Strasse"
wifi_encryption=none
wifi_disabled=1
backoffice_wifi_ssid="GU Arno-Nitzsche-Strasse Backoffice"
wifi_disabled=0
backoffice_wifi_ssid="GU Arno-Nitzsche-Strasse BO"
backoffice_wifi_encryption=psk2
backoffice_wifi_psk="{{ lookup('passwordstore', 'wifi/GU_Arno-Nitzsche-Straße_Backoffice') }}"
mgmt_gateway=10.85.1.1

Binary file not shown.

Binary file not shown.

View File

@ -10,8 +10,8 @@ config interface 'mgmt'
option proto 'static'
option ipaddr '{{ ip }}'
option netmask '255.255.255.0'
option gateway '10.84.1.1'
list dns '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 location not in ['office-facility', 'office-social'] %}
{% if not location | regex_search('office-.*') %}
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 location not in ['office-facility', 'office-social'] %}
{% if not location | regex_search('office-.*') %}
option disabled '1'
{% endif %}