我已经在 Debian Buster 上成功安装了 Wireguard。现在我想在之后配置 IPv6。我已经做到了。但是[Peer]
-Section 中的设置wg0.conf
似乎并不持久。
systemctl stop [email protected]
nano /etc/wireguard/wg0.conf
结果:
[Peer]
PublicKey = xxxxx
AllowedIPs = 10.200.200.2/32, xxx:xxxx:xx:xxx:100::2/72
保存并重新启动服务后systemctl start [email protected]
,wg0.conf
看起来很好。
当我再次重新启动 VM 或服务时,我的所有其他设置都将丢失。
[Peer]
PublicKey = xxxxx
AllowedIPs = 10.200.200.2/32
任何想法?
这就是我的wg0.conf
样子
[Interface]
Address = 10.200.200.1/24
Address = xxxx:xxx:xx:xxx::1/72
DNS = 10.200.200.1
SaveConfig = true
PostUp = iptables -A FORWARD -i wg0 -j ACCEPT; iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE; ip6tables -A FORWARD -i wg0 -j ACCEPT; ip6tables -t nat -A POSTROU$
PostDown = iptables -D FORWARD -i wg0 -j ACCEPT; iptables -t nat -D POSTROUTING -o eth0 -j MASQUERADE; ip6tables -D FORWARD -i wg0 -j ACCEPT; ip6tables -t nat -D POSTR$
ListenPort = 51820
PrivateKey = xxx
[Peer]
PublicKey = xxx
AllowedIPs = 10.200.200.2/32, xxx:xxxx:xx:xxx:100::2/72
[Peer]
PublicKey = xxx
AllowedIPs = 10.200.200.3/32, xxx:xxxx:xx:xxx:100::3/72
[Peer]
PublicKey = xxx
AllowedIPs = 10.200.200.4/32, xxx:xxxx:xx:xxx:100::4/72
解决了这个问题。魔术:
wg-quick down wg0
在编辑 wg0.conf 文件之前总是停止界面。下次启动后将systemctl stop [email protected]
覆盖文件。wg0.conf