1
0
Fork 0
mirror of https://github.com/NeoCloud/NeoNetwork synced 2024-05-18 16:11:45 +08:00

VPN: wg-postup.sh: missing dev

This commit is contained in:
Neo_Chen 2020-05-11 21:14:38 +08:00
parent 95e799260a
commit 738230d4cc

2
vpn/wg-postup.sh Normal file → Executable file
View file

@ -8,5 +8,5 @@ PEER_IPV6="$5"
ip addr del "$LOCAL_IP" dev "$IF"
ip addr add "$LOCAL_IP" peer "$PEER_IP" dev "$IF"
ip addr del "$LOCAL_IPV6"
ip addr del "$LOCAL_IPV6" dev "$IF"
ip addr add "$LOCAL_IPV6" peer "$PEER_IPV6" dev "$IF"