Compare commits

...

7 Commits

11 changed files with 25 additions and 4 deletions

View File

@ -79,7 +79,7 @@ defaultPref("network.dns.use_https_rr_as_altsvc", true);
defaultPref("network.trr.exclude-etc-hosts", false); defaultPref("network.trr.exclude-etc-hosts", false);
defaultPref( defaultPref(
"network.trr.excluded-domains", "network.trr.excluded-domains",
"http.badssl.com,norwegianwifi.com", "http.badssl.com,norwegianwifi.com,mywifiext.net,tplinkrepeater.net,router.asus.com",
); );
// Default UI scale // Default UI scale

View File

@ -1,6 +1,7 @@
exec --no-startup-id foot --title=system\ journal journalctl -f exec --no-startup-id foot --title=system\ journal journalctl -f
exec --no-startup-id foot --title=user\ journal journalctl -f --user exec --no-startup-id foot --title=user\ journal journalctl -f --user
exec --no-startup-id foot --title=iwd\ log journalctl -u iwd -f exec --no-startup-id foot --title=iwd\ log journalctl -u iwd -f
exec --no-startup-id foot --title=networkd\ log journalctl -u systemd-networkd -f
exec --no-startup-id foot --title=resolved\ log journalctl -u systemd-resolved -f exec --no-startup-id foot --title=resolved\ log journalctl -u systemd-resolved -f
exec --no-startup-id foot --title=unbound\ log journalctl -u unbound -f exec --no-startup-id foot --title=unbound\ log journalctl -u unbound -f
# Debian uses chrony, Fedora chronyd. Comment inappropiate. # Debian uses chrony, Fedora chronyd. Comment inappropiate.

View File

@ -12,7 +12,8 @@ Country=FI
use_default_interface=true use_default_interface=true
# build-in network configuration including DHCP client # build-in network configuration including DHCP client
EnableNetworkConfiguration=true # true if not using systemd-networkd!
#EnableNetworkConfiguration=false
# NOTE! Disable this in case of trouble connecting to network entirely, e.g. # NOTE! Disable this in case of trouble connecting to network entirely, e.g.
# REALTEK devices! # REALTEK devices!

View File

@ -9,9 +9,11 @@ Type=wlan
RequiredFamilyForOnline=both RequiredFamilyForOnline=both
# Always set administrative state to up. Implies RequiredForOnline=yes # Always set administrative state to up. Implies RequiredForOnline=yes
ActivationPolicy=always-up ActivationPolicy=always-up
# Managed by iwd # If something else (like iwd EnableNetworkConfiguration=true) manages network,
Unmanaged=true # uncomment
#Unmanaged=true
[Network] [Network]
DHCP=yes
IPv6PrivacyExtensions=true IPv6PrivacyExtensions=true
IPv6LinkLocalAddressGenerationMode=stable-privacy IPv6LinkLocalAddressGenerationMode=stable-privacy

View File

@ -0,0 +1,3 @@
iwd.conf
network-online.conf
never-fail.conf

View File

@ -0,0 +1 @@
../service.d/iwd.conf

View File

@ -0,0 +1 @@
../service.d/network-online.conf

View File

@ -0,0 +1 @@
../service.d/never-fail.conf

View File

@ -0,0 +1,3 @@
[Unit]
Wants=iwd.service
After=iwd.service

View File

@ -0,0 +1,3 @@
[Unit]
Wants=network-online.service
After=network-online.service

View File

@ -21,6 +21,11 @@ forward-zone:
forward-tls-upstream: no forward-tls-upstream: no
forward-addr: 8.8.8.8 forward-addr: 8.8.8.8
forward-zone:
name: "norwegianwifi.com"
forward-tls-upstream: no
forward-addr: 8.8.8.8
# Can I refer to subdomain as a zone? # Can I refer to subdomain as a zone?
forward-zone: forward-zone:
name: "http.badssl.com" name: "http.badssl.com"