mirror of
https://github.com/donaldzou/WGDashboard.git
synced 2024-11-06 16:00:28 +01:00
7 lines
202 B
Bash
7 lines
202 B
Bash
|
for ((i = 0 ; i<$1 ; i++ ))
|
||
|
do
|
||
|
privateKey=$(wg genkey)
|
||
|
presharedKey=$(wg genkey)
|
||
|
publicKey=$(wg pubkey <<< "$privateKey")
|
||
|
echo "$privateKey,$publicKey,$presharedKey"
|
||
|
done
|