diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-06-13 00:08:31 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-06-13 00:08:31 +0200 |
commit | 8333d4ecbe93067d4f3741a71b50b3693dba2c4a (patch) | |
tree | 7e5e6d0b2305fdfd15f131da1a98663efcb8cefe | |
parent | bump NPM dependencies (diff) | |
download | wireguard-config-8333d4ecbe93067d4f3741a71b50b3693dba2c4a.tar.gz wireguard-config-8333d4ecbe93067d4f3741a71b50b3693dba2c4a.zip |
fix NetworkManager generator
Unless addr-gen-mode is set to "stable-privacy", NetworkManager spams
the journal with
linklocal6: failed to get interface identifier; IPv6 cannot continue
I think IPv6 still worked, but I'm not sure about this.
-rw-r--r-- | assets/js/main.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/assets/js/main.js b/assets/js/main.js index a5e799b..ef57764 100644 --- a/assets/js/main.js +++ b/assets/js/main.js @@ -864,6 +864,7 @@ address1=${data.client_ipv4.full_address()} method=manual ${dns4} [ipv6] +addr-gen-mode=stable-privacy address1=${data.client_ipv6.full_address()} method=manual ${dns6}`; |