Compare commits
20 Commits
v0.6.4-am
...
v0.7.3-tvi
Author | SHA1 | Date | |
---|---|---|---|
01b41a6dd7 | |||
e36173b079 | |||
575eaea422 | |||
8ea91004f8 | |||
6844d05974 | |||
d8371a0973 | |||
4621000ce1 | |||
f030228008 | |||
d953531bf8 | |||
7c6851eabc | |||
6dd2d19fc8 | |||
e8c0745257 | |||
1204c5e8a4 | |||
7776d94f6c | |||
733e45410e | |||
36c0d92c9f | |||
4d5921858d | |||
34935c235e | |||
72ff4e753c | |||
dc12c54a11 |
Binary file not shown.
@ -21,13 +21,13 @@ services:
|
|||||||
image: nextcloud
|
image: nextcloud
|
||||||
restart: always
|
restart: always
|
||||||
ports:
|
ports:
|
||||||
- 8080:80
|
- 5678:80
|
||||||
links:
|
links:
|
||||||
- db
|
- db
|
||||||
volumes:
|
volumes:
|
||||||
- nextcloud:/var/www/html
|
- ./nextcloud:/var/www/html
|
||||||
environment:
|
environment:
|
||||||
- MYSQL_PASSWORD=nextcloud
|
- MYSQL_PASSWORD=root
|
||||||
- MYSQL_DATABASE=nextcloud
|
- MYSQL_DATABASE=nextcloud
|
||||||
- MYSQL_USER=nextcloud
|
- MYSQL_USER=nextcloud
|
||||||
- MYSQL_HOST=db
|
- MYSQL_HOST=db
|
||||||
|
100
roles/docker-nextcloud/files/proxy
Normal file
100
roles/docker-nextcloud/files/proxy
Normal file
@ -0,0 +1,100 @@
|
|||||||
|
##
|
||||||
|
# You should look at the following URL's in order to grasp a solid understanding
|
||||||
|
# of Nginx configuration files in order to fully unleash the power of Nginx.
|
||||||
|
# https://www.nginx.com/resources/wiki/start/
|
||||||
|
# https://www.nginx.com/resources/wiki/start/topics/tutorials/config_pitfalls/
|
||||||
|
# https://wiki.debian.org/Nginx/DirectoryStructure
|
||||||
|
#
|
||||||
|
# In most cases, administrators will remove this file from sites-enabled/ and
|
||||||
|
# leave it as reference inside of sites-available where it will continue to be
|
||||||
|
# updated by the nginx packaging team.
|
||||||
|
#
|
||||||
|
# This file will automatically load configuration files provided by other
|
||||||
|
# applications, such as Drupal or Wordpress. These applications will be made
|
||||||
|
# available underneath a path with that package name, such as /drupal8.
|
||||||
|
#
|
||||||
|
# Please see /usr/share/doc/nginx-doc/examples/ for more detailed examples.
|
||||||
|
##
|
||||||
|
|
||||||
|
# Default server configuration
|
||||||
|
#
|
||||||
|
server {
|
||||||
|
listen 8080 default_server;
|
||||||
|
listen [::]:8080 default_server;
|
||||||
|
|
||||||
|
location / {
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
proxy_pass http://localhost:5678;
|
||||||
|
proxy_connect_timeout 900;
|
||||||
|
proxy_send_timeout 900;
|
||||||
|
proxy_read_timeout 900;
|
||||||
|
}
|
||||||
|
|
||||||
|
# SSL configuration
|
||||||
|
#
|
||||||
|
# listen 443 ssl default_server;
|
||||||
|
# listen [::]:443 ssl default_server;
|
||||||
|
#
|
||||||
|
# Note: You should disable gzip for SSL traffic.
|
||||||
|
# See: https://bugs.debian.org/773332
|
||||||
|
#
|
||||||
|
# Read up on ssl_ciphers to ensure a secure configuration.
|
||||||
|
# See: https://bugs.debian.org/765782
|
||||||
|
#
|
||||||
|
# Self signed certs generated by the ssl-cert package
|
||||||
|
# Don't use them in a production server!
|
||||||
|
#
|
||||||
|
# include snippets/snakeoil.conf;
|
||||||
|
|
||||||
|
# root /var/www/html;
|
||||||
|
|
||||||
|
# Add index.php to the list if you are using PHP
|
||||||
|
# index index.html index.htm index.nginx-debian.html;
|
||||||
|
|
||||||
|
# server_name _;
|
||||||
|
|
||||||
|
# location / {
|
||||||
|
# First attempt to serve request as file, then
|
||||||
|
# as directory, then fall back to displaying a 404.
|
||||||
|
# try_files $uri $uri/ =404;
|
||||||
|
# }
|
||||||
|
|
||||||
|
# pass PHP scripts to FastCGI server
|
||||||
|
#
|
||||||
|
#location ~ \.php$ {
|
||||||
|
# include snippets/fastcgi-php.conf;
|
||||||
|
#
|
||||||
|
# # With php-fpm (or other unix sockets):
|
||||||
|
# fastcgi_pass unix:/run/php/php7.3-fpm.sock;
|
||||||
|
# # With php-cgi (or other tcp sockets):
|
||||||
|
# fastcgi_pass 127.0.0.1:9000;
|
||||||
|
#}
|
||||||
|
|
||||||
|
# deny access to .htaccess files, if Apache's document root
|
||||||
|
# concurs with nginx's one
|
||||||
|
#
|
||||||
|
#location ~ /\.ht {
|
||||||
|
# deny all;
|
||||||
|
#}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# Virtual Host configuration for example.com
|
||||||
|
#
|
||||||
|
# You can move that to a different file under sites-available/ and symlink that
|
||||||
|
# to sites-enabled/ to enable it.
|
||||||
|
#
|
||||||
|
#server {
|
||||||
|
# listen 80;
|
||||||
|
# listen [::]:80;
|
||||||
|
#
|
||||||
|
# server_name example.com;
|
||||||
|
#
|
||||||
|
# root /var/www/example.com;
|
||||||
|
# index index.html;
|
||||||
|
#
|
||||||
|
# location / {
|
||||||
|
# try_files $uri $uri/ =404;
|
||||||
|
# }
|
||||||
|
#}
|
@ -2,6 +2,7 @@
|
|||||||
- name: Creation du repertoire nextcloud
|
- name: Creation du repertoire nextcloud
|
||||||
file:
|
file:
|
||||||
path: /root/nextcloud
|
path: /root/nextcloud
|
||||||
|
state: directory
|
||||||
|
|
||||||
- name: Copie du script get_docker
|
- name: Copie du script get_docker
|
||||||
copy:
|
copy:
|
||||||
@ -11,12 +12,20 @@
|
|||||||
- name: Execution du script get_docker
|
- name: Execution du script get_docker
|
||||||
script: /root/nextcloud/get_docker.sh
|
script: /root/nextcloud/get_docker.sh
|
||||||
|
|
||||||
- name: Copie de docker-compose
|
- name: Installation de docker-compose
|
||||||
copy:
|
shell: curl -L "https://github.com/docker/compose/releases/download/1.28.0/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
|
||||||
src: docker-compose.yml
|
|
||||||
dest: /usr/local/bin
|
|
||||||
|
|
||||||
- name: Execution de la commande docker-compose up -d
|
- name: Attribution des droits de docker compose
|
||||||
shell:
|
file:
|
||||||
cmd: docker-compose up -d
|
path: /usr/local/bin/docker-compose
|
||||||
|
mode: '755'
|
||||||
|
|
||||||
|
- name: Copie de docker-compose.yml
|
||||||
|
copy:
|
||||||
|
src: /root/tools/ansible/gsb2021/roles/docker-nextcloud/files/docker-compose.yml
|
||||||
|
dest: /root/nextcloud
|
||||||
|
|
||||||
|
- name: Execution du fichier docker-compose.yml
|
||||||
|
shell: docker-compose up -d
|
||||||
|
args:
|
||||||
chdir: /root/nextcloud
|
chdir: /root/nextcloud
|
||||||
|
@ -95,7 +95,7 @@ NRPEServer = enabled
|
|||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
Redémarrez le service NSClient++:
|
Redémarrez le service NSClient++ via le **cmd**:
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -114,4 +114,4 @@ systemctl restart icinga
|
|||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
Les services de la machine **srv-2012** apparaissent en **UP**.
|
Les services de la machine **srv-2012** apparaissent en **OK**.
|
||||||
|
75
roles/icinga/files/hostgroups_icinga.cfg
Normal file
75
roles/icinga/files/hostgroups_icinga.cfg
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
# Some generic hostgroup definitions
|
||||||
|
|
||||||
|
define hostgroup {
|
||||||
|
hostgroup_name all
|
||||||
|
alias All Servers
|
||||||
|
members *
|
||||||
|
}
|
||||||
|
|
||||||
|
define hostgroup {
|
||||||
|
hostgroup_name localhost
|
||||||
|
alias Debian GNU/Linux Servers
|
||||||
|
members localhost
|
||||||
|
}
|
||||||
|
|
||||||
|
define hostgroup {
|
||||||
|
hostgroup_name debian-servers
|
||||||
|
alias Serveurs distant
|
||||||
|
members s-infra, s-proxy, r-int, r-ext, s-adm, s-itil, s-mess
|
||||||
|
}
|
||||||
|
|
||||||
|
define hostgroup {
|
||||||
|
hostgroup_name ssh-servers
|
||||||
|
alias acces SSH
|
||||||
|
members s-adm, s-infra, s-proxy, r-int, r-ext, localhost, gwsio2, s-itil, s-mess, s-lb
|
||||||
|
}
|
||||||
|
|
||||||
|
define hostgroup {
|
||||||
|
hostgroup_name dns-servers
|
||||||
|
alias serveurs-dns
|
||||||
|
members s-infra, srv-2012
|
||||||
|
}
|
||||||
|
|
||||||
|
define hostgroup {
|
||||||
|
hostgroup_name dhcp-servers
|
||||||
|
alias serveurs-dhcp
|
||||||
|
members r-int, srv-2012
|
||||||
|
}
|
||||||
|
|
||||||
|
define hostgroup {
|
||||||
|
hostgroup_name http-servers
|
||||||
|
alias serveurs-web
|
||||||
|
members localhost, s-itil, s-adm
|
||||||
|
}
|
||||||
|
|
||||||
|
#define hostgroup {
|
||||||
|
# hostgroup_name email-servers
|
||||||
|
# alias serveurs-email
|
||||||
|
# members s-mess
|
||||||
|
# }
|
||||||
|
|
||||||
|
define hostgroup {
|
||||||
|
hostgroup_name proxy-servers
|
||||||
|
alias serveurs-proxy
|
||||||
|
members s-proxy
|
||||||
|
}
|
||||||
|
|
||||||
|
define hostgroup{
|
||||||
|
hostgroup_name windows-servers
|
||||||
|
alias windows-servers
|
||||||
|
members srv-2012
|
||||||
|
}
|
||||||
|
|
||||||
|
#define hostgroup{
|
||||||
|
# hostgroup_name switch
|
||||||
|
# alias switch
|
||||||
|
# members netgear
|
||||||
|
#}
|
||||||
|
|
||||||
|
define hostgroup{
|
||||||
|
hostgroup_name uptimegrp
|
||||||
|
alias uptimegrp
|
||||||
|
members s-infra, s-proxy, r-int, r-ext, s-adm, s-itil, s-mess, s-lb
|
||||||
|
}
|
||||||
|
|
||||||
|
|
14
roles/icinga/files/s-lb.cfg
Normal file
14
roles/icinga/files/s-lb.cfg
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
# A simple configuration file for monitoring the local host
|
||||||
|
# This can serve as an example for configuring other servers;
|
||||||
|
# Custom services specific to this host are added here, but services
|
||||||
|
# defined in nagios2-common_services.cfg may also apply.
|
||||||
|
#
|
||||||
|
|
||||||
|
define host{
|
||||||
|
use generic-host ; Name of host template$
|
||||||
|
host_name s-lb
|
||||||
|
alias debian-servers
|
||||||
|
address 192.168.100.10
|
||||||
|
parents r-int
|
||||||
|
}
|
||||||
|
|
14
roles/icinga/files/s-mess.cfg
Normal file
14
roles/icinga/files/s-mess.cfg
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
# A simple configuration file for monitoring the local host
|
||||||
|
# This can serve as an example for configuring other servers;
|
||||||
|
# Custom services specific to this host are added here, but services
|
||||||
|
# defined in nagios2-common_services.cfg may also apply.
|
||||||
|
#
|
||||||
|
|
||||||
|
define host{
|
||||||
|
use generic-host ; Name of host template$
|
||||||
|
host_name s-mess
|
||||||
|
alias nextcloud
|
||||||
|
address 172.16.0.7
|
||||||
|
parents r-int
|
||||||
|
}
|
||||||
|
|
@ -2,15 +2,42 @@
|
|||||||
- name: Installation des paquets python-mysqldb mariadb-server
|
- name: Installation des paquets python-mysqldb mariadb-server
|
||||||
apt:
|
apt:
|
||||||
name:
|
name:
|
||||||
- python-mysqldb
|
- python3-mysqldb
|
||||||
- mariadb-server
|
- mariadb-server
|
||||||
|
- python3-passlib
|
||||||
|
- python3-pymysql
|
||||||
state: present
|
state: present
|
||||||
|
|
||||||
|
- name: python3 par defaut
|
||||||
|
alternatives:
|
||||||
|
link: /usr/bin/python
|
||||||
|
name: python
|
||||||
|
path: /usr/bin/python3
|
||||||
|
priority: 10
|
||||||
|
|
||||||
- name: Create mysql database
|
- name: Create mysql database
|
||||||
mysql_db: name={{ maria_dbname }} state=present
|
mysql_db:
|
||||||
|
name: "{{ maria_dbname }}"
|
||||||
|
state: present
|
||||||
|
login_unix_socket: /var/run/mysqld/mysqld.sock
|
||||||
|
|
||||||
|
- name: Creation de l'utilisateur mysql avec tous les privileges
|
||||||
|
mysql_user:
|
||||||
|
name: "{{ maria_dbuser }}"
|
||||||
|
password: "{{ maria_dbpasswd }}"
|
||||||
|
priv: '*.*:ALL,GRANT'
|
||||||
|
login_unix_socket: /var/run/mysqld/mysqld.sock
|
||||||
|
with_items:
|
||||||
|
- "127.0.0.1"
|
||||||
|
# - ::1
|
||||||
|
# - localhost
|
||||||
|
|
||||||
- name: Copie du fichier my.cnf pour autorises toutes les adresses sur le port 3306
|
- name: Copie du fichier my.cnf pour autorises toutes les adresses sur le port 3306
|
||||||
copy : src=my.cnf dest=/etc/mysql/
|
copy:
|
||||||
|
src: my.cnf
|
||||||
|
dest: /etc/mysql/
|
||||||
|
|
||||||
- name: Redemarrage du service mariadb
|
- name: Redemarrage du service mariadb
|
||||||
shell: service mariadb restart
|
service:
|
||||||
|
name: mariadb
|
||||||
|
state: restarted
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
# This file describes the network interfaces available on your system
|
# This file describes the network interfaces available on your system
|
||||||
# and how to activate them. For more information, see interfaces(5).
|
# and how to activate them. For more information, see interfaces(5).
|
||||||
|
|
||||||
# The loopback network interface
|
# The loopback network interface
|
||||||
#auto lo
|
#auto lo
|
||||||
#iface lo inet loopback
|
#iface lo inet loopback
|
||||||
@ -22,8 +21,11 @@ allow-hotplug enp0s9
|
|||||||
iface enp0s9 inet static
|
iface enp0s9 inet static
|
||||||
address 192.168.1.2
|
address 192.168.1.2
|
||||||
netmask 255.255.255.0
|
netmask 255.255.255.0
|
||||||
up route add -net 172.16.128.0/24 gw 192.168.1.2
|
post-up /usr/sbin/ip route add 172.16.128.0/24 via 192.168.1.2
|
||||||
|
post-up /usr/sbin/ip route add 172.16.0.0/24 via 192.168.1.1
|
||||||
|
post-up /usr/sbin/ip route add 192.168.200.0/24 via 192.168.1.1
|
||||||
|
|
||||||
# up route add -net 172.16.128.0/24 gw 192.168.0.52
|
# up route add -net 172.16.128.0/24 gw 192.168.0.52
|
||||||
# up route add default gw 192.168.1.1
|
# up route add default gw 192.168.1.1
|
||||||
# post-up /bin/bash /root/iptables-vpn
|
# post-up /bin/bash /root/iptables-vpn
|
||||||
post-up /etc/init.d/ipsec restart
|
post-up /etc/init.d/ipsec restart
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
# This file describes the network interfaces available on your system
|
# This file describes the network interfaces available on your system
|
||||||
# and how to activate them. For more information, see interfaces(5).
|
# and how to activate them. For more information, see interfaces(5).
|
||||||
|
|
||||||
# The loopback network interface
|
# The loopback network interface
|
||||||
#auto lo
|
#auto lo
|
||||||
#iface lo inet loopback
|
#iface lo inet loopback
|
||||||
@ -22,7 +21,9 @@ allow-hotplug enp0s9
|
|||||||
iface enp0s9 inet static
|
iface enp0s9 inet static
|
||||||
address 192.168.0.52
|
address 192.168.0.52
|
||||||
netmask 255.255.255.0
|
netmask 255.255.255.0
|
||||||
# up route add -net 192.168.1.0/24 gw 172.16.128.254
|
post-up /usr/sbin/ip route add 192.168.1.0/24 via 172.16.128.254/24
|
||||||
up route add -net 192.168.1.0/24 gw 192.168.0.52
|
post-up /usr/sbin/ip route add 172.16.0.0/24 via 172.16.128.254/24
|
||||||
|
|
||||||
|
# up route add -net 192.168.1.0/24 gw 192.168.0.52
|
||||||
# post-up /bin/bash /root/iptables-vpn
|
# post-up /bin/bash /root/iptables-vpn
|
||||||
post-up /etc/init.d/ipsec restart
|
post-up /etc/init.d/ipsec restart
|
||||||
|
@ -9,3 +9,6 @@ iface lo inet loopback
|
|||||||
allow-hotplug enp0s3
|
allow-hotplug enp0s3
|
||||||
iface enp0s3 inet dhcp
|
iface enp0s3 inet dhcp
|
||||||
|
|
||||||
|
allow-hotplug enp0s8
|
||||||
|
iface enp0s8 inet dhcp
|
||||||
|
|
||||||
|
@ -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
|
||||||
|
|
||||||
listen stats
|
listen stats
|
||||||
bind *:8080
|
bind *:8080
|
||||||
|
@ -13,4 +13,4 @@ mysql_secure_installation
|
|||||||
sed -i 's/127\.0\.0\.1/0\.0\.0\.0/g' /etc/mysql/my.cnf
|
sed -i 's/127\.0\.0\.1/0\.0\.0\.0/g' /etc/mysql/my.cnf
|
||||||
mysql -uroot -p -e 'USE mysql; UPDATE `user` SET `Host`="%" WHERE `User`="root" AND `Host`="localhost"; DELETE FROM `user` WHERE `Host` != "%" AND `User`="root"; FLUSH PRIVILEGES;'
|
mysql -uroot -p -e 'USE mysql; UPDATE `user` SET `Host`="%" WHERE `User`="root" AND `Host`="localhost"; DELETE FROM `user` WHERE `Host` != "%" AND `User`="root"; FLUSH PRIVILEGES;'
|
||||||
|
|
||||||
service mysql restart
|
service mysql restart
|
||||||
|
2
roles/s-lb-wordpress/defaults/main.yml
Normal file
2
roles/s-lb-wordpress/defaults/main.yml
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
depl_url: "http://s-adm.gsb.adm/gsbstore/"
|
||||||
|
depl_wordpress: "wordpress-5.6-fr_FR.tar.gz"
|
@ -5,9 +5,11 @@
|
|||||||
state: directory
|
state: directory
|
||||||
- name: download and extract wordpress
|
- name: download and extract wordpress
|
||||||
unarchive:
|
unarchive:
|
||||||
src: http://depl/gsbstore/wordpress-5.6-fr_FR.tar.gz
|
src: "{{ depl_url }}/{{ depl_wordpress }}"
|
||||||
dest: /home/
|
dest: /home/
|
||||||
remote_src: yes
|
remote_src: yes
|
||||||
|
owner: www-data
|
||||||
|
group: www-data
|
||||||
|
|
||||||
- name: Copy sample config file
|
- name: Copy sample config file
|
||||||
command: mv /home/wordpress/wp-config-sample.php /home/wordpress/wp-config.php creates=/home/wordpress/wp-config.php
|
command: mv /home/wordpress/wp-config-sample.php /home/wordpress/wp-config.php creates=/home/wordpress/wp-config.php
|
||||||
@ -23,6 +25,14 @@
|
|||||||
- {'regexp': "define\\('DB_USER', '(.)+'\\);", 'line': "define('DB_USER', '{{wp_mysql_user}}');"}
|
- {'regexp': "define\\('DB_USER', '(.)+'\\);", 'line': "define('DB_USER', '{{wp_mysql_user}}');"}
|
||||||
- {'regexp': "define\\('DB_PASSWORD', '(.)+'\\);", 'line': "define('DB_PASSWORD', '{{wp_mysql_password}}');"}
|
- {'regexp': "define\\('DB_PASSWORD', '(.)+'\\);", 'line': "define('DB_PASSWORD', '{{wp_mysql_password}}');"}
|
||||||
|
|
||||||
|
|
||||||
|
- name: Attributions des permissions
|
||||||
|
file:
|
||||||
|
path: /home/wordpress
|
||||||
|
recurse: yes
|
||||||
|
owner: 33
|
||||||
|
group: 33
|
||||||
|
|
||||||
# - name: Fix permissions
|
# - name: Fix permissions
|
||||||
# shell: chown -R www-data /var/www/wordpress/*
|
# shell: chown -R www-data /var/www/wordpress/*
|
||||||
#
|
#
|
||||||
|
@ -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
|
||||||
@ -20,3 +20,4 @@ conn tunnel #
|
|||||||
auto=start
|
auto=start
|
||||||
keyexchange=ikev2
|
keyexchange=ikev2
|
||||||
type=tunnel
|
type=tunnel
|
||||||
|
#
|
||||||
|
@ -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!
|
||||||
@ -20,3 +20,4 @@ conn tunnel #
|
|||||||
auto=start
|
auto=start
|
||||||
keyexchange=ikev2
|
keyexchange=ikev2
|
||||||
type=tunnel
|
type=tunnel
|
||||||
|
#
|
||||||
|
1
s-lb-bd.retry
Normal file
1
s-lb-bd.retry
Normal file
@ -0,0 +1 @@
|
|||||||
|
localhost
|
1
s-mess.retry
Normal file
1
s-mess.retry
Normal file
@ -0,0 +1 @@
|
|||||||
|
localhost
|
1
s-nas.retry
Normal file
1
s-nas.retry
Normal file
@ -0,0 +1 @@
|
|||||||
|
localhost
|
Reference in New Issue
Block a user