Ajout des playbooks wireguard

This commit is contained in:
Jarod Pauchet 2024-11-14 16:45:36 +01:00
parent cd2f872f1f
commit 149e630c47
3 changed files with 125 additions and 0 deletions

View File

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

50
ansible/mkwgconf.sh Normal file
View File

@ -0,0 +1,50 @@
#!/bin/bash
set -u
set -e
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
EndpointB=172.16.0.121 # Adresse extremite B
PortB=51820 # Port ecoute extremite B
umask 077 ;
wg genkey > endpoint-a.key
wg pubkey < endpoint-a.key > endpoint-a.pub
wg genkey > endpoint-b.key
wg pubkey < endpoint-b.key > endpoint-b.pub
PKA=$(cat endpoint-a.key)
pKA=$(cat endpoint-a.pub)
PKB=$(cat endpoint-b.key)
pKB=$(cat endpoint-b.pub)
cat <<FINI > wg0-1.conf
# local settings for Endpoint A
[Interface]
PrivateKey = $PKA
Address = $AddressAwg
ListenPort = $PortA
# remote settings for Endpoint B
[Peer]
PublicKey = $pKB
Endpoint = ${EndpointB}:$PortB
AllowedIPs = $AddressBwg
FINI
cat <<FINI > wg0-2.conf
# local settings for Endpoint B
[Interface]
PrivateKey = $PKB
Address = $AddressBwg
ListenPort = $PortB
# remote settings for Endpoint A
[Peer]
PublicKey = $pKA
Endpoint = ${EndpointA}:$PortA
AllowedIPs = $AddressAwg
FINI

65
ansible/wg.yml Normal file
View File

@ -0,0 +1,65 @@
---
- 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 et wg0-2.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
- 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"
- 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