mirror of
https://github.com/donaldzou/WGDashboard.git
synced 2025-07-05 12:46:59 +00: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 |