mirror of
https://github.com/novatiq/packages.git
synced 2026-04-30 15:38:40 +01:00
3a6949dfaf
This tool can be used to automatically create wireguard tunnels. Using
rpcd a new wireguard interface is created on the server where the client
can connect to.
Wiregurad server automatically installs a user and associated ACL to use
the wireguard-installer-server features. The user is called wginstaller
and so is the password.
Get Usage:
wg-client-installer get_usage --ip 127.0.0.1 --user wginstaller
--password wginstaller
Register Interface:
wg-client-installer register --ip 127.0.0.1 --user wginstaller
--password wginstaller --bandwidth 10 --mtu 1400
Signed-off-by: Nick Hainke <vincent@systemli.org>
14 lines
227 B
Bash
14 lines
227 B
Bash
next_port () {
|
|
local port_start=$1
|
|
local port_end=$2
|
|
|
|
ports=$(wg show all listen-port | awk '{print $2}')
|
|
|
|
for i in $(seq $port_start $port_end); do
|
|
if ! echo $ports | grep -q "$i"; then
|
|
echo $i
|
|
return
|
|
fi
|
|
done
|
|
}
|