I've seen iwm(4) get stuck trying to associate to 2 GHz APs only and never trying available 5 GHz ones. This happens because net80211 sets a fixed mode during association attempts (11g in my case). If roaming fails, the interface remains stuck in that mode (and the mode is never upgraded to 11n if association fails, so we're now stuck on 2 GHz).
This patch fixes the problem for me. Below are logs which show the problematic case: all 5 Ghz APs keep getting rejected because their channel is not considered part of the active channel set. With the fix the interface will roam between both bands as expected. OK? diff refs/heads/keepnodes refs/heads/roaming blob - 83b42976022d4ed42a9165720139abe5c1508324 blob + 52957c9c49828d6ab2524e33939b5050cc383c24 --- sys/dev/pci/if_iwm.c +++ sys/dev/pci/if_iwm.c @@ -5694,6 +5694,12 @@ iwm_scan(struct iwm_softc *sc) return err; } + /* + * The current mode might have been fixed during association. + * Ensure all channels get scanned. + */ + ieee80211_setmode(ic, IEEE80211_MODE_AUTO); + sc->sc_flags |= IWM_FLAG_SCANNING; if (ifp->if_flags & IFF_DEBUG) printf("%s: %s -> %s\n", ifp->if_xname, blob - ef5f81699e90f2d4c4202b25880c9120907e5ec3 blob + 316cf49ffbe06e9d1df78e72b23dcb6c2e27abe4 --- sys/dev/pci/if_iwn.c +++ sys/dev/pci/if_iwn.c @@ -5199,6 +5199,11 @@ iwn_scan(struct iwn_softc *sc, uint16_t flags, int bgs DPRINTF(("sending scan command nchan=%d\n", hdr->nchan)); error = iwn_cmd(sc, IWN_CMD_SCAN, buf, buflen, 1); if (error == 0) { + /* + * The current mode might have been fixed during association. + * Ensure all channels get scanned. + */ + ieee80211_setmode(ic, IEEE80211_MODE_AUTO); sc->sc_flags |= IWN_FLAG_SCANNING; if (bgscan) sc->sc_flags |= IWN_FLAG_BGSCAN; blob - 9424dd2a492f1fb2398b9208d36906d2d2ab71ea blob + f4b8e9f8c0b4072a33514f7abc2ebcb1e0947fe0 --- sys/net80211/ieee80211.c +++ sys/net80211/ieee80211.c @@ -1035,11 +1035,20 @@ ieee80211_next_mode(struct ifnet *ifp) /* * Indicate a wrap-around if we're running in a fixed, user-specified - * phy mode or if the driver scans all bands in one scan iteration. + * phy mode. */ - if (IFM_MODE(ic->ic_media.ifm_cur->ifm_media) != IFM_AUTO || - (ic->ic_caps & IEEE80211_C_SCANALLBAND)) + if (IFM_MODE(ic->ic_media.ifm_cur->ifm_media) != IFM_AUTO) return (IEEE80211_MODE_AUTO); + + /* + * Always scan in AUTO mode if the driver scans all bands. + * The current mode might have changed during association + * so we must reset it here. + */ + if (ic->ic_caps & IEEE80211_C_SCANALLBAND) { + ieee80211_setmode(ic, IEEE80211_MODE_AUTO); + return (ic->ic_curmode); + } /* * Get the next supported mode; effectively, this alternates between Without fix (5 Ghz channels marked with '!'): Aug 25 12:04:33 jessup /bsd: iwm0: end background scan Aug 25 12:04:33 jessup /bsd: iwm0: - 18:e8:29:c1:e5:02 11 +20 54M ess privacy! no ""! Aug 25 12:04:33 jessup /bsd: iwm0: - 1a:e8:29:c1:e5:02 11 +20 54M ess privacy! no ""! Aug 25 12:04:33 jessup /bsd: iwm0: + 24:de:c6:1e:ca:02 5 +20 54M ess no no "Camp2019-insecure" Aug 25 12:04:33 jessup /bsd: iwm0: - 24:de:c6:1e:ca:10 132 +9 54M ess privacy! no "Camp2019"! Aug 25 12:04:33 jessup /bsd: iwm0: - 24:de:c6:1e:ca:11 132 +9 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:04:33 jessup /bsd: iwm0: - 24:de:c6:1e:ca:12 132 +8 54M ess privacy! no "Camp2019-things"! Aug 25 12:04:33 jessup /bsd: iwm0: + 24:de:c6:1e:ca:13 132 +8 54M ess no no "Camp2019-insecure" Aug 25 12:04:33 jessup /bsd: iwm0: - 30:85:a9:6a:65:74 12 +15 54M ess privacy! no "NAONET"! Aug 25 12:04:33 jessup /bsd: iwm0: - 42:4a:30:1d:46:a9 1 +17 54M ????! no no ""! Aug 25 12:04:33 jessup /bsd: iwm0: - 78:8a:20:71:72:cc 6 +24 54M ess privacy! no ""! Aug 25 12:04:33 jessup /bsd: iwm0: - 7a:8a:20:71:72:cc 6 +27 54M ess privacy! no ""! Aug 25 12:04:33 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:32 36 +7 54M ess privacy! no "Camp2019-things"! Aug 25 12:04:33 jessup /bsd: iwm0: + ac:a3:1e:dd:bd:33 36 +8 54M ess no no "Camp2019-insecure" Aug 25 12:04:33 jessup /bsd: iwm0: - b4:5d:50:9f:23:e1 1 +34 54M ess privacy! no "Camp2019-things"! Aug 25 12:04:33 jessup /bsd: iwm0: + b4:5d:50:9f:23:e2 1 +34 54M ess no no "Camp2019-insecure" Aug 25 12:04:33 jessup /bsd: iwm0: - b4:5d:50:9f:23:f0 60 +27 54M ess privacy! no "Camp2019"! Aug 25 12:04:33 jessup /bsd: iwm0: - b4:5d:50:9f:23:f1 60 +26 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:04:33 jessup /bsd: iwm0: - b4:5d:50:9f:23:f2 60 +27 54M ess privacy! no "Camp2019-things"! Aug 25 12:04:33 jessup /bsd: iwm0: + b4:5d:50:9f:23:f3 60 +30 54M ess no no "Camp2019-insecure" Aug 25 12:04:33 jessup /bsd: iwm0: sending deauth to b4:5d:50:9f:23:f3 on channel 60 mode 11n Aug 25 12:04:33 jessup /bsd: iwm0: roaming from b4:5d:50:9f:23:f3 chan 60 to b4:5d:50:9f:23:e2 chan 1 Aug 25 12:04:33 jessup /bsd: iwm0: RUN -> AUTH Aug 25 12:04:33 jessup /bsd: iwm0: sending auth to b4:5d:50:9f:23:e2 on channel 1 mode 11g Aug 25 12:04:38 jessup /bsd: iwm0: AUTH -> SCAN Aug 25 12:04:40 jessup /bsd: iwm0: end active scan Aug 25 12:04:40 jessup /bsd: iwm0: AP 24:de:c6:1e:ca:13 "Camp2019-insecure" score 32 Aug 25 12:04:40 jessup /bsd: iwm0: AP ac:a3:1e:dd:bd:33 "Camp2019-insecure" score 32 Aug 25 12:04:40 jessup /bsd: iwm0: AP b4:5d:50:9f:23:f3 "Camp2019-insecure" score 32 Aug 25 12:04:40 jessup /bsd: iwm0: - 18:e8:29:c1:e5:02 11 +20 54M ess privacy! no ""! Aug 25 12:04:40 jessup /bsd: iwm0: - 1a:e8:29:c1:e5:02 11 +16 54M ess privacy! no ""! Aug 25 12:04:40 jessup /bsd: iwm0: + 24:de:c6:1e:ca:02 5 +20 54M ess no no "Camp2019-insecure" Aug 25 12:04:40 jessup /bsd: iwm0: - 24:de:c6:1e:ca:10 132! +9 54M ess privacy! no "Camp2019"! Aug 25 12:04:40 jessup /bsd: iwm0: - 24:de:c6:1e:ca:11 132! +9 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:04:40 jessup /bsd: iwm0: - 24:de:c6:1e:ca:12 132! +8 54M ess privacy! no "Camp2019-things"! Aug 25 12:04:40 jessup /bsd: iwm0: - 24:de:c6:1e:ca:13 132! +8 54M ess no no "Camp2019-insecure" Aug 25 12:04:40 jessup /bsd: iwm0: - 30:85:a9:6a:65:74 12 +15 54M ess privacy! no "NAONET"! Aug 25 12:04:40 jessup /bsd: iwm0: - 42:4a:30:1d:46:a8 1 +19 54M ess no no "Freifunk"! Aug 25 12:04:40 jessup /bsd: iwm0: - 42:4a:30:1d:46:a9 1 +17 54M ????! no no ""! Aug 25 12:04:40 jessup /bsd: iwm0: - 02:04:08:16:32:64 1 +18 54M ibss! no no "02:04:08:16:32:64"! Aug 25 12:04:40 jessup /bsd: iwm0: - 78:8a:20:71:72:cc 6 +26 54M ess privacy! no ""! Aug 25 12:04:40 jessup /bsd: iwm0: - 7a:8a:20:71:72:cc 6 +27 54M ess privacy! no ""! Aug 25 12:04:40 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:32 36! +7 54M ess privacy! no "Camp2019-things"! Aug 25 12:04:40 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:33 36! +8 54M ess no no "Camp2019-insecure" Aug 25 12:04:40 jessup /bsd: iwm0: - b4:5d:50:9f:23:e0 1 +37 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:04:40 jessup /bsd: iwm0: - b4:5d:50:9f:23:e1 1 +37 54M ess privacy! no "Camp2019-things"! Aug 25 12:04:40 jessup /bsd: iwm0: + b4:5d:50:9f:23:e2 1 +37 54M ess no no "Camp2019-insecure" Aug 25 12:04:40 jessup /bsd: iwm0: - b4:5d:50:9f:23:f0 60! +27 54M ess privacy! no "Camp2019"! Aug 25 12:04:40 jessup /bsd: iwm0: - b4:5d:50:9f:23:f1 60! +26 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:04:40 jessup /bsd: iwm0: - b4:5d:50:9f:23:f2 60! +27 54M ess privacy! no "Camp2019-things"! Aug 25 12:04:40 jessup /bsd: iwm0: - b4:5d:50:9f:23:f3 60! +30 54M ess no no "Camp2019-insecure" Aug 25 12:04:40 jessup /bsd: iwm0: SCAN -> AUTH Aug 25 12:04:40 jessup /bsd: iwm0: sending auth to b4:5d:50:9f:23:e2 on channel 1 mode 11g Aug 25 12:04:41 jessup /bsd: iwm0: AUTH -> ASSOC Aug 25 12:04:41 jessup /bsd: iwm0: sending assoc_req to b4:5d:50:9f:23:e2 on channel 1 mode 11g Aug 25 12:04:45 jessup /bsd: iwm0: ASSOC -> SCAN Aug 25 12:04:47 jessup /bsd: iwm0: end active scan Aug 25 12:04:47 jessup /bsd: iwm0: AP 24:de:c6:1e:ca:13 "Camp2019-insecure" score 32 Aug 25 12:04:47 jessup /bsd: iwm0: AP ac:a3:1e:dd:bd:33 "Camp2019-insecure" score 32 Aug 25 12:04:47 jessup /bsd: iwm0: AP b4:5d:50:9f:23:f3 "Camp2019-insecure" score 32 Aug 25 12:04:47 jessup /bsd: iwm0: - 18:e8:29:c1:e5:02 11 +20 54M ess privacy! no ""! Aug 25 12:04:47 jessup /bsd: iwm0: - 1a:e8:29:c1:e5:02 11 +16 54M ess privacy! no ""! Aug 25 12:04:47 jessup /bsd: iwm0: + 24:de:c6:1e:ca:02 5 +20 54M ess no no "Camp2019-insecure" Aug 25 12:04:47 jessup /bsd: iwm0: - 24:de:c6:1e:ca:10 132! +9 54M ess privacy! no "Camp2019"! Aug 25 12:04:47 jessup /bsd: iwm0: - 24:de:c6:1e:ca:11 132! +9 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:04:47 jessup /bsd: iwm0: - 24:de:c6:1e:ca:12 132! +8 54M ess privacy! no "Camp2019-things"! Aug 25 12:04:47 jessup /bsd: iwm0: - 24:de:c6:1e:ca:13 132! +8 54M ess no no "Camp2019-insecure" Aug 25 12:04:47 jessup /bsd: iwm0: - 30:85:a9:6a:65:74 12 +15 54M ess privacy! no "NAONET"! Aug 25 12:04:47 jessup /bsd: iwm0: - 42:4a:30:1d:46:a8 1 +18 54M ess no no "Freifunk"! Aug 25 12:04:47 jessup /bsd: iwm0: - 42:4a:30:1d:46:a9 1 +20 54M ????! no no ""! Aug 25 12:04:47 jessup /bsd: iwm0: - 02:04:08:16:32:64 1 +18 54M ibss! no no "02:04:08:16:32:64"! Aug 25 12:04:47 jessup /bsd: iwm0: - 78:8a:20:71:72:cc 6 +26 54M ess privacy! no ""! Aug 25 12:04:47 jessup /bsd: iwm0: - 7a:8a:20:71:72:cc 6 +27 54M ess privacy! no ""! Aug 25 12:04:47 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:32 36! +7 54M ess privacy! no "Camp2019-things"! Aug 25 12:04:47 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:33 36! +8 54M ess no no "Camp2019-insecure" Aug 25 12:04:47 jessup /bsd: iwm0: - b4:5d:50:9f:23:e0 1 +39 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:04:47 jessup /bsd: iwm0: - b4:5d:50:9f:23:e1 1 +37 54M ess privacy! no "Camp2019-things"! Aug 25 12:04:47 jessup /bsd: iwm0: + b4:5d:50:9f:23:e2 1 +39 54M ess no no "Camp2019-insecure" Aug 25 12:04:47 jessup /bsd: iwm0: - b4:5d:50:9f:23:f0 60! +27 54M ess privacy! no "Camp2019"! Aug 25 12:04:47 jessup /bsd: iwm0: - b4:5d:50:9f:23:f1 60! +26 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:04:47 jessup /bsd: iwm0: - b4:5d:50:9f:23:f2 60! +27 54M ess privacy! no "Camp2019-things"! Aug 25 12:04:47 jessup /bsd: iwm0: - b4:5d:50:9f:23:f3 60! +30 54M ess no no "Camp2019-insecure" Aug 25 12:04:47 jessup /bsd: iwm0: SCAN -> AUTH Aug 25 12:04:47 jessup /bsd: iwm0: sending auth to b4:5d:50:9f:23:e2 on channel 1 mode 11g Aug 25 12:04:52 jessup /bsd: iwm0: AUTH -> SCAN Aug 25 12:04:54 jessup /bsd: iwm0: end active scan Aug 25 12:04:54 jessup /bsd: iwm0: AP 24:de:c6:1e:ca:13 "Camp2019-insecure" score 32 Aug 25 12:04:54 jessup /bsd: iwm0: AP ac:a3:1e:dd:bd:33 "Camp2019-insecure" score 32 Aug 25 12:04:54 jessup /bsd: iwm0: AP b4:5d:50:9f:23:f3 "Camp2019-insecure" score 32 Aug 25 12:04:54 jessup /bsd: iwm0: - 04:bd:88:b5:4f:40 5 +13 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:04:54 jessup /bsd: iwm0: - 18:e8:29:c1:e5:02 11 +20 54M ess privacy! no ""! Aug 25 12:04:54 jessup /bsd: iwm0: - 1a:e8:29:c1:e5:02 11 +23 54M ess privacy! no ""! Aug 25 12:04:54 jessup /bsd: iwm0: + 24:de:c6:1e:ca:02 5 +20 54M ess no no "Camp2019-insecure" Aug 25 12:04:54 jessup /bsd: iwm0: - 24:de:c6:1e:ca:10 132! +9 54M ess privacy! no "Camp2019"! Aug 25 12:04:54 jessup /bsd: iwm0: - 24:de:c6:1e:ca:11 132! +9 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:04:54 jessup /bsd: iwm0: - 24:de:c6:1e:ca:12 132! +8 54M ess privacy! no "Camp2019-things"! Aug 25 12:04:54 jessup /bsd: iwm0: - 24:de:c6:1e:ca:13 132! +8 54M ess no no "Camp2019-insecure" Aug 25 12:04:54 jessup /bsd: iwm0: - 30:85:a9:6a:65:74 12 +15 54M ess privacy! no "NAONET"! Aug 25 12:04:54 jessup /bsd: iwm0: - 42:4a:30:1d:46:a8 1 +19 54M ess no no "Freifunk"! Aug 25 12:04:54 jessup /bsd: iwm0: - 42:4a:30:1d:46:a9 1 +18 54M ????! no no ""! Aug 25 12:04:54 jessup /bsd: iwm0: - 02:04:08:16:32:64 1 +19 54M ibss! no no "02:04:08:16:32:64"! Aug 25 12:04:54 jessup /bsd: iwm0: - 78:8a:20:71:72:cc 6 +26 54M ess privacy! no ""! Aug 25 12:04:54 jessup /bsd: iwm0: - 7a:8a:20:71:72:cc 6 +27 54M ess privacy! no ""! Aug 25 12:04:54 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:32 36! +7 54M ess privacy! no "Camp2019-things"! Aug 25 12:04:54 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:33 36! +8 54M ess no no "Camp2019-insecure" Aug 25 12:04:54 jessup /bsd: iwm0: - b4:5d:50:9f:23:e0 1 +38 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:04:54 jessup /bsd: iwm0: - b4:5d:50:9f:23:e1 1 +37 54M ess privacy! no "Camp2019-things"! Aug 25 12:04:54 jessup /bsd: iwm0: + b4:5d:50:9f:23:e2 1 +38 54M ess no no "Camp2019-insecure" Aug 25 12:04:54 jessup /bsd: iwm0: - b4:5d:50:9f:23:f0 60! +27 54M ess privacy! no "Camp2019"! Aug 25 12:04:54 jessup /bsd: iwm0: - b4:5d:50:9f:23:f1 60! +26 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:04:54 jessup /bsd: iwm0: - b4:5d:50:9f:23:f2 60! +27 54M ess privacy! no "Camp2019-things"! Aug 25 12:04:54 jessup /bsd: iwm0: - b4:5d:50:9f:23:f3 60! +30 54M ess no no "Camp2019-insecure" Aug 25 12:04:54 jessup /bsd: iwm0: SCAN -> AUTH Aug 25 12:04:54 jessup /bsd: iwm0: sending auth to b4:5d:50:9f:23:e2 on channel 1 mode 11g Aug 25 12:04:59 jessup /bsd: iwm0: AUTH -> SCAN Aug 25 12:05:01 jessup /bsd: iwm0: end active scan Aug 25 12:05:01 jessup /bsd: iwm0: AP 24:de:c6:1e:ca:13 "Camp2019-insecure" score 32 Aug 25 12:05:01 jessup /bsd: iwm0: AP ac:a3:1e:dd:bd:33 "Camp2019-insecure" score 32 Aug 25 12:05:01 jessup /bsd: iwm0: AP b4:5d:50:9f:23:f3 "Camp2019-insecure" score 32 Aug 25 12:05:01 jessup /bsd: iwm0: - 04:bd:88:b5:4f:40 5 +13 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:05:01 jessup /bsd: iwm0: - 18:e8:29:c1:e5:02 11 +20 54M ess privacy! no ""! Aug 25 12:05:01 jessup /bsd: iwm0: - 1a:e8:29:c1:e5:02 11 +23 54M ess privacy! no ""! Aug 25 12:05:01 jessup /bsd: iwm0: + 24:de:c6:1e:ca:02 5 +20 54M ess no no "Camp2019-insecure" Aug 25 12:05:01 jessup /bsd: iwm0: - 24:de:c6:1e:ca:10 132! +9 54M ess privacy! no "Camp2019"! Aug 25 12:05:01 jessup /bsd: iwm0: - 24:de:c6:1e:ca:11 132! +9 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:05:01 jessup /bsd: iwm0: - 24:de:c6:1e:ca:12 132! +8 54M ess privacy! no "Camp2019-things"! Aug 25 12:05:01 jessup /bsd: iwm0: - 24:de:c6:1e:ca:13 132! +8 54M ess no no "Camp2019-insecure" Aug 25 12:05:01 jessup /bsd: iwm0: - 30:85:a9:6a:65:74 12 +15 54M ess privacy! no "NAONET"! Aug 25 12:05:01 jessup /bsd: iwm0: - 42:4a:30:1d:46:a8 1 +21 54M ess no no "Freifunk"! Aug 25 12:05:01 jessup /bsd: iwm0: - 42:4a:30:1d:46:a9 1 +21 54M ????! no no ""! Aug 25 12:05:01 jessup /bsd: iwm0: - 02:04:08:16:32:64 1 +20 54M ibss! no no "02:04:08:16:32:64"! Aug 25 12:05:01 jessup /bsd: iwm0: - 78:8a:20:71:72:cc 6 +26 54M ess privacy! no ""! Aug 25 12:05:01 jessup /bsd: iwm0: - 7a:8a:20:71:72:cc 6 +27 54M ess privacy! no ""! Aug 25 12:05:01 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:32 36! +7 54M ess privacy! no "Camp2019-things"! Aug 25 12:05:01 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:33 36! +8 54M ess no no "Camp2019-insecure" Aug 25 12:05:01 jessup /bsd: iwm0: - b4:5d:50:9f:23:e0 1 +38 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:05:01 jessup /bsd: iwm0: - b4:5d:50:9f:23:e1 1 +38 54M ess privacy! no "Camp2019-things"! Aug 25 12:05:01 jessup /bsd: iwm0: + b4:5d:50:9f:23:e2 1 +39 54M ess no no "Camp2019-insecure" Aug 25 12:05:01 jessup /bsd: iwm0: - b4:5d:50:9f:23:f0 60! +27 54M ess privacy! no "Camp2019"! Aug 25 12:05:01 jessup /bsd: iwm0: - b4:5d:50:9f:23:f1 60! +26 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:05:01 jessup /bsd: iwm0: - b4:5d:50:9f:23:f2 60! +27 54M ess privacy! no "Camp2019-things"! Aug 25 12:05:01 jessup /bsd: iwm0: - b4:5d:50:9f:23:f3 60! +30 54M ess no no "Camp2019-insecure" Aug 25 12:05:01 jessup /bsd: iwm0: SCAN -> AUTH Aug 25 12:05:01 jessup /bsd: iwm0: sending auth to b4:5d:50:9f:23:e2 on channel 1 mode 11g Aug 25 12:05:06 jessup /bsd: iwm0: AUTH -> SCAN Aug 25 12:05:08 jessup /bsd: iwm0: end active scan Aug 25 12:05:08 jessup /bsd: iwm0: AP 24:de:c6:1e:ca:13 "Camp2019-insecure" score 32 Aug 25 12:05:08 jessup /bsd: iwm0: AP ac:a3:1e:dd:bd:33 "Camp2019-insecure" score 32 Aug 25 12:05:08 jessup /bsd: iwm0: AP b4:5d:50:9f:23:f3 "Camp2019-insecure" score 32 Aug 25 12:05:08 jessup /bsd: iwm0: - 04:bd:88:b5:4f:40 5 +13 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:05:08 jessup /bsd: iwm0: - 18:e8:29:c1:e5:02 11 +21 54M ess privacy! no ""! Aug 25 12:05:08 jessup /bsd: iwm0: - 1a:e8:29:c1:e5:02 11 +23 54M ess privacy! no ""! Aug 25 12:05:08 jessup /bsd: iwm0: + 24:de:c6:1e:ca:02 5 +17 54M ess no no "Camp2019-insecure" Aug 25 12:05:08 jessup /bsd: iwm0: - 24:de:c6:1e:ca:10 132! +9 54M ess privacy! no "Camp2019"! Aug 25 12:05:08 jessup /bsd: iwm0: - 24:de:c6:1e:ca:11 132! +9 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:05:08 jessup /bsd: iwm0: - 24:de:c6:1e:ca:12 132! +8 54M ess privacy! no "Camp2019-things"! Aug 25 12:05:08 jessup /bsd: iwm0: - 24:de:c6:1e:ca:13 132! +8 54M ess no no "Camp2019-insecure" Aug 25 12:05:08 jessup /bsd: iwm0: - 30:85:a9:6a:65:74 12 +15 54M ess privacy! no "NAONET"! Aug 25 12:05:08 jessup /bsd: iwm0: - 42:4a:30:1d:46:a8 1 +19 54M ess no no "Freifunk"! Aug 25 12:05:08 jessup /bsd: iwm0: - 42:4a:30:1d:46:a9 1 +19 54M ????! no no ""! Aug 25 12:05:08 jessup /bsd: iwm0: - 02:04:08:16:32:64 1 +19 54M ibss! no no "02:04:08:16:32:64"! Aug 25 12:05:08 jessup /bsd: iwm0: - 78:8a:20:71:72:cc 6 +26 54M ess privacy! no ""! Aug 25 12:05:08 jessup /bsd: iwm0: - 7a:8a:20:71:72:cc 6 +20 54M ess privacy! no ""! Aug 25 12:05:08 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:32 36! +7 54M ess privacy! no "Camp2019-things"! Aug 25 12:05:08 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:33 36! +8 54M ess no no "Camp2019-insecure" Aug 25 12:05:08 jessup /bsd: iwm0: - b4:5d:50:9f:23:e0 1 +38 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:05:08 jessup /bsd: iwm0: - b4:5d:50:9f:23:e1 1 +38 54M ess privacy! no "Camp2019-things"! Aug 25 12:05:08 jessup /bsd: iwm0: + b4:5d:50:9f:23:e2 1 +38 54M ess no no "Camp2019-insecure" Aug 25 12:05:08 jessup /bsd: iwm0: - b4:5d:50:9f:23:f0 60! +27 54M ess privacy! no "Camp2019"! Aug 25 12:05:08 jessup /bsd: iwm0: - b4:5d:50:9f:23:f1 60! +26 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:05:08 jessup /bsd: iwm0: - b4:5d:50:9f:23:f2 60! +27 54M ess privacy! no "Camp2019-things"! Aug 25 12:05:08 jessup /bsd: iwm0: - b4:5d:50:9f:23:f3 60! +30 54M ess no no "Camp2019-insecure" Aug 25 12:05:08 jessup /bsd: iwm0: - e4:95:6e:47:77:58 1 +17 54M ess privacy! no "/dev/lol/mobil"! Aug 25 12:05:08 jessup /bsd: iwm0: - e6:95:6e:44:1a:a0 6 +4 54M ess privacy! no "Kathrin"! Aug 25 12:05:08 jessup /bsd: iwm0: SCAN -> AUTH Aug 25 12:05:08 jessup /bsd: iwm0: sending auth to b4:5d:50:9f:23:e2 on channel 1 mode 11g Aug 25 12:05:08 jessup /bsd: iwm0: AUTH -> ASSOC Aug 25 12:05:08 jessup /bsd: iwm0: sending assoc_req to b4:5d:50:9f:23:e2 on channel 1 mode 11g Aug 25 12:05:13 jessup /bsd: iwm0: ASSOC -> SCAN Aug 25 12:05:15 jessup /bsd: iwm0: end active scan Aug 25 12:05:15 jessup /bsd: iwm0: AP 24:de:c6:1e:ca:13 "Camp2019-insecure" score 32 Aug 25 12:05:15 jessup /bsd: iwm0: AP ac:a3:1e:dd:bd:33 "Camp2019-insecure" score 32 Aug 25 12:05:15 jessup /bsd: iwm0: AP b4:5d:50:9f:23:f3 "Camp2019-insecure" score 32 Aug 25 12:05:15 jessup /bsd: iwm0: - 04:bd:88:b5:4f:40 5 +13 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:05:15 jessup /bsd: iwm0: - 18:e8:29:c1:e5:02 11 +21 54M ess privacy! no ""! Aug 25 12:05:15 jessup /bsd: iwm0: - 1a:e8:29:c1:e5:02 11 +16 54M ess privacy! no ""! Aug 25 12:05:15 jessup /bsd: iwm0: + 24:de:c6:1e:ca:02 5 +17 54M ess no no "Camp2019-insecure" Aug 25 12:05:15 jessup /bsd: iwm0: - 24:de:c6:1e:ca:10 132! +9 54M ess privacy! no "Camp2019"! Aug 25 12:05:15 jessup /bsd: iwm0: - 24:de:c6:1e:ca:11 132! +9 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:05:15 jessup /bsd: iwm0: - 24:de:c6:1e:ca:12 132! +8 54M ess privacy! no "Camp2019-things"! Aug 25 12:05:15 jessup /bsd: iwm0: - 24:de:c6:1e:ca:13 132! +8 54M ess no no "Camp2019-insecure" Aug 25 12:05:15 jessup /bsd: iwm0: - 30:85:a9:6a:65:74 12 +13 54M ess privacy! no "NAONET"! Aug 25 12:05:15 jessup /bsd: iwm0: - 42:4a:30:1d:46:a8 1 +19 54M ess no no "Freifunk"! Aug 25 12:05:15 jessup /bsd: iwm0: - 42:4a:30:1d:46:a9 1 +19 54M ????! no no ""! Aug 25 12:05:15 jessup /bsd: iwm0: - 02:04:08:16:32:64 1 +21 54M ibss! no no "02:04:08:16:32:64"! Aug 25 12:05:15 jessup /bsd: iwm0: - 78:8a:20:71:72:cc 6 +24 54M ess privacy! no ""! Aug 25 12:05:15 jessup /bsd: iwm0: - 7a:8a:20:71:72:cc 6 +20 54M ess privacy! no ""! Aug 25 12:05:15 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:32 36! +7 54M ess privacy! no "Camp2019-things"! Aug 25 12:05:15 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:33 36! +8 54M ess no no "Camp2019-insecure" Aug 25 12:05:15 jessup /bsd: iwm0: - b4:5d:50:9f:23:e0 1 +37 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:05:15 jessup /bsd: iwm0: - b4:5d:50:9f:23:e1 1 +38 54M ess privacy! no "Camp2019-things"! Aug 25 12:05:15 jessup /bsd: iwm0: + b4:5d:50:9f:23:e2 1 +38 54M ess no no "Camp2019-insecure" Aug 25 12:05:15 jessup /bsd: iwm0: - b4:5d:50:9f:23:f0 60! +27 54M ess privacy! no "Camp2019"! Aug 25 12:05:15 jessup /bsd: iwm0: - b4:5d:50:9f:23:f1 60! +26 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:05:15 jessup /bsd: iwm0: - b4:5d:50:9f:23:f2 60! +27 54M ess privacy! no "Camp2019-things"! Aug 25 12:05:15 jessup /bsd: iwm0: - b4:5d:50:9f:23:f3 60! +30 54M ess no no "Camp2019-insecure" Aug 25 12:05:15 jessup /bsd: iwm0: - e4:95:6e:47:77:58 1 +17 54M ess privacy! no "/dev/lol/mobil"! Aug 25 12:05:15 jessup /bsd: iwm0: - e6:95:6e:44:1a:a0 6 +4 54M ess privacy! no "Kathrin"! Aug 25 12:05:15 jessup /bsd: iwm0: SCAN -> AUTH Aug 25 12:05:15 jessup /bsd: iwm0: sending auth to b4:5d:50:9f:23:e2 on channel 1 mode 11g Aug 25 12:05:15 jessup /bsd: iwm0: AUTH -> ASSOC Aug 25 12:05:15 jessup /bsd: iwm0: sending assoc_req to b4:5d:50:9f:23:e2 on channel 1 mode 11g Aug 25 12:05:20 jessup /bsd: iwm0: ASSOC -> SCAN Aug 25 12:05:22 jessup /bsd: iwm0: end active scan Aug 25 12:05:22 jessup /bsd: iwm0: AP 24:de:c6:1e:ca:13 "Camp2019-insecure" score 32 Aug 25 12:05:22 jessup /bsd: iwm0: AP ac:a3:1e:dd:bd:33 "Camp2019-insecure" score 32 Aug 25 12:05:22 jessup /bsd: iwm0: AP b4:5d:50:9f:23:f3 "Camp2019-insecure" score 32 Aug 25 12:05:22 jessup /bsd: iwm0: - 04:bd:88:b5:4f:40 5 +13 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:05:22 jessup /bsd: iwm0: - 18:e8:29:c1:e5:02 11 +22 54M ess privacy! no ""! Aug 25 12:05:22 jessup /bsd: iwm0: - 1a:e8:29:c1:e5:02 11 +16 54M ess privacy! no ""! Aug 25 12:05:22 jessup /bsd: iwm0: + 24:de:c6:1e:ca:02 5 +17 54M ess no no "Camp2019-insecure" Aug 25 12:05:22 jessup /bsd: iwm0: - 24:de:c6:1e:ca:10 132! +9 54M ess privacy! no "Camp2019"! Aug 25 12:05:22 jessup /bsd: iwm0: - 24:de:c6:1e:ca:11 132! +9 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:05:22 jessup /bsd: iwm0: - 24:de:c6:1e:ca:12 132! +8 54M ess privacy! no "Camp2019-things"! Aug 25 12:05:22 jessup /bsd: iwm0: - 24:de:c6:1e:ca:13 132! +8 54M ess no no "Camp2019-insecure" Aug 25 12:05:22 jessup /bsd: iwm0: - 30:85:a9:6a:65:74 12 +13 54M ess privacy! no "NAONET"! Aug 25 12:05:22 jessup /bsd: iwm0: - 42:4a:30:1d:46:a8 1 +20 54M ess no no "Freifunk"! Aug 25 12:05:22 jessup /bsd: iwm0: - 42:4a:30:1d:46:a9 1 +16 54M ????! no no ""! Aug 25 12:05:22 jessup /bsd: iwm0: - 02:04:08:16:32:64 1 +18 54M ibss! no no "02:04:08:16:32:64"! Aug 25 12:05:22 jessup /bsd: iwm0: - 78:8a:20:71:72:cc 6 +24 54M ess privacy! no ""! Aug 25 12:05:22 jessup /bsd: iwm0: - 7a:8a:20:71:72:cc 6 +20 54M ess privacy! no ""! Aug 25 12:05:22 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:32 36! +7 54M ess privacy! no "Camp2019-things"! Aug 25 12:05:22 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:33 36! +8 54M ess no no "Camp2019-insecure" Aug 25 12:05:22 jessup /bsd: iwm0: - b4:5d:50:9f:23:e0 1 +38 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:05:22 jessup /bsd: iwm0: - b4:5d:50:9f:23:e1 1 +39 54M ess privacy! no "Camp2019-things"! Aug 25 12:05:22 jessup /bsd: iwm0: + b4:5d:50:9f:23:e2 1 +39 54M ess no no "Camp2019-insecure" Aug 25 12:05:22 jessup /bsd: iwm0: - b4:5d:50:9f:23:f0 60! +27 54M ess privacy! no "Camp2019"! Aug 25 12:05:22 jessup /bsd: iwm0: - b4:5d:50:9f:23:f1 60! +26 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:05:22 jessup /bsd: iwm0: - b4:5d:50:9f:23:f2 60! +27 54M ess privacy! no "Camp2019-things"! Aug 25 12:05:22 jessup /bsd: iwm0: - b4:5d:50:9f:23:f3 60! +30 54M ess no no "Camp2019-insecure" Aug 25 12:05:22 jessup /bsd: iwm0: - e4:95:6e:47:77:58 1 +17 54M ess privacy! no "/dev/lol/mobil"! Aug 25 12:05:22 jessup /bsd: iwm0: - e6:95:6e:44:1a:a0 6 +4 54M ess privacy! no "Kathrin"! Aug 25 12:05:22 jessup /bsd: iwm0: SCAN -> AUTH Aug 25 12:05:22 jessup /bsd: iwm0: sending auth to b4:5d:50:9f:23:e2 on channel 1 mode 11g Aug 25 12:05:22 jessup /bsd: iwm0: AUTH -> ASSOC Aug 25 12:05:22 jessup /bsd: iwm0: sending assoc_req to b4:5d:50:9f:23:e2 on channel 1 mode 11g Aug 25 12:05:27 jessup /bsd: iwm0: ASSOC -> SCAN Aug 25 12:05:29 jessup /bsd: iwm0: end active scan Aug 25 12:05:29 jessup /bsd: iwm0: AP 24:de:c6:1e:ca:13 "Camp2019-insecure" score 32 Aug 25 12:05:29 jessup /bsd: iwm0: AP ac:a3:1e:dd:bd:33 "Camp2019-insecure" score 32 Aug 25 12:05:29 jessup /bsd: iwm0: AP b4:5d:50:9f:23:f3 "Camp2019-insecure" score 32 Aug 25 12:05:29 jessup /bsd: iwm0: - 04:bd:88:b5:4f:40 5 +13 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:05:29 jessup /bsd: iwm0: - 18:e8:29:c1:e5:02 11 +22 54M ess privacy! no ""! Aug 25 12:05:29 jessup /bsd: iwm0: - 1a:e8:29:c1:e5:02 11 +16 54M ess privacy! no ""! Aug 25 12:05:29 jessup /bsd: iwm0: + 24:de:c6:1e:ca:02 5 +17 54M ess no no "Camp2019-insecure" Aug 25 12:05:29 jessup /bsd: iwm0: - 24:de:c6:1e:ca:10 132! +9 54M ess privacy! no "Camp2019"! Aug 25 12:05:29 jessup /bsd: iwm0: - 24:de:c6:1e:ca:11 132! +9 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:05:29 jessup /bsd: iwm0: - 24:de:c6:1e:ca:12 132! +8 54M ess privacy! no "Camp2019-things"! Aug 25 12:05:29 jessup /bsd: iwm0: - 24:de:c6:1e:ca:13 132! +8 54M ess no no "Camp2019-insecure" Aug 25 12:05:29 jessup /bsd: iwm0: - 30:85:a9:6a:65:74 12 +13 54M ess privacy! no "NAONET"! Aug 25 12:05:29 jessup /bsd: iwm0: - 42:4a:30:1d:46:a8 1 +16 54M ess no no "Freifunk"! Aug 25 12:05:29 jessup /bsd: iwm0: - 42:4a:30:1d:46:a9 1 +16 54M ????! no no ""! Aug 25 12:05:29 jessup /bsd: iwm0: - 02:04:08:16:32:64 1 +17 54M ibss! no no "02:04:08:16:32:64"! Aug 25 12:05:29 jessup /bsd: iwm0: - 78:8a:20:71:72:cc 6 +24 54M ess privacy! no ""! Aug 25 12:05:29 jessup /bsd: iwm0: - 7a:8a:20:71:72:cc 6 +20 54M ess privacy! no ""! Aug 25 12:05:29 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:32 36! +7 54M ess privacy! no "Camp2019-things"! Aug 25 12:05:29 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:33 36! +8 54M ess no no "Camp2019-insecure" Aug 25 12:05:29 jessup /bsd: iwm0: - b4:5d:50:9f:23:e0 1 +39 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:05:29 jessup /bsd: iwm0: - b4:5d:50:9f:23:e1 1 +38 54M ess privacy! no "Camp2019-things"! Aug 25 12:05:29 jessup /bsd: iwm0: + b4:5d:50:9f:23:e2 1 +38 54M ess no no "Camp2019-insecure" Aug 25 12:05:29 jessup /bsd: iwm0: - b4:5d:50:9f:23:f0 60! +27 54M ess privacy! no "Camp2019"! Aug 25 12:05:29 jessup /bsd: iwm0: - b4:5d:50:9f:23:f1 60! +26 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:05:29 jessup /bsd: iwm0: - b4:5d:50:9f:23:f2 60! +27 54M ess privacy! no "Camp2019-things"! Aug 25 12:05:29 jessup /bsd: iwm0: - b4:5d:50:9f:23:f3 60! +30 54M ess no no "Camp2019-insecure" Aug 25 12:05:29 jessup /bsd: iwm0: - e4:95:6e:47:77:58 1 +17 54M ess privacy! no "/dev/lol/mobil"! Aug 25 12:05:29 jessup /bsd: iwm0: - e6:95:6e:44:1a:a0 6 +4 54M ess privacy! no "Kathrin"! Aug 25 12:05:29 jessup /bsd: iwm0: SCAN -> AUTH Aug 25 12:05:29 jessup /bsd: iwm0: sending auth to b4:5d:50:9f:23:e2 on channel 1 mode 11g Aug 25 12:05:34 jessup /bsd: iwm0: AUTH -> SCAN Aug 25 12:05:36 jessup /bsd: iwm0: end active scan Aug 25 12:05:36 jessup /bsd: iwm0: AP 24:de:c6:1e:ca:13 "Camp2019-insecure" score 32 Aug 25 12:05:36 jessup /bsd: iwm0: AP ac:a3:1e:dd:bd:33 "Camp2019-insecure" score 32 Aug 25 12:05:36 jessup /bsd: iwm0: AP b4:5d:50:9f:23:f3 "Camp2019-insecure" score 32 Aug 25 12:05:36 jessup /bsd: iwm0: - 04:bd:88:b5:4f:40 5 +13 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:05:36 jessup /bsd: iwm0: - 18:e8:29:c1:e5:02 11 +22 54M ess privacy! no ""! Aug 25 12:05:36 jessup /bsd: iwm0: - 1a:e8:29:c1:e5:02 11 +16 54M ess privacy! no ""! Aug 25 12:05:36 jessup /bsd: iwm0: + 24:de:c6:1e:ca:02 5 +17 54M ess no no "Camp2019-insecure" Aug 25 12:05:36 jessup /bsd: iwm0: - 24:de:c6:1e:ca:10 132! +9 54M ess privacy! no "Camp2019"! Aug 25 12:05:36 jessup /bsd: iwm0: - 24:de:c6:1e:ca:11 132! +9 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:05:36 jessup /bsd: iwm0: - 24:de:c6:1e:ca:12 132! +8 54M ess privacy! no "Camp2019-things"! Aug 25 12:05:36 jessup /bsd: iwm0: - 24:de:c6:1e:ca:13 132! +8 54M ess no no "Camp2019-insecure" Aug 25 12:05:36 jessup /bsd: iwm0: - 30:85:a9:6a:65:74 12 +13 54M ess privacy! no "NAONET"! Aug 25 12:05:36 jessup /bsd: iwm0: - 42:4a:30:1d:46:a8 1 +18 54M ess no no "Freifunk"! Aug 25 12:05:36 jessup /bsd: iwm0: - 42:4a:30:1d:46:a9 1 +18 54M ????! no no ""! Aug 25 12:05:36 jessup /bsd: iwm0: - 02:04:08:16:32:64 1 +17 54M ibss! no no "02:04:08:16:32:64"! Aug 25 12:05:36 jessup /bsd: iwm0: - 78:8a:20:71:72:cc 6 +24 54M ess privacy! no ""! Aug 25 12:05:36 jessup /bsd: iwm0: - 7a:8a:20:71:72:cc 6 +20 54M ess privacy! no ""! Aug 25 12:05:36 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:32 36! +7 54M ess privacy! no "Camp2019-things"! Aug 25 12:05:36 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:33 36! +8 54M ess no no "Camp2019-insecure" Aug 25 12:05:36 jessup /bsd: iwm0: - b4:5d:50:9f:23:e0 1 +37 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:05:36 jessup /bsd: iwm0: - b4:5d:50:9f:23:e1 1 +37 54M ess privacy! no "Camp2019-things"! Aug 25 12:05:36 jessup /bsd: iwm0: + b4:5d:50:9f:23:e2 1 +37 54M ess no no "Camp2019-insecure" Aug 25 12:05:36 jessup /bsd: iwm0: - b4:5d:50:9f:23:f0 60! +27 54M ess privacy! no "Camp2019"! Aug 25 12:05:36 jessup /bsd: iwm0: - b4:5d:50:9f:23:f1 60! +26 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:05:36 jessup /bsd: iwm0: - b4:5d:50:9f:23:f2 60! +27 54M ess privacy! no "Camp2019-things"! Aug 25 12:05:36 jessup /bsd: iwm0: - b4:5d:50:9f:23:f3 60! +30 54M ess no no "Camp2019-insecure" Aug 25 12:05:36 jessup /bsd: iwm0: - e4:95:6e:47:77:58 1 +17 54M ess privacy! no "/dev/lol/mobil"! Aug 25 12:05:36 jessup /bsd: iwm0: - e6:95:6e:44:1a:a0 6 +4 54M ess privacy! no "Kathrin"! Aug 25 12:05:36 jessup /bsd: iwm0: SCAN -> AUTH Aug 25 12:05:36 jessup /bsd: iwm0: sending auth to b4:5d:50:9f:23:e2 on channel 1 mode 11g Aug 25 12:05:41 jessup /bsd: iwm0: AUTH -> SCAN Aug 25 12:05:43 jessup /bsd: iwm0: end active scan Aug 25 12:05:43 jessup /bsd: iwm0: AP 24:de:c6:1e:ca:13 "Camp2019-insecure" score 32 Aug 25 12:05:43 jessup /bsd: iwm0: AP ac:a3:1e:dd:bd:33 "Camp2019-insecure" score 32 Aug 25 12:05:43 jessup /bsd: iwm0: AP b4:5d:50:9f:23:f3 "Camp2019-insecure" score 32 Aug 25 12:05:43 jessup /bsd: iwm0: - 04:bd:88:b5:4f:40 5 +13 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:05:43 jessup /bsd: iwm0: - 18:e8:29:c1:e5:02 11 +22 54M ess privacy! no ""! Aug 25 12:05:43 jessup /bsd: iwm0: - 1a:e8:29:c1:e5:02 11 +16 54M ess privacy! no ""! Aug 25 12:05:43 jessup /bsd: iwm0: + 24:de:c6:1e:ca:02 5 +17 54M ess no no "Camp2019-insecure" Aug 25 12:05:43 jessup /bsd: iwm0: - 24:de:c6:1e:ca:10 132! +9 54M ess privacy! no "Camp2019"! Aug 25 12:05:43 jessup /bsd: iwm0: - 24:de:c6:1e:ca:11 132! +9 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:05:43 jessup /bsd: iwm0: - 24:de:c6:1e:ca:12 132! +8 54M ess privacy! no "Camp2019-things"! Aug 25 12:05:43 jessup /bsd: iwm0: - 24:de:c6:1e:ca:13 132! +8 54M ess no no "Camp2019-insecure" Aug 25 12:05:43 jessup /bsd: iwm0: - 30:85:a9:6a:65:74 12 +13 54M ess privacy! no "NAONET"! Aug 25 12:05:43 jessup /bsd: iwm0: - 42:4a:30:1d:46:a8 1 +18 54M ess no no "Freifunk"! Aug 25 12:05:43 jessup /bsd: iwm0: - 42:4a:30:1d:46:a9 1 +21 54M ????! no no ""! Aug 25 12:05:43 jessup /bsd: iwm0: - 02:04:08:16:32:64 1 +21 54M ibss! no no "02:04:08:16:32:64"! Aug 25 12:05:43 jessup /bsd: iwm0: - 78:8a:20:71:72:cc 6 +24 54M ess privacy! no ""! Aug 25 12:05:43 jessup /bsd: iwm0: - 7a:8a:20:71:72:cc 6 +21 54M ess privacy! no ""! Aug 25 12:05:43 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:32 36! +7 54M ess privacy! no "Camp2019-things"! Aug 25 12:05:43 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:33 36! +8 54M ess no no "Camp2019-insecure" Aug 25 12:05:43 jessup /bsd: iwm0: - b4:5d:50:9f:23:e0 1 +36 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:05:43 jessup /bsd: iwm0: - b4:5d:50:9f:23:e1 1 +36 54M ess privacy! no "Camp2019-things"! Aug 25 12:05:43 jessup /bsd: iwm0: + b4:5d:50:9f:23:e2 1 +36 54M ess no no "Camp2019-insecure" Aug 25 12:05:43 jessup /bsd: iwm0: - b4:5d:50:9f:23:f0 60! +27 54M ess privacy! no "Camp2019"! Aug 25 12:05:43 jessup /bsd: iwm0: - b4:5d:50:9f:23:f1 60! +26 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:05:43 jessup /bsd: iwm0: - b4:5d:50:9f:23:f2 60! +27 54M ess privacy! no "Camp2019-things"! Aug 25 12:05:43 jessup /bsd: iwm0: - b4:5d:50:9f:23:f3 60! +30 54M ess no no "Camp2019-insecure" Aug 25 12:05:43 jessup /bsd: iwm0: - e4:95:6e:47:77:58 1 +17 54M ess privacy! no "/dev/lol/mobil"! Aug 25 12:05:43 jessup /bsd: iwm0: - e6:95:6e:44:1a:a0 6 +4 54M ess privacy! no "Kathrin"! Aug 25 12:05:43 jessup /bsd: iwm0: SCAN -> AUTH Aug 25 12:05:43 jessup /bsd: iwm0: sending auth to b4:5d:50:9f:23:e2 on channel 1 mode 11g Aug 25 12:05:48 jessup /bsd: iwm0: AUTH -> SCAN Aug 25 12:05:50 jessup /bsd: iwm0: end active scan Aug 25 12:05:50 jessup /bsd: iwm0: AP 24:de:c6:1e:ca:13 "Camp2019-insecure" score 32 Aug 25 12:05:50 jessup /bsd: iwm0: AP ac:a3:1e:dd:bd:33 "Camp2019-insecure" score 32 Aug 25 12:05:50 jessup /bsd: iwm0: AP b4:5d:50:9f:23:f3 "Camp2019-insecure" score 32 Aug 25 12:05:50 jessup /bsd: iwm0: - 04:bd:88:b5:4f:40 5 +13 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:05:50 jessup /bsd: iwm0: - 18:e8:29:c1:e5:02 11 +22 54M ess privacy! no ""! Aug 25 12:05:50 jessup /bsd: iwm0: - 1a:e8:29:c1:e5:02 11 +22 54M ess privacy! no ""! Aug 25 12:05:50 jessup /bsd: iwm0: + 24:de:c6:1e:ca:02 5 +17 54M ess no no "Camp2019-insecure" Aug 25 12:05:50 jessup /bsd: iwm0: - 24:de:c6:1e:ca:10 132! +9 54M ess privacy! no "Camp2019"! Aug 25 12:05:50 jessup /bsd: iwm0: - 24:de:c6:1e:ca:11 132! +9 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:05:50 jessup /bsd: iwm0: - 24:de:c6:1e:ca:12 132! +8 54M ess privacy! no "Camp2019-things"! Aug 25 12:05:50 jessup /bsd: iwm0: - 24:de:c6:1e:ca:13 132! +8 54M ess no no "Camp2019-insecure" Aug 25 12:05:50 jessup /bsd: iwm0: - 30:85:a9:6a:65:74 12 +13 54M ess privacy! no "NAONET"! Aug 25 12:05:50 jessup /bsd: iwm0: - 42:4a:30:1d:46:a8 1 +18 54M ess no no "Freifunk"! Aug 25 12:05:50 jessup /bsd: iwm0: - 42:4a:30:1d:46:a9 1 +20 54M ????! no no ""! Aug 25 12:05:50 jessup /bsd: iwm0: - 02:04:08:16:32:64 1 +22 54M ibss! no no "02:04:08:16:32:64"! Aug 25 12:05:50 jessup /bsd: iwm0: - 50:c7:bf:47:0e:b0 11 +8 54M ess privacy! no "ArtesMobiles_outside"! Aug 25 12:05:50 jessup /bsd: iwm0: - 78:8a:20:71:72:cc 6 +12 54M ess privacy! no ""! Aug 25 12:05:50 jessup /bsd: iwm0: - 7a:8a:20:71:72:cc 6 +21 54M ess privacy! no ""! Aug 25 12:05:50 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:32 36! +7 54M ess privacy! no "Camp2019-things"! Aug 25 12:05:50 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:33 36! +8 54M ess no no "Camp2019-insecure" Aug 25 12:05:50 jessup /bsd: iwm0: - b4:5d:50:9f:23:e0 1 +38 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:05:50 jessup /bsd: iwm0: - b4:5d:50:9f:23:e1 1 +39 54M ess privacy! no "Camp2019-things"! Aug 25 12:05:50 jessup /bsd: iwm0: + b4:5d:50:9f:23:e2 1 +39 54M ess no no "Camp2019-insecure" Aug 25 12:05:50 jessup /bsd: iwm0: - b4:5d:50:9f:23:f0 60! +27 54M ess privacy! no "Camp2019"! Aug 25 12:05:50 jessup /bsd: iwm0: - b4:5d:50:9f:23:f1 60! +26 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:05:50 jessup /bsd: iwm0: - b4:5d:50:9f:23:f2 60! +27 54M ess privacy! no "Camp2019-things"! Aug 25 12:05:50 jessup /bsd: iwm0: - b4:5d:50:9f:23:f3 60! +30 54M ess no no "Camp2019-insecure" Aug 25 12:05:50 jessup /bsd: iwm0: - e4:95:6e:47:77:58 1 +17 54M ess privacy! no "/dev/lol/mobil"! Aug 25 12:05:50 jessup /bsd: iwm0: - e6:95:6e:44:1a:a0 6 +4 54M ess privacy! no "Kathrin"! Aug 25 12:05:50 jessup /bsd: iwm0: SCAN -> AUTH Aug 25 12:05:50 jessup /bsd: iwm0: sending auth to b4:5d:50:9f:23:e2 on channel 1 mode 11g Aug 25 12:05:55 jessup /bsd: iwm0: AUTH -> SCAN Aug 25 12:05:57 jessup /bsd: iwm0: end active scan Aug 25 12:05:57 jessup /bsd: iwm0: AP 24:de:c6:1e:ca:13 "Camp2019-insecure" score 32 Aug 25 12:05:57 jessup /bsd: iwm0: AP ac:a3:1e:dd:bd:33 "Camp2019-insecure" score 32 Aug 25 12:05:57 jessup /bsd: iwm0: AP b4:5d:50:9f:23:f3 "Camp2019-insecure" score 32 Aug 25 12:05:57 jessup /bsd: iwm0: - 04:bd:88:b5:4f:40 5 +13 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:05:57 jessup /bsd: iwm0: - 18:e8:29:c1:e5:02 11 +15 54M ess privacy! no ""! Aug 25 12:05:57 jessup /bsd: iwm0: - 1a:e8:29:c1:e5:02 11 +22 54M ess privacy! no ""! Aug 25 12:05:57 jessup /bsd: iwm0: + 24:de:c6:1e:ca:02 5 +17 54M ess no no "Camp2019-insecure" Aug 25 12:05:57 jessup /bsd: iwm0: - 24:de:c6:1e:ca:10 132! +9 54M ess privacy! no "Camp2019"! Aug 25 12:05:57 jessup /bsd: iwm0: - 24:de:c6:1e:ca:11 132! +9 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:05:57 jessup /bsd: iwm0: - 24:de:c6:1e:ca:12 132! +8 54M ess privacy! no "Camp2019-things"! Aug 25 12:05:57 jessup /bsd: iwm0: - 24:de:c6:1e:ca:13 132! +8 54M ess no no "Camp2019-insecure" Aug 25 12:05:57 jessup /bsd: iwm0: - 30:85:a9:6a:65:74 12 +13 54M ess privacy! no "NAONET"! Aug 25 12:05:57 jessup /bsd: iwm0: - 42:4a:30:1d:46:a8 1 +18 54M ess no no "Freifunk"! Aug 25 12:05:57 jessup /bsd: iwm0: - 42:4a:30:1d:46:a9 1 +20 54M ????! no no ""! Aug 25 12:05:57 jessup /bsd: iwm0: - 02:04:08:16:32:64 1 +17 54M ibss! no no "02:04:08:16:32:64"! Aug 25 12:05:57 jessup /bsd: iwm0: - 50:c7:bf:47:0e:b0 11 +8 54M ess privacy! no "ArtesMobiles_outside"! Aug 25 12:05:57 jessup /bsd: iwm0: - 78:8a:20:71:72:cc 6 +12 54M ess privacy! no ""! Aug 25 12:05:57 jessup /bsd: iwm0: - 7a:8a:20:71:72:cc 6 +21 54M ess privacy! no ""! Aug 25 12:05:57 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:32 36! +7 54M ess privacy! no "Camp2019-things"! Aug 25 12:05:57 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:33 36! +8 54M ess no no "Camp2019-insecure" Aug 25 12:05:57 jessup /bsd: iwm0: - b4:5d:50:9f:23:e0 1 +39 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:05:57 jessup /bsd: iwm0: - b4:5d:50:9f:23:e1 1 +40 54M ess privacy! no "Camp2019-things"! Aug 25 12:05:57 jessup /bsd: iwm0: + b4:5d:50:9f:23:e2 1 +39 54M ess no no "Camp2019-insecure" Aug 25 12:05:57 jessup /bsd: iwm0: - b4:5d:50:9f:23:f0 60! +27 54M ess privacy! no "Camp2019"! Aug 25 12:05:57 jessup /bsd: iwm0: - b4:5d:50:9f:23:f1 60! +26 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:05:57 jessup /bsd: iwm0: - b4:5d:50:9f:23:f2 60! +27 54M ess privacy! no "Camp2019-things"! Aug 25 12:05:57 jessup /bsd: iwm0: - b4:5d:50:9f:23:f3 60! +30 54M ess no no "Camp2019-insecure" Aug 25 12:05:57 jessup /bsd: iwm0: - e4:95:6e:47:77:58 1 +17 54M ess privacy! no "/dev/lol/mobil"! Aug 25 12:05:57 jessup /bsd: iwm0: - e6:95:6e:44:1a:a0 6 +4 54M ess privacy! no "Kathrin"! Aug 25 12:05:57 jessup /bsd: iwm0: SCAN -> AUTH Aug 25 12:05:57 jessup /bsd: iwm0: sending auth to b4:5d:50:9f:23:e2 on channel 1 mode 11g Aug 25 12:05:57 jessup /bsd: iwm0: AUTH -> ASSOC Aug 25 12:05:57 jessup /bsd: iwm0: sending assoc_req to b4:5d:50:9f:23:e2 on channel 1 mode 11g Aug 25 12:06:02 jessup /bsd: iwm0: ASSOC -> SCAN Aug 25 12:06:04 jessup /bsd: iwm0: end active scan Aug 25 12:06:04 jessup /bsd: iwm0: AP 24:de:c6:1e:ca:13 "Camp2019-insecure" score 32 Aug 25 12:06:04 jessup /bsd: iwm0: AP ac:a3:1e:dd:bd:33 "Camp2019-insecure" score 32 Aug 25 12:06:04 jessup /bsd: iwm0: AP b4:5d:50:9f:23:f3 "Camp2019-insecure" score 32 Aug 25 12:06:04 jessup /bsd: iwm0: - 04:bd:88:b5:4f:40 5 +13 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:06:04 jessup /bsd: iwm0: - 18:e8:29:c1:e5:02 11 +15 54M ess privacy! no ""! Aug 25 12:06:04 jessup /bsd: iwm0: - 1a:e8:29:c1:e5:02 11 +22 54M ess privacy! no ""! Aug 25 12:06:04 jessup /bsd: iwm0: + 24:de:c6:1e:ca:02 5 +17 54M ess no no "Camp2019-insecure" Aug 25 12:06:04 jessup /bsd: iwm0: - 24:de:c6:1e:ca:10 132! +9 54M ess privacy! no "Camp2019"! Aug 25 12:06:04 jessup /bsd: iwm0: - 24:de:c6:1e:ca:11 132! +9 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:06:04 jessup /bsd: iwm0: - 24:de:c6:1e:ca:12 132! +8 54M ess privacy! no "Camp2019-things"! Aug 25 12:06:04 jessup /bsd: iwm0: - 24:de:c6:1e:ca:13 132! +8 54M ess no no "Camp2019-insecure" Aug 25 12:06:04 jessup /bsd: iwm0: - 30:85:a9:6a:65:74 12 +13 54M ess privacy! no "NAONET"! Aug 25 12:06:04 jessup /bsd: iwm0: - 42:4a:30:1d:46:a8 1 +21 54M ess no no "Freifunk"! Aug 25 12:06:04 jessup /bsd: iwm0: - 42:4a:30:1d:46:a9 1 +19 54M ????! no no ""! Aug 25 12:06:04 jessup /bsd: iwm0: - 02:04:08:16:32:64 1 +21 54M ibss! no no "02:04:08:16:32:64"! Aug 25 12:06:04 jessup /bsd: iwm0: - 50:c7:bf:47:0e:b0 11 +8 54M ess privacy! no "ArtesMobiles_outside"! Aug 25 12:06:04 jessup /bsd: iwm0: - 78:8a:20:71:72:cc 6 +12 54M ess privacy! no ""! Aug 25 12:06:04 jessup /bsd: iwm0: - 7a:8a:20:71:72:cc 6 +21 54M ess privacy! no ""! Aug 25 12:06:04 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:32 36! +7 54M ess privacy! no "Camp2019-things"! Aug 25 12:06:04 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:33 36! +8 54M ess no no "Camp2019-insecure" Aug 25 12:06:04 jessup /bsd: iwm0: - b4:5d:50:9f:23:e0 1 +38 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:06:04 jessup /bsd: iwm0: - b4:5d:50:9f:23:e1 1 +37 54M ess privacy! no "Camp2019-things"! Aug 25 12:06:04 jessup /bsd: iwm0: + b4:5d:50:9f:23:e2 1 +38 54M ess no no "Camp2019-insecure" Aug 25 12:06:04 jessup /bsd: iwm0: - b4:5d:50:9f:23:f0 60! +27 54M ess privacy! no "Camp2019"! Aug 25 12:06:04 jessup /bsd: iwm0: - b4:5d:50:9f:23:f1 60! +26 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:06:04 jessup /bsd: iwm0: - b4:5d:50:9f:23:f2 60! +27 54M ess privacy! no "Camp2019-things"! Aug 25 12:06:04 jessup /bsd: iwm0: - b4:5d:50:9f:23:f3 60! +30 54M ess no no "Camp2019-insecure" Aug 25 12:06:04 jessup /bsd: iwm0: - e4:95:6e:47:77:58 1 +17 54M ess privacy! no "/dev/lol/mobil"! Aug 25 12:06:04 jessup /bsd: iwm0: - e6:95:6e:44:1a:a0 6 +4 54M ess privacy! no "Kathrin"! Aug 25 12:06:04 jessup /bsd: iwm0: SCAN -> AUTH Aug 25 12:06:04 jessup /bsd: iwm0: sending auth to b4:5d:50:9f:23:e2 on channel 1 mode 11g Aug 25 12:06:09 jessup /bsd: iwm0: AUTH -> SCAN Aug 25 12:06:11 jessup /bsd: iwm0: end active scan Aug 25 12:06:11 jessup /bsd: iwm0: AP 24:de:c6:1e:ca:13 "Camp2019-insecure" score 32 Aug 25 12:06:11 jessup /bsd: iwm0: AP ac:a3:1e:dd:bd:33 "Camp2019-insecure" score 32 Aug 25 12:06:11 jessup /bsd: iwm0: AP b4:5d:50:9f:23:f3 "Camp2019-insecure" score 32 Aug 25 12:06:11 jessup /bsd: iwm0: - 04:bd:88:b5:4f:40 5 +13 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:06:11 jessup /bsd: iwm0: - 18:e8:29:c1:e5:02 11 +15 54M ess privacy! no ""! Aug 25 12:06:11 jessup /bsd: iwm0: - 1a:e8:29:c1:e5:02 11 +22 54M ess privacy! no ""! Aug 25 12:06:11 jessup /bsd: iwm0: + 24:de:c6:1e:ca:02 5 +17 54M ess no no "Camp2019-insecure" Aug 25 12:06:11 jessup /bsd: iwm0: - 24:de:c6:1e:ca:10 132! +9 54M ess privacy! no "Camp2019"! Aug 25 12:06:11 jessup /bsd: iwm0: - 24:de:c6:1e:ca:11 132! +9 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:06:11 jessup /bsd: iwm0: - 24:de:c6:1e:ca:12 132! +8 54M ess privacy! no "Camp2019-things"! Aug 25 12:06:11 jessup /bsd: iwm0: - 24:de:c6:1e:ca:13 132! +8 54M ess no no "Camp2019-insecure" Aug 25 12:06:11 jessup /bsd: iwm0: - 30:85:a9:6a:65:74 12 +13 54M ess privacy! no "NAONET"! Aug 25 12:06:11 jessup /bsd: iwm0: - 42:4a:30:1d:46:a8 1 +22 54M ess no no "Freifunk"! Aug 25 12:06:11 jessup /bsd: iwm0: - 42:4a:30:1d:46:a9 1 +23 54M ????! no no ""! Aug 25 12:06:11 jessup /bsd: iwm0: - 02:04:08:16:32:64 1 +23 54M ibss! no no "02:04:08:16:32:64"! Aug 25 12:06:11 jessup /bsd: iwm0: - 50:c7:bf:47:0e:b0 11 +8 54M ess privacy! no "ArtesMobiles_outside"! Aug 25 12:06:11 jessup /bsd: iwm0: - 78:8a:20:71:72:cc 6 +12 54M ess privacy! no ""! Aug 25 12:06:11 jessup /bsd: iwm0: - 7a:8a:20:71:72:cc 6 +21 54M ess privacy! no ""! Aug 25 12:06:11 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:32 36! +7 54M ess privacy! no "Camp2019-things"! Aug 25 12:06:11 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:33 36! +8 54M ess no no "Camp2019-insecure" Aug 25 12:06:11 jessup /bsd: iwm0: - b4:5d:50:9f:23:e0 1 +38 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:06:11 jessup /bsd: iwm0: - b4:5d:50:9f:23:e1 1 +38 54M ess privacy! no "Camp2019-things"! Aug 25 12:06:11 jessup /bsd: iwm0: + b4:5d:50:9f:23:e2 1 +38 54M ess no no "Camp2019-insecure" Aug 25 12:06:11 jessup /bsd: iwm0: - b4:5d:50:9f:23:f0 60! +27 54M ess privacy! no "Camp2019"! Aug 25 12:06:11 jessup /bsd: iwm0: - b4:5d:50:9f:23:f1 60! +26 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:06:11 jessup /bsd: iwm0: - b4:5d:50:9f:23:f2 60! +27 54M ess privacy! no "Camp2019-things"! Aug 25 12:06:11 jessup /bsd: iwm0: - b4:5d:50:9f:23:f3 60! +30 54M ess no no "Camp2019-insecure" Aug 25 12:06:11 jessup /bsd: iwm0: - e4:95:6e:47:77:58 1 +17 54M ess privacy! no "/dev/lol/mobil"! Aug 25 12:06:11 jessup /bsd: iwm0: - e6:95:6e:44:1a:a0 6 +4 54M ess privacy! no "Kathrin"! Aug 25 12:06:11 jessup /bsd: iwm0: SCAN -> AUTH Aug 25 12:06:11 jessup /bsd: iwm0: sending auth to b4:5d:50:9f:23:e2 on channel 1 mode 11g Aug 25 12:06:11 jessup /bsd: iwm0: AUTH -> ASSOC Aug 25 12:06:11 jessup /bsd: iwm0: sending assoc_req to b4:5d:50:9f:23:e2 on channel 1 mode 11g Aug 25 12:06:16 jessup /bsd: iwm0: ASSOC -> SCAN Aug 25 12:06:18 jessup /bsd: iwm0: end active scan Aug 25 12:06:18 jessup /bsd: iwm0: AP 24:de:c6:1e:ca:13 "Camp2019-insecure" score 32 Aug 25 12:06:18 jessup /bsd: iwm0: AP ac:a3:1e:dd:bd:33 "Camp2019-insecure" score 32 Aug 25 12:06:18 jessup /bsd: iwm0: AP b4:5d:50:9f:23:f3 "Camp2019-insecure" score 32 Aug 25 12:06:18 jessup /bsd: iwm0: - 04:bd:88:b5:4f:40 5 +13 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:06:18 jessup /bsd: iwm0: - 18:e8:29:c1:e5:02 11 +15 54M ess privacy! no ""! Aug 25 12:06:18 jessup /bsd: iwm0: - 1a:e8:29:c1:e5:02 11 +22 54M ess privacy! no ""! Aug 25 12:06:18 jessup /bsd: iwm0: + 24:de:c6:1e:ca:02 5 +17 54M ess no no "Camp2019-insecure" Aug 25 12:06:18 jessup /bsd: iwm0: - 24:de:c6:1e:ca:10 132! +9 54M ess privacy! no "Camp2019"! Aug 25 12:06:18 jessup /bsd: iwm0: - 24:de:c6:1e:ca:11 132! +9 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:06:18 jessup /bsd: iwm0: - 24:de:c6:1e:ca:12 132! +8 54M ess privacy! no "Camp2019-things"! Aug 25 12:06:18 jessup /bsd: iwm0: - 24:de:c6:1e:ca:13 132! +8 54M ess no no "Camp2019-insecure" Aug 25 12:06:18 jessup /bsd: iwm0: - 30:85:a9:6a:65:74 12 +13 54M ess privacy! no "NAONET"! Aug 25 12:06:18 jessup /bsd: iwm0: - 42:4a:30:1d:46:a8 1 +20 54M ess no no "Freifunk"! Aug 25 12:06:18 jessup /bsd: iwm0: - 42:4a:30:1d:46:a9 1 +20 54M ????! no no ""! Aug 25 12:06:18 jessup /bsd: iwm0: - 02:04:08:16:32:64 1 +19 54M ibss! no no "02:04:08:16:32:64"! Aug 25 12:06:18 jessup /bsd: iwm0: - 50:c7:bf:47:0e:b0 11 +8 54M ess privacy! no "ArtesMobiles_outside"! Aug 25 12:06:18 jessup /bsd: iwm0: - 78:8a:20:71:72:cc 6 +12 54M ess privacy! no ""! Aug 25 12:06:18 jessup /bsd: iwm0: - 7a:8a:20:71:72:cc 6 +11 54M ess privacy! no ""! Aug 25 12:06:18 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:32 36! +7 54M ess privacy! no "Camp2019-things"! Aug 25 12:06:18 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:33 36! +8 54M ess no no "Camp2019-insecure" Aug 25 12:06:18 jessup /bsd: iwm0: - b4:5d:50:9f:23:e0 1 +38 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:06:18 jessup /bsd: iwm0: - b4:5d:50:9f:23:e1 1 +38 54M ess privacy! no "Camp2019-things"! Aug 25 12:06:18 jessup /bsd: iwm0: + b4:5d:50:9f:23:e2 1 +38 54M ess no no "Camp2019-insecure" Aug 25 12:06:18 jessup /bsd: iwm0: - b4:5d:50:9f:23:f0 60! +27 54M ess privacy! no "Camp2019"! Aug 25 12:06:18 jessup /bsd: iwm0: - b4:5d:50:9f:23:f1 60! +26 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:06:18 jessup /bsd: iwm0: - b4:5d:50:9f:23:f2 60! +27 54M ess privacy! no "Camp2019-things"! Aug 25 12:06:18 jessup /bsd: iwm0: - b4:5d:50:9f:23:f3 60! +30 54M ess no no "Camp2019-insecure" Aug 25 12:06:18 jessup /bsd: iwm0: - e4:95:6e:47:77:58 1 +17 54M ess privacy! no "/dev/lol/mobil"! Aug 25 12:06:18 jessup /bsd: iwm0: - e6:95:6e:44:1a:a0 6 +4 54M ess privacy! no "Kathrin"! Aug 25 12:06:18 jessup /bsd: iwm0: SCAN -> AUTH Aug 25 12:06:18 jessup /bsd: iwm0: sending auth to b4:5d:50:9f:23:e2 on channel 1 mode 11g Aug 25 12:06:22 jessup ntpd[49722]: recvmsg 2606:4700:f1::1: Host is down Aug 25 12:06:23 jessup /bsd: iwm0: AUTH -> SCAN Aug 25 12:06:25 jessup /bsd: iwm0: end active scan Aug 25 12:06:25 jessup /bsd: iwm0: AP 24:de:c6:1e:ca:13 "Camp2019-insecure" score 32 Aug 25 12:06:25 jessup /bsd: iwm0: AP ac:a3:1e:dd:bd:33 "Camp2019-insecure" score 32 Aug 25 12:06:25 jessup /bsd: iwm0: AP b4:5d:50:9f:23:f3 "Camp2019-insecure" score 32 Aug 25 12:06:25 jessup /bsd: iwm0: - 04:bd:88:b5:4f:40 5 +13 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:06:25 jessup /bsd: iwm0: - 18:e8:29:c1:e5:02 11 +15 54M ess privacy! no ""! Aug 25 12:06:25 jessup /bsd: iwm0: - 1a:e8:29:c1:e5:02 11 +22 54M ess privacy! no ""! Aug 25 12:06:25 jessup /bsd: iwm0: + 24:de:c6:1e:ca:02 5 +17 54M ess no no "Camp2019-insecure" Aug 25 12:06:25 jessup /bsd: iwm0: - 24:de:c6:1e:ca:10 132! +9 54M ess privacy! no "Camp2019"! Aug 25 12:06:25 jessup /bsd: iwm0: - 24:de:c6:1e:ca:11 132! +9 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:06:25 jessup /bsd: iwm0: - 24:de:c6:1e:ca:12 132! +8 54M ess privacy! no "Camp2019-things"! Aug 25 12:06:25 jessup /bsd: iwm0: - 24:de:c6:1e:ca:13 132! +8 54M ess no no "Camp2019-insecure" Aug 25 12:06:25 jessup /bsd: iwm0: - 30:85:a9:6a:65:74 12 +13 54M ess privacy! no "NAONET"! Aug 25 12:06:25 jessup /bsd: iwm0: - 42:4a:30:1d:46:a8 1 +20 54M ess no no "Freifunk"! Aug 25 12:06:25 jessup /bsd: iwm0: - 42:4a:30:1d:46:a9 1 +21 54M ????! no no ""! Aug 25 12:06:25 jessup /bsd: iwm0: - 02:04:08:16:32:64 1 +19 54M ibss! no no "02:04:08:16:32:64"! Aug 25 12:06:25 jessup /bsd: iwm0: - 50:c7:bf:47:0e:b0 11 +8 54M ess privacy! no "ArtesMobiles_outside"! Aug 25 12:06:25 jessup /bsd: iwm0: - 78:8a:20:71:72:cc 6 +12 54M ess privacy! no ""! Aug 25 12:06:25 jessup /bsd: iwm0: - 7a:8a:20:71:72:cc 6 +11 54M ess privacy! no ""! Aug 25 12:06:25 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:32 36! +7 54M ess privacy! no "Camp2019-things"! Aug 25 12:06:25 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:33 36! +8 54M ess no no "Camp2019-insecure" Aug 25 12:06:25 jessup /bsd: iwm0: - b4:5d:50:9f:23:e0 1 +36 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:06:25 jessup /bsd: iwm0: - b4:5d:50:9f:23:e1 1 +37 54M ess privacy! no "Camp2019-things"! Aug 25 12:06:25 jessup /bsd: iwm0: + b4:5d:50:9f:23:e2 1 +37 54M ess no no "Camp2019-insecure" Aug 25 12:06:25 jessup /bsd: iwm0: - b4:5d:50:9f:23:f0 60! +27 54M ess privacy! no "Camp2019"! Aug 25 12:06:25 jessup /bsd: iwm0: - b4:5d:50:9f:23:f1 60! +26 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:06:25 jessup /bsd: iwm0: - b4:5d:50:9f:23:f2 60! +27 54M ess privacy! no "Camp2019-things"! Aug 25 12:06:25 jessup /bsd: iwm0: - b4:5d:50:9f:23:f3 60! +30 54M ess no no "Camp2019-insecure" Aug 25 12:06:25 jessup /bsd: iwm0: - e4:95:6e:47:77:58 1 +17 54M ess privacy! no "/dev/lol/mobil"! Aug 25 12:06:25 jessup /bsd: iwm0: - e6:95:6e:44:1a:a0 6 +4 54M ess privacy! no "Kathrin"! Aug 25 12:06:25 jessup /bsd: iwm0: SCAN -> AUTH Aug 25 12:06:25 jessup /bsd: iwm0: sending auth to b4:5d:50:9f:23:e2 on channel 1 mode 11g Aug 25 12:06:30 jessup /bsd: iwm0: AUTH -> SCAN Aug 25 12:06:32 jessup /bsd: iwm0: end active scan Aug 25 12:06:32 jessup /bsd: iwm0: AP 24:de:c6:1e:ca:13 "Camp2019-insecure" score 32 Aug 25 12:06:32 jessup /bsd: iwm0: AP ac:a3:1e:dd:bd:33 "Camp2019-insecure" score 32 Aug 25 12:06:32 jessup /bsd: iwm0: AP b4:5d:50:9f:23:f3 "Camp2019-insecure" score 32 Aug 25 12:06:32 jessup /bsd: iwm0: - 04:bd:88:b5:4f:40 5 +13 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:06:32 jessup /bsd: iwm0: - 18:e8:29:c1:e5:02 11 +18 54M ess privacy! no ""! Aug 25 12:06:32 jessup /bsd: iwm0: - 1a:e8:29:c1:e5:02 11 +22 54M ess privacy! no ""! Aug 25 12:06:32 jessup /bsd: iwm0: + 24:de:c6:1e:ca:02 5 +17 54M ess no no "Camp2019-insecure" Aug 25 12:06:32 jessup /bsd: iwm0: - 24:de:c6:1e:ca:10 132! +9 54M ess privacy! no "Camp2019"! Aug 25 12:06:32 jessup /bsd: iwm0: - 24:de:c6:1e:ca:11 132! +9 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:06:32 jessup /bsd: iwm0: - 24:de:c6:1e:ca:12 132! +8 54M ess privacy! no "Camp2019-things"! Aug 25 12:06:32 jessup /bsd: iwm0: - 24:de:c6:1e:ca:13 132! +8 54M ess no no "Camp2019-insecure" Aug 25 12:06:32 jessup /bsd: iwm0: - 30:85:a9:6a:65:74 12 +13 54M ess privacy! no "NAONET"! Aug 25 12:06:32 jessup /bsd: iwm0: - 42:4a:30:1d:46:a8 1 +18 54M ess no no "Freifunk"! Aug 25 12:06:32 jessup /bsd: iwm0: - 42:4a:30:1d:46:a9 1 +21 54M ????! no no ""! Aug 25 12:06:32 jessup /bsd: iwm0: - 02:04:08:16:32:64 1 +19 54M ibss! no no "02:04:08:16:32:64"! Aug 25 12:06:32 jessup /bsd: iwm0: - 50:c7:bf:47:0e:b0 11 +8 54M ess privacy! no "ArtesMobiles_outside"! Aug 25 12:06:32 jessup /bsd: iwm0: - 78:8a:20:71:72:cc 6 +12 54M ess privacy! no ""! Aug 25 12:06:32 jessup /bsd: iwm0: - 7a:8a:20:71:72:cc 6 +22 54M ess privacy! no ""! Aug 25 12:06:32 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:32 36! +7 54M ess privacy! no "Camp2019-things"! Aug 25 12:06:32 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:33 36! +8 54M ess no no "Camp2019-insecure" Aug 25 12:06:32 jessup /bsd: iwm0: - b4:5d:50:9f:23:e0 1 +37 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:06:32 jessup /bsd: iwm0: - b4:5d:50:9f:23:e1 1 +37 54M ess privacy! no "Camp2019-things"! Aug 25 12:06:32 jessup /bsd: iwm0: + b4:5d:50:9f:23:e2 1 +37 54M ess no no "Camp2019-insecure" Aug 25 12:06:32 jessup /bsd: iwm0: - b4:5d:50:9f:23:f0 60! +27 54M ess privacy! no "Camp2019"! Aug 25 12:06:32 jessup /bsd: iwm0: - b4:5d:50:9f:23:f1 60! +26 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:06:32 jessup /bsd: iwm0: - b4:5d:50:9f:23:f2 60! +27 54M ess privacy! no "Camp2019-things"! Aug 25 12:06:32 jessup /bsd: iwm0: - b4:5d:50:9f:23:f3 60! +30 54M ess no no "Camp2019-insecure" Aug 25 12:06:32 jessup /bsd: iwm0: - e4:95:6e:47:77:58 1 +17 54M ess privacy! no "/dev/lol/mobil"! Aug 25 12:06:32 jessup /bsd: iwm0: - e6:95:6e:44:1a:a0 6 +4 54M ess privacy! no "Kathrin"! Aug 25 12:06:32 jessup /bsd: iwm0: SCAN -> AUTH Aug 25 12:06:32 jessup /bsd: iwm0: sending auth to b4:5d:50:9f:23:e2 on channel 1 mode 11g Aug 25 12:06:32 jessup /bsd: iwm0: AUTH -> AUTH Aug 25 12:06:37 jessup /bsd: iwm0: AUTH -> SCAN Aug 25 12:06:39 jessup /bsd: iwm0: end active scan Aug 25 12:06:39 jessup /bsd: iwm0: AP 24:de:c6:1e:ca:13 "Camp2019-insecure" score 32 Aug 25 12:06:39 jessup /bsd: iwm0: AP ac:a3:1e:dd:bd:33 "Camp2019-insecure" score 32 Aug 25 12:06:39 jessup /bsd: iwm0: AP b4:5d:50:9f:23:f3 "Camp2019-insecure" score 32 Aug 25 12:06:39 jessup /bsd: iwm0: - 04:bd:88:b5:4f:40 5 +13 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:06:39 jessup /bsd: iwm0: - 18:e8:29:c1:e5:02 11 +18 54M ess privacy! no ""! Aug 25 12:06:39 jessup /bsd: iwm0: - 1a:e8:29:c1:e5:02 11 +22 54M ess privacy! no ""! Aug 25 12:06:39 jessup /bsd: iwm0: + 24:de:c6:1e:ca:02 5 +17 54M ess no no "Camp2019-insecure" Aug 25 12:06:39 jessup /bsd: iwm0: - 24:de:c6:1e:ca:10 132! +9 54M ess privacy! no "Camp2019"! Aug 25 12:06:39 jessup /bsd: iwm0: - 24:de:c6:1e:ca:11 132! +9 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:06:39 jessup /bsd: iwm0: - 24:de:c6:1e:ca:12 132! +8 54M ess privacy! no "Camp2019-things"! Aug 25 12:06:39 jessup /bsd: iwm0: - 24:de:c6:1e:ca:13 132! +8 54M ess no no "Camp2019-insecure" Aug 25 12:06:39 jessup /bsd: iwm0: - 30:85:a9:6a:65:74 12 +13 54M ess privacy! no "NAONET"! Aug 25 12:06:39 jessup /bsd: iwm0: - 42:4a:30:1d:46:a8 1 +21 54M ess no no "Freifunk"! Aug 25 12:06:39 jessup /bsd: iwm0: - 42:4a:30:1d:46:a9 1 +20 54M ????! no no ""! Aug 25 12:06:39 jessup /bsd: iwm0: - 02:04:08:16:32:64 1 +19 54M ibss! no no "02:04:08:16:32:64"! Aug 25 12:06:39 jessup /bsd: iwm0: - 50:c7:bf:47:0e:b0 11 +8 54M ess privacy! no "ArtesMobiles_outside"! Aug 25 12:06:39 jessup /bsd: iwm0: - 78:8a:20:71:72:cc 6 +12 54M ess privacy! no ""! Aug 25 12:06:39 jessup /bsd: iwm0: - 7a:8a:20:71:72:cc 6 +22 54M ess privacy! no ""! Aug 25 12:06:39 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:32 36! +7 54M ess privacy! no "Camp2019-things"! Aug 25 12:06:39 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:33 36! +8 54M ess no no "Camp2019-insecure" Aug 25 12:06:39 jessup /bsd: iwm0: - b4:5d:50:9f:23:e0 1 +37 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:06:39 jessup /bsd: iwm0: - b4:5d:50:9f:23:e1 1 +37 54M ess privacy! no "Camp2019-things"! Aug 25 12:06:39 jessup /bsd: iwm0: + b4:5d:50:9f:23:e2 1 +38 54M ess no no "Camp2019-insecure" Aug 25 12:06:39 jessup /bsd: iwm0: - b4:5d:50:9f:23:f0 60! +27 54M ess privacy! no "Camp2019"! Aug 25 12:06:39 jessup /bsd: iwm0: - b4:5d:50:9f:23:f1 60! +26 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:06:39 jessup /bsd: iwm0: - b4:5d:50:9f:23:f2 60! +27 54M ess privacy! no "Camp2019-things"! Aug 25 12:06:39 jessup /bsd: iwm0: - b4:5d:50:9f:23:f3 60! +30 54M ess no no "Camp2019-insecure" Aug 25 12:06:39 jessup /bsd: iwm0: - e4:95:6e:47:77:58 1 +17 54M ess privacy! no "/dev/lol/mobil"! Aug 25 12:06:39 jessup /bsd: iwm0: - e6:95:6e:44:1a:a0 6 +4 54M ess privacy! no "Kathrin"! Aug 25 12:06:39 jessup /bsd: iwm0: SCAN -> AUTH Aug 25 12:06:39 jessup /bsd: iwm0: sending auth to b4:5d:50:9f:23:e2 on channel 1 mode 11g Aug 25 12:06:44 jessup /bsd: iwm0: AUTH -> SCAN Aug 25 12:06:46 jessup /bsd: iwm0: end active scan Aug 25 12:06:46 jessup /bsd: iwm0: AP 24:de:c6:1e:ca:13 "Camp2019-insecure" score 32 Aug 25 12:06:46 jessup /bsd: iwm0: AP ac:a3:1e:dd:bd:33 "Camp2019-insecure" score 32 Aug 25 12:06:46 jessup /bsd: iwm0: AP b4:5d:50:9f:23:f3 "Camp2019-insecure" score 32 Aug 25 12:06:46 jessup /bsd: iwm0: - 04:bd:88:b5:4f:40 5 +13 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:06:46 jessup /bsd: iwm0: - 18:e8:29:c1:e5:02 11 +18 54M ess privacy! no ""! Aug 25 12:06:46 jessup /bsd: iwm0: - 1a:e8:29:c1:e5:02 11 +22 54M ess privacy! no ""! Aug 25 12:06:46 jessup /bsd: iwm0: + 24:de:c6:1e:ca:02 5 +17 54M ess no no "Camp2019-insecure" Aug 25 12:06:46 jessup /bsd: iwm0: - 24:de:c6:1e:ca:10 132! +9 54M ess privacy! no "Camp2019"! Aug 25 12:06:46 jessup /bsd: iwm0: - 24:de:c6:1e:ca:11 132! +9 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:06:46 jessup /bsd: iwm0: - 24:de:c6:1e:ca:12 132! +8 54M ess privacy! no "Camp2019-things"! Aug 25 12:06:46 jessup /bsd: iwm0: - 24:de:c6:1e:ca:13 132! +8 54M ess no no "Camp2019-insecure" Aug 25 12:06:46 jessup /bsd: iwm0: - 30:85:a9:6a:65:74 12 +13 54M ess privacy! no "NAONET"! Aug 25 12:06:46 jessup /bsd: iwm0: - 42:4a:30:1d:46:a8 1 +18 54M ess no no "Freifunk"! Aug 25 12:06:46 jessup /bsd: iwm0: - 42:4a:30:1d:46:a9 1 +21 54M ????! no no ""! Aug 25 12:06:46 jessup /bsd: iwm0: - 02:04:08:16:32:64 1 +19 54M ibss! no no "02:04:08:16:32:64"! Aug 25 12:06:46 jessup /bsd: iwm0: - 50:c7:bf:47:0e:b0 11 +8 54M ess privacy! no "ArtesMobiles_outside"! Aug 25 12:06:46 jessup /bsd: iwm0: - 78:8a:20:71:72:cc 6 +12 54M ess privacy! no ""! Aug 25 12:06:46 jessup /bsd: iwm0: - 7a:8a:20:71:72:cc 6 +20 54M ess privacy! no ""! Aug 25 12:06:46 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:32 36! +7 54M ess privacy! no "Camp2019-things"! Aug 25 12:06:46 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:33 36! +8 54M ess no no "Camp2019-insecure" Aug 25 12:06:46 jessup /bsd: iwm0: - b4:5d:50:9f:23:e0 1 +37 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:06:46 jessup /bsd: iwm0: - b4:5d:50:9f:23:e1 1 +37 54M ess privacy! no "Camp2019-things"! Aug 25 12:06:46 jessup /bsd: iwm0: + b4:5d:50:9f:23:e2 1 +37 54M ess no no "Camp2019-insecure" Aug 25 12:06:46 jessup /bsd: iwm0: - b4:5d:50:9f:23:f0 60! +27 54M ess privacy! no "Camp2019"! Aug 25 12:06:46 jessup /bsd: iwm0: - b4:5d:50:9f:23:f1 60! +26 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:06:46 jessup /bsd: iwm0: - b4:5d:50:9f:23:f2 60! +27 54M ess privacy! no "Camp2019-things"! Aug 25 12:06:46 jessup /bsd: iwm0: - b4:5d:50:9f:23:f3 60! +30 54M ess no no "Camp2019-insecure" Aug 25 12:06:46 jessup /bsd: iwm0: - e4:95:6e:47:77:58 1 +17 54M ess privacy! no "/dev/lol/mobil"! Aug 25 12:06:46 jessup /bsd: iwm0: - e6:95:6e:44:1a:a0 6 +4 54M ess privacy! no "Kathrin"! Aug 25 12:06:46 jessup /bsd: iwm0: SCAN -> AUTH Aug 25 12:06:46 jessup /bsd: iwm0: sending auth to b4:5d:50:9f:23:e2 on channel 1 mode 11g Aug 25 12:06:51 jessup /bsd: iwm0: AUTH -> SCAN Aug 25 12:06:53 jessup /bsd: iwm0: end active scan Aug 25 12:06:53 jessup /bsd: iwm0: AP 24:de:c6:1e:ca:13 "Camp2019-insecure" score 32 Aug 25 12:06:53 jessup /bsd: iwm0: AP ac:a3:1e:dd:bd:33 "Camp2019-insecure" score 32 Aug 25 12:06:53 jessup /bsd: iwm0: AP b4:5d:50:9f:23:f3 "Camp2019-insecure" score 32 Aug 25 12:06:53 jessup /bsd: iwm0: - 04:bd:88:b5:4f:40 5 +13 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:06:53 jessup /bsd: iwm0: - 18:e8:29:c1:e5:02 11 +18 54M ess privacy! no ""! Aug 25 12:06:53 jessup /bsd: iwm0: - 1a:e8:29:c1:e5:02 11 +22 54M ess privacy! no ""! Aug 25 12:06:53 jessup /bsd: iwm0: + 24:de:c6:1e:ca:02 5 +17 54M ess no no "Camp2019-insecure" Aug 25 12:06:53 jessup /bsd: iwm0: - 24:de:c6:1e:ca:10 132! +9 54M ess privacy! no "Camp2019"! Aug 25 12:06:53 jessup /bsd: iwm0: - 24:de:c6:1e:ca:11 132! +9 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:06:53 jessup /bsd: iwm0: - 24:de:c6:1e:ca:12 132! +8 54M ess privacy! no "Camp2019-things"! Aug 25 12:06:53 jessup /bsd: iwm0: - 24:de:c6:1e:ca:13 132! +8 54M ess no no "Camp2019-insecure" Aug 25 12:06:53 jessup /bsd: iwm0: - 30:85:a9:6a:65:74 12 +13 54M ess privacy! no "NAONET"! Aug 25 12:06:53 jessup /bsd: iwm0: - 42:4a:30:1d:46:a8 1 +20 54M ess no no "Freifunk"! Aug 25 12:06:53 jessup /bsd: iwm0: - 42:4a:30:1d:46:a9 1 +21 54M ????! no no ""! Aug 25 12:06:53 jessup /bsd: iwm0: - 02:04:08:16:32:64 1 +19 54M ibss! no no "02:04:08:16:32:64"! Aug 25 12:06:53 jessup /bsd: iwm0: - 50:c7:bf:47:0e:b0 11 +8 54M ess privacy! no "ArtesMobiles_outside"! Aug 25 12:06:53 jessup /bsd: iwm0: - 78:8a:20:71:72:cc 6 +12 54M ess privacy! no ""! Aug 25 12:06:53 jessup /bsd: iwm0: - 7a:8a:20:71:72:cc 6 +20 54M ess privacy! no ""! Aug 25 12:06:53 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:32 36! +7 54M ess privacy! no "Camp2019-things"! Aug 25 12:06:53 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:33 36! +8 54M ess no no "Camp2019-insecure" Aug 25 12:06:53 jessup /bsd: iwm0: - b4:5d:50:9f:23:e0 1 +37 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:06:53 jessup /bsd: iwm0: - b4:5d:50:9f:23:e1 1 +37 54M ess privacy! no "Camp2019-things"! Aug 25 12:06:53 jessup /bsd: iwm0: + b4:5d:50:9f:23:e2 1 +37 54M ess no no "Camp2019-insecure" Aug 25 12:06:53 jessup /bsd: iwm0: - b4:5d:50:9f:23:f0 60! +27 54M ess privacy! no "Camp2019"! Aug 25 12:06:53 jessup /bsd: iwm0: - b4:5d:50:9f:23:f1 60! +26 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:06:53 jessup /bsd: iwm0: - b4:5d:50:9f:23:f2 60! +27 54M ess privacy! no "Camp2019-things"! Aug 25 12:06:53 jessup /bsd: iwm0: - b4:5d:50:9f:23:f3 60! +30 54M ess no no "Camp2019-insecure" Aug 25 12:06:53 jessup /bsd: iwm0: - e4:95:6e:47:77:58 1 +17 54M ess privacy! no "/dev/lol/mobil"! Aug 25 12:06:53 jessup /bsd: iwm0: - e6:95:6e:44:1a:a0 6 +4 54M ess privacy! no "Kathrin"! Aug 25 12:06:53 jessup /bsd: iwm0: SCAN -> AUTH Aug 25 12:06:53 jessup /bsd: iwm0: sending auth to b4:5d:50:9f:23:e2 on channel 1 mode 11g Aug 25 12:06:53 jessup /bsd: iwm0: AUTH -> ASSOC Aug 25 12:06:53 jessup /bsd: iwm0: sending assoc_req to b4:5d:50:9f:23:e2 on channel 1 mode 11g Aug 25 12:06:58 jessup /bsd: iwm0: ASSOC -> SCAN Aug 25 12:07:00 jessup /bsd: iwm0: end active scan Aug 25 12:07:00 jessup /bsd: iwm0: AP 24:de:c6:1e:ca:13 "Camp2019-insecure" score 32 Aug 25 12:07:00 jessup /bsd: iwm0: AP ac:a3:1e:dd:bd:33 "Camp2019-insecure" score 32 Aug 25 12:07:00 jessup /bsd: iwm0: AP b4:5d:50:9f:23:f3 "Camp2019-insecure" score 32 Aug 25 12:07:00 jessup /bsd: iwm0: - 04:bd:88:b5:4f:40 5 +13 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:07:00 jessup /bsd: iwm0: - 18:e8:29:c1:e5:02 11 +18 54M ess privacy! no ""! Aug 25 12:07:00 jessup /bsd: iwm0: - 1a:e8:29:c1:e5:02 11 +25 54M ess privacy! no ""! Aug 25 12:07:00 jessup /bsd: iwm0: + 24:de:c6:1e:ca:02 5 +15 54M ess no no "Camp2019-insecure" Aug 25 12:07:00 jessup /bsd: iwm0: - 24:de:c6:1e:ca:10 132! +9 54M ess privacy! no "Camp2019"! Aug 25 12:07:00 jessup /bsd: iwm0: - 24:de:c6:1e:ca:11 132! +9 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:07:00 jessup /bsd: iwm0: - 24:de:c6:1e:ca:12 132! +8 54M ess privacy! no "Camp2019-things"! Aug 25 12:07:00 jessup /bsd: iwm0: - 24:de:c6:1e:ca:13 132! +8 54M ess no no "Camp2019-insecure" Aug 25 12:07:00 jessup /bsd: iwm0: - 30:85:a9:6a:65:74 12 +13 54M ess privacy! no "NAONET"! Aug 25 12:07:00 jessup /bsd: iwm0: - 42:4a:30:1d:46:a8 1 +19 54M ess no no "Freifunk"! Aug 25 12:07:00 jessup /bsd: iwm0: - 42:4a:30:1d:46:a9 1 +21 54M ????! no no ""! Aug 25 12:07:00 jessup /bsd: iwm0: - 02:04:08:16:32:64 1 +15 54M ibss! no no "02:04:08:16:32:64"! Aug 25 12:07:00 jessup /bsd: iwm0: - 50:c7:bf:47:0e:b0 11 +8 54M ess privacy! no "ArtesMobiles_outside"! Aug 25 12:07:00 jessup /bsd: iwm0: - 78:8a:20:71:72:cc 6 +6 54M ess privacy! no ""! Aug 25 12:07:00 jessup /bsd: iwm0: - 7a:8a:20:71:72:cc 6 +20 54M ess privacy! no ""! Aug 25 12:07:00 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:32 36! +7 54M ess privacy! no "Camp2019-things"! Aug 25 12:07:00 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:33 36! +8 54M ess no no "Camp2019-insecure" Aug 25 12:07:00 jessup /bsd: iwm0: - b4:5d:50:9f:23:e0 1 +37 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:07:00 jessup /bsd: iwm0: - b4:5d:50:9f:23:e1 1 +37 54M ess privacy! no "Camp2019-things"! Aug 25 12:07:00 jessup /bsd: iwm0: + b4:5d:50:9f:23:e2 1 +37 54M ess no no "Camp2019-insecure" Aug 25 12:07:00 jessup /bsd: iwm0: - b4:5d:50:9f:23:f0 60! +27 54M ess privacy! no "Camp2019"! Aug 25 12:07:00 jessup /bsd: iwm0: - b4:5d:50:9f:23:f1 60! +26 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:07:00 jessup /bsd: iwm0: - b4:5d:50:9f:23:f2 60! +27 54M ess privacy! no "Camp2019-things"! Aug 25 12:07:00 jessup /bsd: iwm0: - b4:5d:50:9f:23:f3 60! +30 54M ess no no "Camp2019-insecure" Aug 25 12:07:00 jessup /bsd: iwm0: - e4:95:6e:47:77:58 1 +17 54M ess privacy! no "/dev/lol/mobil"! Aug 25 12:07:00 jessup /bsd: iwm0: - e6:95:6e:44:1a:a0 6 +4 54M ess privacy! no "Kathrin"! Aug 25 12:07:00 jessup /bsd: iwm0: SCAN -> AUTH Aug 25 12:07:00 jessup /bsd: iwm0: sending auth to b4:5d:50:9f:23:e2 on channel 1 mode 11g Aug 25 12:07:05 jessup /bsd: iwm0: AUTH -> SCAN Aug 25 12:07:07 jessup /bsd: iwm0: end active scan Aug 25 12:07:07 jessup /bsd: iwm0: AP 24:de:c6:1e:ca:13 "Camp2019-insecure" score 32 Aug 25 12:07:07 jessup /bsd: iwm0: AP ac:a3:1e:dd:bd:33 "Camp2019-insecure" score 32 Aug 25 12:07:07 jessup /bsd: iwm0: AP b4:5d:50:9f:23:f3 "Camp2019-insecure" score 32 Aug 25 12:07:07 jessup /bsd: iwm0: - 04:bd:88:b5:4f:40 5 +13 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:07:07 jessup /bsd: iwm0: - 18:e8:29:c1:e5:02 11 +17 54M ess privacy! no ""! Aug 25 12:07:07 jessup /bsd: iwm0: - 1a:e8:29:c1:e5:02 11 +25 54M ess privacy! no ""! Aug 25 12:07:07 jessup /bsd: iwm0: + 24:de:c6:1e:ca:02 5 +15 54M ess no no "Camp2019-insecure" Aug 25 12:07:07 jessup /bsd: iwm0: - 24:de:c6:1e:ca:10 132! +9 54M ess privacy! no "Camp2019"! Aug 25 12:07:07 jessup /bsd: iwm0: - 24:de:c6:1e:ca:11 132! +9 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:07:07 jessup /bsd: iwm0: - 24:de:c6:1e:ca:12 132! +8 54M ess privacy! no "Camp2019-things"! Aug 25 12:07:07 jessup /bsd: iwm0: - 24:de:c6:1e:ca:13 132! +8 54M ess no no "Camp2019-insecure" Aug 25 12:07:07 jessup /bsd: iwm0: - 30:85:a9:6a:65:74 12 +13 54M ess privacy! no "NAONET"! Aug 25 12:07:07 jessup /bsd: iwm0: - 42:4a:30:1d:46:a8 1 +18 54M ess no no "Freifunk"! Aug 25 12:07:07 jessup /bsd: iwm0: - 42:4a:30:1d:46:a9 1 +18 54M ????! no no ""! Aug 25 12:07:07 jessup /bsd: iwm0: - 02:04:08:16:32:64 1 +19 54M ibss! no no "02:04:08:16:32:64"! Aug 25 12:07:07 jessup /bsd: iwm0: - 50:c7:bf:47:0e:b0 11 +8 54M ess privacy! no "ArtesMobiles_outside"! Aug 25 12:07:07 jessup /bsd: iwm0: - 78:8a:20:71:72:cc 6 +6 54M ess privacy! no ""! Aug 25 12:07:07 jessup /bsd: iwm0: - 7a:8a:20:71:72:cc 6 +17 54M ess privacy! no ""! Aug 25 12:07:07 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:32 36! +7 54M ess privacy! no "Camp2019-things"! Aug 25 12:07:07 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:33 36! +8 54M ess no no "Camp2019-insecure" Aug 25 12:07:07 jessup /bsd: iwm0: - b4:5d:50:9f:23:e0 1 +38 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:07:07 jessup /bsd: iwm0: - b4:5d:50:9f:23:e1 1 +37 54M ess privacy! no "Camp2019-things"! Aug 25 12:07:07 jessup /bsd: iwm0: + b4:5d:50:9f:23:e2 1 +38 54M ess no no "Camp2019-insecure" Aug 25 12:07:07 jessup /bsd: iwm0: - b4:5d:50:9f:23:f0 60! +27 54M ess privacy! no "Camp2019"! Aug 25 12:07:07 jessup /bsd: iwm0: - b4:5d:50:9f:23:f1 60! +26 54M ess privacy! no "Camp2019-legacy"! Aug 25 12:07:07 jessup /bsd: iwm0: - b4:5d:50:9f:23:f2 60! +27 54M ess privacy! no "Camp2019-things"! Aug 25 12:07:07 jessup /bsd: iwm0: - b4:5d:50:9f:23:f3 60! +30 54M ess no no "Camp2019-insecure" Aug 25 12:07:07 jessup /bsd: iwm0: - e4:95:6e:47:77:58 1 +17 54M ess privacy! no "/dev/lol/mobil"! Aug 25 12:07:07 jessup /bsd: iwm0: - e6:95:6e:44:1a:a0 6 +4 54M ess privacy! no "Kathrin"! Aug 25 12:07:08 jessup /bsd: iwm0: could not add binding (error 35) Aug 25 12:07:08 jessup /bsd: iwm0: fatal firmware error Aug 25 12:07:09 jessup /bsd: iwm0: SCAN -> INIT Aug 25 12:07:09 jessup /bsd: iwm0: begin active scan Aug 25 12:07:09 jessup /bsd: iwm0: INIT -> SCAN Aug 25 12:07:12 jessup /bsd: iwm0: end active scan Aug 25 12:07:12 jessup /bsd: iwm0: AP 24:de:c6:1e:ca:13 "Camp2019-insecure" score 32 Aug 25 12:07:12 jessup /bsd: iwm0: AP ac:a3:1e:dd:bd:33 "Camp2019-insecure" score 32 Aug 25 12:07:12 jessup /bsd: iwm0: AP b4:5d:50:9f:b9:53 "Camp2019-insecure" score 32 Aug 25 12:07:12 jessup /bsd: iwm0: + 24:de:c6:1e:ca:02 5 +19 54M ess no no "Camp2019-insecure" Aug 25 12:07:12 jessup /bsd: iwm0: - 24:de:c6:1e:ca:10 132 +8 54M ess privacy! no "Camp2019"! Aug 25 12:07:12 jessup /bsd: iwm0: - 24:de:c6:1e:ca:12 132 +9 54M ess privacy! no "Camp2019-things"! Aug 25 12:07:12 jessup /bsd: iwm0: + 24:de:c6:1e:ca:13 132 +9 54M ess no no "Camp2019-insecure" Aug 25 12:07:12 jessup /bsd: iwm0: - 78:8a:20:71:72:cc 6 +19 54M ess privacy! no ""! Aug 25 12:07:12 jessup /bsd: iwm0: - 9c:8c:d8:1f:96:b0 149 +8 54M ess privacy! no "Camp2019"! Aug 25 12:07:12 jessup /bsd: iwm0: - ac:a3:1e:81:14:90 44 +7 54M ess privacy! no "Camp2019"! Aug 25 12:07:12 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:30 36 +6 54M ess privacy! no "Camp2019"! Aug 25 12:07:12 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:32 36 +6 54M ess privacy! no "Camp2019-things"! Aug 25 12:07:12 jessup /bsd: iwm0: + ac:a3:1e:dd:bd:33 36 +6 54M ess no no "Camp2019-insecure" Aug 25 12:07:12 jessup /bsd: iwm0: - b4:5d:50:9f:23:f0 60 +26 54M ess privacy! no "Camp2019"! Aug 25 12:07:12 jessup /bsd: iwm0: + b4:5d:50:9f:23:f3 60 +27 54M ess no no "Camp2019-insecure" Aug 25 12:07:12 jessup /bsd: iwm0: - b4:5d:50:9f:b9:50 116 +8 54M ess privacy! no "Camp2019"! Aug 25 12:07:12 jessup /bsd: iwm0: + b4:5d:50:9f:b9:53 116 +9 54M ess no no "Camp2019-insecure" Aug 25 12:07:12 jessup /bsd: iwm0: SCAN -> AUTH Aug 25 12:07:12 jessup /bsd: iwm0: sending auth to b4:5d:50:9f:23:f3 on channel 60 mode 11a Aug 25 12:07:12 jessup /bsd: iwm0: AUTH -> ASSOC Aug 25 12:07:12 jessup /bsd: iwm0: sending assoc_req to b4:5d:50:9f:23:f3 on channel 60 mode 11a Aug 25 12:07:12 jessup /bsd: iwm0: ASSOC -> RUN Aug 25 12:07:12 jessup /bsd: iwm0: associated with b4:5d:50:9f:23:f3 ssid "Camp2019-insecure" channel 60 start MCS 0 long preamble long slot time HT enabled Aug 25 12:07:12 jessup /bsd: iwm0: missed beacon threshold set to 7 beacons, beacon interval is 100 TU Aug 25 12:07:12 jessup /bsd: iwm0: sending action to b4:5d:50:9f:23:f3 on channel 60 mode 11n With fix (no more channels marked with '!'): Aug 25 14:40:32 jessup /bsd: iwm0: end background scan Aug 25 14:40:32 jessup /bsd: iwm0: - 04:bd:88:b5:4f:50 56 +10 54M ess privacy! no "Camp2019"! Aug 25 14:40:32 jessup /bsd: iwm0: - 04:bd:88:b5:4f:51 56 +7 54M ess privacy! no "Camp2019-legacy"! Aug 25 14:40:32 jessup /bsd: iwm0: - 04:bd:88:b5:4f:52 56 +8 54M ess privacy! no "Camp2019-things"! Aug 25 14:40:32 jessup /bsd: iwm0: + 04:bd:88:b5:4f:53 56 +9 54M ess no no "Camp2019-insecure" Aug 25 14:40:32 jessup /bsd: iwm0: - 18:e8:29:c1:e5:02 11 +21 54M ess privacy! no ""! Aug 25 14:40:32 jessup /bsd: iwm0: - 78:8a:20:71:72:cc 6 +24 54M ess privacy! no ""! Aug 25 14:40:32 jessup /bsd: iwm0: - 7a:8a:20:72:72:cc 36 +8 54M ess privacy! no ""! Aug 25 14:40:32 jessup /bsd: iwm0: - 8a:8a:20:72:72:cc 36 +7 54M ess privacy! no ""! Aug 25 14:40:32 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:30 36 +4 54M ess privacy! no "Camp2019"! Aug 25 14:40:32 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:32 36 +7 54M ess privacy! no "Camp2019-things"! Aug 25 14:40:32 jessup /bsd: iwm0: - b4:5d:50:9f:23:e1 1 +31 54M ess privacy! no "Camp2019-things"! Aug 25 14:40:32 jessup /bsd: iwm0: + b4:5d:50:9f:23:e2 1 +31 54M ess no no "Camp2019-insecure" Aug 25 14:40:32 jessup /bsd: iwm0: - b4:5d:50:9f:23:f0 60 +27 54M ess privacy! no "Camp2019"! Aug 25 14:40:32 jessup /bsd: iwm0: - b4:5d:50:9f:23:f1 60 +27 54M ess privacy! no "Camp2019-legacy"! Aug 25 14:40:32 jessup /bsd: iwm0: - b4:5d:50:9f:23:f2 60 +26 54M ess privacy! no "Camp2019-things"! Aug 25 14:40:32 jessup /bsd: iwm0: + b4:5d:50:9f:23:f3 60 +26 54M ess no no "Camp2019-insecure" Aug 25 14:40:32 jessup /bsd: iwm0: - b4:5d:50:9f:b9:51 116 +5 54M ess privacy! no "Camp2019-legacy"! Aug 25 14:40:32 jessup /bsd: iwm0: sending deauth to b4:5d:50:9f:23:f3 on channel 60 mode 11n Aug 25 14:40:32 jessup /bsd: iwm0: roaming from b4:5d:50:9f:23:f3 chan 60 to b4:5d:50:9f:23:e2 chan 1 Aug 25 14:40:32 jessup /bsd: iwm0: RUN -> AUTH Aug 25 14:40:32 jessup /bsd: iwm0: sending auth to b4:5d:50:9f:23:e2 on channel 1 mode 11g Aug 25 14:40:32 jessup /bsd: iwm0: AUTH -> ASSOC Aug 25 14:40:32 jessup /bsd: iwm0: sending assoc_req to b4:5d:50:9f:23:e2 on channel 1 mode 11g Aug 25 14:40:37 jessup /bsd: iwm0: ASSOC -> SCAN Aug 25 14:40:40 jessup /bsd: iwm0: end active scan Aug 25 14:40:40 jessup /bsd: iwm0: AP 20:a6:cd:96:4f:33 "Camp2019-insecure" score 32 Aug 25 14:40:40 jessup /bsd: iwm0: AP 24:de:c6:1e:ca:13 "Camp2019-insecure" score 32 Aug 25 14:40:40 jessup /bsd: iwm0: AP b4:5d:50:9f:23:f3 "Camp2019-insecure" score 32 Aug 25 14:40:40 jessup /bsd: iwm0: AP b4:5d:50:9f:b9:42 "Camp2019-insecure" score 32 Aug 25 14:40:40 jessup /bsd: iwm0: - 04:bd:88:b5:4f:50 56 +10 54M ess privacy! no "Camp2019"! Aug 25 14:40:40 jessup /bsd: iwm0: - 04:bd:88:b5:4f:51 56 +7 54M ess privacy! no "Camp2019-legacy"! Aug 25 14:40:40 jessup /bsd: iwm0: - 04:bd:88:b5:4f:52 56 +8 54M ess privacy! no "Camp2019-things"! Aug 25 14:40:40 jessup /bsd: iwm0: + 04:bd:88:b5:4f:53 56 +10 54M ess no no "Camp2019-insecure" Aug 25 14:40:40 jessup /bsd: iwm0: - 18:e8:29:c1:e5:02 11 +21 54M ess privacy! no ""! Aug 25 14:40:40 jessup /bsd: iwm0: + 20:a6:cd:96:4f:33 52 +4 54M ess no no "Camp2019-insecure" Aug 25 14:40:40 jessup /bsd: iwm0: + 24:de:c6:1e:ca:13 132 +9 54M ess no no "Camp2019-insecure" Aug 25 14:40:40 jessup /bsd: iwm0: - 78:8a:20:71:72:cc 6 +20 54M ess privacy! no ""! Aug 25 14:40:40 jessup /bsd: iwm0: - 7a:8a:20:72:72:cc 36 +8 54M ess privacy! no ""! Aug 25 14:40:40 jessup /bsd: iwm0: - 8a:8a:20:72:72:cc 36 +7 54M ess privacy! no ""! Aug 25 14:40:40 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:30 36 +11 54M ess privacy! no "Camp2019"! Aug 25 14:40:40 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:31 36 +11 54M ess privacy! no "Camp2019-legacy"! Aug 25 14:40:40 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:32 36 +12 54M ess privacy! no "Camp2019-things"! Aug 25 14:40:40 jessup /bsd: iwm0: + ac:a3:1e:dd:bd:33 36 +11 54M ess no no "Camp2019-insecure" Aug 25 14:40:40 jessup /bsd: iwm0: - b4:5d:50:9f:23:e0 1 +32 54M ess privacy! no "Camp2019-legacy"! Aug 25 14:40:40 jessup /bsd: iwm0: - b4:5d:50:9f:23:e1 1 +32 54M ess privacy! no "Camp2019-things"! Aug 25 14:40:40 jessup /bsd: iwm0: + b4:5d:50:9f:23:e2 1 +32 54M ess no no "Camp2019-insecure" Aug 25 14:40:40 jessup /bsd: iwm0: - b4:5d:50:9f:23:f0 60 +27 54M ess privacy! no "Camp2019"! Aug 25 14:40:40 jessup /bsd: iwm0: - b4:5d:50:9f:23:f1 60 +27 54M ess privacy! no "Camp2019-legacy"! Aug 25 14:40:40 jessup /bsd: iwm0: - b4:5d:50:9f:23:f2 60 +26 54M ess privacy! no "Camp2019-things"! Aug 25 14:40:40 jessup /bsd: iwm0: + b4:5d:50:9f:23:f3 60 +21 54M ess no no "Camp2019-insecure" Aug 25 14:40:40 jessup /bsd: iwm0: - b4:5d:50:9f:b9:40 1 +14 54M ess privacy! no "Camp2019-legacy"! Aug 25 14:40:40 jessup /bsd: iwm0: - b4:5d:50:9f:b9:41 1 +15 54M ess privacy! no "Camp2019-things"! Aug 25 14:40:40 jessup /bsd: iwm0: + b4:5d:50:9f:b9:42 1 +14 54M ess no no "Camp2019-insecure" Aug 25 14:40:40 jessup /bsd: iwm0: - b4:5d:50:9f:b9:51 116 +5 54M ess privacy! no "Camp2019-legacy"! Aug 25 14:40:40 jessup /bsd: iwm0: SCAN -> AUTH Aug 25 14:40:40 jessup /bsd: iwm0: sending auth to b4:5d:50:9f:23:e2 on channel 1 mode 11g Aug 25 14:40:44 jessup /bsd: iwm0: AUTH -> SCAN Aug 25 14:40:47 jessup /bsd: iwm0: end active scan Aug 25 14:40:47 jessup /bsd: iwm0: AP 20:a6:cd:96:4f:33 "Camp2019-insecure" score 32 Aug 25 14:40:47 jessup /bsd: iwm0: AP 24:de:c6:1e:ca:13 "Camp2019-insecure" score 32 Aug 25 14:40:47 jessup /bsd: iwm0: AP b4:5d:50:9f:23:f3 "Camp2019-insecure" score 32 Aug 25 14:40:47 jessup /bsd: iwm0: AP b4:5d:50:9f:b9:42 "Camp2019-insecure" score 32 Aug 25 14:40:47 jessup /bsd: iwm0: - 04:bd:88:b5:4f:50 56 +10 54M ess privacy! no "Camp2019"! Aug 25 14:40:47 jessup /bsd: iwm0: - 04:bd:88:b5:4f:51 56 +7 54M ess privacy! no "Camp2019-legacy"! Aug 25 14:40:47 jessup /bsd: iwm0: - 04:bd:88:b5:4f:52 56 +8 54M ess privacy! no "Camp2019-things"! Aug 25 14:40:47 jessup /bsd: iwm0: + 04:bd:88:b5:4f:53 56 +10 54M ess no no "Camp2019-insecure" Aug 25 14:40:47 jessup /bsd: iwm0: - 18:e8:29:c1:e5:02 11 +21 54M ess privacy! no ""! Aug 25 14:40:47 jessup /bsd: iwm0: + 20:a6:cd:96:4f:33 52 +4 54M ess no no "Camp2019-insecure" Aug 25 14:40:47 jessup /bsd: iwm0: + 24:de:c6:1e:ca:13 132 +9 54M ess no no "Camp2019-insecure" Aug 25 14:40:47 jessup /bsd: iwm0: - 42:4a:30:1d:46:a8 1 +21 54M ess no no "Freifunk"! Aug 25 14:40:47 jessup /bsd: iwm0: - 42:4a:30:1d:46:a9 1 +20 54M ????! no no ""! Aug 25 14:40:47 jessup /bsd: iwm0: - 02:04:08:16:32:64 1 +21 54M ibss! no no "02:04:08:16:32:64"! Aug 25 14:40:47 jessup /bsd: iwm0: - 78:8a:20:71:72:cc 6 +21 54M ess privacy! no ""! Aug 25 14:40:47 jessup /bsd: iwm0: - 7a:8a:20:72:72:cc 36 +8 54M ess privacy! no ""! Aug 25 14:40:47 jessup /bsd: iwm0: - 8a:8a:20:72:72:cc 36 +7 54M ess privacy! no ""! Aug 25 14:40:47 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:30 36 +11 54M ess privacy! no "Camp2019"! Aug 25 14:40:47 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:31 36 +11 54M ess privacy! no "Camp2019-legacy"! Aug 25 14:40:47 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:32 36 +12 54M ess privacy! no "Camp2019-things"! Aug 25 14:40:47 jessup /bsd: iwm0: + ac:a3:1e:dd:bd:33 36 +11 54M ess no no "Camp2019-insecure" Aug 25 14:40:47 jessup /bsd: iwm0: - b4:5d:50:9f:23:e0 1 +32 54M ess privacy! no "Camp2019-legacy"! Aug 25 14:40:47 jessup /bsd: iwm0: - b4:5d:50:9f:23:e1 1 +32 54M ess privacy! no "Camp2019-things"! Aug 25 14:40:47 jessup /bsd: iwm0: + b4:5d:50:9f:23:e2 1 +32 54M ess no no "Camp2019-insecure" Aug 25 14:40:47 jessup /bsd: iwm0: - b4:5d:50:9f:23:f0 60 +27 54M ess privacy! no "Camp2019"! Aug 25 14:40:47 jessup /bsd: iwm0: - b4:5d:50:9f:23:f1 60 +27 54M ess privacy! no "Camp2019-legacy"! Aug 25 14:40:47 jessup /bsd: iwm0: - b4:5d:50:9f:23:f2 60 +26 54M ess privacy! no "Camp2019-things"! Aug 25 14:40:47 jessup /bsd: iwm0: + b4:5d:50:9f:23:f3 60 +21 54M ess no no "Camp2019-insecure" Aug 25 14:40:47 jessup /bsd: iwm0: - b4:5d:50:9f:b9:40 1 +13 54M ess privacy! no "Camp2019-legacy"! Aug 25 14:40:47 jessup /bsd: iwm0: - b4:5d:50:9f:b9:41 1 +15 54M ess privacy! no "Camp2019-things"! Aug 25 14:40:47 jessup /bsd: iwm0: + b4:5d:50:9f:b9:42 1 +13 54M ess no no "Camp2019-insecure" Aug 25 14:40:47 jessup /bsd: iwm0: - b4:5d:50:9f:b9:51 116 +5 54M ess privacy! no "Camp2019-legacy"! Aug 25 14:40:47 jessup /bsd: iwm0: SCAN -> AUTH Aug 25 14:40:47 jessup /bsd: iwm0: sending auth to b4:5d:50:9f:23:e2 on channel 1 mode 11g Aug 25 14:40:51 jessup /bsd: iwm0: AUTH -> SCAN Aug 25 14:40:54 jessup /bsd: iwm0: end active scan Aug 25 14:40:54 jessup /bsd: iwm0: AP 20:a6:cd:96:4f:33 "Camp2019-insecure" score 32 Aug 25 14:40:54 jessup /bsd: iwm0: AP 24:de:c6:1e:ca:13 "Camp2019-insecure" score 32 Aug 25 14:40:54 jessup /bsd: iwm0: AP b4:5d:50:9f:23:f3 "Camp2019-insecure" score 32 Aug 25 14:40:54 jessup /bsd: iwm0: AP b4:5d:50:9f:b9:42 "Camp2019-insecure" score 32 Aug 25 14:40:54 jessup /bsd: iwm0: - 04:bd:88:b5:4f:50 56 +10 54M ess privacy! no "Camp2019"! Aug 25 14:40:54 jessup /bsd: iwm0: - 04:bd:88:b5:4f:51 56 +7 54M ess privacy! no "Camp2019-legacy"! Aug 25 14:40:54 jessup /bsd: iwm0: - 04:bd:88:b5:4f:52 56 +8 54M ess privacy! no "Camp2019-things"! Aug 25 14:40:54 jessup /bsd: iwm0: + 04:bd:88:b5:4f:53 56 +10 54M ess no no "Camp2019-insecure" Aug 25 14:40:54 jessup /bsd: iwm0: - 18:e8:29:c1:e5:02 11 +21 54M ess privacy! no ""! Aug 25 14:40:54 jessup /bsd: iwm0: + 20:a6:cd:96:4f:33 52 +4 54M ess no no "Camp2019-insecure" Aug 25 14:40:54 jessup /bsd: iwm0: + 24:de:c6:1e:ca:13 132 +8 54M ess no no "Camp2019-insecure" Aug 25 14:40:54 jessup /bsd: iwm0: - 42:4a:30:1d:46:a8 1 +21 54M ess no no "Freifunk"! Aug 25 14:40:54 jessup /bsd: iwm0: - 42:4a:30:1d:46:a9 1 +21 54M ????! no no ""! Aug 25 14:40:54 jessup /bsd: iwm0: - 02:04:08:16:32:64 1 +22 54M ibss! no no "02:04:08:16:32:64"! Aug 25 14:40:54 jessup /bsd: iwm0: - 78:8a:20:71:72:cc 6 +21 54M ess privacy! no ""! Aug 25 14:40:54 jessup /bsd: iwm0: - 7a:8a:20:71:72:cc 6 +21 54M ess privacy! no ""! Aug 25 14:40:54 jessup /bsd: iwm0: - 7a:8a:20:72:72:cc 36 +15 54M ess privacy! no ""! Aug 25 14:40:54 jessup /bsd: iwm0: - 8a:8a:20:72:72:cc 36 +7 54M ess privacy! no ""! Aug 25 14:40:54 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:30 36 +11 54M ess privacy! no "Camp2019"! Aug 25 14:40:54 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:31 36 +11 54M ess privacy! no "Camp2019-legacy"! Aug 25 14:40:54 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:32 36 +12 54M ess privacy! no "Camp2019-things"! Aug 25 14:40:54 jessup /bsd: iwm0: + ac:a3:1e:dd:bd:33 36 +13 54M ess no no "Camp2019-insecure" Aug 25 14:40:54 jessup /bsd: iwm0: - b4:5d:50:9f:23:e0 1 +25 54M ess privacy! no "Camp2019-legacy"! Aug 25 14:40:54 jessup /bsd: iwm0: - b4:5d:50:9f:23:e1 1 +25 54M ess privacy! no "Camp2019-things"! Aug 25 14:40:54 jessup /bsd: iwm0: + b4:5d:50:9f:23:e2 1 +25 54M ess no no "Camp2019-insecure" Aug 25 14:40:54 jessup /bsd: iwm0: - b4:5d:50:9f:23:f0 60 +27 54M ess privacy! no "Camp2019"! Aug 25 14:40:54 jessup /bsd: iwm0: - b4:5d:50:9f:23:f1 60 +27 54M ess privacy! no "Camp2019-legacy"! Aug 25 14:40:54 jessup /bsd: iwm0: - b4:5d:50:9f:23:f2 60 +26 54M ess privacy! no "Camp2019-things"! Aug 25 14:40:54 jessup /bsd: iwm0: + b4:5d:50:9f:23:f3 60 +22 54M ess no no "Camp2019-insecure" Aug 25 14:40:54 jessup /bsd: iwm0: - b4:5d:50:9f:b9:40 1 +13 54M ess privacy! no "Camp2019-legacy"! Aug 25 14:40:54 jessup /bsd: iwm0: - b4:5d:50:9f:b9:41 1 +14 54M ess privacy! no "Camp2019-things"! Aug 25 14:40:54 jessup /bsd: iwm0: + b4:5d:50:9f:b9:42 1 +13 54M ess no no "Camp2019-insecure" Aug 25 14:40:54 jessup /bsd: iwm0: - b4:5d:50:9f:b9:51 116 +5 54M ess privacy! no "Camp2019-legacy"! Aug 25 14:40:54 jessup /bsd: iwm0: SCAN -> AUTH Aug 25 14:40:54 jessup /bsd: iwm0: sending auth to b4:5d:50:9f:23:e2 on channel 1 mode 11g Aug 25 14:40:58 jessup /bsd: iwm0: AUTH -> SCAN Aug 25 14:41:01 jessup /bsd: iwm0: end active scan Aug 25 14:41:01 jessup /bsd: iwm0: AP 20:a6:cd:96:4f:33 "Camp2019-insecure" score 32 Aug 25 14:41:01 jessup /bsd: iwm0: AP 24:de:c6:1e:ca:13 "Camp2019-insecure" score 32 Aug 25 14:41:01 jessup /bsd: iwm0: AP b4:5d:50:9f:b9:42 "Camp2019-insecure" score 32 Aug 25 14:41:01 jessup /bsd: iwm0: - 04:bd:88:b5:4f:50 56 +10 54M ess privacy! no "Camp2019"! Aug 25 14:41:01 jessup /bsd: iwm0: - 04:bd:88:b5:4f:51 56 +7 54M ess privacy! no "Camp2019-legacy"! Aug 25 14:41:01 jessup /bsd: iwm0: - 04:bd:88:b5:4f:52 56 +8 54M ess privacy! no "Camp2019-things"! Aug 25 14:41:01 jessup /bsd: iwm0: + 04:bd:88:b5:4f:53 56 +8 54M ess no no "Camp2019-insecure" Aug 25 14:41:01 jessup /bsd: iwm0: - 18:e8:29:c1:e5:02 11 +21 54M ess privacy! no ""! Aug 25 14:41:01 jessup /bsd: iwm0: + 20:a6:cd:96:4f:33 52 +4 54M ess no no "Camp2019-insecure" Aug 25 14:41:01 jessup /bsd: iwm0: + 24:de:c6:1e:ca:13 132 +8 54M ess no no "Camp2019-insecure" Aug 25 14:41:01 jessup /bsd: iwm0: - 2a:e8:29:c2:e5:02 36 +4 54M ess privacy! no ""! Aug 25 14:41:01 jessup /bsd: iwm0: - 42:4a:30:1d:46:a8 1 +20 54M ess no no "Freifunk"! Aug 25 14:41:01 jessup /bsd: iwm0: - 42:4a:30:1d:46:a9 1 +19 54M ????! no no ""! Aug 25 14:41:01 jessup /bsd: iwm0: - 02:04:08:16:32:64 1 +19 54M ibss! no no "02:04:08:16:32:64"! Aug 25 14:41:01 jessup /bsd: iwm0: - 78:8a:20:71:72:cc 6 +25 54M ess privacy! no ""! Aug 25 14:41:01 jessup /bsd: iwm0: - 7a:8a:20:71:72:cc 6 +21 54M ess privacy! no ""! Aug 25 14:41:01 jessup /bsd: iwm0: - 7a:8a:20:72:72:cc 36 +15 54M ess privacy! no ""! Aug 25 14:41:01 jessup /bsd: iwm0: - 8a:8a:20:72:72:cc 36 +7 54M ess privacy! no ""! Aug 25 14:41:01 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:30 36 +11 54M ess privacy! no "Camp2019"! Aug 25 14:41:01 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:31 36 +11 54M ess privacy! no "Camp2019-legacy"! Aug 25 14:41:01 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:32 36 +12 54M ess privacy! no "Camp2019-things"! Aug 25 14:41:01 jessup /bsd: iwm0: + ac:a3:1e:dd:bd:33 36 +13 54M ess no no "Camp2019-insecure" Aug 25 14:41:01 jessup /bsd: iwm0: - b4:5d:50:9f:23:e0 1 +26 54M ess privacy! no "Camp2019-legacy"! Aug 25 14:41:01 jessup /bsd: iwm0: - b4:5d:50:9f:23:e1 1 +25 54M ess privacy! no "Camp2019-things"! Aug 25 14:41:01 jessup /bsd: iwm0: + b4:5d:50:9f:23:e2 1 +25 54M ess no no "Camp2019-insecure" Aug 25 14:41:01 jessup /bsd: iwm0: - b4:5d:50:9f:23:f0 60 +27 54M ess privacy! no "Camp2019"! Aug 25 14:41:01 jessup /bsd: iwm0: - b4:5d:50:9f:23:f1 60 +27 54M ess privacy! no "Camp2019-legacy"! Aug 25 14:41:01 jessup /bsd: iwm0: - b4:5d:50:9f:23:f2 60 +26 54M ess privacy! no "Camp2019-things"! Aug 25 14:41:01 jessup /bsd: iwm0: + b4:5d:50:9f:23:f3 60 +25 54M ess no no "Camp2019-insecure" Aug 25 14:41:01 jessup /bsd: iwm0: - b4:5d:50:9f:b9:40 1 +12 54M ess privacy! no "Camp2019-legacy"! Aug 25 14:41:01 jessup /bsd: iwm0: - b4:5d:50:9f:b9:41 1 +14 54M ess privacy! no "Camp2019-things"! Aug 25 14:41:01 jessup /bsd: iwm0: + b4:5d:50:9f:b9:42 1 +13 54M ess no no "Camp2019-insecure" Aug 25 14:41:01 jessup /bsd: iwm0: - b4:5d:50:9f:b9:51 116 +5 54M ess privacy! no "Camp2019-legacy"! Aug 25 14:41:01 jessup /bsd: iwm0: SCAN -> AUTH Aug 25 14:41:01 jessup /bsd: iwm0: sending auth to b4:5d:50:9f:23:f3 on channel 60 mode 11a Aug 25 14:41:01 jessup /bsd: iwm0: AUTH -> ASSOC Aug 25 14:41:01 jessup /bsd: iwm0: sending assoc_req to b4:5d:50:9f:23:f3 on channel 60 mode 11a Aug 25 14:41:01 jessup /bsd: iwm0: ASSOC -> RUN Aug 25 14:41:01 jessup /bsd: iwm0: associated with b4:5d:50:9f:23:f3 ssid "Camp2019-insecure" channel 60 start MCS 0 long preamble long slot time HT enabled Aug 25 14:41:01 jessup /bsd: iwm0: missed beacon threshold set to 7 beacons, beacon interval is 100 TU Aug 25 14:41:01 jessup /bsd: iwm0: sending action to b4:5d:50:9f:23:f3 on channel 60 mode 11n Aug 25 14:41:01 jessup /bsd: iwm0: sending action to b4:5d:50:9f:23:f3 on channel 60 mode 11n Aug 25 14:41:01 jessup /bsd: iwm0: begin background scan Aug 25 14:41:06 jessup /bsd: iwm0: sending action to b4:5d:50:9f:23:f3 on channel 60 mode 11n Aug 25 14:41:06 jessup /bsd: iwm0: sending action to b4:5d:50:9f:23:f3 on channel 60 mode 11n Aug 25 14:41:10 jessup /bsd: iwm0: end background scan Aug 25 14:41:10 jessup /bsd: iwm0: - 04:bd:88:b5:4f:50 56 +9 54M ess privacy! no "Camp2019"! Aug 25 14:41:10 jessup /bsd: iwm0: - 04:bd:88:b5:4f:51 56 +9 54M ess privacy! no "Camp2019-legacy"! Aug 25 14:41:10 jessup /bsd: iwm0: - 04:bd:88:b5:4f:52 56 +9 54M ess privacy! no "Camp2019-things"! Aug 25 14:41:10 jessup /bsd: iwm0: + 04:bd:88:b5:4f:53 56 +10 54M ess no no "Camp2019-insecure" Aug 25 14:41:10 jessup /bsd: iwm0: - 18:e8:29:c1:e5:02 11 +20 54M ess privacy! no ""! Aug 25 14:41:10 jessup /bsd: iwm0: - 20:a6:cd:96:4f:30 52 +6 54M ess privacy! no "Camp2019"! Aug 25 14:41:10 jessup /bsd: iwm0: + 20:a6:cd:96:4f:33 52 +5 54M ess no no "Camp2019-insecure" Aug 25 14:41:10 jessup /bsd: iwm0: - 24:de:c6:1e:ca:10 132 +9 54M ess privacy! no "Camp2019"! Aug 25 14:41:10 jessup /bsd: iwm0: - 24:de:c6:1e:ca:12 132 +7 54M ess privacy! no "Camp2019-things"! Aug 25 14:41:10 jessup /bsd: iwm0: + 24:de:c6:1e:ca:13 132 +8 54M ess no no "Camp2019-insecure" Aug 25 14:41:10 jessup /bsd: iwm0: - 30:85:a9:6a:65:74 12 +12 54M ess privacy! no "NAONET"! Aug 25 14:41:10 jessup /bsd: iwm0: - 42:4a:30:1d:46:a8 1 +19 54M ess no no "Freifunk"! Aug 25 14:41:10 jessup /bsd: iwm0: - 78:8a:20:71:72:cc 6 +25 54M ess privacy! no ""! Aug 25 14:41:10 jessup /bsd: iwm0: - 7a:8a:20:71:72:cc 6 +23 54M ess privacy! no ""! Aug 25 14:41:10 jessup /bsd: iwm0: - 7a:8a:20:72:72:cc 36 +12 54M ess privacy! no ""! Aug 25 14:41:10 jessup /bsd: iwm0: - 8a:8a:20:72:72:cc 36 +15 54M ess privacy! no ""! Aug 25 14:41:10 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:30 36 +14 54M ess privacy! no "Camp2019"! Aug 25 14:41:10 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:31 36 +14 54M ess privacy! no "Camp2019-legacy"! Aug 25 14:41:10 jessup /bsd: iwm0: - ac:a3:1e:dd:bd:32 36 +14 54M ess privacy! no "Camp2019-things"! Aug 25 14:41:10 jessup /bsd: iwm0: + ac:a3:1e:dd:bd:33 36 +14 54M ess no no "Camp2019-insecure" Aug 25 14:41:10 jessup /bsd: iwm0: + b4:5d:50:9f:23:e2 1 +25 54M ess no no "Camp2019-insecure" Aug 25 14:41:10 jessup /bsd: iwm0: - b4:5d:50:9f:23:f0 60 +25 54M ess privacy! no "Camp2019"! Aug 25 14:41:10 jessup /bsd: iwm0: - b4:5d:50:9f:23:f1 60 +25 54M ess privacy! no "Camp2019-legacy"! Aug 25 14:41:10 jessup /bsd: iwm0: - b4:5d:50:9f:23:f2 60 +25 54M ess privacy! no "Camp2019-things"! Aug 25 14:41:10 jessup /bsd: iwm0: + b4:5d:50:9f:23:f3 60 +25 54M ess no no "Camp2019-insecure" Aug 25 14:41:12 jessup /bsd: iwm0: begin background scan