diff --git a/goss/list-goss b/goss/list-goss new file mode 100644 index 0000000..a13faf9 --- /dev/null +++ b/goss/list-goss @@ -0,0 +1,12 @@ +cd goss/ +goss -g r-vp1.yaml v +goss -g r-vp1.yaml aa wireguard +goss add interface enp0s3 +goss add interface enp0s8 +goss add interface enp0s9 +goss add interface wg0 +goss aa wireguard +goss add package wireguard-tools +goss add service wg-quick@wg0 +goss add command "ping -c4 10.0.0.2" +goss add file "/etc/wireguard/wg0.conf" diff --git a/r-vp1.yml b/r-vp1.yml index 2ffe142..5bd02e3 100644 --- a/r-vp1.yml +++ b/r-vp1.yml @@ -15,6 +15,7 @@ # - firewall-vpn-r - wireguard-r # - x509-r + - fw-ferm - ssh-cli - syslog-cli - post diff --git a/r-vp2.yml b/r-vp2.yml index 3c78dbf..a4009fe 100644 --- a/r-vp2.yml +++ b/r-vp2.yml @@ -18,6 +18,7 @@ # - firewall-vpn-l - wireguard-l # - x509-l + - fw-ferm - ssh-cli - syslog-cli - post diff --git a/roles/fw-ferm/README.md b/roles/fw-ferm/README.md new file mode 100644 index 0000000..9824637 --- /dev/null +++ b/roles/fw-ferm/README.md @@ -0,0 +1,23 @@ +[Ferm]:http://ferm.foo-projects.org/ + +Modifier l'execution d'iptables [plus d'info ici]:https://wiki.debian.org/iptables +```shell +update-alternatives --set iptables /usr/sbin/iptables-legacy +``` + +Pour tester utiliser [Nmap]:https://nmap.org/man/fr/man-briefoptions.html +### r-vp1 +```shell +sudo nmap -p51820 192.168.0.51 +``` +### r-vp2 +```shell +sudo nmap -p51820 192.168.0.52 +``` +### Sortie : +``` +`PORT STATE SERVICE +51820/tcp filtered unknown` +``` + +Faire des ping! diff --git a/roles/fw-ferm/files/ferm.conf.r-vp1 b/roles/fw-ferm/files/ferm.conf.r-vp1 new file mode 100644 index 0000000..0097688 --- /dev/null +++ b/roles/fw-ferm/files/ferm.conf.r-vp1 @@ -0,0 +1,63 @@ +# -*- shell-script -*- +# +# Ferm script r-vp1 + +@def $DEV_PRIVATE = enp0s8; +@def $DEV_WORLD = enp0s9; + +@def $NET_PRIVATE = 172.16.0.0/24; + +table filter { + chain (INPUT OUTPUT){ + # allow VPN + proto udp dport 51820 ACCEPT; +} + chain INPUT { + policy DROP; + + # connection tracking + mod state state INVALID DROP; + mod state state (ESTABLISHED RELATED) ACCEPT; + + # allow local connections + interface lo ACCEPT; + + # respond to ping + proto icmp icmp-type echo-request ACCEPT; + + + # allow SSH connections from the private network and from some + # well-known internet hosts + saddr ($NET_PRIVATE 81.209.165.42) proto tcp dport ssh ACCEPT; + + # we provide DNS and SMTP services for the internal net + interface $DEV_PRIVATE saddr $NET_PRIVATE { + proto (udp tcp) dport domain ACCEPT; + proto udp dport bootps ACCEPT; + } + + # interface réseau + interface $DEV_WORLD { + + } + + # the rest is dropped by the above policy + }#FIN INPUT + + # outgoing connections are not limited + chain OUTPUT policy ACCEPT; + + chain FORWARD { + policy ACCEPT; + + # connection tracking + mod state state INVALID DROP; + mod state state (ESTABLISHED RELATED) ACCEPT; + + # connections from the internal net to the internet or to other + # internal nets are allowed + interface $DEV_PRIVATE ACCEPT; + + # the rest is dropped by the above policy + } +} diff --git a/roles/fw-ferm/files/ferm.conf.r-vp2 b/roles/fw-ferm/files/ferm.conf.r-vp2 new file mode 100644 index 0000000..1c0c40b --- /dev/null +++ b/roles/fw-ferm/files/ferm.conf.r-vp2 @@ -0,0 +1,62 @@ +# -*- shell-script -*- +# +# Ferm script r-vp2 + +@def $DEV_PRIVATE = enp0s9; +@def $DEV_WORLD = enp0s8; + +@def $NET_PRIVATE = 172.16.0.0/24; + +table filter { + chain (INPUT OUTPUT){ + # allow VPN + proto udp dport 51820 ACCEPT; +} + chain INPUT { + policy DROP; + + # connection tracking + mod state state INVALID DROP; + mod state state (ESTABLISHED RELATED) ACCEPT; + + # allow local connections + interface lo ACCEPT; + + # respond to ping + proto icmp icmp-type echo-request ACCEPT; + + # allow SSH connections from the private network and from some + # well-known internet hosts + saddr ($NET_PRIVATE 81.209.165.42) proto tcp dport ssh ACCEPT; + + # we provide DNS and SMTP services for the internal net + interface $DEV_PRIVATE saddr $NET_PRIVATE { + proto (udp tcp) dport domain ACCEPT; + proto udp dport bootps ACCEPT; + } + + # interface réseau + interface $DEV_WORLD { + + } + + # the rest is dropped by the above policy + }#FIN INPUT + + # outgoing connections are not limited + chain OUTPUT policy ACCEPT; + + chain FORWARD { + policy ACCEPT; + + # connection tracking + mod state state INVALID DROP; + mod state state (ESTABLISHED RELATED) ACCEPT; + + # connections from the internal net to the internet or to other + # internal nets are allowed + interface $DEV_PRIVATE ACCEPT; + + # the rest is dropped by the above policy + } +} diff --git a/roles/fw-ferm/tasks/main.yml b/roles/fw-ferm/tasks/main.yml new file mode 100644 index 0000000..78c42ff --- /dev/null +++ b/roles/fw-ferm/tasks/main.yml @@ -0,0 +1,15 @@ +--- +- name: installation de ferm + apt: + name: ferm + state: present + +- name: copie du ferm.conf + copy: + src: ferm.conf.{{ ansible_hostname }} + dest: /etc/ferm/ferm.conf + +- name: redemarage service ferm + ansible.builtin.service: + name: ferm.service + state: restarted diff --git a/roles/lb-nfs-server/tasks/main.yml b/roles/lb-nfs-server/tasks/main.yml index f87b678..9d24173 100644 --- a/roles/lb-nfs-server/tasks/main.yml +++ b/roles/lb-nfs-server/tasks/main.yml @@ -1,77 +1,70 @@ - - name: 00 - cree repertoire wordpress pour export nfs - file: - path: /exports/wordpress - state: directory +- name: 00 - cree repertoire wordpress pour export nfs + file: + path: /home/wordpress + state: directory - - name: 05 - Install nfs-server - apt: - name: nfs-server - state: present +- name: 05 - Install nfs-server + apt: + name: nfs-server + state: present - - name: 10 - creation fichier exports nfs - ansible.builtin.blockinfile: - path: /etc/exports - block: | - /exports/wordpress 192.168.56.0/255.255.255.0 (rw,no_root_squash,subtree_check) +- name: 10 - creation fichier exports nfs + ansible.builtin.blockinfile: + path: /etc/exports + block: | + /home/wordpress 192.168.102.0/255.255.255.0(rw,no_root_squash,subtree_check) + +- name: 20 - decompresse wordpress + unarchive: + src: https://fr.wordpress.org/latest-fr_FR.tar.gz + dest: /home/ + remote_src: yes + +- name: 22 - change owner et group pour repertoire wordpress + file: + path: /home/wordpress + state: directory + recurse: yes + owner: www-data + group: www-data + +- name: 30 - genere fichier de config wordpress + copy: + src: /home/wordpress/wp-config-sample.php + dest: /home/wordpress/wp-config.php + remote_src: yes + +- name: 35 - ajuste variable dbname dans fichier de config wp-config.php + replace: + path: /home/wordpress/wp-config.php + regexp: "votre_nom_de_bdd" + replace: "wordpressdb" + backup: yes - - name: 15 - Recupere wordpress.tar.gz - get_url: - url: "https://fr.wordpress.org/latest-fr_FR.tar.gz" - dest: /tmp/wordpress-6.1.1-fr_FR.tar.gz +- name: 40 ajuste variable dbusername dans fichier de config wp-config.php + replace: + path: /home/wordpress/wp-config.php + regexp: "votre_utilisateur_de_bdd" + replace: "wordpressuser" + backup: yes - - name: 20 - decompresse wordpress - unarchive: - src: /tmp/wordpress-6.1.1-fr_FR.tar.gz - dest: /exports/ - remote_src: yes - - - name: 22 - change owner et group pour repertoire wordpress - file: - path: /exports/wordpress - state: directory - recurse: yes - owner: www-data - group: www-data +- name: 45 - ajuste variable mdp dans fichier de config wp-config.php + replace: + path: /home/wordpress/wp-config.php + regexp: "votre_mdp_de_bdd" + replace: "wordpresspasswd" + backup: yes - - name: 30 - genere fichier de config wordpress - copy: - src: /exports/wordpress/wp-config-sample.php - dest: /exports/wordpress/wp-config.php - remote_src: yes - - - name: 35 - ajuste variable dbname dans fichier de config wp-config.php - replace: - path: /exports/wordpress/wp-config.php - regexp: "votre_nom_de_bdd" - replace: "wordpressdb" - backup: yes - - - - name: 40 ajuste variable dbusername dans fichier de config wp-config.php - replace: - path: /exports/wordpress/wp-config.php - regexp: "votre_utilisateur_de_bdd" - replace: "wordpressuser" - backup: yes - - - name: 45 - ajuste variable mdp dans fichier de config wp-config.php - replace: - path: /exports/wordpress/wp-config.php - regexp: "votre_mdp_de_bdd" - replace: "wordpresspasswd" - backup: yes - - - name: 50 - ajuste hostname fichier wp-config.php - replace: - path: /exports/wordpress/wp-config.php - regexp: "localhost" - replace: "192.168.102.253" - backup: yes - - - name: 55 - relance nfs - service: - name: nfs-server - state: restarted - enabled: yes +- name: 50 - ajuste hostname fichier wp-config.php + replace: + path: /home/wordpress/wp-config.php + regexp: "localhost" + replace: "192.168.102.253" + backup: yes +- name: 55 - relance nfs + service: + name: nfs-server + state: restarted + enabled: yes diff --git a/roles/lb-web/files/wp-config.php b/roles/lb-web/files/wp-config.php deleted file mode 100644 index 6c0623f..0000000 --- a/roles/lb-web/files/wp-config.php +++ /dev/null @@ -1,102 +0,0 @@ -