modifié : mkwgconf-p2p.sh
nouveau fichier : wg0-1.conf supprimé : wg0-1.conf modifié : wg0-2.conf modifié : wg0-3.conf nouveau fichier : wg0-4.conf
This commit is contained in:
parent
f0a86fed9a
commit
42f7f3e909
@ -11,6 +11,9 @@ PortB=51820 # Port ecoute extremite B
|
||||
AddressCwg=10.0.0.3/32 # Adresse VPN Wireguard extremite C
|
||||
EndpointC=172.16.0.110 # Adresse extremite C
|
||||
PortC=51820 # Port ecoute extremite C
|
||||
AddressDwg=10.0.0.3/32 # Adresse VPN Wireguard extremite D
|
||||
EndpointD=10.121.38.35 # Adresse extremite D
|
||||
PortD=61820 # Port ecoute extremite D
|
||||
|
||||
umask 077 ;
|
||||
wg genkey > endpoint-a.key
|
||||
@ -22,12 +25,17 @@ wg pubkey < endpoint-b.key > endpoint-b.pub
|
||||
wg genkey > endpoint-c.key
|
||||
wg pubkey < endpoint-c.key > endpoint-c.pub
|
||||
|
||||
wg genkey > endpoint-d.key
|
||||
wg pubkey < endpoint-d.key > endpoint-d.pub
|
||||
|
||||
PKA=$(cat endpoint-a.key)
|
||||
pKA=$(cat endpoint-a.pub)
|
||||
PKB=$(cat endpoint-b.key)
|
||||
pKB=$(cat endpoint-b.pub)
|
||||
PKC=$(cat endpoint-c.key)
|
||||
pKC=$(cat endpoint-c.pub)
|
||||
PKD=$(cat endpoint-d.key)
|
||||
pKD=$(cat endpoint-d.pub)
|
||||
|
||||
cat <<FINI > wg0-1.conf
|
||||
# local settings for Endpoint A
|
||||
@ -42,11 +50,18 @@ PublicKey = $pKB
|
||||
Endpoint = ${EndpointB}:$PortB
|
||||
AllowedIPs = $AddressBwg
|
||||
|
||||
# remote settings for Endpoint B
|
||||
# remote settings for Endpoint C
|
||||
[Peer]
|
||||
PublicKey = $pKC
|
||||
Endpoint = ${EndpointC}:$PortC
|
||||
AllowedIPs = $AddressCwg
|
||||
|
||||
# remote settings for Endpoint D
|
||||
[Peer]
|
||||
PublicKey = $pKD
|
||||
Endpoint = ${EndpointD}:$PortD
|
||||
AllowedIPs = $AddressDwg
|
||||
|
||||
FINI
|
||||
|
||||
|
||||
@ -77,3 +92,17 @@ PublicKey = $pKA
|
||||
Endpoint = ${EndpointA}:$PortA
|
||||
AllowedIPs = $AddressAwg
|
||||
FINI
|
||||
|
||||
cat <<FINI > wg0-4.conf
|
||||
# local settings for Endpoint D
|
||||
[Interface]
|
||||
PrivateKey = $PKD
|
||||
Address = $AddressDwg
|
||||
ListenPort = $PortD
|
||||
|
||||
# remote settings for Endpoint A
|
||||
[Peer]
|
||||
PublicKey = $pKA
|
||||
Endpoint = ${EndpointA}:$PortA
|
||||
AllowedIPs = $AddressAwg
|
||||
FINI
|
||||
|
23
ansible/wireguard/wg0-1.conf
Normal file
23
ansible/wireguard/wg0-1.conf
Normal file
@ -0,0 +1,23 @@
|
||||
# local settings for Endpoint A
|
||||
[Interface]
|
||||
PrivateKey = qJP+UZ/VuTFnIySy4WRC7e2gRUsIUxTdCr6fGvr2NWg=
|
||||
Address = 10.0.0.1/32
|
||||
ListenPort = 51820
|
||||
|
||||
# remote settings for Endpoint B
|
||||
[Peer]
|
||||
PublicKey = hjWFTzNbAMfNlETuO2qkdNOZnRQ24hkxN/1onfMJ2TA=
|
||||
Endpoint = 172.16.0.111:51820
|
||||
AllowedIPs = 10.0.0.2/32
|
||||
|
||||
# remote settings for Endpoint C
|
||||
[Peer]
|
||||
PublicKey = aVqH5DwDiGQFXqbVbBFVF8HTcd/pIGHXnEOjBSPbklY=
|
||||
Endpoint = 172.16.0.110:51820
|
||||
AllowedIPs = 10.0.0.3/32
|
||||
|
||||
# remote settings for Endpoint D
|
||||
[Peer]
|
||||
PublicKey = uyamrEFfja1bJh1StqsKk+tRSElIThWlqTO6MlOYGho=
|
||||
Endpoint = 10.121.38.35:61820
|
||||
AllowedIPs = 10.0.0.3/32
|
@ -1,17 +0,0 @@
|
||||
# local settings for Endpoint A
|
||||
[Interface]
|
||||
PrivateKey = iBHlLJhN2+I03DxWxcde2dNg+TNNWIs0degDdfDjm2Q=
|
||||
Address = 10.0.0.1/32
|
||||
ListenPort = 51820
|
||||
|
||||
# remote settings for Endpoint B
|
||||
[Peer]
|
||||
PublicKey = ScvzvZQlADyjcUVSNW9NDXBq6soG3LQgSgwB87rkNEY=
|
||||
Endpoint = 172.16.0.111:51820
|
||||
AllowedIPs = 10.0.0.2/32
|
||||
|
||||
# remote settings for Endpoint C
|
||||
[Peer]
|
||||
PublicKey = l5YUM/2Jl5BulqObV4U38WNHC8I9iM1J6Os5lT2BMU4=
|
||||
Endpoint = 172.16.0.110:51820
|
||||
AllowedIPs = 10.0.0.3/32
|
@ -1,11 +1,11 @@
|
||||
# local settings for Endpoint B
|
||||
[Interface]
|
||||
PrivateKey = SCkd5aD3cMZpgbfGchITrP/Q2GWvHh6ZCav0Mcwr1EU=
|
||||
PrivateKey = 0JaKofdq8uRfWpSj9PREC83DiQMjt3tnAu+9pA48F38=
|
||||
Address = 10.0.0.2/32
|
||||
ListenPort = 51820
|
||||
|
||||
# remote settings for Endpoint A
|
||||
[Peer]
|
||||
PublicKey = 0U4DWwLi8IBJxgQgehV3GqHb7DxW1H/CkDAwhNmsPXk=
|
||||
PublicKey = 8Mo+pfjCRP+HqE2MM5b9jHudBcTdPktd7pOCvfdk8Qs=
|
||||
Endpoint = 172.16.0.112:51820
|
||||
AllowedIPs = 10.0.0.1/32
|
||||
|
@ -1,11 +1,11 @@
|
||||
# local settings for Endpoint C
|
||||
[Interface]
|
||||
PrivateKey = eIyUKQugq3S5V+yeBK473KMvjE/izvuvdoiWvA5GHWY=
|
||||
PrivateKey = WLKGrMqV01aTl/YEYJTI7RdQZyYQOF1EoBv0PEc0KEw=
|
||||
Address = 10.0.0.3/32
|
||||
ListenPort = 51820
|
||||
|
||||
# remote settings for Endpoint A
|
||||
[Peer]
|
||||
PublicKey = 0U4DWwLi8IBJxgQgehV3GqHb7DxW1H/CkDAwhNmsPXk=
|
||||
PublicKey = 8Mo+pfjCRP+HqE2MM5b9jHudBcTdPktd7pOCvfdk8Qs=
|
||||
Endpoint = 172.16.0.112:51820
|
||||
AllowedIPs = 10.0.0.1/32
|
||||
|
11
ansible/wireguard/wg0-4.conf
Normal file
11
ansible/wireguard/wg0-4.conf
Normal file
@ -0,0 +1,11 @@
|
||||
# local settings for Endpoint D
|
||||
[Interface]
|
||||
PrivateKey = kLs2zk9VQS9D4OD2G1lExx9c+zvuVvgeCytDpvK1s24=
|
||||
Address = 10.0.0.3/32
|
||||
ListenPort = 61820
|
||||
|
||||
# remote settings for Endpoint A
|
||||
[Peer]
|
||||
PublicKey = 8Mo+pfjCRP+HqE2MM5b9jHudBcTdPktd7pOCvfdk8Qs=
|
||||
Endpoint = 172.16.0.112:51820
|
||||
AllowedIPs = 10.0.0.1/32
|
Loading…
x
Reference in New Issue
Block a user