Compare commits

...

7 Commits

Author SHA1 Message Date
b81cbb8021 reglt conflit 2024-11-15 08:55:40 +00:00
065f454f6f modification du playbook wg.yml 2024-11-15 08:49:23 +00:00
Jarod Pauchet
d29ce732af hosts modification 2024-11-15 09:06:41 +01:00
77c6e532b3 Actualiser ansible/mkwgconf.sh 2024-11-14 16:51:29 +01:00
ea95044a7d Actualiser ansible/wg.yml 2024-11-14 16:50:51 +01:00
Jarod Pauchet
3cc5c7a773 playbook wireguard 2024-11-14 16:49:17 +01:00
Jarod Pauchet
149e630c47 Ajout des playbooks wireguard 2024-11-14 16:45:36 +01:00
6 changed files with 151 additions and 4 deletions

View File

@ -1,12 +1,11 @@
[pt]
ap33-pt
[wg]
ap33-mon
ap33-prod
ap33-test
ap33-mon
[wg_master]
ap33-mon
[wg_cli]
ap33-test
ap33-prod

View File

@ -6,8 +6,15 @@ AddressAwg=10.0.0.1/24 # Adresse VPN Wireguard extremite A
EndpointA=172.16.0.122 # Adresse extremite A
PortA=51820 # Port ecoute extremite A
AddressBwg=10.0.0.2/24 # Adresse VPN Wireguard extremite B
<<<<<<< HEAD:ansible/wireguard/mkwgconf.sh
EndpointB=172.16.0.120 # Adresse extremite B
=======
EndpointB=172.16.0.121 # Adresse extremite B
>>>>>>> d29ce732af0fce68c555df54563113473c3a0c5b:ansible/mkwgconf.sh
PortB=51820 # Port ecoute extremite B
AddressCwg=10.0.0.3/24 # Adresse VPN Wireguard extremite C
EndpointC=172.16.0.121 # Adresse extremite C
PortC=51820 # Port ecoute extremite C
umask 077 ;
wg genkey > endpoint-a.key
@ -16,10 +23,15 @@ wg pubkey < endpoint-a.key > endpoint-a.pub
wg genkey > endpoint-b.key
wg pubkey < endpoint-b.key > endpoint-b.pub
wg genkey > endpoint-c.key
wg pubkey < endpoint-c.key > endpoint-c.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)
cat <<FINI > wg0-1.conf
# local settings for Endpoint A
@ -33,6 +45,12 @@ ListenPort = $PortA
PublicKey = $pKB
Endpoint = ${EndpointB}:$PortB
AllowedIPs = $AddressBwg
# remote settings for Endpoint C
[Peer]
PublicKey = $pKC
Endpoint = ${EndpointC}:$PortC
AllowedIPs = $AddressCwg
FINI
cat <<FINI > wg0-2.conf
@ -48,3 +66,17 @@ PublicKey = $pKA
Endpoint = ${EndpointA}:$PortA
AllowedIPs = $AddressAwg
FINI
cat <<FINI > wg0-3.conf
#local settings for Endpoint C
[Interface]
PrivateKey = $PKC
Address = $AddressCwg
ListenPort = $PortC
# remote settings for Endpoint A
[Peer]
PublicKey = $pKA
Endpoint = ${EndpointA}:$PortA
AllowedIPs = $AddressAwg
FINI

77
ansible/wireguard/wg.yml Normal file
View File

@ -0,0 +1,77 @@
---
- hosts: wg
become: yes
tasks:
- name: arrete unattended-upgrades
service:
name: unattended-upgrades
state: stopped
- name: installe Wireguard
apt:
name:
- wireguard
- wireguard-tools
state: present
- hosts: wg_master
tasks:
- name: copie le fichier wg0-1.conf, wg0-2.conf et wg0-3.conf vers les machines master et cli
copy:
src: mkwgconf.sh
dest: mkwgconf.sh
- name: generations fichier configuration wireguard wg0-1.conf etc
shell: bash mkwgconf.sh
- name: récupération du fichier wg0-1.conf vers ap33-ans
fetch:
src: wg0-1.conf
dest: wg0-1.conf
flat: yes
- name: récupération du fichier wg0-2.conf vers ap33-ans
fetch:
src: wg0-2.conf
dest: wg0-2.conf
flat: yes
- name: récupération du fichier wg0-3.conf vers ap33-ans
fetch:
src: wg0-3.conf
dest: wg0-3.conf
flat: yes
- hosts: wg
become: yes
tasks:
- name: copie fichier wg0-1 vers les clients
copy:
src: wg0-1.conf
dest: /etc/wireguard/wg0.conf
when: ansible_hostname == "ap33-mon"
- name: copie fichier wg0-2 vers les clients
copy:
src: wg0-2.conf
dest: /etc/wireguard/wg0.conf
when: ansible_hostname == "ap33-prod"
- name: copie fichier wg0-3.conf vers les clients
copy:
src: wg0-3.conf
dest: /etc/wireguard/wg0.conf
when: ansible_hostname == "ap33-test"
- hosts: wg
become: yes
tasks:
- name: Activation de wireguard
service:
name: wg-quick@wg0.service
enabled: yes
- name: Redémarre le wireguard
service:
name: wg-quick@wg0.service
state: restarted

View File

@ -0,0 +1,17 @@
# local settings for Endpoint A
[Interface]
PrivateKey = CNafmAzvjGGAFA5RsDCHtypTh9RGnAxpkxZCt9cBkXo=
Address = 10.0.0.1/24
ListenPort = 51820
# remote settings for Endpoint B
[Peer]
PublicKey = UMlB4+d/SYufqAGbuHDvGvkOhGKEihIgR+rhFzk3Aj0=
Endpoint = 172.16.0.120:51820
AllowedIPs = 10.0.0.2/24
# remote settings for Endpoint C
[Peer]
PublicKey = EWOjtZLwhNLDokDWJCONaBtqpGbr+x5tzNFeUI0hHEE=
Endpoint = 172.16.0.121:51820
AllowedIPs = 10.0.0.3/24

View File

@ -0,0 +1,11 @@
# local settings for Endpoint B
[Interface]
PrivateKey = SLBteS7RJPIZ0TlZ5b9D6xtHF/5VzuQGmqnzW0Kkb0g=
Address = 10.0.0.2/24
ListenPort = 51820
# remote settings for Endpoint A
[Peer]
PublicKey = Fqd4WMaBpI7DAK6p2BaNhaE9VYzMRmfLxaO9uOmWTys=
Endpoint = 172.16.0.122:51820
AllowedIPs = 10.0.0.1/24

View File

@ -0,0 +1,11 @@
#local settings for Endpoint C
[Interface]
PrivateKey = wBu8AaHa061bI+6Eb+FmghV3iGKdp0a2Kq6At8UNzHo=
Address = 10.0.0.3/24
ListenPort = 51820
# remote settings for Endpoint A
[Peer]
PublicKey = Fqd4WMaBpI7DAK6p2BaNhaE9VYzMRmfLxaO9uOmWTys=
Endpoint = 172.16.0.122:51820
AllowedIPs = 10.0.0.1/24