Bill Zimmerman

Results 135 comments of Bill Zimmerman

This is implemented for WireGuard with PostUp / PreDown rules as described [here](https://docs.raspap.com/wireguard/#kill-switch).

QRD: 1. Ran through an Insiders build by modifying `Dockerfile`, adding `--insiders --name --token` options 2. Built with `docker build -t raspap .` 3. Executed `docker run --name raspap -it...

@NL-TCH many thanks for the review, and yes—agreed. Related to this, our `pi-gen` fork [detects the firewall backend](https://github.com/RaspAP/pi-gen/blob/master/stage2/04-iptables/files/raspap-routing.sh) and adds either nftables or iptables rules. On Debian bookworm it defaults...

The selected country code is set with `iw reg set`: https://github.com/RaspAP/raspap-webgui/blob/7883514f40d1aba0d1398b738ab1099f528258e8/includes/hostapd.php#L595-L608

I misread your feature request. Yes, the country code could be assigned this way.

`raspi-config` returns the regulatory domain value that gets applied at boot time. you can find this in `/proc/cmdline`: ``` cfg80211.ieee80211_regdom=US ``` In my case, I set to "US" in the...

Escapes `&` using `s/&/\\&/g` to prevent duplication. Escapes `/ ` and `\` to prevent syntax errors. Uses `^$key=` in grep to prevent partial matches.

@frankozland great suggestion. Thanks also for the backgrounder and starter scripts. The advantages are clear. We've already taken the first steps towards this migration [in our CI build](https://github.com/RaspAP/pi-gen/blob/c5f37245eadc0c63fed6c0387d90c893fe45398f/stage2/04-iptables/files/raspap-routing.sh). However, this...