Compare commits
12 Commits
v0.7.4-tvi
...
v0.7.c-tva
Author | SHA1 | Date | |
---|---|---|---|
290e2866fe | |||
dc276e2c68 | |||
6c090e61f8 | |||
1c036df5c4 | |||
a9b757dafa | |||
bb5521f0dc | |||
6201569f8a | |||
b14c35a7aa | |||
3be4dd14d4 | |||
7245538622 | |||
c448fb3457 | |||
0c0b58399f |
BIN
doc/pics/e4-dmz-tl.dia
Normal file
BIN
doc/pics/e4-dmz-tl.dia
Normal file
Binary file not shown.
BIN
doc/pics/e4-dmz-tl.png
Normal file
BIN
doc/pics/e4-dmz-tl.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 37 KiB |
39
goss/s-agence.yaml
Normal file
39
goss/s-agence.yaml
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
command:
|
||||||
|
ip r:
|
||||||
|
exit-status: 0
|
||||||
|
stdout:
|
||||||
|
- default via 172.16.128.254 dev enp0s8
|
||||||
|
- 172.16.128.0/24
|
||||||
|
- 192.168.99.0/24
|
||||||
|
stderr: []
|
||||||
|
timeout: 10000
|
||||||
|
ping -c 2 172.16.0.1:
|
||||||
|
exit-status: 0
|
||||||
|
stdout:
|
||||||
|
- 0% packet loss
|
||||||
|
stderr: []
|
||||||
|
timeout: 10000
|
||||||
|
ping -c 2 172.16.128.254:
|
||||||
|
exit-status: 0
|
||||||
|
stdout:
|
||||||
|
- 0% packet loss
|
||||||
|
stderr: []
|
||||||
|
timeout: 10000
|
||||||
|
ping -c 2 192.168.1.1:
|
||||||
|
exit-status: 0
|
||||||
|
stdout:
|
||||||
|
- 0% packet loss
|
||||||
|
stderr: []
|
||||||
|
timeout: 10000
|
||||||
|
ping -c 2 192.168.1.2:
|
||||||
|
exit-status: 0
|
||||||
|
stdout:
|
||||||
|
- 0% packet loss
|
||||||
|
stderr: []
|
||||||
|
timeout: 10000
|
||||||
|
ping -c 2 192.168.200.254:
|
||||||
|
exit-status: 0
|
||||||
|
stdout:
|
||||||
|
- 0% packet loss
|
||||||
|
stderr: []
|
||||||
|
timeout: 10000
|
@ -13,6 +13,7 @@
|
|||||||
- goss
|
- goss
|
||||||
- dhcp-ag
|
- dhcp-ag
|
||||||
- dns-agence
|
- dns-agence
|
||||||
|
- ssh-root-access
|
||||||
- snmp-agent
|
- snmp-agent
|
||||||
- vpn-stg-l
|
- vpn-stg-l
|
||||||
# - x509-l
|
# - x509-l
|
||||||
|
47
roles/docker-nextcloud/files/config.php
Normal file
47
roles/docker-nextcloud/files/config.php
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
<?php
|
||||||
|
$CONFIG = array (
|
||||||
|
'htaccess.RewriteBase' => '/',
|
||||||
|
'memcache.local' => '\\OC\\Memcache\\APCu',
|
||||||
|
'apps_paths' =>
|
||||||
|
array (
|
||||||
|
0 =>
|
||||||
|
array (
|
||||||
|
'path' => '/var/www/html/apps',
|
||||||
|
'url' => '/apps',
|
||||||
|
'writable' => false,
|
||||||
|
),
|
||||||
|
1 =>
|
||||||
|
array (
|
||||||
|
'path' => '/var/www/html/custom_apps',
|
||||||
|
'url' => '/custom_apps',
|
||||||
|
'writable' => true,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
'instanceid' => 'ocvc4q2htemf',
|
||||||
|
'passwordsalt' => 'stdJZMx4C5hz85Kqt8XdZIzx8kVOHI',
|
||||||
|
'secret' => 'II1BBgzlx70WUYCapAt/m/Bt1ZEk/n11n0DVq3zynyU8F/bU',
|
||||||
|
'trusted_domains' =>
|
||||||
|
array (
|
||||||
|
0 => '172.16.0.7:5678',
|
||||||
|
1 => '172.16.0.7:8080',
|
||||||
|
2 => 's-mess',
|
||||||
|
3 => 's-mess.gsb.lan',
|
||||||
|
4 => 'localhost:8080',
|
||||||
|
),
|
||||||
|
'trusted_proxies' => ['172.16.0.7'],
|
||||||
|
'overwriteprotocol' => 'http',
|
||||||
|
'overwritehost' => '172.16.0.7:8080',
|
||||||
|
'proxy' => '172.16.0.7:8080',
|
||||||
|
'datadirectory' => '/var/www/html/data',
|
||||||
|
'dbtype' => 'mysql',
|
||||||
|
'version' => '20.0.6.1',
|
||||||
|
'overwrite.cli.url' => 'http://172.16.0.7:5678',
|
||||||
|
'dbname' => 'nextcloud',
|
||||||
|
'dbhost' => 'db',
|
||||||
|
'dbport' => '',
|
||||||
|
'dbtableprefix' => 'oc_',
|
||||||
|
'mysql.utf8mb4' => true,
|
||||||
|
'dbuser' => 'nextcloud',
|
||||||
|
'dbpassword' => 'root',
|
||||||
|
'installed' => true,
|
||||||
|
);
|
2
roles/fog/defaults/main.yml
Normal file
2
roles/fog/defaults/main.yml
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
depl_url: "http://s-adm.gsb.adm/gsbstore"
|
||||||
|
depl_fog: "fogproject-1.5.9.tar.gz"
|
@ -6,10 +6,10 @@
|
|||||||
|
|
||||||
- name: recuperation du fichier d'installation de fog
|
- name: recuperation du fichier d'installation de fog
|
||||||
get_url:
|
get_url:
|
||||||
url: http://depl/gsbstore/fogproject-1.5.7.tar.gz
|
url: "{{ depl_url }}/{{ depl_fog }}"
|
||||||
dest: /root/fog
|
dest: /root/fog
|
||||||
|
|
||||||
- name: decompression du fichier d'installation de fog
|
- name: decompression du fichier d'installation de fog
|
||||||
unarchive:
|
unarchive:
|
||||||
src: /root/fog/fogproject-1.5.7.tar.gz
|
src: "/root/fog/{{ depl_fog }}"
|
||||||
dest: /root/fog
|
dest: /root/fog
|
||||||
|
@ -44,7 +44,7 @@ backend fermeweb
|
|||||||
#option httpchk HEAD / HTTP/1.0
|
#option httpchk HEAD / HTTP/1.0
|
||||||
server s-lb-web1 192.168.101.1:80 check
|
server s-lb-web1 192.168.101.1:80 check
|
||||||
server s-lb-web2 192.168.101.2:80 check
|
server s-lb-web2 192.168.101.2:80 check
|
||||||
# server s-lb-web3 192.168.101.2:80 check
|
# server s-lb-web3 192.168.101.3:80 check
|
||||||
|
|
||||||
listen stats
|
listen stats
|
||||||
bind *:8080
|
bind *:8080
|
||||||
|
7
roles/ssh-root-access/tasks/main.yml
Normal file
7
roles/ssh-root-access/tasks/main.yml
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
- name: Activation acces ssh root pour vp-1 (certificat)
|
||||||
|
lineinfile:
|
||||||
|
dest: /etc/ssh/sshd_config
|
||||||
|
regexp: "^PermitRootLogin"
|
||||||
|
line: "PermitRootLogin yes"
|
||||||
|
state: present
|
||||||
|
|
@ -7,7 +7,7 @@ conn tunnel #
|
|||||||
left=192.168.0.52
|
left=192.168.0.52
|
||||||
leftsubnet=172.16.128.0/24
|
leftsubnet=172.16.128.0/24
|
||||||
right=192.168.0.51
|
right=192.168.0.51
|
||||||
rightsubnet=192.168.0.0/16, 172.16.0.0/24
|
rightsubnet=192.168.1.0/24, 192.168.200.0/24, 172.16.0.0/24
|
||||||
ike=aes256-sha2_256-modp1024!
|
ike=aes256-sha2_256-modp1024!
|
||||||
esp=aes256-sha2_256!
|
esp=aes256-sha2_256!
|
||||||
keyingtries=0
|
keyingtries=0
|
||||||
@ -22,4 +22,4 @@ conn tunnel #
|
|||||||
type=tunnel
|
type=tunnel
|
||||||
leftcert=r-vp2Cert.pem
|
leftcert=r-vp2Cert.pem
|
||||||
leftid="C=CH, O=GSB, CN=r-vp2"
|
leftid="C=CH, O=GSB, CN=r-vp2"
|
||||||
rightid="C=CH, O=GSB, CN=r-vp1"
|
rightid="C=CH, O=GSB, CN=r-vp1"
|
||||||
|
@ -5,7 +5,7 @@ config setup
|
|||||||
conn %default
|
conn %default
|
||||||
conn tunnel #
|
conn tunnel #
|
||||||
left=192.168.0.51
|
left=192.168.0.51
|
||||||
leftsubnet=192.168.0.0/16, 172.16.0.0/24
|
leftsubnet=192.168.1.0/24, 192.168.200.0/24, 172.16.0.0/24
|
||||||
right=192.168.0.52
|
right=192.168.0.52
|
||||||
rightsubnet=172.16.128.0/24
|
rightsubnet=172.16.128.0/24
|
||||||
ike=aes256-sha2_256-modp1024!
|
ike=aes256-sha2_256-modp1024!
|
||||||
@ -22,4 +22,4 @@ conn tunnel #
|
|||||||
type=tunnel
|
type=tunnel
|
||||||
leftcert=r-vp1Cert.pem
|
leftcert=r-vp1Cert.pem
|
||||||
leftid="C=CH, O=GSB, CN=r-vp1"
|
leftid="C=CH, O=GSB, CN=r-vp1"
|
||||||
rightid="C=CH, O=GSB, CN=r-vp2"
|
rightid="C=CH, O=GSB, CN=r-vp2"
|
||||||
|
@ -7,3 +7,4 @@
|
|||||||
- ssh-cli
|
- ssh-cli
|
||||||
- syslog-cli
|
- syslog-cli
|
||||||
- post
|
- post
|
||||||
|
- goss
|
||||||
|
Reference in New Issue
Block a user