mirror of https://github.com/OpenIPC/firmware.git
Update general/overlay/usr/sbin/wireguard
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>pull/1882/head
parent
1d46175e39
commit
0860a2833a
|
@ -3,9 +3,10 @@
|
||||||
modprobe wireguard || { echo "Error: Failed to load wireguard module." >&2; exit 1; }
|
modprobe wireguard || { echo "Error: Failed to load wireguard module." >&2; exit 1; }
|
||||||
ip link add dev wg0 type wireguard || { echo "Error: Failed to create wg0 interface." >&2; exit 1; }
|
ip link add dev wg0 type wireguard || { echo "Error: Failed to create wg0 interface." >&2; exit 1; }
|
||||||
|
|
||||||
|
WG_PRIVKEY="$(fw_printenv -n wg_privkey)"
|
||||||
( echo "#"
|
( echo "#"
|
||||||
echo "[Interface]"
|
echo "[Interface]"
|
||||||
echo "PrivateKey = $(fw_printenv -n wg_privkey)"
|
echo "PrivateKey = $WG_PRIVKEY"
|
||||||
# echo "Address = $(fw_printenv -n wg_address)"
|
# echo "Address = $(fw_printenv -n wg_address)"
|
||||||
# echo "DNS = $(fw_printenv -n wg_dns)"
|
# echo "DNS = $(fw_printenv -n wg_dns)"
|
||||||
echo
|
echo
|
||||||
|
|
Loading…
Reference in New Issue