2024-01-08 14:05:17 +03:00
|
|
|
#!/usr/bin/bash
|
|
|
|
|
#----------------------------------------------------------------------
|
|
|
|
|
# https://wiki.alpinelinux.org/wiki/Configure_a_Wireguard_interface_(wg)
|
|
|
|
|
|
|
|
|
|
cd $(dirname $0)
|
|
|
|
|
PATH=$PATH:$(dirname "$(pwd)")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#----------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
source ../.pct-helpers
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#----------------------------------------------------------------------
|
|
|
|
|
|
2024-01-10 23:35:52 +03:00
|
|
|
# check dependencies...
|
2024-01-10 23:59:53 +03:00
|
|
|
would-like dig #qrencode
|
2024-01-08 14:05:17 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
#----------------------------------------------------------------------
|
|
|
|
|
|
2024-01-10 23:35:52 +03:00
|
|
|
readConfig
|
|
|
|
|
|
2024-10-19 13:59:43 +03:00
|
|
|
DFL_ID=${DFL_ID:=130}
|
2024-01-08 14:05:17 +03:00
|
|
|
DFL_CTHOSTNAME=${DFL_CTHOSTNAME:=wireguard}
|
|
|
|
|
|
|
|
|
|
DFL_CORES=${DFL_CORES:=1}
|
|
|
|
|
DFL_RAM=${DFL_RAM:=256}
|
|
|
|
|
DFL_SWAP=${DFL_SWAP:=${DFL_RAM}}
|
|
|
|
|
DFL_DRIVE=${DFL_DRIVE:=1}
|
|
|
|
|
|
2024-01-11 13:54:45 +03:00
|
|
|
WAN_IP=SKIP
|
|
|
|
|
WAN_GATE=SKIP
|
|
|
|
|
ADMIN_IP=SKIP
|
|
|
|
|
ADMIN_GATE=SKIP
|
|
|
|
|
LAN_IP=SKIP
|
|
|
|
|
LAN_GATE=SKIP
|
2024-01-08 14:05:17 +03:00
|
|
|
|
|
|
|
|
REBOOT=${REBOOT:=1}
|
|
|
|
|
|
2024-01-16 22:55:05 +03:00
|
|
|
|
2024-01-10 06:40:46 +03:00
|
|
|
# Wireguard config...
|
2024-01-10 23:35:52 +03:00
|
|
|
DFL_ENDPOINT=${DFL_ENDPOINT:=$(\
|
|
|
|
|
which dig > /dev/null 2>&1 \
|
|
|
|
|
&& (dig +short ${DOMAIN:-$DFL_DOMAIN} \
|
|
|
|
|
| tail -1) \
|
|
|
|
|
|| echo "${DOMAIN:-$DFL_DOMAIN}")}
|
2024-01-10 00:17:14 +03:00
|
|
|
xread "Wireguard endpoint: " ENDPOINT
|
|
|
|
|
|
2024-01-10 03:57:49 +03:00
|
|
|
DFL_ENDPOINT_PORT=${DFL_ENDPOINT_PORT:=51820}
|
|
|
|
|
xread "Wireguard endpoint port: " ENDPOINT_PORT
|
|
|
|
|
|
2024-01-10 06:17:00 +03:00
|
|
|
CLIENT_IPS=${CLIENT_IPS:-10.42.0.0/16}
|
2024-01-10 06:40:46 +03:00
|
|
|
ALLOWED_IPS=${ALLOWED_IPS:-0.0.0.0/0,${CLIENT_IPS}}
|
2024-01-10 06:09:25 +03:00
|
|
|
|
2024-01-15 18:38:43 +03:00
|
|
|
DNS=${DNS:-${NS_LAN_IP:-${DFL_NS_LAN_IP}}}
|
|
|
|
|
DNS=${DNS/\/*}
|
|
|
|
|
xread "Local network DNS:" DNS
|
|
|
|
|
|
2024-01-10 23:35:52 +03:00
|
|
|
xreadYes "Show profile as QRcode when done?" QRCODE
|
2024-01-15 20:48:11 +03:00
|
|
|
QRCODE=${QRCODE:-0}
|
2024-01-10 04:46:43 +03:00
|
|
|
|
2024-01-16 22:55:05 +03:00
|
|
|
|
2024-01-08 14:05:17 +03:00
|
|
|
readVars
|
|
|
|
|
|
|
|
|
|
|
2024-01-10 04:46:43 +03:00
|
|
|
|
2024-01-08 14:05:17 +03:00
|
|
|
|
|
|
|
|
#----------------------------------------------------------------------
|
|
|
|
|
|
2024-01-20 22:22:32 +03:00
|
|
|
INTERFACES=(
|
|
|
|
|
"name=lan,bridge=vmbr${LAN_BRIDGE},firewall=1,ip=dhcp,type=veth"
|
|
|
|
|
"name=admin,bridge=vmbr${ADMIN_BRIDGE},firewall=1,ip=dhcp,type=veth"
|
|
|
|
|
)
|
|
|
|
|
|
2024-01-08 14:05:17 +03:00
|
|
|
|
|
|
|
|
OPTS_STAGE_2="\
|
|
|
|
|
--onboot 1 \
|
|
|
|
|
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#----------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
echo "# Building config..."
|
2024-01-10 06:40:46 +03:00
|
|
|
buildAssets ENDPOINT ENDPOINT_PORT DNS CLIENT_IPS ALLOWED_IPS
|
2024-01-08 14:05:17 +03:00
|
|
|
|
|
|
|
|
echo "# Creating CT..."
|
2024-01-20 22:22:32 +03:00
|
|
|
pctCreateAlpine $ID "$PASS"
|
2024-01-08 14:05:17 +03:00
|
|
|
|
|
|
|
|
echo "# Installing dependencies..."
|
2024-01-16 22:55:05 +03:00
|
|
|
@ lxc-attach $ID apk add \
|
2024-10-20 00:50:53 +03:00
|
|
|
iptables wireguard-tools-wg-quick make bind-tools libqrencode-tools logrotate
|
2024-01-08 14:05:17 +03:00
|
|
|
|
|
|
|
|
echo "# Copying assets..."
|
2024-01-20 17:58:46 +03:00
|
|
|
pctPushAssets $ID
|
2024-01-10 06:09:25 +03:00
|
|
|
@ lxc-attach $ID -- chmod +x /root/getFreeClientIP
|
2024-01-08 14:05:17 +03:00
|
|
|
|
2024-01-16 04:24:15 +03:00
|
|
|
echo "# Setup: wireguard server and client profile..."
|
2024-01-11 02:19:16 +03:00
|
|
|
@ lxc-attach $ID -- bash -c "cd /root \
|
2024-01-16 04:24:15 +03:00
|
|
|
&& QRCODE=${QRCODE} make server default.client"
|
2024-01-09 15:49:42 +03:00
|
|
|
|
2024-01-08 14:05:17 +03:00
|
|
|
echo "# Post config..."
|
|
|
|
|
pctSet $ID "${OPTS_STAGE_2}" $REBOOT
|
2024-01-18 03:44:49 +03:00
|
|
|
pctSetNotes $ID
|
2024-01-08 14:05:17 +03:00
|
|
|
|
2024-01-10 17:56:40 +03:00
|
|
|
saveLastRunConfig
|
|
|
|
|
|
2024-02-02 02:04:35 +03:00
|
|
|
echo "# Traefik config..."
|
|
|
|
|
traefikPushConfig
|
|
|
|
|
|
2024-01-26 03:06:55 +03:00
|
|
|
showNotes
|
2024-01-08 14:05:17 +03:00
|
|
|
echo "# Done."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#----------------------------------------------------------------------
|
|
|
|
|
# vim:set ts=4 sw=4 :
|