Compare commits
60 Commits
12ba240411
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 965ad5cde2 | |||
| 9c6094cef8 | |||
| 4f8e5f4454 | |||
| ca02faf748 | |||
| 1c1ae9464c | |||
| 451baa5f9a | |||
| b87c60c41e | |||
| e125f9952f | |||
| 71e9cf6551 | |||
| fc9c1548c3 | |||
| b5a4edc181 | |||
| fea739f0e6 | |||
| e72d9aac70 | |||
| eece49f53b | |||
| b14e82c6c2 | |||
| 56ba319f2f | |||
| c443ce7c79 | |||
| dc61dfc049 | |||
| 81e1f3fb3e | |||
| 86aec11206 | |||
| b3babf6831 | |||
| 4d92340f9b | |||
| ae60fa01a5 | |||
| 9181734c51 | |||
| 1849c6d72d | |||
| 5525fa3e73 | |||
| 5832d0b938 | |||
| 4310ae08b0 | |||
| 385b4a6802 | |||
| c30543280b | |||
| 7e5fe673cf | |||
| 032ea670ef | |||
| 00457b2ac7 | |||
| 095f5de034 | |||
| e60c1b81d1 | |||
| eb2c7cc15a | |||
| f39babaf5d | |||
| b40d3249fb | |||
| 720fb84fb4 | |||
| 70eeebe4c4 | |||
| baba4c4b7d | |||
| ab4ef8f831 | |||
| 618eaa0bf7 | |||
| 924e6bbf03 | |||
| 03951153c1 | |||
| ee5819c82c | |||
| 062d1a6fc7 | |||
| 81398e847e | |||
| bc330beebf | |||
| ba1d600cd8 | |||
| de82385bec | |||
| 509dc48851 | |||
| 88928adddb | |||
| ef7c88f64d | |||
| ed8887e5be | |||
| 4f7da3ae5d | |||
| d68e39127a | |||
| 3ab7d16906 | |||
| ff3ed5060a | |||
| 79d360b2bc |
Vendored
+4
-1
@@ -14,5 +14,8 @@
|
|||||||
"ansible.ansible.path": "/home/chris/devel/git/git.oopen.de/ansible/oopen-server/.venv/bin/ansible",
|
"ansible.ansible.path": "/home/chris/devel/git/git.oopen.de/ansible/oopen-server/.venv/bin/ansible",
|
||||||
"ansible.python.interpreterPath": "${workspaceFolder}/.venv/bin/python3",
|
"ansible.python.interpreterPath": "${workspaceFolder}/.venv/bin/python3",
|
||||||
"ansible.validation.lint.path": "/home/chris/devel/git/git.oopen.de/ansible/oopen-server/.venv/bin/ansible-lint",
|
"ansible.validation.lint.path": "/home/chris/devel/git/git.oopen.de/ansible/oopen-server/.venv/bin/ansible-lint",
|
||||||
"ansible.ansibleNavigator.path": "/home/chris/devel/git/git.oopen.de/ansible/oopen-server/.venv/bin/ansible-navigator"
|
"ansible.ansibleNavigator.path": "/home/chris/devel/git/git.oopen.de/ansible/oopen-server/.venv/bin/ansible-navigator",
|
||||||
|
"yaml.customTags": [
|
||||||
|
"!vault scalar"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
# deb822 ist das neue Konfigurationsformats für APT-Quellen (Repositories).
|
# deb822 ist das neue Konfigurationsformats für APT-Quellen (Repositories).
|
||||||
# Es basiert auf der Debian Control Syntax nach RFC 822 – daher der Name
|
# Es basiert auf der Debian Control Syntax nach RFC 822 – daher der Name
|
||||||
@@ -35,13 +34,12 @@
|
|||||||
|
|
||||||
pre_tasks:
|
pre_tasks:
|
||||||
- name: Sicherstellen, dass wir Debian sind
|
- name: Sicherstellen, dass wir Debian sind
|
||||||
assert:
|
ansible.builtin.assert:
|
||||||
that:
|
that:
|
||||||
- ansible_facts['os_family'] == "Debian"
|
- ansible_facts['os_family'] == "Debian"
|
||||||
fail_msg: "Dieses Playbook ist nur für Debian geeignet."
|
fail_msg: "Dieses Playbook ist nur für Debian geeignet."
|
||||||
|
|
||||||
tasks:
|
tasks:
|
||||||
|
|
||||||
- name: Keyring für Debian-Archive sicherstellen (falls Signed-By genutzt)
|
- name: Keyring für Debian-Archive sicherstellen (falls Signed-By genutzt)
|
||||||
ansible.builtin.apt:
|
ansible.builtin.apt:
|
||||||
name: debian-archive-keyring
|
name: debian-archive-keyring
|
||||||
@@ -54,7 +52,13 @@
|
|||||||
dest: /etc/apt/sources.list.before-trixie
|
dest: /etc/apt/sources.list.before-trixie
|
||||||
remote_src: true
|
remote_src: true
|
||||||
force: false
|
force: false
|
||||||
ignore_errors: true
|
owner: root
|
||||||
|
group: root
|
||||||
|
mode: "0644"
|
||||||
|
failed_when:
|
||||||
|
- backup_result.failed
|
||||||
|
- "'No such file or directory' not in backup_result.msg"
|
||||||
|
register: backup_result
|
||||||
|
|
||||||
- name: Alte /etc/apt/sources.list deaktivieren (leere Kommentar-Datei)
|
- name: Alte /etc/apt/sources.list deaktivieren (leere Kommentar-Datei)
|
||||||
ansible.builtin.copy:
|
ansible.builtin.copy:
|
||||||
@@ -90,6 +94,7 @@
|
|||||||
group: root
|
group: root
|
||||||
mode: "0644"
|
mode: "0644"
|
||||||
when: enable_backports
|
when: enable_backports
|
||||||
|
|
||||||
- name: Backports-Repo entfernen wenn deaktiviert
|
- name: Backports-Repo entfernen wenn deaktiviert
|
||||||
ansible.builtin.file:
|
ansible.builtin.file:
|
||||||
path: /etc/apt/sources.list.d/backports.sources
|
path: /etc/apt/sources.list.d/backports.sources
|
||||||
@@ -107,7 +112,7 @@
|
|||||||
|
|
||||||
- name: APT-Cache aktualisieren
|
- name: APT-Cache aktualisieren
|
||||||
ansible.builtin.apt:
|
ansible.builtin.apt:
|
||||||
update_cache: yes
|
update_cache: true
|
||||||
cache_valid_time: "{{ apt_cache_valid_time }}"
|
cache_valid_time: "{{ apt_cache_valid_time }}"
|
||||||
|
|
||||||
- name: Verifikation - zeigen, ob Suites auf trixie stehen
|
- name: Verifikation - zeigen, ob Suites auf trixie stehen
|
||||||
@@ -118,4 +123,3 @@
|
|||||||
- name: Ausgabe anzeigen (nur Info)
|
- name: Ausgabe anzeigen (nur Info)
|
||||||
ansible.builtin.debug:
|
ansible.builtin.debug:
|
||||||
msg: "{{ apt_policy.stdout.split('\n') | select('search', 'trixie') | list | join('\n') }}"
|
msg: "{{ apt_policy.stdout.split('\n') | select('search', 'trixie') | list | join('\n') }}"
|
||||||
|
|
||||||
|
|||||||
@@ -416,4 +416,3 @@ git_firewall_repository:
|
|||||||
root_user:
|
root_user:
|
||||||
name: root
|
name: root
|
||||||
password: $6$J1ssJfdshf/$mknQEPDcW4HN5.wFfawbamamywI7F7fhdZmaR1abNrc4DA7DNRx766lz3ygf9YV3gcmRq3QhJ3fBVlkwGMCvq.
|
password: $6$J1ssJfdshf/$mknQEPDcW4HN5.wFfawbamamywI7F7fhdZmaR1abNrc4DA7DNRx766lz3ygf9YV3gcmRq3QhJ3fBVlkwGMCvq.
|
||||||
|
|
||||||
|
|||||||
+25
-17
@@ -125,7 +125,6 @@ copy_plain_files_journald:
|
|||||||
dest_path: /etc/systemd/journald.conf.d/50-MaxFileSec.conf
|
dest_path: /etc/systemd/journald.conf.d/50-MaxFileSec.conf
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# copy_plain_files_sysctl: []
|
# copy_plain_files_sysctl: []
|
||||||
copy_plain_files_sysctl:
|
copy_plain_files_sysctl:
|
||||||
|
|
||||||
@@ -673,6 +672,7 @@ apt_initial_install_trixie:
|
|||||||
- bash
|
- bash
|
||||||
- bash-completion
|
- bash-completion
|
||||||
- bc
|
- bc
|
||||||
|
- bind9-dnsutils
|
||||||
- bridge-utils
|
- bridge-utils
|
||||||
- btrfs-progs
|
- btrfs-progs
|
||||||
- bzip2
|
- bzip2
|
||||||
@@ -682,7 +682,6 @@ apt_initial_install_trixie:
|
|||||||
- curl
|
- curl
|
||||||
- dbus
|
- dbus
|
||||||
- debian-keyring
|
- debian-keyring
|
||||||
- dnsutils
|
|
||||||
- dselect
|
- dselect
|
||||||
- ethtool
|
- ethtool
|
||||||
- fdisk
|
- fdisk
|
||||||
@@ -697,7 +696,6 @@ apt_initial_install_trixie:
|
|||||||
- gettext-doc
|
- gettext-doc
|
||||||
- git
|
- git
|
||||||
- groff
|
- groff
|
||||||
- groff
|
|
||||||
- haveged
|
- haveged
|
||||||
- hdparm
|
- hdparm
|
||||||
- htop
|
- htop
|
||||||
@@ -731,7 +729,7 @@ apt_initial_install_trixie:
|
|||||||
- lsof
|
- lsof
|
||||||
- lua5.4
|
- lua5.4
|
||||||
- lynx
|
- lynx
|
||||||
- man
|
- man-db
|
||||||
- mawk
|
- mawk
|
||||||
- mc
|
- mc
|
||||||
- moreutils
|
- moreutils
|
||||||
@@ -746,6 +744,11 @@ apt_initial_install_trixie:
|
|||||||
- perl
|
- perl
|
||||||
- perl-doc
|
- perl-doc
|
||||||
- psmisc
|
- psmisc
|
||||||
|
- python3
|
||||||
|
- python3-apt
|
||||||
|
- python3-systemd
|
||||||
|
- python-apt-common
|
||||||
|
- python-is-python3
|
||||||
- quota
|
- quota
|
||||||
- quotatool
|
- quotatool
|
||||||
- rblcheck
|
- rblcheck
|
||||||
@@ -779,7 +782,6 @@ apt_initial_install_trixie:
|
|||||||
- wget
|
- wget
|
||||||
- whois
|
- whois
|
||||||
- wipe
|
- wipe
|
||||||
- wipe
|
|
||||||
- zip
|
- zip
|
||||||
- zsh
|
- zsh
|
||||||
|
|
||||||
@@ -1915,11 +1917,12 @@ apt_extra_pkgs: []
|
|||||||
apt_install: {}
|
apt_install: {}
|
||||||
apt_install_state: latest
|
apt_install_state: latest
|
||||||
|
|
||||||
apt_remove:
|
apt_remove: []
|
||||||
- apt-transport-tor
|
# apt_remove:
|
||||||
- tor
|
# - apt-transport-tor
|
||||||
- tor-geoipdb
|
# - tor
|
||||||
- torsocks
|
# - tor-geoipdb
|
||||||
|
# - torsocks
|
||||||
|
|
||||||
apt_remove_purge: false
|
apt_remove_purge: false
|
||||||
|
|
||||||
@@ -2377,9 +2380,6 @@ extra_system_user: []
|
|||||||
|
|
||||||
|
|
||||||
entries_authorized_key: []
|
entries_authorized_key: []
|
||||||
#entries_authorized_key:
|
|
||||||
# - user: root
|
|
||||||
# - key: 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDcc4brtgGW0xP2KiZGq5xsyUKcNiYF72zQ49Z0lqx3iu0zj9oz79oGZY1N9jCeKG30AsbwL+4H6/l2hAekFZu6fIwuiRgCVRAwYrnnlOGDAnYOGHfks23pk2BU0/fb2VnxiK967FvpJ/xDP49t1UC5voX/O2MTkz6NROJPwIClHgnwN1bg+C09UpJNmmdROi8myhiu1/aYbAWDfQzVUnHio0q3vBM16ZUQkoIHxQT4fF8elS408n0jd9WJHyRtLB/mCMI6O3G2yHdPVciqKwgRwRtJ8hDjmFfyeLtxb4ADpa2Q/f6MuJI0elxbxjp8l2XKjVSwPJ8GKomC16HfgFMrnUNQcx9YMrXB26f+lperf9NlwbQtXZffj9M+BxTAFvh+1Q/iIHqRat2Bb/8OUY9JI2zuWUliffqb5Kbzjik4vMqZvI2ED2zphsPcpLST7u+4z40vZliBf1F4P2vDBfIRK87ldfJQQw6saMZznjZPNV7CA+K7IFCpOz0wuoVE3wOka8hdYmMIMno34Zf6P+xuTaAPXJOCubKuhicUlhtX7q72Pln5kuvbO3ZRgEK3XnyIWeAd2rkaU6XVo7W19043e9HkkbG8nZETYu7TGFhufXyloinde5XLyW295BS8fKa1AteJPDLY4ClF2PZiWbxWRjAhlRAlgXgup09rN2HHjw== root@b.ns'
|
|
||||||
|
|
||||||
create_sftp_group: false
|
create_sftp_group: false
|
||||||
|
|
||||||
@@ -2598,7 +2598,7 @@ bind9_notify_source: {}
|
|||||||
bind9_gateway_allow_query:
|
bind9_gateway_allow_query:
|
||||||
- local-net
|
- local-net
|
||||||
|
|
||||||
#bind9_gateway_allow_query_cache: {}
|
# ind9_gateway_allow_query_cache: {}
|
||||||
bind9_gateway_allow_query_cache:
|
bind9_gateway_allow_query_cache:
|
||||||
- local-net
|
- local-net
|
||||||
|
|
||||||
@@ -2625,6 +2625,8 @@ ntp_server: {}
|
|||||||
# Firewall repository
|
# Firewall repository
|
||||||
# ---
|
# ---
|
||||||
|
|
||||||
|
git_default_branch: main
|
||||||
|
|
||||||
git_firewall_repository: {}
|
git_firewall_repository: {}
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
@@ -2987,6 +2989,14 @@ copy_plain_files_postfwd:
|
|||||||
src_path: mailserver/etc/postfix/postfwd.bl-user
|
src_path: mailserver/etc/postfix/postfwd.bl-user
|
||||||
dest_path: /etc/postfix/postfwd.bl-user
|
dest_path: /etc/postfix/postfwd.bl-user
|
||||||
|
|
||||||
|
- name: postfwd.high_rate_ip
|
||||||
|
src_path: mailserver/etc/postfix/postfwd.high_rate_ip
|
||||||
|
dest_path: /etc/postfix/postfwd.high_rate_ip
|
||||||
|
|
||||||
|
- name: postfwd.high_rate_hostname
|
||||||
|
src_path: mailserver/etc/postfix/postfwd.high_rate_hostname
|
||||||
|
dest_path: /etc/postfix/postfwd.high_rate_hostname
|
||||||
|
|
||||||
- name: postfwd.bl-recipient-exeeds-msg-size-20mb
|
- name: postfwd.bl-recipient-exeeds-msg-size-20mb
|
||||||
src_path: mailserver/etc/postfix/postfwd.bl-recipient-exeeds-msg-size-20mb
|
src_path: mailserver/etc/postfix/postfwd.bl-recipient-exeeds-msg-size-20mb
|
||||||
dest_path: /etc/postfix/postfwd.bl-recipient-exeeds-msg-size-20mb
|
dest_path: /etc/postfix/postfwd.bl-recipient-exeeds-msg-size-20mb
|
||||||
@@ -3102,7 +3112,7 @@ website_name_postfixadmin:
|
|||||||
# --\n
|
# --\n
|
||||||
# O.OPEN | Phone: +49 30 / 290 484 91\n
|
# O.OPEN | Phone: +49 30 / 290 484 91\n
|
||||||
# Erkelenzdamm 21 | Fax: +49 30 / 290 484 99\n
|
# Erkelenzdamm 21 | Fax: +49 30 / 290 484 99\n
|
||||||
#D-10999 Berlin | E-MAIL: oo@oopen.de\n
|
# -10999 Berlin | E-MAIL: oo@oopen.de\n
|
||||||
# "
|
# "
|
||||||
email_welcome_message:
|
email_welcome_message:
|
||||||
|
|
||||||
@@ -3285,8 +3295,6 @@ redhat_services_active_and_started:
|
|||||||
- tor
|
- tor
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ==============================
|
# ==============================
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,175 +0,0 @@
|
|||||||
---
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/ansible_dependencies
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/ansible_user
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/basic.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
copy_additional_plain_files_sysctl:
|
|
||||||
|
|
||||||
- name: enable-ipv6
|
|
||||||
src_path: etc/sysctl.d/30-enable-ipv6.conf
|
|
||||||
dest_path: /etc/sysctl.d/30-enable-ipv6.conf
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/sshd.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
#sshd_hostkeyalgorithms:
|
|
||||||
# - ssh-ed25519
|
|
||||||
# - ssh-ed25519-cert-v01@openssh.com
|
|
||||||
# - rsa-sha2-256
|
|
||||||
# - rsa-sha2-512
|
|
||||||
# - ecdsa-sha2-nistp256
|
|
||||||
# - rsa-sha2-256-cert-v01@openssh.com
|
|
||||||
# - rsa-sha2-512-cert-v01@openssh.com
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/apt.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/systemd-resolved.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
systemd_resolved: true
|
|
||||||
|
|
||||||
# CyberGhost - Schnelle Verbindung mit Keine-Logs-Datenschutzrichtlinie
|
|
||||||
# Primäre DNS-Adresse: 38.132.106.139
|
|
||||||
# Sekundäre DNS-Adresse: 194.187.251.67
|
|
||||||
#
|
|
||||||
# Cloudflare (USA) Bester kostenloser DNS-Server für Gaming mit zuverlässigen Verbindungen
|
|
||||||
# primäre DNS-Adresse
|
|
||||||
# IPv4: 1.1.1.1
|
|
||||||
# IPv6: 2606:4700:4700::1111
|
|
||||||
# sekundäre DNS-Adresse
|
|
||||||
# IPv4: 1.0.0.1
|
|
||||||
# IPv6: 2606:4700:4700::1001
|
|
||||||
#
|
|
||||||
# Google (USA) Public DNS - Großartige Kombination aus Geschwindigkeit und Sicherheit
|
|
||||||
# primäre DNS-Adresse
|
|
||||||
# IPv4: 8.8.8.8
|
|
||||||
# IPv6: 2001:4860:4860::8888
|
|
||||||
# sekundäre DNS-Adresse
|
|
||||||
# IPv4: 8.8.4.4
|
|
||||||
# IPv6: 2001:4860:4860::8844
|
|
||||||
#
|
|
||||||
# Quad9 (CH) - Blockiert mühelos schädliche Seiten und verhindert Phishing-Betrug
|
|
||||||
# primäre DNS-Adresse
|
|
||||||
# IPv4: 9.9.9.9
|
|
||||||
# IPv6: 2620:fe::fe
|
|
||||||
# sekundäre DNS-Adresse
|
|
||||||
# IPv4: 149.112.112.112
|
|
||||||
# IPv6: 2620:fe::9
|
|
||||||
#
|
|
||||||
# OpenNIC - https://www.opennic.org/
|
|
||||||
# IPv4: 195.10.195.195 - ns31.de
|
|
||||||
# IPv4: 94.16.114.254 - ns28.de
|
|
||||||
# IPv4: 51.254.162.59 - ns9.de
|
|
||||||
# IPv4: 194.36.144.87 - ns29.de
|
|
||||||
# IPv6: 2a00:f826:8:2::195 - ns31.de
|
|
||||||
#
|
|
||||||
# Freifunk München (normales DNS, DNS-over-TLS und DNS-over-HTTPS)
|
|
||||||
# IPv4: 5.1.66.255
|
|
||||||
# IPv6: 2001:678:e68:f000::
|
|
||||||
# Servername für DNS-over-TLS: dot.ffmuc.net
|
|
||||||
# IPv4: 185.150.99.255
|
|
||||||
# IPv6: 2001:678:ed0:f000::
|
|
||||||
# Servername für DNS-over-TLS: dot.ffmuc.net
|
|
||||||
# für iOS 14+: DoT-Server-Konfiguration (unsigniert, vom PrHdb)
|
|
||||||
resolved_nameserver:
|
|
||||||
- 127.0.0.1
|
|
||||||
|
|
||||||
# search domains
|
|
||||||
#
|
|
||||||
# If there are more than one search domains, then specify them here in the order in which
|
|
||||||
# the resolver should also search them
|
|
||||||
#
|
|
||||||
#resolved_domains: []
|
|
||||||
resolved_domains:
|
|
||||||
- ~.
|
|
||||||
- akb.netz
|
|
||||||
|
|
||||||
resolved_dnssec: false
|
|
||||||
|
|
||||||
# dns.as250.net: 194.150.168.168
|
|
||||||
#
|
|
||||||
resolved_fallback_nameserver:
|
|
||||||
- 194.150.168.168
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/cron.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
cron_user_special_time_entries:
|
|
||||||
|
|
||||||
- name: "Restart NTP service 'ntpsec'"
|
|
||||||
special_time: reboot
|
|
||||||
job: "sleep 15 ; /bin/systemctl restart ntpsec"
|
|
||||||
insertafter: PATH
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/users.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/users-systemfiles.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/webadmin-user.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/sudoers.yml
|
|
||||||
# ---
|
|
||||||
#
|
|
||||||
# see: roles/common/tasks/vars
|
|
||||||
|
|
||||||
git_firewall_repository:
|
|
||||||
name: ipt-gateway
|
|
||||||
repo: https://git.oopen.de/firewall/ipt-gateway
|
|
||||||
dest: /usr/local/src/ipt-gateway
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/caching-nameserver.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
install_bind_packages: true
|
|
||||||
|
|
||||||
bind9_gateway_listen_on_v6:
|
|
||||||
- none
|
|
||||||
|
|
||||||
bind9_gateway_listen_on:
|
|
||||||
- any
|
|
||||||
|
|
||||||
# ==============================
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by scripts/reset_root_passwd.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
root_user:
|
|
||||||
name: root
|
|
||||||
password: $y$j9T$IVBTpn.OrI6YiQ9q3fA8b1$Y1bmID5yXJbKfoLFt1VmQs6LezeTj5/1M9ppZBD2Pn4
|
|
||||||
|
|
||||||
@@ -107,14 +107,14 @@ insert_root_ssh_keypair: true
|
|||||||
|
|
||||||
root_ssh_keypair:
|
root_ssh_keypair:
|
||||||
- name: id-rsa-dehydrated
|
- name: id-rsa-dehydrated
|
||||||
priv_key_src: a.mx/root/.ssh/a.mx-id_rsa-dehydrated
|
priv_key_src: a.mx.oopen.de/root/.ssh/a.mx-id_rsa-dehydrated
|
||||||
priv_key_dest: /root/.ssh/id_rsa-dehydrated
|
priv_key_dest: /root/.ssh/id_rsa-dehydrated
|
||||||
pub_key_src: a.mx/root/.ssh/a.mx-id_rsa-dehydrated.pub
|
pub_key_src: a.mx.oopen.de/root/.ssh/a.mx-id_rsa-dehydrated.pub
|
||||||
pub_key_dest: /root/.ssh/id_rsa-dehydrated.pub
|
pub_key_dest: /root/.ssh/id_rsa-dehydrated.pub
|
||||||
- name: id-rsa-opendkim
|
- name: id-rsa-opendkim
|
||||||
priv_key_src: a.mx/root/.ssh/a.mx-id_rsa-opendkim
|
priv_key_src: a.mx.oopen.de/root/.ssh/a.mx-id_rsa-opendkim
|
||||||
priv_key_dest: /root/.ssh/id_rsa-opendkim
|
priv_key_dest: /root/.ssh/id_rsa-opendkim
|
||||||
pub_key_src: a.mx/root/.ssh/a.mx-id_rsa-opendkim.pub
|
pub_key_src: a.mx.oopen.de/root/.ssh/a.mx-id_rsa-opendkim.pub
|
||||||
pub_key_dest: /root/.ssh/id_rsa-opendkim.pub
|
pub_key_dest: /root/.ssh/id_rsa-opendkim.pub
|
||||||
|
|
||||||
|
|
||||||
@@ -151,53 +151,6 @@ root_ssh_keypair:
|
|||||||
# vars used by roles/common/tasks/copy_files.yml
|
# vars used by roles/common/tasks/copy_files.yml
|
||||||
# ---
|
# ---
|
||||||
|
|
||||||
copy_plain_files:
|
|
||||||
|
|
||||||
# /root/bin/monitoring
|
|
||||||
#
|
|
||||||
- name: monitoring_check_cert_for_dovecot.conf
|
|
||||||
src_path: a.mx/root/bin/monitoring/conf/check_cert_for_dovecot.conf
|
|
||||||
dest_path: /root/bin/monitoring/conf/check_cert_for_dovecot.conf
|
|
||||||
|
|
||||||
# /root/bin/postfix
|
|
||||||
#
|
|
||||||
- name: postfix_create_opendkim_key.conf
|
|
||||||
src_path: a.mx/root/bin/postfix/conf/create_opendkim_key.conf
|
|
||||||
dest_path: /root/bin/postfix/conf/create_opendkim_key.conf
|
|
||||||
|
|
||||||
- name: postfix_postfix_add_mailboxes.conf
|
|
||||||
src_path: a.mx/root/bin/postfix/conf/postfix_add_mailboxes.conf
|
|
||||||
dest_path: /root/bin/postfix/conf/postfix_add_mailboxes.conf
|
|
||||||
|
|
||||||
- name: postfix_sent_userinfo_postfix.conf
|
|
||||||
src_path: a.mx/root/bin/postfix/conf/sent_userinfo_postfix.conf
|
|
||||||
dest_path: /root/bin/postfix/conf/sent_userinfo_postfix.conf
|
|
||||||
|
|
||||||
- name: postfix_whitelist_mb_sigs.conf
|
|
||||||
src_path: a.mx/root/bin/postfix/conf/whitelist_mb_sigs.conf
|
|
||||||
dest_path: /root/bin/postfix/conf/whitelist_mb_sigs.conf
|
|
||||||
|
|
||||||
|
|
||||||
copy_plain_files_postfwd_host_specific:
|
|
||||||
|
|
||||||
# Postfix Firewall postfwd
|
|
||||||
#
|
|
||||||
- name: postfwd.wl-user
|
|
||||||
src_path: a.mx/etc/postfix/postfwd.wl-user
|
|
||||||
dest_path: /etc/postfix/postfwd.wl-user
|
|
||||||
|
|
||||||
- name: postfwd.bl-recipient-exeeds-msg-size-20mb
|
|
||||||
src_path: a.mx/etc/postfix/postfwd.bl-recipient-exeeds-msg-size-20mb
|
|
||||||
dest_path: /etc/postfix/postfwd.bl-recipient-exeeds-msg-size-20mb
|
|
||||||
|
|
||||||
|
|
||||||
#copy_template_files: []
|
|
||||||
#
|
|
||||||
# - name: mailsystem_install_amavis.conf
|
|
||||||
# src_path: usr/local/src/mailsystem/conf/install_amavis.conf.j2
|
|
||||||
# dest_path: /usr/local/src/mailsystem/conf/install_amavis.conf
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
# vars used by roles/common/tasks/config_files_mailsystem_scripts.yml
|
# vars used by roles/common/tasks/config_files_mailsystem_scripts.yml
|
||||||
@@ -231,30 +184,31 @@ si_authorisation_signature: abb4ec6b194639f3d123154f1b971843a3b8751d8c1bcdc7d07e
|
|||||||
#
|
#
|
||||||
website_name_postfixadmin: adm.oopen.de
|
website_name_postfixadmin: adm.oopen.de
|
||||||
|
|
||||||
email_welcome_message: "\n
|
email_welcome_message: |
|
||||||
Hallo,\n
|
|
||||||
|
|
||||||
Ihre/Deine neue E-Mail Adresse ist eingerichtet.\n
|
Hallo,
|
||||||
|
|
||||||
O.OPEN\n
|
Ihre/Deine neue E-Mail Adresse ist eingerichtet.
|
||||||
|
|
||||||
--\n
|
O.OPEN
|
||||||
O.OPEN | Phone: +49 30 / 290 484 91\n
|
|
||||||
Erkelenzdamm 21 | Fax: +49 30 / 290 484 99\n
|
--
|
||||||
D-10999 Berlin | E-MAIL: oo@oopen.de\n
|
O.OPEN | Phone: +49 30 / 290 484 91
|
||||||
"
|
Erkelenzdamm 21 | Fax: +49 30 / 290 484 99
|
||||||
|
D-10999 Berlin | E-MAIL: oo@oopen.de
|
||||||
|
|
||||||
# install_update_dovecot.conf
|
# install_update_dovecot.conf
|
||||||
#
|
#
|
||||||
dovecot_from_address: "o.open <oo@oopen.de>"
|
dovecot_from_address: "o.open <oo@oopen.de>"
|
||||||
dovecot_reply_to: "oo@oopen.de"
|
dovecot_reply_to: "oo@oopen.de"
|
||||||
webmailer_address: "https://webmail.oopen.de"
|
webmailer_address: "https://webmail.oopen.de"
|
||||||
salutation: "O.OPEN\n
|
salutation: |
|
||||||
|
O.OPEN
|
||||||
|
|
||||||
--\n
|
--
|
||||||
O.OPEN | Phone: +49 30 / 290 484 91\n
|
O.OPEN | Phone: +49 30 / 290 484 91
|
||||||
Erkelenzdamm 21 | Fax: +49 30 / 290 484 99\n
|
Erkelenzdamm 21 | Fax: +49 30 / 290 484 99
|
||||||
D-10999 Berlin | http://oopen.de\n"
|
D-10999 Berlin | http://oopen.de
|
||||||
|
|
||||||
# install_upgrade_roundcube-webmail.conf
|
# install_upgrade_roundcube-webmail.conf
|
||||||
#
|
#
|
||||||
+1
-1
@@ -42,4 +42,4 @@ fw_jitsi_dovecot_auth: true
|
|||||||
fw_rsync_out_ips: $ext_1_ip
|
fw_rsync_out_ips: $ext_1_ip
|
||||||
|
|
||||||
# --- Protection / limits
|
# --- Protection / limits
|
||||||
fw_per_IP_connection_limit: 250
|
fw_per_IP_connection_limit: 250 # noqa: var-naming[pattern]
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
---
|
---
|
||||||
|
# yamllint disable rule:line-length
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
# vars used by roles/ansible_dependencies
|
# vars used by roles/ansible_dependencies
|
||||||
@@ -244,13 +245,9 @@ symlink_files:
|
|||||||
# ---
|
# ---
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ==============================
|
# ==============================
|
||||||
|
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
# vars used by scripts/reset_root_passwd.yml
|
# vars used by scripts/reset_root_passwd.yml
|
||||||
# ---
|
# ---
|
||||||
|
|
||||||
@@ -139,4 +139,3 @@ resolved_fallback_nameserver:
|
|||||||
# ---
|
# ---
|
||||||
# vars used by scripts/reset_root_passwd.yml
|
# vars used by scripts/reset_root_passwd.yml
|
||||||
# ---
|
# ---
|
||||||
|
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
---
|
---
|
||||||
|
# yamllint disable rule:line-length
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
# vars used by roles/ansible_dependencies
|
# vars used by roles/ansible_dependencies
|
||||||
@@ -290,4 +291,3 @@ samba_shares:
|
|||||||
# ---
|
# ---
|
||||||
# vars used by scripts/reset_root_passwd.yml
|
# vars used by scripts/reset_root_passwd.yml
|
||||||
# ---
|
# ---
|
||||||
|
|
||||||
@@ -6,10 +6,10 @@
|
|||||||
|
|
||||||
|
|
||||||
# If true, all additional files in /etc/network/interfaces/interfaces.d/ are deleted
|
# If true, all additional files in /etc/network/interfaces/interfaces.d/ are deleted
|
||||||
network_manage_devices: True
|
network_manage_devices: true
|
||||||
|
|
||||||
# Should the interfaces be reloaded after config change?
|
# Should the interfaces be reloaded after config change?
|
||||||
network_interface_reload: False
|
network_interface_reload: false
|
||||||
|
|
||||||
network_interface_path: /etc/network/interfaces.d
|
network_interface_path: /etc/network/interfaces.d
|
||||||
network_interface_required_packages:
|
network_interface_required_packages:
|
||||||
@@ -145,7 +145,6 @@ cron_user_special_time_entries:
|
|||||||
insertafter: PATH
|
insertafter: PATH
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
# vars used by roles/common/tasks/users.yml
|
# vars used by roles/common/tasks/users.yml
|
||||||
# ---
|
# ---
|
||||||
@@ -26,8 +26,6 @@
|
|||||||
|
|
||||||
install_compiler_pkgs: true
|
install_compiler_pkgs: true
|
||||||
|
|
||||||
install_postgresql_pkgs: true
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
# vars used by roles/common/tasks/systemd-resolved.yml
|
# vars used by roles/common/tasks/systemd-resolved.yml
|
||||||
@@ -107,14 +105,14 @@ insert_root_ssh_keypair: true
|
|||||||
|
|
||||||
root_ssh_keypair:
|
root_ssh_keypair:
|
||||||
- name: id-rsa-dehydrated
|
- name: id-rsa-dehydrated
|
||||||
priv_key_src: d.mx/root/.ssh/d.mx-id_rsa-dehydrated
|
priv_key_src: b.mx.oopen.de/root/.ssh/b.mx-id_rsa-dehydrated
|
||||||
priv_key_dest: /root/.ssh/id_rsa-dehydrated
|
priv_key_dest: /root/.ssh/id_rsa-dehydrated
|
||||||
pub_key_src: d.mx/root/.ssh/d.mx-id_rsa-dehydrated.pub
|
pub_key_src: b.mx.oopen.de/root/.ssh/b.mx-id_rsa-dehydrated.pub
|
||||||
pub_key_dest: /root/.ssh/id_rsa-dehydrated.pub
|
pub_key_dest: /root/.ssh/id_rsa-dehydrated.pub
|
||||||
- name: id-rsa-opendkim
|
- name: id-rsa-opendkim
|
||||||
priv_key_src: d.mx/root/.ssh/d.mx-id_rsa-opendkim
|
priv_key_src: b.mx.oopen.de/root/.ssh/b.mx-id_rsa-opendkim
|
||||||
priv_key_dest: /root/.ssh/id_rsa-opendkim
|
priv_key_dest: /root/.ssh/id_rsa-opendkim
|
||||||
pub_key_src: d.mx/root/.ssh/d.mx-id_rsa-opendkim.pub
|
pub_key_src: b.mx.oopen.de/root/.ssh/b.mx-id_rsa-opendkim.pub
|
||||||
pub_key_dest: /root/.ssh/id_rsa-opendkim.pub
|
pub_key_dest: /root/.ssh/id_rsa-opendkim.pub
|
||||||
|
|
||||||
|
|
||||||
@@ -151,20 +149,6 @@ root_ssh_keypair:
|
|||||||
# vars used by roles/common/tasks/copy_files.yml
|
# vars used by roles/common/tasks/copy_files.yml
|
||||||
# ---
|
# ---
|
||||||
|
|
||||||
copy_plain_files:
|
|
||||||
|
|
||||||
- name: postfix_create_opendkim_key.conf
|
|
||||||
src_path: d.mx/root/bin/postfix/conf/create_opendkim_key.conf
|
|
||||||
dest_path: /root/bin/postfix/conf/create_opendkim_key.conf
|
|
||||||
|
|
||||||
- name: postfix_whitelist_mb_sigs.conf
|
|
||||||
src_path: d.mx/root/bin/postfix/conf/whitelist_mb_sigs.conf
|
|
||||||
dest_path: /root/bin/postfix/conf/whitelist_mb_sigs.conf
|
|
||||||
|
|
||||||
- name: install_sympa.conf
|
|
||||||
src_path: lists.mx.warenform/usr/local/src/sympa/conf/install_sympa.conf
|
|
||||||
dest_path: /usr/local/src/sympa/conf/install_sympa.conf
|
|
||||||
|
|
||||||
|
|
||||||
copy_template_files: []
|
copy_template_files: []
|
||||||
#
|
#
|
||||||
@@ -173,18 +157,17 @@ copy_template_files: []
|
|||||||
# dest_path: /usr/local/src/mailsystem/conf/install_amavis.conf
|
# dest_path: /usr/local/src/mailsystem/conf/install_amavis.conf
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
# vars used by roles/common/tasks/config_files_mailsystem_scripts.yml
|
# vars used by roles/common/tasks/config_files_mailsystem_scripts.yml
|
||||||
# ---
|
# ---
|
||||||
|
|
||||||
hostname: d.mx.oopen.de
|
hostname: b.mx.oopen.de
|
||||||
ipv4_address: 95.217.204.227
|
ipv4_address: 162.55.82.73
|
||||||
ipv6_address: 2a01:4f9:4a:47e5::227
|
ipv6_address: 2a01:4f8:271:1266::73
|
||||||
|
|
||||||
admin_email: argus@oopen.de
|
admin_email: argus@oopen.de
|
||||||
is_relay_host: false
|
is_relay_host: !!str "true"
|
||||||
is_sympa_list_server: true
|
sasl_auth_enable: !!str "yes"
|
||||||
|
|
||||||
# install_amavis.conf
|
# install_amavis.conf
|
||||||
#
|
#
|
||||||
@@ -194,10 +177,10 @@ si_authorisation_signature: abb4ec6b194639f3d123154f1b971843a3b8751d8c1bcdc7d07e
|
|||||||
|
|
||||||
template_files_mailsystem_script:
|
template_files_mailsystem_script:
|
||||||
|
|
||||||
- name: mailsystem_install_postfix_advanced.conf
|
|
||||||
src_path: usr/local/src/mailsystem/conf/install_postfix_advanced.conf.j2
|
|
||||||
dest_path: /usr/local/src/mailsystem/conf/install_postfix_advanced.conf
|
|
||||||
|
|
||||||
- name: mailsystem_install_amavis.conf
|
- name: mailsystem_install_amavis.conf
|
||||||
src_path: usr/local/src/mailsystem/conf/install_amavis.conf.j2
|
src_path: usr/local/src/mailsystem/conf/install_amavis.conf.j2
|
||||||
dest_path: /usr/local/src/mailsystem/conf/install_amavis.conf
|
dest_path: /usr/local/src/mailsystem/conf/install_amavis.conf
|
||||||
|
|
||||||
|
- name: mailsystem_install_postfix_advanced.conf
|
||||||
|
src_path: usr/local/src/mailsystem/conf/install_postfix_advanced.conf.j2
|
||||||
|
dest_path: /usr/local/src/mailsystem/conf/install_postfix_advanced.conf
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
---
|
---
|
||||||
|
# yamllint disable rule:line-length
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
# vars used by roles/ansible_dependencies
|
# vars used by roles/ansible_dependencies
|
||||||
@@ -240,4 +241,3 @@ symlink_files:
|
|||||||
# ---
|
# ---
|
||||||
# vars used by scripts/reset_root_passwd.yml
|
# vars used by scripts/reset_root_passwd.yml
|
||||||
# ---
|
# ---
|
||||||
|
|
||||||
@@ -410,4 +410,3 @@ git_firewall_repository:
|
|||||||
root_user:
|
root_user:
|
||||||
name: root
|
name: root
|
||||||
password: $6$J1ssJfdshf/$mknQEPDcW4HN5.wFfawbamamywI7F7fhdZmaR1abNrc4DA7DNRx766lz3ygf9YV3gcmRq3QhJ3fBVlkwGMCvq.
|
password: $6$J1ssJfdshf/$mknQEPDcW4HN5.wFfawbamamywI7F7fhdZmaR1abNrc4DA7DNRx766lz3ygf9YV3gcmRq3QhJ3fBVlkwGMCvq.
|
||||||
|
|
||||||
@@ -188,8 +188,6 @@ cron_user_entries:
|
|||||||
insert_ssh_keypair_backup_server: false
|
insert_ssh_keypair_backup_server: false
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
default_user:
|
default_user:
|
||||||
|
|
||||||
- name: chris
|
- name: chris
|
||||||
@@ -308,4 +306,3 @@ git_firewall_repository:
|
|||||||
root_user:
|
root_user:
|
||||||
name: root
|
name: root
|
||||||
password: $6$J1ssJfdshf/$mknQEPDcW4HN5.wFfawbamamywI7F7fhdZmaR1abNrc4DA7DNRx766lz3ygf9YV3gcmRq3QhJ3fBVlkwGMCvq.
|
password: $6$J1ssJfdshf/$mknQEPDcW4HN5.wFfawbamamywI7F7fhdZmaR1abNrc4DA7DNRx766lz3ygf9YV3gcmRq3QhJ3fBVlkwGMCvq.
|
||||||
|
|
||||||
+2
-3
@@ -6,10 +6,10 @@
|
|||||||
|
|
||||||
|
|
||||||
# If true, all additional files in /etc/network/interfaces/interfaces.d/ are deleted
|
# If true, all additional files in /etc/network/interfaces/interfaces.d/ are deleted
|
||||||
network_manage_devices: True
|
network_manage_devices: true
|
||||||
|
|
||||||
# Should the interfaces be reloaded after config change?
|
# Should the interfaces be reloaded after config change?
|
||||||
network_interface_reload: False
|
network_interface_reload: false
|
||||||
|
|
||||||
network_interface_path: /etc/network/interfaces.d
|
network_interface_path: /etc/network/interfaces.d
|
||||||
network_interface_required_packages:
|
network_interface_required_packages:
|
||||||
@@ -156,7 +156,6 @@ cron_user_special_time_entries:
|
|||||||
insertafter: PATH
|
insertafter: PATH
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
# vars used by roles/common/tasks/users.yml
|
# vars used by roles/common/tasks/users.yml
|
||||||
# ---
|
# ---
|
||||||
@@ -107,19 +107,19 @@ insert_root_ssh_keypair: true
|
|||||||
|
|
||||||
root_ssh_keypair:
|
root_ssh_keypair:
|
||||||
- name: id-rsa-dehydrated
|
- name: id-rsa-dehydrated
|
||||||
priv_key_src: c.mx/root/.ssh/c.mx-id_rsa-dehydrated
|
priv_key_src: c.mx.oopen.de/root/.ssh/c.mx-id_rsa-dehydrated
|
||||||
priv_key_dest: /root/.ssh/id_rsa-dehydrated
|
priv_key_dest: /root/.ssh/id_rsa-dehydrated
|
||||||
pub_key_src: c.mx/root/.ssh/c.mx-id_rsa-dehydrated.pub
|
pub_key_src: c.mx.oopen.de/root/.ssh/c.mx-id_rsa-dehydrated.pub
|
||||||
pub_key_dest: /root/.ssh/id_rsa-dehydrated.pub
|
pub_key_dest: /root/.ssh/id_rsa-dehydrated.pub
|
||||||
- name: id-rsa-opendkim
|
- name: id-rsa-opendkim
|
||||||
priv_key_src: c.mx/root/.ssh/c.mx-id_rsa-opendkim
|
priv_key_src: c.mx.oopen.de/root/.ssh/c.mx-id_rsa-opendkim
|
||||||
priv_key_dest: /root/.ssh/id_rsa-opendkim
|
priv_key_dest: /root/.ssh/id_rsa-opendkim
|
||||||
pub_key_src: c.mx/root/.ssh/c.mx-id_rsa-opendkim.pub
|
pub_key_src: c.mx.oopen.de/root/.ssh/c.mx-id_rsa-opendkim.pub
|
||||||
pub_key_dest: /root/.ssh/id_rsa-opendkim.pub
|
pub_key_dest: /root/.ssh/id_rsa-opendkim.pub
|
||||||
- name: id-rsa
|
- name: id-rsa
|
||||||
priv_key_src: c.mx/root/.ssh/c.mx-id_rsa
|
priv_key_src: c.mx.oopen.de/root/.ssh/c.mx-id_rsa
|
||||||
priv_key_dest: /root/.ssh/id_rsa
|
priv_key_dest: /root/.ssh/id_rsa
|
||||||
pub_key_src: c.mx/root/.ssh/c.mx-id_rsa.pub
|
pub_key_src: c.mx.oopen.de/root/.ssh/c.mx-id_rsa.pub
|
||||||
pub_key_dest: /root/.ssh/id_rsa.pub
|
pub_key_dest: /root/.ssh/id_rsa.pub
|
||||||
|
|
||||||
|
|
||||||
@@ -156,49 +156,6 @@ root_ssh_keypair:
|
|||||||
# vars used by roles/common/tasks/copy_files.yml
|
# vars used by roles/common/tasks/copy_files.yml
|
||||||
# ---
|
# ---
|
||||||
|
|
||||||
copy_plain_files:
|
|
||||||
|
|
||||||
# /root/bin/monitoring
|
|
||||||
#
|
|
||||||
- name: monitoring_check_cert_for_dovecot.conf
|
|
||||||
src_path: c.mx/root/bin/monitoring/conf/check_cert_for_dovecot.conf
|
|
||||||
dest_path: /root/bin/monitoring/conf/check_cert_for_dovecot.conf
|
|
||||||
|
|
||||||
# /root/bin/postfix
|
|
||||||
#
|
|
||||||
- name: postfix_create_opendkim_key.conf
|
|
||||||
src_path: c.mx/root/bin/postfix/conf/create_opendkim_key.conf
|
|
||||||
dest_path: /root/bin/postfix/conf/create_opendkim_key.conf
|
|
||||||
|
|
||||||
- name: postfix_postfix_add_mailboxes.conf
|
|
||||||
src_path: c.mx/root/bin/postfix/conf/postfix_add_mailboxes.conf
|
|
||||||
dest_path: /root/bin/postfix/conf/postfix_add_mailboxes.conf
|
|
||||||
|
|
||||||
- name: postfix_sent_userinfo_postfix.conf
|
|
||||||
src_path: c.mx/root/bin/postfix/conf/sent_userinfo_postfix.conf
|
|
||||||
dest_path: /root/bin/postfix/conf/sent_userinfo_postfix.conf
|
|
||||||
|
|
||||||
- name: postfix_whitelist_mb_sigs.conf
|
|
||||||
src_path: c.mx/root/bin/postfix/conf/whitelist_mb_sigs.conf
|
|
||||||
dest_path: /root/bin/postfix/conf/whitelist_mb_sigs.conf
|
|
||||||
|
|
||||||
|
|
||||||
copy_plain_files_postfwd_host_specific: []
|
|
||||||
|
|
||||||
# Postfix Firewall postfwd
|
|
||||||
#
|
|
||||||
#- name: postfwd.wl-user
|
|
||||||
# src_path: c.mx/etc/postfix/postfwd.wl-user
|
|
||||||
# dest_path: /etc/postfix/postfwd.wl-user
|
|
||||||
|
|
||||||
|
|
||||||
#copy_template_files: []
|
|
||||||
#
|
|
||||||
# - name: mailsystem_install_amavis.conf
|
|
||||||
# src_path: usr/local/src/mailsystem/conf/install_amavis.conf.j2
|
|
||||||
# dest_path: /usr/local/src/mailsystem/conf/install_amavis.conf
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
# vars used by roles/common/tasks/config_files_mailsystem_scripts.yml
|
# vars used by roles/common/tasks/config_files_mailsystem_scripts.yml
|
||||||
@@ -230,30 +187,30 @@ si_authorisation_signature: abb4ec6b194639f3d123154f1b971843a3b8751d8c1bcdc7d07e
|
|||||||
#
|
#
|
||||||
website_name_postfixadmin: adm.initiativenserver.de
|
website_name_postfixadmin: adm.initiativenserver.de
|
||||||
|
|
||||||
email_welcome_message: "\n
|
email_welcome_message: |
|
||||||
Hallo,\n
|
Hallo,
|
||||||
|
|
||||||
Ihre/Deine neue E-Mail Adresse ist eingerichtet.\n
|
Ihre/Deine neue E-Mail Adresse ist eingerichtet.
|
||||||
|
|
||||||
Aktionsbündnis gegen Gewalt, Rechtsextremismus und Fremdenfeindlichkeit
|
Aktionsbündnis gegen Gewalt, Rechtsextremismus und Fremdenfeindlichkeit
|
||||||
|
|
||||||
--\n
|
--
|
||||||
Initiativenserver | phone: 0331 505824-28\n
|
Initiativenserver | phone: 0331 505824-28
|
||||||
Mittelstraße 38/39 | fax: 0331 505824-29\n
|
Mittelstraße 38/39 | fax: 0331 505824-29
|
||||||
14467 Potsdam | email: kontakt@initiativenserver.de\n
|
14467 Potsdam | email: kontakt@initiativenserver.de
|
||||||
"
|
|
||||||
|
|
||||||
# install_update_dovecot.conf
|
# install_update_dovecot.conf
|
||||||
#
|
#
|
||||||
dovecot_from_address: "Admin Initiativenserver <admin@initiativenserver.de>"
|
dovecot_from_address: "Admin Initiativenserver <admin@initiativenserver.de>"
|
||||||
dovecot_reply_to: "admin@initiativenserver.de"
|
dovecot_reply_to: "admin@initiativenserver.de"
|
||||||
webmailer_address: "https://webmail.initiativenserver.de"
|
webmailer_address: "https://webmail.initiativenserver.de"
|
||||||
salutation: "Aktionsbündnis gegen Gewalt, Rechtsextremismus und FremdenfeindlichkeitN\n
|
salutation: |
|
||||||
|
Aktionsbündnis gegen Gewalt, Rechtsextremismus und Fremdenfeindlichkeit
|
||||||
|
|
||||||
--\n
|
--
|
||||||
Initiativenserver | phone: 0331 505824-28\n
|
Initiativenserver | phone: 0331 505824-28
|
||||||
Mittelstraße 38/39 | fax: 0331 505824-29\n
|
Mittelstraße 38/39 | fax: 0331 505824-29
|
||||||
14467 Potsdam | email: kontakt@initiativenserver.de\n"
|
14467 Potsdam | email: kontakt@initiativenserver.de
|
||||||
|
|
||||||
# install_upgrade_roundcube-webmail.conf
|
# install_upgrade_roundcube-webmail.conf
|
||||||
#
|
#
|
||||||
@@ -295,4 +252,3 @@ template_files_mailsystem_script:
|
|||||||
- name: mailsystem_install_upgrade_roundcube-webmail.conf
|
- name: mailsystem_install_upgrade_roundcube-webmail.conf
|
||||||
src_path: usr/local/src/mailsystem/conf/install_upgrade_roundcube-webmail.conf.j2
|
src_path: usr/local/src/mailsystem/conf/install_upgrade_roundcube-webmail.conf.j2
|
||||||
dest_path: /usr/local/src/mailsystem/conf/install_upgrade_roundcube-webmail.conf
|
dest_path: /usr/local/src/mailsystem/conf/install_upgrade_roundcube-webmail.conf
|
||||||
|
|
||||||
@@ -163,4 +163,3 @@ sudoers_file_user_privileges:
|
|||||||
# ---
|
# ---
|
||||||
# vars used by scripts/reset_root_passwd.yml
|
# vars used by scripts/reset_root_passwd.yml
|
||||||
# ---
|
# ---
|
||||||
|
|
||||||
@@ -150,4 +150,3 @@ sudoers_file_user_privileges:
|
|||||||
# ---
|
# ---
|
||||||
# vars used by scripts/reset_root_passwd.yml
|
# vars used by scripts/reset_root_passwd.yml
|
||||||
# ---
|
# ---
|
||||||
|
|
||||||
@@ -1,151 +0,0 @@
|
|||||||
---
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/ansible_dependencies
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/ansible_user
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/basic.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/sshd.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
sshd_permit_root_login: !!str "prohibit-password"
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by apt.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/systemd-resolved.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
systemd_resolved: true
|
|
||||||
|
|
||||||
# CyberGhost - Schnelle Verbindung mit Keine-Logs-Datenschutzrichtlinie
|
|
||||||
# Primäre DNS-Adresse: 38.132.106.139
|
|
||||||
# Sekundäre DNS-Adresse: 194.187.251.67
|
|
||||||
#
|
|
||||||
# Cloudflare (USA) Bester kostenloser DNS-Server für Gaming mit zuverlässigen Verbindungen
|
|
||||||
# primäre DNS-Adresse
|
|
||||||
# IPv4: 1.1.1.1
|
|
||||||
# IPv6: 2606:4700:4700::1111
|
|
||||||
# sekundäre DNS-Adresse
|
|
||||||
# IPv4: 1.0.0.1
|
|
||||||
# IPv6: 2606:4700:4700::1001
|
|
||||||
#
|
|
||||||
# Google (USA) Public DNS - Großartige Kombination aus Geschwindigkeit und Sicherheit
|
|
||||||
# primäre DNS-Adresse
|
|
||||||
# IPv4: 8.8.8.8
|
|
||||||
# IPv6: 2001:4860:4860::8888
|
|
||||||
# sekundäre DNS-Adresse
|
|
||||||
# IPv4: 8.8.4.4
|
|
||||||
# IPv6: 2001:4860:4860::8844
|
|
||||||
#
|
|
||||||
# Quad9 (CH) - Blockiert mühelos schädliche Seiten und verhindert Phishing-Betrug
|
|
||||||
# primäre DNS-Adresse
|
|
||||||
# IPv4: 9.9.9.9
|
|
||||||
# IPv6: 2620:fe::fe
|
|
||||||
# sekundäre DNS-Adresse
|
|
||||||
# IPv4: 149.112.112.112
|
|
||||||
# IPv6: 2620:fe::9
|
|
||||||
#
|
|
||||||
# OpenNIC - https://www.opennic.org/
|
|
||||||
# IPv4: 195.10.195.195 - ns31.de
|
|
||||||
# IPv4: 94.16.114.254 - ns28.de
|
|
||||||
# IPv4: 51.254.162.59 - ns9.de
|
|
||||||
# IPv4: 194.36.144.87 - ns29.de
|
|
||||||
# IPv6: 2a00:f826:8:2::195 - ns31.de
|
|
||||||
#
|
|
||||||
# Freifunk München (normales DNS, DNS-over-TLS und DNS-over-HTTPS)
|
|
||||||
# IPv4: 5.1.66.255
|
|
||||||
# IPv6: 2001:678:e68:f000::
|
|
||||||
# Servername für DNS-over-TLS: dot.ffmuc.net
|
|
||||||
# IPv4: 185.150.99.255
|
|
||||||
# IPv6: 2001:678:ed0:f000::
|
|
||||||
# Servername für DNS-over-TLS: dot.ffmuc.net
|
|
||||||
# für iOS 14+: DoT-Server-Konfiguration (unsigniert, vom PrHdb)
|
|
||||||
resolved_nameserver:
|
|
||||||
- 185.12.64.2
|
|
||||||
- 2a01:4ff:ff00::add:1
|
|
||||||
- 185.12.64.1
|
|
||||||
- 2a01:4ff:ff00::add:2
|
|
||||||
|
|
||||||
# search domains
|
|
||||||
#
|
|
||||||
# If there are more than one search domains, then specify them here in the order in which
|
|
||||||
# the resolver should also search them
|
|
||||||
#
|
|
||||||
#resolved_domains: []
|
|
||||||
resolved_domains:
|
|
||||||
- ~.
|
|
||||||
- oopen.de
|
|
||||||
|
|
||||||
resolved_dnssec: false
|
|
||||||
|
|
||||||
# dns.as250.net: 194.150.168.168
|
|
||||||
#
|
|
||||||
resolved_fallback_nameserver:
|
|
||||||
- 194.150.168.168
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/users.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
sudo_users:
|
|
||||||
- chris
|
|
||||||
- sysadm
|
|
||||||
- localadmin
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/users-systemfiles.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/webadmin-user.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/sudoers.yml
|
|
||||||
# ---
|
|
||||||
#
|
|
||||||
# see: roles/common/tasks/vars
|
|
||||||
|
|
||||||
sudoers_file_user_privileges:
|
|
||||||
- name: back
|
|
||||||
entry: 'ALL=(www-data) NOPASSWD: /usr/local/php/bin/php'
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/caching-nameserver.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/git.yml
|
|
||||||
# ---
|
|
||||||
#
|
|
||||||
# see: roles/common/tasks/vars
|
|
||||||
|
|
||||||
|
|
||||||
# ==============================
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by scripts/reset_root_passwd.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
-1
@@ -148,4 +148,3 @@ sudoers_file_user_privileges:
|
|||||||
# ---
|
# ---
|
||||||
# vars used by scripts/reset_root_passwd.yml
|
# vars used by scripts/reset_root_passwd.yml
|
||||||
# ---
|
# ---
|
||||||
|
|
||||||
@@ -148,4 +148,3 @@ sudoers_file_user_privileges:
|
|||||||
# ---
|
# ---
|
||||||
# vars used by scripts/reset_root_passwd.yml
|
# vars used by scripts/reset_root_passwd.yml
|
||||||
# ---
|
# ---
|
||||||
|
|
||||||
@@ -232,4 +232,3 @@ sudoers_file_user_privileges:
|
|||||||
# ---
|
# ---
|
||||||
# vars used by scripts/reset_root_passwd.yml
|
# vars used by scripts/reset_root_passwd.yml
|
||||||
# ---
|
# ---
|
||||||
|
|
||||||
-1
@@ -232,4 +232,3 @@ sudoers_file_user_privileges:
|
|||||||
# ---
|
# ---
|
||||||
# vars used by scripts/reset_root_passwd.yml
|
# vars used by scripts/reset_root_passwd.yml
|
||||||
# ---
|
# ---
|
||||||
|
|
||||||
@@ -149,4 +149,3 @@ sudoers_file_user_privileges:
|
|||||||
# ---
|
# ---
|
||||||
# vars used by scripts/reset_root_passwd.yml
|
# vars used by scripts/reset_root_passwd.yml
|
||||||
# ---
|
# ---
|
||||||
|
|
||||||
@@ -0,0 +1,126 @@
|
|||||||
|
---
|
||||||
|
# ---
|
||||||
|
# vars used by roles/common/tasks/basic.yml
|
||||||
|
# ---
|
||||||
|
|
||||||
|
# ---
|
||||||
|
# vars used by roles/common/tasks/sshd.yml
|
||||||
|
# ---
|
||||||
|
|
||||||
|
sshd_permit_root_login: !!str "prohibit-password"
|
||||||
|
|
||||||
|
# ---
|
||||||
|
# vars used by apt.yml
|
||||||
|
# ---
|
||||||
|
|
||||||
|
# ---
|
||||||
|
# vars used by roles/common/tasks/systemd-resolved.yml
|
||||||
|
# ---
|
||||||
|
|
||||||
|
systemd_resolved: true
|
||||||
|
|
||||||
|
resolved_nameserver:
|
||||||
|
- 185.12.64.2
|
||||||
|
- 185.12.64.1
|
||||||
|
- 2a01:4ff:ff00::add:2
|
||||||
|
- 2a01:4ff:ff00::add:1
|
||||||
|
|
||||||
|
resolved_domains:
|
||||||
|
- ~.
|
||||||
|
- oopen.de
|
||||||
|
|
||||||
|
resolved_dnssec: false
|
||||||
|
|
||||||
|
resolved_fallback_nameserver:
|
||||||
|
- 194.150.168.168
|
||||||
|
|
||||||
|
# ---
|
||||||
|
# vars used by roles/common/tasks/cron.yml
|
||||||
|
# ---
|
||||||
|
|
||||||
|
cron_env_entries:
|
||||||
|
- name: PATH
|
||||||
|
job: /root/bin/admin-stuff:/root/bin:/usr/local/apache2/bin:/usr/local/php/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
|
||||||
|
|
||||||
|
- name: SHELL
|
||||||
|
job: /bin/bash
|
||||||
|
insertafter: PATH
|
||||||
|
|
||||||
|
cron_user_special_time_entries:
|
||||||
|
- name: "Restart DNS Cache service 'systemd-resolved'"
|
||||||
|
special_time: reboot
|
||||||
|
job: "sleep 5 ; /bin/systemctl restart systemd-resolved"
|
||||||
|
insertafter: PATH
|
||||||
|
|
||||||
|
cron_user_entries:
|
||||||
|
- name: "Check if webservices sre running. Restart if necessary"
|
||||||
|
minute: "*/5"
|
||||||
|
hour: "*"
|
||||||
|
job: /root/bin/monitoring/check_webservice_load.sh
|
||||||
|
|
||||||
|
- name: "Check if SSH service is running. Restart service if needed."
|
||||||
|
minute: "*/5"
|
||||||
|
hour: "*"
|
||||||
|
job: /root/bin/monitoring/check_ssh.sh
|
||||||
|
|
||||||
|
- name: "Check if Postfix Mailservice is up and running?"
|
||||||
|
minute: "*/15"
|
||||||
|
hour: "*"
|
||||||
|
job: /root/bin/monitoring/check_postfix.sh
|
||||||
|
|
||||||
|
- name: "Check Postfix E-Mail LOG file for 'fatal' errors.."
|
||||||
|
minute: "*/5"
|
||||||
|
hour: "*"
|
||||||
|
job: /root/bin/postfix/check-postfix-fatal-errors.sh
|
||||||
|
|
||||||
|
- name: "Optimize mysql tables"
|
||||||
|
minute: "53"
|
||||||
|
hour: "04"
|
||||||
|
job: /root/bin/mysql/optimize_mysql_tables.sh
|
||||||
|
|
||||||
|
- name: "Flush query cache for mysql tables"
|
||||||
|
minute: "27"
|
||||||
|
hour: "04"
|
||||||
|
job: /root/bin/mysql/flush_query_cache.sh
|
||||||
|
|
||||||
|
- name: "Flush Host cache"
|
||||||
|
minute: "17"
|
||||||
|
hour: "05"
|
||||||
|
job: /root/bin/mysql/flush_host_cache.sh
|
||||||
|
|
||||||
|
- name: "Run occ file:scan for each cloud account"
|
||||||
|
minute: "02"
|
||||||
|
hour: "23"
|
||||||
|
job: /root/bin/nextcloud/occ_maintenance.sh -s cloud-test.ndhosting.de
|
||||||
|
|
||||||
|
- name: "Background job for nextcloud instance 'cloud-test.ndhosting.de"
|
||||||
|
minute: "*/15"
|
||||||
|
hour: "*"
|
||||||
|
job: sudo -u "www-data" /usr/local/php/bin/php -f /var/www/cloud-test.ndhosting.de/htdocs/cron.php
|
||||||
|
|
||||||
|
- name: "Generate/Renew Let's Encrypt Certificates if needed (using dehydrated script)"
|
||||||
|
minute: "23"
|
||||||
|
hour: "05"
|
||||||
|
job: /var/lib/dehydrated/cron/dehydrated_cron.sh
|
||||||
|
|
||||||
|
- name: "Check whether all certificates are included in the VHOST configurations"
|
||||||
|
minute: "33"
|
||||||
|
hour: "05"
|
||||||
|
job: /var/lib/dehydrated/tools/update_ssl_directives.sh
|
||||||
|
|
||||||
|
# ---
|
||||||
|
# vars used by roles/common/tasks/users.yml
|
||||||
|
# ---
|
||||||
|
|
||||||
|
sudo_users:
|
||||||
|
- chris
|
||||||
|
- sysadm
|
||||||
|
- localadmin
|
||||||
|
|
||||||
|
# ---
|
||||||
|
# vars used by roles/common/tasks/sudoers.yml
|
||||||
|
# ---
|
||||||
|
|
||||||
|
sudoers_file_user_privileges:
|
||||||
|
- name: back
|
||||||
|
entry: "ALL=(www-data) NOPASSWD: /usr/local/php/bin/php"
|
||||||
@@ -0,0 +1,28 @@
|
|||||||
|
---
|
||||||
|
# ipt-firewall configuration for a.mx.oopen.de
|
||||||
|
# Generated by extract-fw-host-vars.py - review before committing!
|
||||||
|
# Place in: host_vars/<hostname>/ipt_firewall.yml
|
||||||
|
|
||||||
|
fw_manage_config: true
|
||||||
|
|
||||||
|
# --- Network
|
||||||
|
fw_ext_interfaces:
|
||||||
|
- "eth0"
|
||||||
|
fw_ext_ips_v4:
|
||||||
|
- "135.181.90.132"
|
||||||
|
fw_ext_ips_v6:
|
||||||
|
- "2a01:4f9:c014:1ba8::1"
|
||||||
|
|
||||||
|
# --- Munin
|
||||||
|
munin_remote_ipv4: 37.27.121.227
|
||||||
|
munin_remote_ipv6: "2a01:4f9:3070:2bda::227"
|
||||||
|
|
||||||
|
# --- HTTP
|
||||||
|
fw_http_server_ips: $ext_1_ip
|
||||||
|
|
||||||
|
# --- Mail
|
||||||
|
fw_mail_client_ips: $ext_1_ip
|
||||||
|
|
||||||
|
# - Docker-Netzwerk nicht firewallen
|
||||||
|
#
|
||||||
|
fw_unprotected_ifs: br-euroffice
|
||||||
@@ -232,4 +232,3 @@ sudoers_file_user_privileges:
|
|||||||
# ---
|
# ---
|
||||||
# vars used by scripts/reset_root_passwd.yml
|
# vars used by scripts/reset_root_passwd.yml
|
||||||
# ---
|
# ---
|
||||||
|
|
||||||
@@ -232,4 +232,3 @@ sudoers_file_user_privileges:
|
|||||||
# ---
|
# ---
|
||||||
# vars used by scripts/reset_root_passwd.yml
|
# vars used by scripts/reset_root_passwd.yml
|
||||||
# ---
|
# ---
|
||||||
|
|
||||||
@@ -143,4 +143,3 @@ sudoers_file_user_privileges:
|
|||||||
# ---
|
# ---
|
||||||
# vars used by scripts/reset_root_passwd.yml
|
# vars used by scripts/reset_root_passwd.yml
|
||||||
# ---
|
# ---
|
||||||
|
|
||||||
@@ -140,4 +140,3 @@ sudoers_file_user_privileges:
|
|||||||
# ---
|
# ---
|
||||||
# vars used by scripts/reset_root_passwd.yml
|
# vars used by scripts/reset_root_passwd.yml
|
||||||
# ---
|
# ---
|
||||||
|
|
||||||
@@ -70,4 +70,3 @@ sudoers_file_user_privileges:
|
|||||||
# ---
|
# ---
|
||||||
# vars used by scripts/reset_root_passwd.yml
|
# vars used by scripts/reset_root_passwd.yml
|
||||||
# ---
|
# ---
|
||||||
|
|
||||||
-1
@@ -70,4 +70,3 @@ sudoers_file_user_privileges:
|
|||||||
# ---
|
# ---
|
||||||
# vars used by scripts/reset_root_passwd.yml
|
# vars used by scripts/reset_root_passwd.yml
|
||||||
# ---
|
# ---
|
||||||
|
|
||||||
@@ -144,4 +144,3 @@ sudoers_file_user_privileges:
|
|||||||
# ---
|
# ---
|
||||||
# vars used by scripts/reset_root_passwd.yml
|
# vars used by scripts/reset_root_passwd.yml
|
||||||
# ---
|
# ---
|
||||||
|
|
||||||
@@ -158,4 +158,3 @@ sudoers_file_user_privileges:
|
|||||||
# ---
|
# ---
|
||||||
# vars used by scripts/reset_root_passwd.yml
|
# vars used by scripts/reset_root_passwd.yml
|
||||||
# ---
|
# ---
|
||||||
|
|
||||||
@@ -156,4 +156,3 @@ sudoers_file_user_privileges:
|
|||||||
# ---
|
# ---
|
||||||
# vars used by scripts/reset_root_passwd.yml
|
# vars used by scripts/reset_root_passwd.yml
|
||||||
# ---
|
# ---
|
||||||
|
|
||||||
@@ -26,6 +26,8 @@
|
|||||||
|
|
||||||
install_compiler_pkgs: true
|
install_compiler_pkgs: true
|
||||||
|
|
||||||
|
install_postgresql_pkgs: true
|
||||||
|
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
# vars used by roles/common/tasks/systemd-resolved.yml
|
# vars used by roles/common/tasks/systemd-resolved.yml
|
||||||
@@ -105,14 +107,14 @@ insert_root_ssh_keypair: true
|
|||||||
|
|
||||||
root_ssh_keypair:
|
root_ssh_keypair:
|
||||||
- name: id-rsa-dehydrated
|
- name: id-rsa-dehydrated
|
||||||
priv_key_src: b.mx/root/.ssh/b.mx-id_rsa-dehydrated
|
priv_key_src: d.mx.oopen.de/root/.ssh/d.mx-id_rsa-dehydrated
|
||||||
priv_key_dest: /root/.ssh/id_rsa-dehydrated
|
priv_key_dest: /root/.ssh/id_rsa-dehydrated
|
||||||
pub_key_src: b.mx/root/.ssh/b.mx-id_rsa-dehydrated.pub
|
pub_key_src: d.mx.oopen.de/root/.ssh/d.mx-id_rsa-dehydrated.pub
|
||||||
pub_key_dest: /root/.ssh/id_rsa-dehydrated.pub
|
pub_key_dest: /root/.ssh/id_rsa-dehydrated.pub
|
||||||
- name: id-rsa-opendkim
|
- name: id-rsa-opendkim
|
||||||
priv_key_src: b.mx/root/.ssh/b.mx-id_rsa-opendkim
|
priv_key_src: d.mx.oopen.de/root/.ssh/d.mx-id_rsa-opendkim
|
||||||
priv_key_dest: /root/.ssh/id_rsa-opendkim
|
priv_key_dest: /root/.ssh/id_rsa-opendkim
|
||||||
pub_key_src: b.mx/root/.ssh/b.mx-id_rsa-opendkim.pub
|
pub_key_src: d.mx.oopen.de/root/.ssh/d.mx-id_rsa-opendkim.pub
|
||||||
pub_key_dest: /root/.ssh/id_rsa-opendkim.pub
|
pub_key_dest: /root/.ssh/id_rsa-opendkim.pub
|
||||||
|
|
||||||
|
|
||||||
@@ -149,58 +151,18 @@ root_ssh_keypair:
|
|||||||
# vars used by roles/common/tasks/copy_files.yml
|
# vars used by roles/common/tasks/copy_files.yml
|
||||||
# ---
|
# ---
|
||||||
|
|
||||||
copy_plain_files:
|
|
||||||
|
|
||||||
# /root/bin/postfix
|
|
||||||
#
|
|
||||||
- name: postfix_create_opendkim_key.conf
|
|
||||||
src_path: b.mx/root/bin/postfix/conf/create_opendkim_key.conf
|
|
||||||
dest_path: /root/bin/postfix/conf/create_opendkim_key.conf
|
|
||||||
|
|
||||||
- name: postfix_whitelist_mb_sigs.conf
|
|
||||||
src_path: b.mx/root/bin/postfix/conf/whitelist_mb_sigs.conf
|
|
||||||
dest_path: /root/bin/postfix/conf/whitelist_mb_sigs.conf
|
|
||||||
|
|
||||||
|
|
||||||
copy_plain_files_postfix_host_specific:
|
|
||||||
|
|
||||||
- name: relay_domains
|
|
||||||
src_path: b.mx/etc/postfix/relay_domains
|
|
||||||
dest_path: /etc/postfix/relay_domains
|
|
||||||
|
|
||||||
|
|
||||||
copy_plain_files_postfwd_host_specific:
|
|
||||||
|
|
||||||
# Postfix Firewall postfwd
|
|
||||||
#
|
|
||||||
- name: postfwd.wl-nets
|
|
||||||
src_path: b.mx/etc/postfix/postfwd.wl-nets
|
|
||||||
dest_path: /etc/postfix/postfwd.wl-nets
|
|
||||||
|
|
||||||
- name: postfwd.wl-sender
|
|
||||||
src_path: b.mx/etc/postfix/postfwd.wl-sender
|
|
||||||
dest_path: /etc/postfix/postfwd.wl-sender
|
|
||||||
|
|
||||||
|
|
||||||
copy_template_files: []
|
|
||||||
#
|
|
||||||
# - name: mailsystem_install_amavis.conf
|
|
||||||
# src_path: usr/local/src/mailsystem/conf/install_amavis.conf.j2
|
|
||||||
# dest_path: /usr/local/src/mailsystem/conf/install_amavis.conf
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
# vars used by roles/common/tasks/config_files_mailsystem_scripts.yml
|
# vars used by roles/common/tasks/config_files_mailsystem_scripts.yml
|
||||||
# ---
|
# ---
|
||||||
|
|
||||||
hostname: b.mx.oopen.de
|
hostname: d.mx.oopen.de
|
||||||
ipv4_address: 162.55.82.73
|
ipv4_address: 95.217.204.227
|
||||||
ipv6_address: 2a01:4f8:271:1266::73
|
ipv6_address: 2a01:4f9:4a:47e5::227
|
||||||
|
|
||||||
admin_email: argus@oopen.de
|
admin_email: argus@oopen.de
|
||||||
is_relay_host: !!str "true"
|
is_relay_host: false
|
||||||
sasl_auth_enable: !!str "yes"
|
is_sympa_list_server: true
|
||||||
|
|
||||||
# install_amavis.conf
|
# install_amavis.conf
|
||||||
#
|
#
|
||||||
@@ -210,10 +172,10 @@ si_authorisation_signature: abb4ec6b194639f3d123154f1b971843a3b8751d8c1bcdc7d07e
|
|||||||
|
|
||||||
template_files_mailsystem_script:
|
template_files_mailsystem_script:
|
||||||
|
|
||||||
- name: mailsystem_install_amavis.conf
|
|
||||||
src_path: usr/local/src/mailsystem/conf/install_amavis.conf.j2
|
|
||||||
dest_path: /usr/local/src/mailsystem/conf/install_amavis.conf
|
|
||||||
|
|
||||||
- name: mailsystem_install_postfix_advanced.conf
|
- name: mailsystem_install_postfix_advanced.conf
|
||||||
src_path: usr/local/src/mailsystem/conf/install_postfix_advanced.conf.j2
|
src_path: usr/local/src/mailsystem/conf/install_postfix_advanced.conf.j2
|
||||||
dest_path: /usr/local/src/mailsystem/conf/install_postfix_advanced.conf
|
dest_path: /usr/local/src/mailsystem/conf/install_postfix_advanced.conf
|
||||||
|
|
||||||
|
- name: mailsystem_install_amavis.conf
|
||||||
|
src_path: usr/local/src/mailsystem/conf/install_amavis.conf.j2
|
||||||
|
dest_path: /usr/local/src/mailsystem/conf/install_amavis.conf
|
||||||
@@ -139,4 +139,3 @@ resolved_fallback_nameserver:
|
|||||||
# ---
|
# ---
|
||||||
# vars used by scripts/reset_root_passwd.yml
|
# vars used by scripts/reset_root_passwd.yml
|
||||||
# ---
|
# ---
|
||||||
|
|
||||||
+1
-1
@@ -1,4 +1,5 @@
|
|||||||
---
|
---
|
||||||
|
# yamllint disable rule:line-length
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
# vars used by roles/ansible_dependencies
|
# vars used by roles/ansible_dependencies
|
||||||
@@ -150,4 +151,3 @@ sudo_users:
|
|||||||
root_user:
|
root_user:
|
||||||
name: root
|
name: root
|
||||||
password: $6$J1ssJfdshf/$mknQEPDcW4HN5.wFfawbamamywI7F7fhdZmaR1abNrc4DA7DNRx766lz3ygf9YV3gcmRq3QhJ3fBVlkwGMCvq.
|
password: $6$J1ssJfdshf/$mknQEPDcW4HN5.wFfawbamamywI7F7fhdZmaR1abNrc4DA7DNRx766lz3ygf9YV3gcmRq3QhJ3fBVlkwGMCvq.
|
||||||
|
|
||||||
@@ -142,15 +142,12 @@ resolved_fallback_nameserver:
|
|||||||
# ---
|
# ---
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
# vars used by roles/common/tasks/samba-config-server.yml
|
# vars used by roles/common/tasks/samba-config-server.yml
|
||||||
# vars used by roles/common/tasks/samba-user.yml
|
# vars used by roles/common/tasks/samba-user.yml
|
||||||
# ---
|
# ---
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ==============================
|
# ==============================
|
||||||
|
|
||||||
|
|
||||||
@@ -149,15 +149,12 @@ resolved_fallback_nameserver:
|
|||||||
# ---
|
# ---
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
# vars used by roles/common/tasks/samba-config-server.yml
|
# vars used by roles/common/tasks/samba-config-server.yml
|
||||||
# vars used by roles/common/tasks/samba-user.yml
|
# vars used by roles/common/tasks/samba-user.yml
|
||||||
# ---
|
# ---
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ==============================
|
# ==============================
|
||||||
|
|
||||||
|
|
||||||
@@ -142,15 +142,12 @@ resolved_fallback_nameserver:
|
|||||||
# ---
|
# ---
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
# vars used by roles/common/tasks/samba-config-server.yml
|
# vars used by roles/common/tasks/samba-config-server.yml
|
||||||
# vars used by roles/common/tasks/samba-user.yml
|
# vars used by roles/common/tasks/samba-user.yml
|
||||||
# ---
|
# ---
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ==============================
|
# ==============================
|
||||||
|
|
||||||
|
|
||||||
@@ -142,15 +142,12 @@ resolved_fallback_nameserver:
|
|||||||
# ---
|
# ---
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
# vars used by roles/common/tasks/samba-config-server.yml
|
# vars used by roles/common/tasks/samba-config-server.yml
|
||||||
# vars used by roles/common/tasks/samba-user.yml
|
# vars used by roles/common/tasks/samba-user.yml
|
||||||
# ---
|
# ---
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ==============================
|
# ==============================
|
||||||
|
|
||||||
|
|
||||||
@@ -142,15 +142,12 @@ resolved_fallback_nameserver:
|
|||||||
# ---
|
# ---
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
# vars used by roles/common/tasks/samba-config-server.yml
|
# vars used by roles/common/tasks/samba-config-server.yml
|
||||||
# vars used by roles/common/tasks/samba-user.yml
|
# vars used by roles/common/tasks/samba-user.yml
|
||||||
# ---
|
# ---
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ==============================
|
# ==============================
|
||||||
|
|
||||||
|
|
||||||
@@ -121,4 +121,3 @@ git_firewall_repository: {}
|
|||||||
# ---
|
# ---
|
||||||
# vars used by scripts/reset_root_passwd.yml
|
# vars used by scripts/reset_root_passwd.yml
|
||||||
# ---
|
# ---
|
||||||
|
|
||||||
@@ -138,4 +138,3 @@ git_firewall_repository: {}
|
|||||||
# ---
|
# ---
|
||||||
# vars used by scripts/reset_root_passwd.yml
|
# vars used by scripts/reset_root_passwd.yml
|
||||||
# ---
|
# ---
|
||||||
|
|
||||||
@@ -105,17 +105,17 @@ resolved_fallback_nameserver:
|
|||||||
|
|
||||||
insert_root_ssh_keypair: true
|
insert_root_ssh_keypair: true
|
||||||
|
|
||||||
root_ssh_keypair:
|
# root_ssh_keypair:
|
||||||
- name: id-rsa-dehydrated
|
# - name: id-rsa-dehydrated
|
||||||
priv_key_src: e.mx/root/.ssh/e.mx-id_rsa-dehydrated
|
# priv_key_src: e.mx.oopen.de/root/.ssh/e.mx-id_rsa-dehydrated
|
||||||
priv_key_dest: /root/.ssh/id_rsa-dehydrated
|
# priv_key_dest: /root/.ssh/id_rsa-dehydrated
|
||||||
pub_key_src: e.mx/root/.ssh/e.mx-id_rsa-dehydrated.pub
|
# pub_key_src: e.mx.oopen.de/root/.ssh/e.mx-id_rsa-dehydrated.pub
|
||||||
pub_key_dest: /root/.ssh/id_rsa-dehydrated.pub
|
# pub_key_dest: /root/.ssh/id_rsa-dehydrated.pub
|
||||||
- name: id-rsa-opendkim
|
# - name: id-rsa-opendkim
|
||||||
priv_key_src: e.mx/root/.ssh/e.mx-id_rsa-opendkim
|
# priv_key_src: e.mx.oopen.de/root/.ssh/e.mx-id_rsa-opendkim
|
||||||
priv_key_dest: /root/.ssh/id_rsa-opendkim
|
# priv_key_dest: /root/.ssh/id_rsa-opendkim
|
||||||
pub_key_src: e.mx/root/.ssh/e.mx-id_rsa-opendkim.pub
|
# pub_key_src: e.mx.oopen.de/root/.ssh/e.mx-id_rsa-opendkim.pub
|
||||||
pub_key_dest: /root/.ssh/id_rsa-opendkim.pub
|
# pub_key_dest: /root/.ssh/id_rsa-opendkim.pub
|
||||||
|
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
@@ -151,36 +151,6 @@ root_ssh_keypair:
|
|||||||
# vars used by roles/common/tasks/copy_files.yml
|
# vars used by roles/common/tasks/copy_files.yml
|
||||||
# ---
|
# ---
|
||||||
|
|
||||||
copy_plain_files:
|
|
||||||
|
|
||||||
- name: monitoring_check_cert_for_dovecot.conf
|
|
||||||
src_path: e.mx/root/bin/monitoring/conf/check_cert_for_dovecot.conf
|
|
||||||
dest_path: /root/bin/monitoring/conf/check_cert_for_dovecot.conf
|
|
||||||
|
|
||||||
- name: postfix_create_opendkim_key.conf
|
|
||||||
src_path: e.mx/root/bin/postfix/conf/create_opendkim_key.conf
|
|
||||||
dest_path: /root/bin/postfix/conf/create_opendkim_key.conf
|
|
||||||
|
|
||||||
- name: postfix_postfix_add_mailboxes.conf
|
|
||||||
src_path: e.mx/root/bin/postfix/conf/postfix_add_mailboxes.conf
|
|
||||||
dest_path: /root/bin/postfix/conf/postfix_add_mailboxes.conf
|
|
||||||
|
|
||||||
- name: postfix_sent_userinfo_postfix.conf
|
|
||||||
src_path: e.mx/root/bin/postfix/conf/sent_userinfo_postfix.conf
|
|
||||||
dest_path: /root/bin/postfix/conf/sent_userinfo_postfix.conf
|
|
||||||
|
|
||||||
- name: postfix_whitelist_mb_sigs.conf
|
|
||||||
src_path: e.mx/root/bin/postfix/conf/whitelist_mb_sigs.conf
|
|
||||||
dest_path: /root/bin/postfix/conf/whitelist_mb_sigs.conf
|
|
||||||
|
|
||||||
|
|
||||||
copy_template_files: []
|
|
||||||
#
|
|
||||||
# - name: mailsystem_install_amavis.conf
|
|
||||||
# src_path: usr/local/src/mailsystem/conf/install_amavis.conf.j2
|
|
||||||
# dest_path: /usr/local/src/mailsystem/conf/install_amavis.conf
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
# vars used by roles/common/tasks/config_files_mailsystem_scripts.yml
|
# vars used by roles/common/tasks/config_files_mailsystem_scripts.yml
|
||||||
@@ -211,30 +181,31 @@ si_authorisation_signature: abb4ec6b194639f3d123154f1b971843a3b8751d8c1bcdc7d07e
|
|||||||
#
|
#
|
||||||
website_name_postfixadmin: adm-e.oopen.de
|
website_name_postfixadmin: adm-e.oopen.de
|
||||||
|
|
||||||
email_welcome_message: "\n
|
email_welcome_message: |
|
||||||
Hallo,\n
|
|
||||||
|
|
||||||
Ihre/Deine neue E-Mail Adresse ist eingerichtet.\n
|
Hallo,
|
||||||
|
|
||||||
O.OPEN\n
|
Ihre/Deine neue E-Mail Adresse ist eingerichtet.
|
||||||
|
|
||||||
--\n
|
O.OPEN
|
||||||
O.OPEN | Phone: +49 30 / 290 484 91\n
|
|
||||||
Erkelenzdamm 21 | Fax: +49 30 / 290 484 99\n
|
--
|
||||||
D-10999 Berlin | E-MAIL: oo@oopen.de\n
|
O.OPEN | Phone: +49 30 / 290 484 91
|
||||||
"
|
Erkelenzdamm 21 | Fax: +49 30 / 290 484 99
|
||||||
|
D-10999 Berlin | E-MAIL: oo@oopen.de
|
||||||
|
|
||||||
# install_update_dovecot.conf
|
# install_update_dovecot.conf
|
||||||
#
|
#
|
||||||
dovecot_from_address: "o.open <oo@oopen.de>"
|
dovecot_from_address: "o.open <oo@oopen.de>"
|
||||||
dovecot_reply_to: "oo@oopen.de"
|
dovecot_reply_to: "oo@oopen.de"
|
||||||
webmailer_address: "https://webmail-e.oopen.de"
|
webmailer_address: "https://webmail-e.oopen.de"
|
||||||
salutation: "O.OPEN\n
|
salutation: |
|
||||||
|
O.OPEN
|
||||||
|
|
||||||
--\n
|
--
|
||||||
O.OPEN | Phone: +49 30 / 290 484 91\n
|
O.OPEN | Phone: +49 30 / 290 484 91
|
||||||
Erkelenzdamm 21 | Fax: +49 30 / 290 484 99\n
|
Erkelenzdamm 21 | Fax: +49 30 / 290 484 99
|
||||||
D-10999 Berlin | http://oopen.de"
|
D-10999 Berlin | http://oopen.de
|
||||||
|
|
||||||
# install_upgrade_roundcube-webmail.conf
|
# install_upgrade_roundcube-webmail.conf
|
||||||
#
|
#
|
||||||
+2
-4
@@ -6,10 +6,10 @@
|
|||||||
|
|
||||||
|
|
||||||
# If true, all additional files in /etc/network/interfaces/interfaces.d/ are deleted
|
# If true, all additional files in /etc/network/interfaces/interfaces.d/ are deleted
|
||||||
network_manage_devices: True
|
network_manage_devices: true
|
||||||
|
|
||||||
# Should the interfaces be reloaded after config change?
|
# Should the interfaces be reloaded after config change?
|
||||||
network_interface_reload: False
|
network_interface_reload: false
|
||||||
|
|
||||||
network_interface_path: /etc/network/interfaces.d
|
network_interface_path: /etc/network/interfaces.d
|
||||||
network_interface_required_packages:
|
network_interface_required_packages:
|
||||||
@@ -233,7 +233,6 @@ default_user:
|
|||||||
- 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIItQLQ7lhBY2USF4Jcp4teF+1NydI73VeHYbQW8q4Mcw root@gw-ah'
|
- 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIItQLQ7lhBY2USF4Jcp4teF+1NydI73VeHYbQW8q4Mcw root@gw-ah'
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
# vars used by roles/common/tasks/cron.yml
|
# vars used by roles/common/tasks/cron.yml
|
||||||
# ---
|
# ---
|
||||||
@@ -281,7 +280,6 @@ cron_user_special_time_entries:
|
|||||||
# insertafter: PATH
|
# insertafter: PATH
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
# vars used by roles/common/tasks/users.yml
|
# vars used by roles/common/tasks/users.yml
|
||||||
# ---
|
# ---
|
||||||
+2
-3
@@ -6,10 +6,10 @@
|
|||||||
|
|
||||||
|
|
||||||
# If true, all additional files in /etc/network/interfaces/interfaces.d/ are deleted
|
# If true, all additional files in /etc/network/interfaces/interfaces.d/ are deleted
|
||||||
network_manage_devices: True
|
network_manage_devices: true
|
||||||
|
|
||||||
# Should the interfaces be reloaded after config change?
|
# Should the interfaces be reloaded after config change?
|
||||||
network_interface_reload: False
|
network_interface_reload: false
|
||||||
|
|
||||||
network_interface_path: /etc/network/interfaces.d
|
network_interface_path: /etc/network/interfaces.d
|
||||||
network_interface_required_packages:
|
network_interface_required_packages:
|
||||||
@@ -177,7 +177,6 @@ cron_user_special_time_entries:
|
|||||||
insertafter: PATH
|
insertafter: PATH
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
# vars used by roles/common/tasks/users.yml
|
# vars used by roles/common/tasks/users.yml
|
||||||
# ---
|
# ---
|
||||||
+22
-3
@@ -6,10 +6,10 @@
|
|||||||
|
|
||||||
|
|
||||||
# If true, all additional files in /etc/network/interfaces/interfaces.d/ are deleted
|
# If true, all additional files in /etc/network/interfaces/interfaces.d/ are deleted
|
||||||
network_manage_devices: True
|
network_manage_devices: true
|
||||||
|
|
||||||
# Should the interfaces be reloaded after config change?
|
# Should the interfaces be reloaded after config change?
|
||||||
network_interface_reload: False
|
network_interface_reload: false
|
||||||
|
|
||||||
network_interface_path: /etc/network/interfaces.d
|
network_interface_path: /etc/network/interfaces.d
|
||||||
network_interface_required_packages:
|
network_interface_required_packages:
|
||||||
@@ -177,7 +177,6 @@ cron_user_special_time_entries:
|
|||||||
insertafter: PATH
|
insertafter: PATH
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
# vars used by roles/common/tasks/users.yml
|
# vars used by roles/common/tasks/users.yml
|
||||||
# ---
|
# ---
|
||||||
@@ -392,6 +391,26 @@ samba_user:
|
|||||||
- verwaltung
|
- verwaltung
|
||||||
password: 'q.Y-q/3r9j.E'
|
password: 'q.Y-q/3r9j.E'
|
||||||
|
|
||||||
|
- name: buchhaltung
|
||||||
|
groups:
|
||||||
|
- buero
|
||||||
|
password: '7RcK/j3Sez-y'
|
||||||
|
|
||||||
|
- name: wimi
|
||||||
|
groups:
|
||||||
|
- buero
|
||||||
|
password: 'c2F.v.xd49-I'
|
||||||
|
|
||||||
|
- name: refa1
|
||||||
|
groups:
|
||||||
|
- buero
|
||||||
|
password: '3hp-hf7Pym.J'
|
||||||
|
|
||||||
|
- name: refi-m40
|
||||||
|
groups:
|
||||||
|
- buero
|
||||||
|
password: 'VX.S.3zKr446'
|
||||||
|
|
||||||
|
|
||||||
# - name: lap-02
|
# - name: lap-02
|
||||||
# groups:
|
# groups:
|
||||||
+2
-2
@@ -6,10 +6,10 @@
|
|||||||
|
|
||||||
|
|
||||||
# If true, all additional files in /etc/network/interfaces/interfaces.d/ are deleted
|
# If true, all additional files in /etc/network/interfaces/interfaces.d/ are deleted
|
||||||
network_manage_devices: True
|
network_manage_devices: true
|
||||||
|
|
||||||
# Should the interfaces be reloaded after config change?
|
# Should the interfaces be reloaded after config change?
|
||||||
network_interface_reload: False
|
network_interface_reload: false
|
||||||
|
|
||||||
network_interface_path: /etc/network/interfaces.d
|
network_interface_path: /etc/network/interfaces.d
|
||||||
network_interface_required_packages:
|
network_interface_required_packages:
|
||||||
@@ -6,10 +6,10 @@
|
|||||||
|
|
||||||
|
|
||||||
# If true, all additional files in /etc/network/interfaces/interfaces.d/ are deleted
|
# If true, all additional files in /etc/network/interfaces/interfaces.d/ are deleted
|
||||||
network_manage_devices: True
|
network_manage_devices: true
|
||||||
|
|
||||||
# Should the interfaces be reloaded after config change?
|
# Should the interfaces be reloaded after config change?
|
||||||
network_interface_reload: False
|
network_interface_reload: false
|
||||||
|
|
||||||
network_interface_path: /etc/network/interfaces.d
|
network_interface_path: /etc/network/interfaces.d
|
||||||
network_interface_required_packages:
|
network_interface_required_packages:
|
||||||
@@ -247,7 +247,6 @@ cron_user_special_time_entries:
|
|||||||
insertafter: PATH
|
insertafter: PATH
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
# vars used by roles/common/tasks/users.yml
|
# vars used by roles/common/tasks/users.yml
|
||||||
# ---
|
# ---
|
||||||
@@ -305,7 +304,6 @@ nfs_exports:
|
|||||||
use_fsid_option: true
|
use_fsid_option: true
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
# vars used by roles/common/tasks/samba-config-server.yml
|
# vars used by roles/common/tasks/samba-config-server.yml
|
||||||
# vars used by roles/common/tasks/samba-user.yml
|
# vars used by roles/common/tasks/samba-user.yml
|
||||||
@@ -557,7 +555,6 @@ samba_shares:
|
|||||||
vfs_object_recycle: false
|
vfs_object_recycle: false
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ==============================
|
# ==============================
|
||||||
|
|
||||||
|
|
||||||
+2
-5
@@ -6,10 +6,10 @@
|
|||||||
|
|
||||||
|
|
||||||
# If true, all additional files in /etc/network/interfaces/interfaces.d/ are deleted
|
# If true, all additional files in /etc/network/interfaces/interfaces.d/ are deleted
|
||||||
network_manage_devices: True
|
network_manage_devices: true
|
||||||
|
|
||||||
# Should the interfaces be reloaded after config change?
|
# Should the interfaces be reloaded after config change?
|
||||||
network_interface_reload: False
|
network_interface_reload: false
|
||||||
|
|
||||||
network_interface_path: /etc/network/interfaces.d
|
network_interface_path: /etc/network/interfaces.d
|
||||||
network_interface_required_packages:
|
network_interface_required_packages:
|
||||||
@@ -156,7 +156,6 @@ cron_user_special_time_entries:
|
|||||||
insertafter: PATH
|
insertafter: PATH
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
# vars used by roles/common/tasks/users.yml
|
# vars used by roles/common/tasks/users.yml
|
||||||
# ---
|
# ---
|
||||||
@@ -225,7 +224,6 @@ nfs_exports:
|
|||||||
use_fsid_option: true
|
use_fsid_option: true
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
# vars used by roles/common/tasks/samba-config-server.yml
|
# vars used by roles/common/tasks/samba-config-server.yml
|
||||||
# vars used by roles/common/tasks/samba-user.yml
|
# vars used by roles/common/tasks/samba-user.yml
|
||||||
@@ -963,7 +961,6 @@ samba_shares:
|
|||||||
recycle_path: '@Recycle'
|
recycle_path: '@Recycle'
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ==============================
|
# ==============================
|
||||||
|
|
||||||
|
|
||||||
@@ -6,10 +6,10 @@
|
|||||||
|
|
||||||
|
|
||||||
# If true, all additional files in /etc/network/interfaces/interfaces.d/ are deleted
|
# If true, all additional files in /etc/network/interfaces/interfaces.d/ are deleted
|
||||||
network_manage_devices: True
|
network_manage_devices: true
|
||||||
|
|
||||||
# Should the interfaces be reloaded after config change?
|
# Should the interfaces be reloaded after config change?
|
||||||
network_interface_reload: False
|
network_interface_reload: false
|
||||||
|
|
||||||
network_interface_path: /etc/network/interfaces.d
|
network_interface_path: /etc/network/interfaces.d
|
||||||
network_interface_required_packages:
|
network_interface_required_packages:
|
||||||
@@ -73,7 +73,6 @@ install_compiler_pkgs: true
|
|||||||
# dest_path: /usr/local/src/mailsystem/conf/install_amavis.conf
|
# dest_path: /usr/local/src/mailsystem/conf/install_amavis.conf
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
# vars used by roles/common/tasks/config_files_mailsystem_scripts.yml
|
# vars used by roles/common/tasks/config_files_mailsystem_scripts.yml
|
||||||
# ---
|
# ---
|
||||||
@@ -112,7 +112,6 @@ cron_user_special_time_entries:
|
|||||||
insertafter: PATH
|
insertafter: PATH
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
# vars used by roles/common/tasks/users.yml
|
# vars used by roles/common/tasks/users.yml
|
||||||
# ---
|
# ---
|
||||||
+2
-5
@@ -6,10 +6,10 @@
|
|||||||
|
|
||||||
|
|
||||||
# If true, all additional files in /etc/network/interfaces/interfaces.d/ are deleted
|
# If true, all additional files in /etc/network/interfaces/interfaces.d/ are deleted
|
||||||
network_manage_devices: True
|
network_manage_devices: true
|
||||||
|
|
||||||
# Should the interfaces be reloaded after config change?
|
# Should the interfaces be reloaded after config change?
|
||||||
network_interface_reload: False
|
network_interface_reload: false
|
||||||
|
|
||||||
network_interface_path: /etc/network/interfaces.d
|
network_interface_path: /etc/network/interfaces.d
|
||||||
network_interface_required_packages:
|
network_interface_required_packages:
|
||||||
@@ -214,7 +214,6 @@ cron_user_entries:
|
|||||||
job: /root/bin/monitoring/check_ntpsec_service.sh
|
job: /root/bin/monitoring/check_ntpsec_service.sh
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
# vars used by roles/common/tasks/users.yml
|
# vars used by roles/common/tasks/users.yml
|
||||||
# ---
|
# ---
|
||||||
@@ -287,7 +286,6 @@ samba_groups:
|
|||||||
group_id: 1190
|
group_id: 1190
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
samba_user:
|
samba_user:
|
||||||
|
|
||||||
- name: advoware
|
- name: advoware
|
||||||
@@ -591,7 +589,6 @@ samba_user:
|
|||||||
password: 'uJ5gF/m53p.P'
|
password: 'uJ5gF/m53p.P'
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- name: aphex2
|
- name: aphex2
|
||||||
groups:
|
groups:
|
||||||
- alle
|
- alle
|
||||||
@@ -1,774 +0,0 @@
|
|||||||
---
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/network_interfaces
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# If true, all additional files in /etc/network/interfaces/interfaces.d/ are deleted
|
|
||||||
network_manage_devices: True
|
|
||||||
|
|
||||||
# Should the interfaces be reloaded after config change?
|
|
||||||
network_interface_reload: False
|
|
||||||
|
|
||||||
network_interface_path: /etc/network/interfaces.d
|
|
||||||
network_interface_required_packages:
|
|
||||||
- vlan
|
|
||||||
- bridge-utils
|
|
||||||
- ifmetric
|
|
||||||
- ifupdown
|
|
||||||
- ifenslave
|
|
||||||
|
|
||||||
|
|
||||||
network_interfaces:
|
|
||||||
|
|
||||||
- device: br0
|
|
||||||
# use only once per device (for the first device entry)
|
|
||||||
headline: br0 - bridge over device enp97s0
|
|
||||||
|
|
||||||
# auto & allow are only used for the first device entry
|
|
||||||
allow: [] # array of allow-[stanzas] eg. allow-hotplug
|
|
||||||
auto: true
|
|
||||||
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
description:
|
|
||||||
address: 192.168.122.10
|
|
||||||
netmask: 24
|
|
||||||
gateway: 192.168.122.254
|
|
||||||
|
|
||||||
# optional dns settings nameservers: []
|
|
||||||
#
|
|
||||||
# nameservers:
|
|
||||||
# - 194.150.168.168 # dns.as250.net
|
|
||||||
# - 91.239.100.100 # anycast.censurfridns.dk
|
|
||||||
# search: warenform.de
|
|
||||||
#
|
|
||||||
|
|
||||||
# optional bridge parameters bridge: {}
|
|
||||||
# bridge:
|
|
||||||
# ports:
|
|
||||||
# stp:
|
|
||||||
# fd:
|
|
||||||
# maxwait:
|
|
||||||
# waitport:
|
|
||||||
bridge:
|
|
||||||
ports: enp97s0 # for mor devices support a blank separated list
|
|
||||||
stp: !!str off
|
|
||||||
fd: 5
|
|
||||||
hello: 2
|
|
||||||
maxage: 12
|
|
||||||
|
|
||||||
# inline hook scripts
|
|
||||||
pre-up:
|
|
||||||
- !!str "ip link set dev enp97s0 up" # pre-up script lines
|
|
||||||
up: [] #up script lines
|
|
||||||
post-up: [] # post-up script lines (alias for up)
|
|
||||||
pre-down: [] # pre-down script lines (alias for down)
|
|
||||||
down: [] # down script lines
|
|
||||||
post-down: [] # post-down script lines
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/ansible_dependencies
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/ansible_user
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/basic.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/sshd.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/apt.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/systemd-resolved.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
systemd_resolved: true
|
|
||||||
|
|
||||||
# CyberGhost - Schnelle Verbindung mit Keine-Logs-Datenschutzrichtlinie
|
|
||||||
# Primäre DNS-Adresse: 38.132.106.139
|
|
||||||
# Sekundäre DNS-Adresse: 194.187.251.67
|
|
||||||
#
|
|
||||||
# Cloudflare (USA) Bester kostenloser DNS-Server für Gaming mit zuverlässigen Verbindungen
|
|
||||||
# primäre DNS-Adresse
|
|
||||||
# IPv4: 1.1.1.1
|
|
||||||
# IPv6: 2606:4700:4700::1111
|
|
||||||
# sekundäre DNS-Adresse
|
|
||||||
# IPv4: 1.0.0.1
|
|
||||||
# IPv6: 2606:4700:4700::1001
|
|
||||||
#
|
|
||||||
# Google (USA) Public DNS - Großartige Kombination aus Geschwindigkeit und Sicherheit
|
|
||||||
# primäre DNS-Adresse
|
|
||||||
# IPv4: 8.8.8.8
|
|
||||||
# IPv6: 2001:4860:4860::8888
|
|
||||||
# sekundäre DNS-Adresse
|
|
||||||
# IPv4: 8.8.4.4
|
|
||||||
# IPv6: 2001:4860:4860::8844
|
|
||||||
#
|
|
||||||
# Quad9 (CH) - Blockiert mühelos schädliche Seiten und verhindert Phishing-Betrug
|
|
||||||
# primäre DNS-Adresse
|
|
||||||
# IPv4: 9.9.9.9
|
|
||||||
# IPv6: 2620:fe::fe
|
|
||||||
# sekundäre DNS-Adresse
|
|
||||||
# IPv4: 149.112.112.112
|
|
||||||
# IPv6: 2620:fe::9
|
|
||||||
#
|
|
||||||
# OpenNIC - https://www.opennic.org/
|
|
||||||
# IPv4: 195.10.195.195 - ns31.de
|
|
||||||
# IPv4: 94.16.114.254 - ns28.de
|
|
||||||
# IPv4: 51.254.162.59 - ns9.de
|
|
||||||
# IPv4: 194.36.144.87 - ns29.de
|
|
||||||
# IPv6: 2a00:f826:8:2::195 - ns31.de
|
|
||||||
#
|
|
||||||
# Freifunk München (normales DNS, DNS-over-TLS und DNS-over-HTTPS)
|
|
||||||
# IPv4: 5.1.66.255
|
|
||||||
# IPv6: 2001:678:e68:f000::
|
|
||||||
# Servername für DNS-over-TLS: dot.ffmuc.net
|
|
||||||
# IPv4: 185.150.99.255
|
|
||||||
# IPv6: 2001:678:ed0:f000::
|
|
||||||
# Servername für DNS-over-TLS: dot.ffmuc.net
|
|
||||||
# für iOS 14+: DoT-Server-Konfiguration (unsigniert, vom PrHdb)
|
|
||||||
resolved_nameserver:
|
|
||||||
- 192.168.122.1
|
|
||||||
|
|
||||||
# search domains
|
|
||||||
#
|
|
||||||
# If there are more than one search domains, then specify them here in the order in which
|
|
||||||
# the resolver should also search them
|
|
||||||
#
|
|
||||||
#resolved_domains: []
|
|
||||||
resolved_domains:
|
|
||||||
- ~.
|
|
||||||
- anw-km.netz
|
|
||||||
|
|
||||||
resolved_dnssec: false
|
|
||||||
|
|
||||||
# dns.as250.net: 194.150.168.168
|
|
||||||
#
|
|
||||||
resolved_fallback_nameserver:
|
|
||||||
- 172.16.122.254
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/cron.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
cron_user_special_time_entries:
|
|
||||||
|
|
||||||
- name: "Restart DNS Cache service 'systemd-resolved'"
|
|
||||||
special_time: reboot
|
|
||||||
job: "sleep 10 ; /bin/systemctl restart systemd-resolved"
|
|
||||||
insertafter: PATH
|
|
||||||
|
|
||||||
- name: "Activate ksm support"
|
|
||||||
special_time: reboot
|
|
||||||
job: "echo 1 > /sys/kernel/mm/ksm/run"
|
|
||||||
insertafter: PATH
|
|
||||||
|
|
||||||
|
|
||||||
cron_user_entries:
|
|
||||||
|
|
||||||
- name: "Check if SSH service is running. Restart service if needed."
|
|
||||||
minute: '*/5'
|
|
||||||
hour: '*'
|
|
||||||
job: /root/bin/monitoring/check_ssh.sh
|
|
||||||
|
|
||||||
- name: "Check if postfix mailservice is running. Restart service if needed."
|
|
||||||
minute: "*/5"
|
|
||||||
hour: "*"
|
|
||||||
job: /root/bin/monitoring/check_postfix.sh
|
|
||||||
|
|
||||||
- name: "Check Postfix E-Mail LOG file for 'fatal' errors."
|
|
||||||
minute: "*/30"
|
|
||||||
hour: "*"
|
|
||||||
job: /root/bin/postfix/check-postfix-fatal-errors.sh
|
|
||||||
|
|
||||||
- name: "Clean up Samba Trash Dirs"
|
|
||||||
minute: "02"
|
|
||||||
hour: "23"
|
|
||||||
job: /root/bin/samba/clean_samba_trash.sh
|
|
||||||
|
|
||||||
- name: "Set (group and access) Permissons for Samba shares"
|
|
||||||
minute: "14"
|
|
||||||
hour: "23"
|
|
||||||
job: /root/bin/samba/set_permissions_samba_shares.sh
|
|
||||||
|
|
||||||
- name: "Check if ntpsec is running. Restart service if needed."
|
|
||||||
minute: "*/6"
|
|
||||||
hour: "*"
|
|
||||||
job: /root/bin/monitoring/check_ntpsec_service.sh
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/users.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/users-systemfiles.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/webadmin-user.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/sudoers.yml
|
|
||||||
# ---
|
|
||||||
#
|
|
||||||
# see: roles/common/tasks/vars
|
|
||||||
|
|
||||||
sudoers_file_user_back_mount_privileges:
|
|
||||||
- 'ALL=(root) NOPASSWD: /usr/bin/mount'
|
|
||||||
- 'ALL=(root) NOPASSWD: /usr/bin/umount'
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/caching-nameserver.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/git.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/samba-config-server.yml
|
|
||||||
# vars used by roles/common/tasks/samba-user.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
samba_server_ip: 192.168.122.10
|
|
||||||
samba_server_cidr_prefix: 24
|
|
||||||
|
|
||||||
samba_workgroup: WORKGROUP
|
|
||||||
|
|
||||||
samba_netbios_name: FILE-KM
|
|
||||||
|
|
||||||
samba_server_min_protocol: !!str NT1
|
|
||||||
|
|
||||||
samba_groups:
|
|
||||||
- name: kanzlei
|
|
||||||
group_id: 1100
|
|
||||||
- name: a-jur
|
|
||||||
group_id: 1110
|
|
||||||
- name: intern
|
|
||||||
group_id: 1120
|
|
||||||
- name: wildvang
|
|
||||||
group_id: 1130
|
|
||||||
#- name: aulmann
|
|
||||||
# group_id: 1130
|
|
||||||
#- name: howe
|
|
||||||
# group_id: 1140
|
|
||||||
- name: stahmann
|
|
||||||
group_id: 1150
|
|
||||||
- name: traine
|
|
||||||
group_id: 1160
|
|
||||||
- name: public
|
|
||||||
group_id: 1170
|
|
||||||
- name: alle
|
|
||||||
group_id: 1180
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
samba_user:
|
|
||||||
|
|
||||||
- name: advoware
|
|
||||||
groups:
|
|
||||||
- advoware
|
|
||||||
password: '9WNRbc49m3'
|
|
||||||
|
|
||||||
- name: a-jur
|
|
||||||
groups:
|
|
||||||
- a-jur
|
|
||||||
- alle
|
|
||||||
- intern
|
|
||||||
- kanzlei
|
|
||||||
password: 'a-jur'
|
|
||||||
|
|
||||||
- name: andrea
|
|
||||||
groups:
|
|
||||||
- advoware
|
|
||||||
- aulmann
|
|
||||||
- howe
|
|
||||||
- stahmann
|
|
||||||
- traine
|
|
||||||
- public
|
|
||||||
password: 'fXc3bmK9gj'
|
|
||||||
|
|
||||||
- name: andreas
|
|
||||||
groups:
|
|
||||||
- a-jur
|
|
||||||
- advoware
|
|
||||||
- alle
|
|
||||||
- kanzlei
|
|
||||||
password: 'YKQRa.M9-6rL'
|
|
||||||
|
|
||||||
- name: aphex2
|
|
||||||
groups:
|
|
||||||
- alle
|
|
||||||
- aulmann
|
|
||||||
- howe
|
|
||||||
- stahmann
|
|
||||||
- traine
|
|
||||||
- public
|
|
||||||
password: 'J3KMRprK9H'
|
|
||||||
|
|
||||||
- name: berenice
|
|
||||||
groups:
|
|
||||||
- advoware
|
|
||||||
- kanzlei
|
|
||||||
- a-jur
|
|
||||||
- alle
|
|
||||||
password: 'berenice'
|
|
||||||
|
|
||||||
- name: beuster
|
|
||||||
groups:
|
|
||||||
- advoware
|
|
||||||
- aulmann
|
|
||||||
- howe
|
|
||||||
- stahmann
|
|
||||||
- traine
|
|
||||||
- public
|
|
||||||
- alle
|
|
||||||
password: 'zlm17Kx'
|
|
||||||
|
|
||||||
- name: buero
|
|
||||||
groups:
|
|
||||||
- advoware
|
|
||||||
- kanzlei
|
|
||||||
- a-jur
|
|
||||||
- alle
|
|
||||||
password: 'buero'
|
|
||||||
|
|
||||||
- name: buero2
|
|
||||||
groups:
|
|
||||||
- advoware
|
|
||||||
- kanzlei
|
|
||||||
- a-jur
|
|
||||||
- alle
|
|
||||||
password: 'buero2'
|
|
||||||
|
|
||||||
- name: buero3
|
|
||||||
groups:
|
|
||||||
- advoware
|
|
||||||
- kanzlei
|
|
||||||
- a-jur
|
|
||||||
- alle
|
|
||||||
password: 'buero3'
|
|
||||||
|
|
||||||
- name: buero4
|
|
||||||
groups:
|
|
||||||
- advoware
|
|
||||||
- kanzlei
|
|
||||||
- a-jur
|
|
||||||
- alle
|
|
||||||
password: 'buero4'
|
|
||||||
|
|
||||||
- name: buero7
|
|
||||||
groups:
|
|
||||||
- advoware
|
|
||||||
- kanzlei
|
|
||||||
- a-jur
|
|
||||||
- alle
|
|
||||||
password: 'buero7'
|
|
||||||
|
|
||||||
- name: chris
|
|
||||||
groups:
|
|
||||||
- a-jur
|
|
||||||
- advoware
|
|
||||||
- alle
|
|
||||||
- aulmann
|
|
||||||
- intern
|
|
||||||
- kanzlei
|
|
||||||
- stahmann
|
|
||||||
- traine
|
|
||||||
- public
|
|
||||||
password: !vault |
|
|
||||||
$ANSIBLE_VAULT;1.1;AES256
|
|
||||||
30383265366434633965346530666535363761396165393434643665393137353765653739636364
|
|
||||||
6330623334353763613065343336306434376335646666380a363030363335656261656236636562
|
|
||||||
63663763616630383264303039336562626537366634303636356237323630666635356130383165
|
|
||||||
3837613337343533650a663061366230353531316535656433643162353063383534323833323138
|
|
||||||
3430
|
|
||||||
|
|
||||||
- name: christina
|
|
||||||
groups:
|
|
||||||
- advoware
|
|
||||||
- alle
|
|
||||||
- aulmann
|
|
||||||
- howe
|
|
||||||
- stahmann
|
|
||||||
- traine
|
|
||||||
- public
|
|
||||||
password: 'qvR7zX4Lhs'
|
|
||||||
|
|
||||||
- name: federico
|
|
||||||
groups:
|
|
||||||
- advoware
|
|
||||||
- alle
|
|
||||||
- aulmann
|
|
||||||
- howe
|
|
||||||
- stahmann
|
|
||||||
- traine
|
|
||||||
- public
|
|
||||||
password: 'zHfj9g3NcC'
|
|
||||||
|
|
||||||
# - name: gerhard
|
|
||||||
# groups:
|
|
||||||
# - advoware
|
|
||||||
# - alle
|
|
||||||
# - aulmann
|
|
||||||
# - howe
|
|
||||||
# - stahmann
|
|
||||||
# - traine
|
|
||||||
# - public
|
|
||||||
# password: 'bHdhzWnTj9'
|
|
||||||
|
|
||||||
- name: ho-st1
|
|
||||||
groups:
|
|
||||||
- alle
|
|
||||||
- howe
|
|
||||||
- stahmann
|
|
||||||
password: '44-Ro-440'
|
|
||||||
|
|
||||||
# - name: howe-staff-1
|
|
||||||
# groups:
|
|
||||||
# - advoware
|
|
||||||
# - alle
|
|
||||||
# - aulmann
|
|
||||||
# - howe
|
|
||||||
# password: ''
|
|
||||||
|
|
||||||
- name: irina
|
|
||||||
groups:
|
|
||||||
- advoware
|
|
||||||
- alle
|
|
||||||
- aulmann
|
|
||||||
- howe
|
|
||||||
- stahmann
|
|
||||||
- traine
|
|
||||||
- public
|
|
||||||
password: 'W9NKv39pXW'
|
|
||||||
|
|
||||||
- name: jessica
|
|
||||||
groups:
|
|
||||||
- advoware
|
|
||||||
- alle
|
|
||||||
- aulmann
|
|
||||||
- howe
|
|
||||||
- stahmann
|
|
||||||
- traine
|
|
||||||
- public
|
|
||||||
password: 'bV3pjPtjkR'
|
|
||||||
|
|
||||||
# - name: laura
|
|
||||||
# groups:
|
|
||||||
# - alle
|
|
||||||
# - aulmann
|
|
||||||
# - howe
|
|
||||||
# - stahmann
|
|
||||||
# - traine
|
|
||||||
# password: '99-Hamburg-990'
|
|
||||||
|
|
||||||
- name: lenovo3
|
|
||||||
groups:
|
|
||||||
- advoware
|
|
||||||
- alle
|
|
||||||
- aulmann
|
|
||||||
- howe
|
|
||||||
- stahmann
|
|
||||||
- traine
|
|
||||||
- public
|
|
||||||
password: 'fndvLmrt7W'
|
|
||||||
|
|
||||||
- name: lenovo4
|
|
||||||
groups:
|
|
||||||
- advoware
|
|
||||||
- alle
|
|
||||||
- aulmann
|
|
||||||
- howe
|
|
||||||
- stahmann
|
|
||||||
- traine
|
|
||||||
- public
|
|
||||||
password: 'tpCMmTKj7H'
|
|
||||||
|
|
||||||
- name: lenovo5
|
|
||||||
groups:
|
|
||||||
- advoware
|
|
||||||
- alle
|
|
||||||
- aulmann
|
|
||||||
- howe
|
|
||||||
- stahmann
|
|
||||||
- traine
|
|
||||||
- public
|
|
||||||
password: 'L5Hannover51'
|
|
||||||
|
|
||||||
- name: lenovo6
|
|
||||||
groups:
|
|
||||||
- advoware
|
|
||||||
- alle
|
|
||||||
- aulmann
|
|
||||||
- howe
|
|
||||||
- stahmann
|
|
||||||
- traine
|
|
||||||
password: '66koeln66'
|
|
||||||
|
|
||||||
- name: rm-buero1
|
|
||||||
groups:
|
|
||||||
- advoware
|
|
||||||
- alle
|
|
||||||
- a-jur
|
|
||||||
- kanzlei
|
|
||||||
password: ''
|
|
||||||
|
|
||||||
- name: rm-buero2
|
|
||||||
groups:
|
|
||||||
- advoware
|
|
||||||
- alle
|
|
||||||
- a-jur
|
|
||||||
- kanzlei
|
|
||||||
password: ''
|
|
||||||
|
|
||||||
- name: rolf
|
|
||||||
groups:
|
|
||||||
- alle
|
|
||||||
- aulmann
|
|
||||||
- howe
|
|
||||||
- stahmann
|
|
||||||
- traine
|
|
||||||
- public
|
|
||||||
password: '4xNVNFXgP4'
|
|
||||||
|
|
||||||
- name: sysadm
|
|
||||||
groups:
|
|
||||||
- a-jur
|
|
||||||
- advoware
|
|
||||||
- alle
|
|
||||||
- aulmann
|
|
||||||
- intern
|
|
||||||
- kanzlei
|
|
||||||
- stahmann
|
|
||||||
- traine
|
|
||||||
- public
|
|
||||||
password: 'Ax_GSHh5'
|
|
||||||
|
|
||||||
- name: thomas
|
|
||||||
groups:
|
|
||||||
- advoware
|
|
||||||
- alle
|
|
||||||
- traine
|
|
||||||
password: '55-tho-mas-550'
|
|
||||||
|
|
||||||
- name: Tresen
|
|
||||||
groups:
|
|
||||||
- a-jur
|
|
||||||
- advoware
|
|
||||||
- alle
|
|
||||||
- kanzlei
|
|
||||||
- howe
|
|
||||||
- stahmann
|
|
||||||
- traine
|
|
||||||
- public
|
|
||||||
password: 'maltzwo2'
|
|
||||||
|
|
||||||
- name: wiebke
|
|
||||||
groups:
|
|
||||||
- alle
|
|
||||||
- wildvang
|
|
||||||
- public
|
|
||||||
password: '4xNVNFXgP4'
|
|
||||||
|
|
||||||
- name: winadm
|
|
||||||
groups:
|
|
||||||
- a-jur
|
|
||||||
- advoware
|
|
||||||
- alle
|
|
||||||
- intern
|
|
||||||
- kanzlei
|
|
||||||
- public
|
|
||||||
password: 'Ax_GSHh5'
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
base_home: /data/home
|
|
||||||
|
|
||||||
remove_samba_users:
|
|
||||||
- name: howe-staff-1
|
|
||||||
- name: gerhard
|
|
||||||
- name: laura
|
|
||||||
|
|
||||||
#remove_samba_users: []
|
|
||||||
#remove_samba_users:
|
|
||||||
# - name: evren
|
|
||||||
|
|
||||||
samba_shares:
|
|
||||||
|
|
||||||
- name: a-jur
|
|
||||||
comment: a-jur Dokumente
|
|
||||||
path: /data/samba/a-jur
|
|
||||||
group_valid_users: a-jur
|
|
||||||
group_write_list: a-jur
|
|
||||||
file_create_mask: !!str 664
|
|
||||||
dir_create_mask: !!str 2775
|
|
||||||
vfs_object_recycle: true
|
|
||||||
recycle_path: '@Recycle'
|
|
||||||
vfs_object_recycle_is_visible: true
|
|
||||||
|
|
||||||
- name: kanzlei
|
|
||||||
comment: Kanzlei auf Fileserver
|
|
||||||
path: /data/samba/kanzlei
|
|
||||||
group_valid_users: kanzlei
|
|
||||||
group_write_list: kanzlei
|
|
||||||
file_create_mask: !!str 664
|
|
||||||
dir_create_mask: !!str 2775
|
|
||||||
vfs_object_recycle: true
|
|
||||||
recycle_path: '@Recycle'
|
|
||||||
vfs_object_recycle_is_visible: true
|
|
||||||
|
|
||||||
- name: install
|
|
||||||
comment: Install auf Fileserver
|
|
||||||
path: /data/samba/no-backup-shares/install
|
|
||||||
group_valid_users: intern
|
|
||||||
group_write_list: intern
|
|
||||||
file_create_mask: !!str 660
|
|
||||||
dir_create_mask: !!str 2770
|
|
||||||
vfs_object_recycle: false
|
|
||||||
|
|
||||||
- name: wildvang
|
|
||||||
comment: Traine auf Fileserver
|
|
||||||
path: /data/samba/Wildvang
|
|
||||||
group_valid_users: wildvang
|
|
||||||
group_write_list: wildvang
|
|
||||||
file_create_mask: !!str 660
|
|
||||||
dir_create_mask: !!str 2770
|
|
||||||
vfs_object_recycle: true
|
|
||||||
recycle_path: '@Recycle'
|
|
||||||
vfs_object_recycle_is_visible: true
|
|
||||||
|
|
||||||
# - name: aulmann
|
|
||||||
# comment: Aulmann auf Fileserver
|
|
||||||
# path: /data/samba/Aulmann
|
|
||||||
# group_valid_users: aulmann
|
|
||||||
# group_write_list: aulmann
|
|
||||||
# file_create_mask: !!str 660
|
|
||||||
# dir_create_mask: !!str 2770
|
|
||||||
# vfs_object_recycle: true
|
|
||||||
# recycle_path: '@Recycle'
|
|
||||||
# vfs_object_recycle_is_visible: true
|
|
||||||
|
|
||||||
# - name: howe
|
|
||||||
# comment: Howe auf Fileserver
|
|
||||||
# path: /data/samba/Howe
|
|
||||||
# group_valid_users: howe
|
|
||||||
# group_write_list: howe
|
|
||||||
# file_create_mask: !!str 660
|
|
||||||
# dir_create_mask: !!str 2770
|
|
||||||
# vfs_object_recycle: true
|
|
||||||
# recycle_path: '@Recycle'
|
|
||||||
# vfs_object_recycle_is_visible: true
|
|
||||||
|
|
||||||
- name: stahmann
|
|
||||||
comment: Stahmann auf Fileserver
|
|
||||||
path: /data/samba/Stahmann
|
|
||||||
group_valid_users: stahmann
|
|
||||||
group_write_list: stahmann
|
|
||||||
file_create_mask: !!str 660
|
|
||||||
dir_create_mask: !!str 2770
|
|
||||||
vfs_object_recycle: true
|
|
||||||
recycle_path: '@Recycle'
|
|
||||||
vfs_object_recycle_is_visible: true
|
|
||||||
|
|
||||||
- name: traine
|
|
||||||
comment: Traine auf Fileserver
|
|
||||||
path: /data/samba/Traine
|
|
||||||
group_valid_users: traine
|
|
||||||
group_write_list: traine
|
|
||||||
file_create_mask: !!str 660
|
|
||||||
dir_create_mask: !!str 2770
|
|
||||||
vfs_object_recycle: true
|
|
||||||
recycle_path: '@Recycle'
|
|
||||||
vfs_object_recycle_is_visible: true
|
|
||||||
|
|
||||||
- name: public
|
|
||||||
comment: Public auf Fileserver
|
|
||||||
path: /data/samba/public
|
|
||||||
group_valid_users: public
|
|
||||||
group_write_list: public
|
|
||||||
file_create_mask: !!str 660
|
|
||||||
dir_create_mask: !!str 2770
|
|
||||||
vfs_object_recycle: true
|
|
||||||
recycle_path: '@Recycle'
|
|
||||||
vfs_object_recycle_is_visible: true
|
|
||||||
|
|
||||||
- name: Advoware-Schriftverkehr
|
|
||||||
comment: Advoware Dokumente
|
|
||||||
path: /data/samba/Advoware-Schriftverkehr
|
|
||||||
group_valid_users: advoware
|
|
||||||
group_write_list: advoware
|
|
||||||
file_create_mask: !!str 660
|
|
||||||
dir_create_mask: !!str 2770
|
|
||||||
vfs_object_recycle: true
|
|
||||||
recycle_path: '@Recycle'
|
|
||||||
vfs_object_recycle_is_visible: true
|
|
||||||
|
|
||||||
- name: Advoware-Backup
|
|
||||||
comment: Advoware Dokumente
|
|
||||||
path: /data/samba/Advoware-Backup
|
|
||||||
group_valid_users: intern
|
|
||||||
group_write_list: intern
|
|
||||||
file_create_mask: !!str 660
|
|
||||||
dir_create_mask: !!str 2770
|
|
||||||
vfs_object_recycle: true
|
|
||||||
recycle_path: '@Recycle'
|
|
||||||
vfs_object_recycle_is_visible: false
|
|
||||||
|
|
||||||
- name: alle
|
|
||||||
comment: Alle auf Fileserver
|
|
||||||
path: /data/samba/Alle
|
|
||||||
group_valid_users: alle
|
|
||||||
group_write_list: alle
|
|
||||||
file_create_mask: !!str 660
|
|
||||||
dir_create_mask: !!str 2770
|
|
||||||
vfs_object_recycle: true
|
|
||||||
recycle_path: '@Recycle'
|
|
||||||
vfs_object_recycle_is_visible: true
|
|
||||||
|
|
||||||
# - name: web
|
|
||||||
# comment: Web auf Fileserver
|
|
||||||
# path: /data/samba/Web
|
|
||||||
# group_valid_users: web
|
|
||||||
# group_write_list: web
|
|
||||||
# file_create_mask: !!str 660
|
|
||||||
# dir_create_mask: !!str 2770
|
|
||||||
# vfs_object_recycle: true
|
|
||||||
# recycle_path: '@Recycle'
|
|
||||||
|
|
||||||
|
|
||||||
# ==============================
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by scripts/reset_root_passwd.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
root_user:
|
|
||||||
name: root
|
|
||||||
password: $6$J1ssJfdshf/$mknQEPDcW4HN5.wFfawbamamywI7F7fhdZmaR1abNrc4DA7DNRx766lz3ygf9YV3gcmRq3QhJ3fBVlkwGMCvq.
|
|
||||||
+22
-4
@@ -4,10 +4,10 @@
|
|||||||
# ---
|
# ---
|
||||||
|
|
||||||
# If true, all additional files in /etc/network/interfaces/interfaces.d/ are deleted
|
# If true, all additional files in /etc/network/interfaces/interfaces.d/ are deleted
|
||||||
network_manage_devices: True
|
network_manage_devices: true
|
||||||
|
|
||||||
# Should the interfaces be reloaded after config change?
|
# Should the interfaces be reloaded after config change?
|
||||||
network_interface_reload: False
|
network_interface_reload: false
|
||||||
|
|
||||||
network_interface_path: /etc/network/interfaces.d
|
network_interface_path: /etc/network/interfaces.d
|
||||||
network_interface_required_packages:
|
network_interface_required_packages:
|
||||||
@@ -630,7 +630,6 @@ samba_user:
|
|||||||
password: "uJ5gF/m53p.P"
|
password: "uJ5gF/m53p.P"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- name: aphex2
|
- name: aphex2
|
||||||
groups:
|
groups:
|
||||||
- alle
|
- alle
|
||||||
@@ -843,6 +842,8 @@ samba_shares:
|
|||||||
file_create_mask: !!str 660
|
file_create_mask: !!str 660
|
||||||
dir_create_mask: !!str 2770
|
dir_create_mask: !!str 2770
|
||||||
vfs_object_virusfilter: true
|
vfs_object_virusfilter: true
|
||||||
|
vfs_object_virusfilter_include_files:
|
||||||
|
- eml
|
||||||
vfs_object_recycle: false
|
vfs_object_recycle: false
|
||||||
|
|
||||||
- name: eibelshaeuser
|
- name: eibelshaeuser
|
||||||
@@ -901,6 +902,10 @@ samba_shares:
|
|||||||
file_create_mask: !!str 660
|
file_create_mask: !!str 660
|
||||||
dir_create_mask: !!str 2770
|
dir_create_mask: !!str 2770
|
||||||
vfs_object_virusfilter: true
|
vfs_object_virusfilter: true
|
||||||
|
vfs_object_virusfilter_include_files:
|
||||||
|
- eml
|
||||||
|
- exe
|
||||||
|
- msi
|
||||||
vfs_object_recycle: true
|
vfs_object_recycle: true
|
||||||
recycle_path: "@Recycle"
|
recycle_path: "@Recycle"
|
||||||
vfs_object_recycle_is_visible: true
|
vfs_object_recycle_is_visible: true
|
||||||
@@ -925,6 +930,9 @@ samba_shares:
|
|||||||
file_create_mask: !!str 660
|
file_create_mask: !!str 660
|
||||||
dir_create_mask: !!str 2770
|
dir_create_mask: !!str 2770
|
||||||
vfs_object_virusfilter: true
|
vfs_object_virusfilter: true
|
||||||
|
vfs_object_virusfilter_exclude_files:
|
||||||
|
- docx
|
||||||
|
- pdf
|
||||||
vfs_object_recycle: true
|
vfs_object_recycle: true
|
||||||
recycle_path: "@Recycle"
|
recycle_path: "@Recycle"
|
||||||
vfs_object_recycle_is_visible: true
|
vfs_object_recycle_is_visible: true
|
||||||
@@ -949,7 +957,7 @@ samba_shares:
|
|||||||
file_create_mask: !!str 660
|
file_create_mask: !!str 660
|
||||||
dir_create_mask: !!str 2770
|
dir_create_mask: !!str 2770
|
||||||
vfs_object_virusfilter: true
|
vfs_object_virusfilter: true
|
||||||
vfs_object_recycle: true
|
vfs_object_recycle: false
|
||||||
recycle_path: "@Recycle"
|
recycle_path: "@Recycle"
|
||||||
vfs_object_recycle_is_visible: false
|
vfs_object_recycle_is_visible: false
|
||||||
|
|
||||||
@@ -965,6 +973,16 @@ samba_shares:
|
|||||||
recycle_path: "@Recycle"
|
recycle_path: "@Recycle"
|
||||||
vfs_object_recycle_is_visible: true
|
vfs_object_recycle_is_visible: true
|
||||||
|
|
||||||
|
- name: Windows-Server-2025-Backup
|
||||||
|
comment: Windows-Server-2025-Backup on Fileserver
|
||||||
|
path: /data/samba/Windows-Server-2025-Backup
|
||||||
|
group_valid_users: sysadm
|
||||||
|
group_write_list: sysadm
|
||||||
|
file_create_mask: !!str 664
|
||||||
|
dir_create_mask: !!str 2775
|
||||||
|
guest_ok: !!str yes
|
||||||
|
vfs_object_recycle: false
|
||||||
|
|
||||||
# - name: web
|
# - name: web
|
||||||
# comment: Web auf Fileserver
|
# comment: Web auf Fileserver
|
||||||
# path: /data/samba/Web
|
# path: /data/samba/Web
|
||||||
-2
@@ -132,7 +132,6 @@ cron_user_entries:
|
|||||||
job: /root/bin/monitoring/check_ssh.sh
|
job: /root/bin/monitoring/check_ssh.sh
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
# vars used by roles/common/tasks/users.yml
|
# vars used by roles/common/tasks/users.yml
|
||||||
# ---
|
# ---
|
||||||
@@ -197,4 +196,3 @@ git_firewall_repository:
|
|||||||
root_user:
|
root_user:
|
||||||
name: root
|
name: root
|
||||||
password: $6$J1ssJfdshf/$mknQEPDcW4HN5.wFfawbamamywI7F7fhdZmaR1abNrc4DA7DNRx766lz3ygf9YV3gcmRq3QhJ3fBVlkwGMCvq.
|
password: $6$J1ssJfdshf/$mknQEPDcW4HN5.wFfawbamamywI7F7fhdZmaR1abNrc4DA7DNRx766lz3ygf9YV3gcmRq3QhJ3fBVlkwGMCvq.
|
||||||
|
|
||||||
@@ -105,14 +105,14 @@ resolved_fallback_nameserver:
|
|||||||
#
|
#
|
||||||
# root_ssh_keypair:
|
# root_ssh_keypair:
|
||||||
# - name: id-rsa-dehydrated
|
# - name: id-rsa-dehydrated
|
||||||
# priv_key_src: b.mx/root/.ssh/b.mx-id_rsa-dehydrated
|
# priv_key_src: g.mx.oopen.de/root/.ssh/b.mx-id_rsa-dehydrated
|
||||||
# priv_key_dest: /root/.ssh/id_rsa-dehydrated
|
# priv_key_dest: /root/.ssh/id_rsa-dehydrated
|
||||||
# pub_key_src: b.mx/root/.ssh/b.mx-id_rsa-dehydrated.pub
|
# pub_key_src: g.mx.oopen.de/root/.ssh/b.mx-id_rsa-dehydrated.pub
|
||||||
# pub_key_dest: /root/.ssh/id_rsa-dehydrated.pub
|
# pub_key_dest: /root/.ssh/id_rsa-dehydrated.pub
|
||||||
# - name: id-rsa-opendkim
|
# - name: id-rsa-opendkim
|
||||||
# priv_key_src: b.mx/root/.ssh/b.mx-id_rsa-opendkim
|
# priv_key_src: g.mx.oopen.de/root/.ssh/b.mx-id_rsa-opendkim
|
||||||
# priv_key_dest: /root/.ssh/id_rsa-opendkim
|
# priv_key_dest: /root/.ssh/id_rsa-opendkim
|
||||||
# pub_key_src: b.mx/root/.ssh/b.mx-id_rsa-opendkim.pub
|
# pub_key_src: g.mx.oopen.de/root/.ssh/b.mx-id_rsa-opendkim.pub
|
||||||
# pub_key_dest: /root/.ssh/id_rsa-opendkim.pub
|
# pub_key_dest: /root/.ssh/id_rsa-opendkim.pub
|
||||||
|
|
||||||
|
|
||||||
@@ -149,42 +149,6 @@ resolved_fallback_nameserver:
|
|||||||
# vars used by roles/common/tasks/copy_files.yml
|
# vars used by roles/common/tasks/copy_files.yml
|
||||||
# ---
|
# ---
|
||||||
|
|
||||||
copy_plain_files:
|
|
||||||
|
|
||||||
# /root/bin/postfix
|
|
||||||
#
|
|
||||||
- name: postfix_create_opendkim_key.conf
|
|
||||||
src_path: g.mx/root/bin/postfix/conf/create_opendkim_key.conf
|
|
||||||
dest_path: /root/bin/postfix/conf/create_opendkim_key.conf
|
|
||||||
|
|
||||||
- name: postfix_whitelist_mb_sigs.conf
|
|
||||||
src_path: g.mx/root/bin/postfix/conf/whitelist_mb_sigs.conf
|
|
||||||
dest_path: /root/bin/postfix/conf/whitelist_mb_sigs.conf
|
|
||||||
|
|
||||||
|
|
||||||
copy_plain_files_postfix_host_specific:
|
|
||||||
|
|
||||||
- name: relay_domains
|
|
||||||
src_path: g.mx/etc/postfix/relay_domains
|
|
||||||
dest_path: /etc/postfix/relay_domains
|
|
||||||
|
|
||||||
|
|
||||||
copy_plain_files_postfwd_host_specific:
|
|
||||||
|
|
||||||
# Postfix Firewall postfwd
|
|
||||||
#
|
|
||||||
- name: postfwd.wl-nets
|
|
||||||
src_path: g.mx/etc/postfix/postfwd.wl-nets
|
|
||||||
dest_path: /etc/postfix/postfwd.wl-nets
|
|
||||||
|
|
||||||
|
|
||||||
copy_template_files: []
|
|
||||||
#
|
|
||||||
# - name: mailsystem_install_amavis.conf
|
|
||||||
# src_path: usr/local/src/mailsystem/conf/install_amavis.conf.j2
|
|
||||||
# dest_path: /usr/local/src/mailsystem/conf/install_amavis.conf
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
# vars used by roles/common/tasks/config_files_mailsystem_scripts.yml
|
# vars used by roles/common/tasks/config_files_mailsystem_scripts.yml
|
||||||
@@ -5,10 +5,10 @@
|
|||||||
|
|
||||||
|
|
||||||
# If true, all additional files in /etc/network/interfaces/interfaces.d/ are deleted
|
# If true, all additional files in /etc/network/interfaces/interfaces.d/ are deleted
|
||||||
network_manage_devices: True
|
network_manage_devices: true
|
||||||
|
|
||||||
# Should the interfaces be reloaded after config change?
|
# Should the interfaces be reloaded after config change?
|
||||||
network_interface_reload: False
|
network_interface_reload: false
|
||||||
|
|
||||||
network_interface_path: /etc/network/interfaces.d
|
network_interface_path: /etc/network/interfaces.d
|
||||||
network_interface_required_packages:
|
network_interface_required_packages:
|
||||||
@@ -482,7 +482,6 @@ bind9_gateway_acl:
|
|||||||
- 192.168.10.2
|
- 192.168.10.2
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
bind9_gateway_listen_on_v6:
|
bind9_gateway_listen_on_v6:
|
||||||
- none
|
- none
|
||||||
|
|
||||||
@@ -529,4 +528,3 @@ git_firewall_repository:
|
|||||||
root_user:
|
root_user:
|
||||||
name: root
|
name: root
|
||||||
password: $6$J1ssJfdshf/$mknQEPDcW4HN5.wFfawbamamywI7F7fhdZmaR1abNrc4DA7DNRx766lz3ygf9YV3gcmRq3QhJ3fBVlkwGMCvq.
|
password: $6$J1ssJfdshf/$mknQEPDcW4HN5.wFfawbamamywI7F7fhdZmaR1abNrc4DA7DNRx766lz3ygf9YV3gcmRq3QhJ3fBVlkwGMCvq.
|
||||||
|
|
||||||
+1
-2
@@ -82,8 +82,8 @@ default_user:
|
|||||||
|
|
||||||
sudo_users:
|
sudo_users:
|
||||||
- chris
|
- chris
|
||||||
- maadmin
|
|
||||||
- sysadm
|
- sysadm
|
||||||
|
- maadmin
|
||||||
- wadmin
|
- wadmin
|
||||||
|
|
||||||
|
|
||||||
@@ -123,7 +123,6 @@ sshd_permit_root_login: !!str "prohibit-password"
|
|||||||
# ---
|
# ---
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ==============================
|
# ==============================
|
||||||
|
|
||||||
|
|
||||||
+1
-2
@@ -82,9 +82,9 @@ default_user:
|
|||||||
|
|
||||||
sudo_users:
|
sudo_users:
|
||||||
- chris
|
- chris
|
||||||
|
- maadmin
|
||||||
- sysadm
|
- sysadm
|
||||||
- wadmin
|
- wadmin
|
||||||
- maadmin
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
@@ -123,7 +123,6 @@ sshd_permit_root_login: !!str "prohibit-password"
|
|||||||
# ---
|
# ---
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ==============================
|
# ==============================
|
||||||
|
|
||||||
|
|
||||||
+4
-21
@@ -163,14 +163,14 @@ insert_root_ssh_keypair: true
|
|||||||
|
|
||||||
root_ssh_keypair:
|
root_ssh_keypair:
|
||||||
- name: id-rsa-dehydrated
|
- name: id-rsa-dehydrated
|
||||||
priv_key_src: ga-st-mail/root/.ssh/ga-st-mail-id_rsa-dehydrated
|
priv_key_src: ga-al-relay.ga.netz/root/.ssh/ga-st-mail-id_rsa-dehydrated
|
||||||
priv_key_dest: /root/.ssh/id_rsa-dehydrated
|
priv_key_dest: /root/.ssh/id_rsa-dehydrated
|
||||||
pub_key_src: ga-st-mail/root/.ssh/ga-st-mail-id_rsa-dehydrated.pub
|
pub_key_src: ga-al-relay.ga.netz/root/.ssh/ga-st-mail-id_rsa-dehydrated.pub
|
||||||
pub_key_dest: /root/.ssh/id_rsa-dehydrated.pub
|
pub_key_dest: /root/.ssh/id_rsa-dehydrated.pub
|
||||||
- name: id-rsa-opendkim
|
- name: id-rsa-opendkim
|
||||||
priv_key_src: ga-st-mail/root/.ssh/ga-st-mail-id_rsa-opendkim
|
priv_key_src: ga-al-relay.ga.netz/root/.ssh/ga-st-mail-id_rsa-opendkim
|
||||||
priv_key_dest: /root/.ssh/id_rsa-opendkim
|
priv_key_dest: /root/.ssh/id_rsa-opendkim
|
||||||
pub_key_src: ga-st-mail/root/.ssh/ga-st-mail-id_rsa-opendkim.pub
|
pub_key_src: ga-al-relay.ga.netz/root/.ssh/ga-st-mail-id_rsa-opendkim.pub
|
||||||
pub_key_dest: /root/.ssh/id_rsa-opendkim.pub
|
pub_key_dest: /root/.ssh/id_rsa-opendkim.pub
|
||||||
|
|
||||||
|
|
||||||
@@ -233,7 +233,6 @@ bind9_gateway_acl:
|
|||||||
- 192.168.10.2
|
- 192.168.10.2
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
bind9_gateway_listen_on_v6:
|
bind9_gateway_listen_on_v6:
|
||||||
- none
|
- none
|
||||||
|
|
||||||
@@ -273,21 +272,6 @@ bind9_gateway_allow_recursion:
|
|||||||
# ---
|
# ---
|
||||||
|
|
||||||
|
|
||||||
copy_plain_files_postfix_host_specific:
|
|
||||||
|
|
||||||
- name: relay_domains
|
|
||||||
src_path: ga-al-relay/etc/postfix/relay_domains
|
|
||||||
dest_path: /etc/postfix/relay_domains
|
|
||||||
|
|
||||||
|
|
||||||
copy_template_files: []
|
|
||||||
#
|
|
||||||
# - name: mailsystem_install_amavis.conf
|
|
||||||
# src_path: usr/local/src/mailsystem/conf/install_amavis.conf.j2
|
|
||||||
# dest_path: /usr/local/src/mailsystem/conf/install_amavis.conf
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
# vars used by roles/common/tasks/config_files_mailsystem_scripts.yml
|
# vars used by roles/common/tasks/config_files_mailsystem_scripts.yml
|
||||||
# ---
|
# ---
|
||||||
@@ -301,7 +285,6 @@ is_relay_host: !!str "false"
|
|||||||
sasl_auth_enable: !!str "yes"
|
sasl_auth_enable: !!str "yes"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
template_files_mailsystem_script:
|
template_files_mailsystem_script:
|
||||||
|
|
||||||
- name: mailsystem_install_postfix_advanced.conf
|
- name: mailsystem_install_postfix_advanced.conf
|
||||||
+2
-5
@@ -5,10 +5,10 @@
|
|||||||
|
|
||||||
|
|
||||||
# If true, all additional files in /etc/network/interfaces/interfaces.d/ are deleted
|
# If true, all additional files in /etc/network/interfaces/interfaces.d/ are deleted
|
||||||
network_manage_devices: True
|
network_manage_devices: true
|
||||||
|
|
||||||
# Should the interfaces be reloaded after config change?
|
# Should the interfaces be reloaded after config change?
|
||||||
network_interface_reload: False
|
network_interface_reload: false
|
||||||
|
|
||||||
network_interface_path: /etc/network/interfaces.d
|
network_interface_path: /etc/network/interfaces.d
|
||||||
network_interface_required_packages:
|
network_interface_required_packages:
|
||||||
@@ -45,7 +45,6 @@ network_interfaces:
|
|||||||
- /sbin/ip route add 10.9.131.0/24 via 192.168.100.253
|
- /sbin/ip route add 10.9.131.0/24 via 192.168.100.253
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- device: eno3
|
- device: eno3
|
||||||
family: inet
|
family: inet
|
||||||
method: manual
|
method: manual
|
||||||
@@ -109,7 +108,6 @@ network_interfaces:
|
|||||||
netmask: 24
|
netmask: 24
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
# vars used by roles/ansible_dependencies
|
# vars used by roles/ansible_dependencies
|
||||||
# ---
|
# ---
|
||||||
@@ -391,4 +389,3 @@ git_firewall_repository:
|
|||||||
root_user:
|
root_user:
|
||||||
name: root
|
name: root
|
||||||
password: $6$J1ssJfdshf/$mknQEPDcW4HN5.wFfawbamamywI7F7fhdZmaR1abNrc4DA7DNRx766lz3ygf9YV3gcmRq3QhJ3fBVlkwGMCvq.
|
password: $6$J1ssJfdshf/$mknQEPDcW4HN5.wFfawbamamywI7F7fhdZmaR1abNrc4DA7DNRx766lz3ygf9YV3gcmRq3QhJ3fBVlkwGMCvq.
|
||||||
|
|
||||||
@@ -5,10 +5,10 @@
|
|||||||
|
|
||||||
|
|
||||||
# If true, all additional files in /etc/network/interfaces/interfaces.d/ are deleted
|
# If true, all additional files in /etc/network/interfaces/interfaces.d/ are deleted
|
||||||
network_manage_devices: True
|
network_manage_devices: true
|
||||||
|
|
||||||
# Should the interfaces be reloaded after config change?
|
# Should the interfaces be reloaded after config change?
|
||||||
network_interface_reload: False
|
network_interface_reload: false
|
||||||
|
|
||||||
network_interface_path: /etc/network/interfaces.d
|
network_interface_path: /etc/network/interfaces.d
|
||||||
network_interface_required_packages:
|
network_interface_required_packages:
|
||||||
@@ -404,4 +404,3 @@ git_firewall_repository:
|
|||||||
root_user:
|
root_user:
|
||||||
name: root
|
name: root
|
||||||
password: $6$J1ssJfdshf/$mknQEPDcW4HN5.wFfawbamamywI7F7fhdZmaR1abNrc4DA7DNRx766lz3ygf9YV3gcmRq3QhJ3fBVlkwGMCvq.
|
password: $6$J1ssJfdshf/$mknQEPDcW4HN5.wFfawbamamywI7F7fhdZmaR1abNrc4DA7DNRx766lz3ygf9YV3gcmRq3QhJ3fBVlkwGMCvq.
|
||||||
|
|
||||||
@@ -5,10 +5,10 @@
|
|||||||
|
|
||||||
|
|
||||||
# If true, all additional files in /etc/network/interfaces/interfaces.d/ are deleted
|
# If true, all additional files in /etc/network/interfaces/interfaces.d/ are deleted
|
||||||
network_manage_devices: True
|
network_manage_devices: true
|
||||||
|
|
||||||
# Should the interfaces be reloaded after config change?
|
# Should the interfaces be reloaded after config change?
|
||||||
network_interface_reload: False
|
network_interface_reload: false
|
||||||
|
|
||||||
network_interface_path: /etc/network/interfaces.d
|
network_interface_path: /etc/network/interfaces.d
|
||||||
network_interface_required_packages:
|
network_interface_required_packages:
|
||||||
@@ -408,4 +408,3 @@ git_firewall_repository:
|
|||||||
root_user:
|
root_user:
|
||||||
name: root
|
name: root
|
||||||
password: $6$J1ssJfdshf/$mknQEPDcW4HN5.wFfawbamamywI7F7fhdZmaR1abNrc4DA7DNRx766lz3ygf9YV3gcmRq3QhJ3fBVlkwGMCvq.
|
password: $6$J1ssJfdshf/$mknQEPDcW4HN5.wFfawbamamywI7F7fhdZmaR1abNrc4DA7DNRx766lz3ygf9YV3gcmRq3QhJ3fBVlkwGMCvq.
|
||||||
|
|
||||||
-2
@@ -102,7 +102,6 @@ resolved_fallback_nameserver:
|
|||||||
- 127.0.0.1
|
- 127.0.0.1
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
# vars used by roles/common/tasks/users.yml
|
# vars used by roles/common/tasks/users.yml
|
||||||
# ---
|
# ---
|
||||||
@@ -285,4 +284,3 @@ git_firewall_repository:
|
|||||||
root_user:
|
root_user:
|
||||||
name: root
|
name: root
|
||||||
password: $6$J1ssJfdshf/$mknQEPDcW4HN5.wFfawbamamywI7F7fhdZmaR1abNrc4DA7DNRx766lz3ygf9YV3gcmRq3QhJ3fBVlkwGMCvq.
|
password: $6$J1ssJfdshf/$mknQEPDcW4HN5.wFfawbamamywI7F7fhdZmaR1abNrc4DA7DNRx766lz3ygf9YV3gcmRq3QhJ3fBVlkwGMCvq.
|
||||||
|
|
||||||
@@ -1,591 +0,0 @@
|
|||||||
---
|
|
||||||
# ---
|
|
||||||
# vars used by roles/network_interfaces
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# If true, all additional files in /etc/network/interfaces/interfaces.d/ are deleted
|
|
||||||
network_manage_devices: True
|
|
||||||
|
|
||||||
# Should the interfaces be reloaded after config change?
|
|
||||||
network_interface_reload: False
|
|
||||||
|
|
||||||
network_interface_path: /etc/network/interfaces.d
|
|
||||||
network_interface_required_packages:
|
|
||||||
- vlan
|
|
||||||
- bridge-utils
|
|
||||||
- ifmetric
|
|
||||||
- ifupdown
|
|
||||||
- ifenslave
|
|
||||||
|
|
||||||
network_interfaces:
|
|
||||||
|
|
||||||
- device: eno1np0
|
|
||||||
headline: eno1np0 - Temporary LAN network
|
|
||||||
auto: true
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
address: 192.168.11.18
|
|
||||||
netmask: 24
|
|
||||||
|
|
||||||
- device: enp129s0f2
|
|
||||||
headline: enp129s0f2 - Uplink static line (radio) to Altenschlirf
|
|
||||||
auto: true
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
address: 172.16.111.254
|
|
||||||
netmask: 24
|
|
||||||
up:
|
|
||||||
# - For management Antennas
|
|
||||||
- /sbin/ip link add link enp129s0f2 name enp129s0f2.111 type vlan id 111
|
|
||||||
post-up:
|
|
||||||
# - Static routes to Altenschlirf (Router Ip-Address Altenschlirf: 172.16.111.253)
|
|
||||||
# -
|
|
||||||
# - Telefon Altenshlirf
|
|
||||||
- /sbin/ip route add 172.16.210.0/24 via 172.16.111.253
|
|
||||||
# User Network Altenshlirf
|
|
||||||
- /sbin/ip route add 192.168.10.0/24 via 172.16.111.253
|
|
||||||
# Management Network Altenschlirf
|
|
||||||
- /sbin/ip route add 10.10.10.0/24 via 172.16.111.253
|
|
||||||
# WLan Router (Accesspoints) Altenshlirf
|
|
||||||
- /sbin/ip route add 10.122.1.0/24 via 172.16.111.253
|
|
||||||
# # WLan Networks Altenshlirf
|
|
||||||
- /sbin/ip route add 10.123.0.0/16 via 172.16.111.253
|
|
||||||
# DSL via Fritzbox Altenschlirf
|
|
||||||
- /sbin/ip route add 172.16.10.0/24 via 172.16.111.253
|
|
||||||
# - WLAN Gemeinschaft Altenschlirf guest NET (Unifi routet Network)
|
|
||||||
- /sbin/ip route add 10.221.0.0/20 via 172.16.111.253
|
|
||||||
# - WLAN Gemeinschaft Altenschlirf private NET (Unifi routet Network)
|
|
||||||
- /sbin/ip route add 10.231.0.0/20 via 172.16.111.253
|
|
||||||
# VPN home Network Altenschlirf
|
|
||||||
#
|
|
||||||
- /sbin/ip route add 10.0.10.0/24 via 172.16.111.253
|
|
||||||
# VPN 'gw-ckubu' Network Altenschlirf
|
|
||||||
#
|
|
||||||
- /sbin/ip route add 10.1.10.0/24 via 172.16.111.253
|
|
||||||
# private networks 'ckubu'
|
|
||||||
#
|
|
||||||
# connections from private ckubu networks ist routed through VPN Altenschlirf (gw-ckubu),
|
|
||||||
# so we route them back to that gateway..
|
|
||||||
- /sbin/ip route add 192.168.63.0/24 via 172.16.111.253
|
|
||||||
- /sbin/ip route add 192.168.64.0/24 via 172.16.111.253
|
|
||||||
|
|
||||||
|
|
||||||
- device: enp129s0f2.111
|
|
||||||
headline: enp129s0f2.111 - network 10.10.111.0 (management antennas)
|
|
||||||
auto: true
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
address: 10.10.111.254
|
|
||||||
netmask: 24
|
|
||||||
|
|
||||||
|
|
||||||
- device: enp1s0f0
|
|
||||||
headline: enp1s0f0 - holds VLAN 211 device for Network Telefons Stockhausen
|
|
||||||
auto: false
|
|
||||||
family: inet
|
|
||||||
method: manual
|
|
||||||
up:
|
|
||||||
- /sbin/ip link add link enp1s0f0 name enp1s0f0.211 type vlan id 211
|
|
||||||
|
|
||||||
|
|
||||||
- device: enp1s0f0.211
|
|
||||||
headline: enp1s0f0.211 - Network Telefons Stockhausen
|
|
||||||
auto: true
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
# Note:
|
|
||||||
# !! 172.16.211.254 is reserved for LANCom Router (DSL line teleefon).
|
|
||||||
# This LANCom Router IS NOT pngable !!
|
|
||||||
address: 172.16.211.1
|
|
||||||
netmask: 24
|
|
||||||
pre-up:
|
|
||||||
- /sbin/ifconfig enp1s0f0 up
|
|
||||||
|
|
||||||
|
|
||||||
- device: enp1s0f2
|
|
||||||
headline: enp1s0f2 - Uplink DSL surf2 via (static) line to Fritz!Box 7490 (formaly Zyxel 6501)
|
|
||||||
auto: true
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
address: 172.16.11.1
|
|
||||||
netmask: 24
|
|
||||||
gateway: 172.16.11.254
|
|
||||||
|
|
||||||
|
|
||||||
- device: enp1s0f3
|
|
||||||
headline: enp1s0f3 - Uplink DSL surf3 via (static) line to Fritz!Box 7490
|
|
||||||
auto: true
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
address: 172.16.13.1
|
|
||||||
netmask: 24
|
|
||||||
gateway: 172.16.13.254
|
|
||||||
|
|
||||||
|
|
||||||
- device: enp1s0f1
|
|
||||||
headline: enp1s0f1 - Uplink DSL surf1 via (static) line to Fritz!Box 7490 (Mailserver)
|
|
||||||
auto: true
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
address: 172.16.12.1
|
|
||||||
netmask: 24
|
|
||||||
gateway: 172.16.12.254
|
|
||||||
|
|
||||||
|
|
||||||
# ----------
|
|
||||||
# Note: Install the 'ifenslave' package, necessary to enable bonding:
|
|
||||||
#
|
|
||||||
# apt-get install ifenslave
|
|
||||||
# ----------
|
|
||||||
- device: bond0
|
|
||||||
headline: bond0 - LAG (Link Aggregation) on devices enp129s0f0 and enp194s0f0
|
|
||||||
auto: true
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
address: 10.1.9.254
|
|
||||||
netmask: 24
|
|
||||||
bond:
|
|
||||||
slaves: enp129s0f0 enp194s0f0
|
|
||||||
# Mode 4 (802.3ad)
|
|
||||||
#
|
|
||||||
# also possible here:
|
|
||||||
# - Mode 5: balance-tlb
|
|
||||||
# - Mode 6: balance-alb
|
|
||||||
mode: 4
|
|
||||||
miimon: 100
|
|
||||||
lacp-rate: 1
|
|
||||||
ad-select: count
|
|
||||||
downdelay: 200
|
|
||||||
updelay: 200
|
|
||||||
post-up:
|
|
||||||
# VLAN 11 for management network Stockhausen/Schloss 10.10.11.0/24
|
|
||||||
- /sbin/ip link add link bond0 name bond0.11 type vlan id 11
|
|
||||||
# VLAN 78 for network Georgshaus 192.168.78.0/24
|
|
||||||
- /sbin/ip link add link bond0 name bond0.78 type vlan id 78
|
|
||||||
|
|
||||||
|
|
||||||
- device: bond0.11
|
|
||||||
headline: bond0.11 - VLAN 11 on interface bond0 (Management Network Stockhausen)
|
|
||||||
auto: true
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
address: 10.10.11.254
|
|
||||||
netmask: 24
|
|
||||||
|
|
||||||
|
|
||||||
- device: bond0.78
|
|
||||||
headline: bond0.78 - VLAN 78 on interface bond0 (Georgshaus ?)
|
|
||||||
auto: true
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
address: 192.168.78.254
|
|
||||||
netmask: 24
|
|
||||||
|
|
||||||
|
|
||||||
# ----------
|
|
||||||
# Note: Install the 'ifenslave' package, necessary to enable bonding:
|
|
||||||
#
|
|
||||||
# apt-get install ifenslave
|
|
||||||
# ----------
|
|
||||||
- device: bond1
|
|
||||||
headline: bond1 - LAG (Link Aggregation) on devices enp129s0f1 and enp194s0f1 - Main Network Stockhausen
|
|
||||||
auto: true
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
address: 192.168.11.254
|
|
||||||
netmask: 24
|
|
||||||
nameservers:
|
|
||||||
- 192.168.11.1
|
|
||||||
- 192.168.10.3
|
|
||||||
search: ga.netz ga.intra
|
|
||||||
bond:
|
|
||||||
slaves: enp129s0f1 enp194s0f1
|
|
||||||
# Mode 4 (802.3ad)
|
|
||||||
#
|
|
||||||
# also possible here:
|
|
||||||
# - Mode 5: balance-tlb
|
|
||||||
# - Mode 6: balance-alb
|
|
||||||
mode: 4
|
|
||||||
miimon: 100
|
|
||||||
lacp-rate: 1
|
|
||||||
ad-select: count
|
|
||||||
downdelay: 200
|
|
||||||
updelay: 200
|
|
||||||
post-up:
|
|
||||||
# VLAN 121 - for Ubiquiti UniFi Accesspoints
|
|
||||||
- /sbin/ip link add link bond1 name bond1.121 type vlan id 121
|
|
||||||
# VLAN 121 - for Ubiquiti UniFi Accesspoints Guests
|
|
||||||
- /sbin/ip link add link bond1 name bond1.131 type vlan id 131
|
|
||||||
# Route ???
|
|
||||||
- /sbin/ip route add 10.11.16.0/24 via 192.168.11.6
|
|
||||||
# Route to management network campus
|
|
||||||
- /sbin/ip route add 10.72.1.0/24 via 192.168.11.72
|
|
||||||
# Route to LAN campus
|
|
||||||
- /sbin/ip route add 192.168.72.0/24 via 192.168.11.72
|
|
||||||
# Route to WLAN campus
|
|
||||||
- /sbin/ip route add 192.168.73.0/24 via 192.168.11.72
|
|
||||||
|
|
||||||
|
|
||||||
- device: bond1.121
|
|
||||||
headline: bond1.121 - VLAN 121 on interface bond1 for Ubiquiti UniFi Accesspoints Guest NET
|
|
||||||
auto: true
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
address: 10.121.15.254
|
|
||||||
netmask: 20
|
|
||||||
|
|
||||||
|
|
||||||
- device: bond1.131
|
|
||||||
headline: bond1.131 - VLAN 131 on interface bond1 for Ubiquiti UniFi Accesspoints private NET
|
|
||||||
auto: true
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
address: 10.131.15.254
|
|
||||||
netmask: 20
|
|
||||||
|
|
||||||
|
|
||||||
- device: bond1:ns
|
|
||||||
headline: bond1:ns - Alias IP on bond1 device for Nameservice
|
|
||||||
auto: true
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
address: 192.168.11.1
|
|
||||||
netmask: 32
|
|
||||||
|
|
||||||
|
|
||||||
- device: bond1:1
|
|
||||||
headline: bond1:1 - Alias IP on bond1 device for (depricated) Management Network
|
|
||||||
auto: true
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
address: 10.10.9.254
|
|
||||||
netmask: 24
|
|
||||||
|
|
||||||
|
|
||||||
- device: bond1:ap
|
|
||||||
headline: bond1:ap - Alias IP on bond1 device for Network Accesspoints
|
|
||||||
auto: true
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
address: 10.112.1.254
|
|
||||||
netmask: 24
|
|
||||||
post-up:
|
|
||||||
# - Wireless Networks routed through appropriate Accesspoints
|
|
||||||
# -
|
|
||||||
- /sbin/ip route add 10.113.1.0/24 via 10.112.1.1
|
|
||||||
- /sbin/ip route add 10.113.2.0/24 via 10.112.1.2
|
|
||||||
- /sbin/ip route add 10.113.3.0/24 via 10.112.1.3
|
|
||||||
- /sbin/ip route add 10.113.4.0/24 via 10.112.1.4
|
|
||||||
- /sbin/ip route add 10.113.5.0/24 via 10.112.1.5
|
|
||||||
- /sbin/ip route add 10.113.6.0/24 via 10.112.1.6
|
|
||||||
- /sbin/ip route add 10.113.7.0/24 via 10.112.1.7
|
|
||||||
- /sbin/ip route add 10.113.8.0/24 via 10.112.1.8
|
|
||||||
- /sbin/ip route add 10.113.9.0/24 via 10.112.1.9
|
|
||||||
- /sbin/ip route add 10.113.10.0/24 via 10.112.1.10
|
|
||||||
- /sbin/ip route add 10.113.11.0/24 via 10.112.1.11
|
|
||||||
- /sbin/ip route add 10.113.12.0/24 via 10.112.1.12
|
|
||||||
- /sbin/ip route add 10.113.13.0/24 via 10.112.1.13
|
|
||||||
- /sbin/ip route add 10.113.14.0/24 via 10.112.1.14
|
|
||||||
- /sbin/ip route add 10.113.15.0/24 via 10.112.1.15
|
|
||||||
|
|
||||||
|
|
||||||
- device: bond1:ipmi
|
|
||||||
headline: bond1:ipmi - Alias IP on bond1 for IPMI Addresses Servr Stockhausen
|
|
||||||
auto: true
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
address: 10.11.11.254
|
|
||||||
netmask: 24
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/ansible_dependencies
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/ansible_user
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/basic.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/sshd.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/apt.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/systemd-resolved.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
systemd_resolved: true
|
|
||||||
|
|
||||||
# CyberGhost - Schnelle Verbindung mit Keine-Logs-Datenschutzrichtlinie
|
|
||||||
# Primäre DNS-Adresse: 38.132.106.139
|
|
||||||
# Sekundäre DNS-Adresse: 194.187.251.67
|
|
||||||
#
|
|
||||||
# Cloudflare (USA) Bester kostenloser DNS-Server für Gaming mit zuverlässigen Verbindungen
|
|
||||||
# primäre DNS-Adresse
|
|
||||||
# IPv4: 1.1.1.1
|
|
||||||
# IPv6: 2606:4700:4700::1111
|
|
||||||
# sekundäre DNS-Adresse
|
|
||||||
# IPv4: 1.0.0.1
|
|
||||||
# IPv6: 2606:4700:4700::1001
|
|
||||||
#
|
|
||||||
# Google (USA) Public DNS - Großartige Kombination aus Geschwindigkeit und Sicherheit
|
|
||||||
# primäre DNS-Adresse
|
|
||||||
# IPv4: 8.8.8.8
|
|
||||||
# IPv6: 2001:4860:4860::8888
|
|
||||||
# sekundäre DNS-Adresse
|
|
||||||
# IPv4: 8.8.4.4
|
|
||||||
# IPv6: 2001:4860:4860::8844
|
|
||||||
#
|
|
||||||
# Quad9 (CH) - Blockiert mühelos schädliche Seiten und verhindert Phishing-Betrug
|
|
||||||
# primäre DNS-Adresse
|
|
||||||
# IPv4: 9.9.9.9
|
|
||||||
# IPv6: 2620:fe::fe
|
|
||||||
# sekundäre DNS-Adresse
|
|
||||||
# IPv4: 149.112.112.112
|
|
||||||
# IPv6: 2620:fe::9
|
|
||||||
#
|
|
||||||
# OpenNIC - https://www.opennic.org/
|
|
||||||
# IPv4: 195.10.195.195 - ns31.de
|
|
||||||
# IPv4: 94.16.114.254 - ns28.de
|
|
||||||
# IPv4: 51.254.162.59 - ns9.de
|
|
||||||
# IPv4: 194.36.144.87 - ns29.de
|
|
||||||
# IPv6: 2a00:f826:8:2::195 - ns31.de
|
|
||||||
#
|
|
||||||
# Freifunk München (normales DNS, DNS-over-TLS und DNS-over-HTTPS)
|
|
||||||
# IPv4: 5.1.66.255
|
|
||||||
# IPv6: 2001:678:e68:f000::
|
|
||||||
# Servername für DNS-over-TLS: dot.ffmuc.net
|
|
||||||
# IPv4: 185.150.99.255
|
|
||||||
# IPv6: 2001:678:ed0:f000::
|
|
||||||
# Servername für DNS-over-TLS: dot.ffmuc.net
|
|
||||||
# für iOS 14+: DoT-Server-Konfiguration (unsigniert, vom PrHdb)
|
|
||||||
resolved_nameserver:
|
|
||||||
- 127.0.0.1
|
|
||||||
|
|
||||||
# search domains
|
|
||||||
#
|
|
||||||
# If there are more than one search domains, then specify them here in the order in which
|
|
||||||
# the resolver should also search them
|
|
||||||
#
|
|
||||||
#resolved_domains: []
|
|
||||||
resolved_domains:
|
|
||||||
- ~.
|
|
||||||
- ga.netz
|
|
||||||
- ga.intra
|
|
||||||
|
|
||||||
resolved_dnssec: false
|
|
||||||
|
|
||||||
# dns.as250.net: 194.150.168.168
|
|
||||||
#
|
|
||||||
resolved_fallback_nameserver:
|
|
||||||
- 192.168.10.1
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/cron.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
cron_user_special_time_entries:
|
|
||||||
|
|
||||||
- name: "Restart NTP service 'ntpsec'"
|
|
||||||
special_time: reboot
|
|
||||||
job: "sleep 15 ; /bin/systemctl restart ntpsec"
|
|
||||||
insertafter: PATH
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/users.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
insert_ssh_keypair_backup_server: false
|
|
||||||
ssh_keypair_backup_server:
|
|
||||||
- name: backup
|
|
||||||
backup_user: back
|
|
||||||
priv_key_src: root/.ssh/id_rsa.backup.oopen.de
|
|
||||||
priv_key_dest: /root/.ssh/id_rsa
|
|
||||||
pub_key_src: root/.ssh/id_rsa.backup.oopen.de.pub
|
|
||||||
pub_key_dest: /root/.ssh/id_rsa.pub
|
|
||||||
|
|
||||||
insert_keypair_backup_client: true
|
|
||||||
ssh_keypair_backup_client:
|
|
||||||
- name: backup
|
|
||||||
priv_key_src: root/.ssh/id_ed25519.oopen-server
|
|
||||||
priv_key_dest: /root/.ssh/id_ed25519
|
|
||||||
pub_key_src: root/.ssh/id_ed25519.oopen-server.pub
|
|
||||||
pub_key_dest: /root/.ssh/id_ed25519.pub
|
|
||||||
target: backup.oopen.de
|
|
||||||
|
|
||||||
default_user:
|
|
||||||
|
|
||||||
- name: chris
|
|
||||||
password: $y$j9T$rDrvWa/KInzTe601YYf9./$WjDlaItCrgX7gu4nCs481y8WLxiRaNJCC/MgFgKuzg3
|
|
||||||
shell: /bin/bash
|
|
||||||
ssh_keys:
|
|
||||||
- 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIO90culn3sicU2chTHn40ytcTay0nUIHap0uF/5fVM6P chris@sol'
|
|
||||||
- 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOQHMUKlDh2ufno5pZOhUY5xFljC1R5zQ/GjOHDkS58D root@sol'
|
|
||||||
|
|
||||||
- name: maadmin
|
|
||||||
password: $y$j9T$LCkYWvykWzrpFxIlmSUB01$e1ROfZxXAU53UdAwZAECzED4iV4LS02Q4IPQ2fycv51
|
|
||||||
shell: /bin/bash
|
|
||||||
ssh_keys:
|
|
||||||
- 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHCQRRXy0+9D+mhLniRlUpZZ3kZdZcQKXBsGnlsFYaRi maadmin@ga-st-lsx1'
|
|
||||||
|
|
||||||
- name: wadmin
|
|
||||||
password: $6$sLWIXKTW$i/STlSS0LijkrnGR/XMbaxJsEbrRdDYgqyCqIr.muLN5towes8yHDCXsyCYDjuaBNKPHXyFpr8lclg5DOm9OF1
|
|
||||||
shell: /bin/bash
|
|
||||||
ssh_keys:
|
|
||||||
- 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIF5GDIFA6/i6lzkr+EP/EZM9glrK0eSR0nmrEFgUJ4n8 wadmin@ga-st-lsx1'
|
|
||||||
- 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAID17MN6fUg0D1dMSgVYIBpIy+sDBBmiaHmXRXU63TXJA wadmin@ga-st-li1303'
|
|
||||||
- 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKtK8/rxHL1MKX5AHrgAzUYu0kV+1iYCmknpTQ7F0ham wadmin@wolf-debtest'
|
|
||||||
- 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIcaDFxj0pYjOv/ohFVxVY2RKvy6ACZFPX9UkrUPHkbN wadmin@wolf-x1'
|
|
||||||
|
|
||||||
- name: sysadm
|
|
||||||
user_id: 1050
|
|
||||||
group_id: 1050
|
|
||||||
group: sysadm
|
|
||||||
password: $y$j9T$awYUu9oRvV39ojITZOC7D1$czTh5HHIE32PXb0vl40ayAarm39txR4jaH1QzBscqfC
|
|
||||||
shell: /bin/bash
|
|
||||||
ssh_keys:
|
|
||||||
- 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIO90culn3sicU2chTHn40ytcTay0nUIHap0uF/5fVM6P chris@sol'
|
|
||||||
- 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOQHMUKlDh2ufno5pZOhUY5xFljC1R5zQ/GjOHDkS58D root@sol'
|
|
||||||
- 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHCQRRXy0+9D+mhLniRlUpZZ3kZdZcQKXBsGnlsFYaRi maadmin@ga-st-lsx1'
|
|
||||||
- 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIF5GDIFA6/i6lzkr+EP/EZM9glrK0eSR0nmrEFgUJ4n8 wadmin@ga-st-lsx1'
|
|
||||||
- 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAID17MN6fUg0D1dMSgVYIBpIy+sDBBmiaHmXRXU63TXJA wadmin@ga-st-li1303'
|
|
||||||
- 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKtK8/rxHL1MKX5AHrgAzUYu0kV+1iYCmknpTQ7F0ham wadmin@wolf-debtest'
|
|
||||||
- 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIcaDFxj0pYjOv/ohFVxVY2RKvy6ACZFPX9UkrUPHkbN wadmin@wolf-x1'
|
|
||||||
|
|
||||||
- name: back
|
|
||||||
user_id: 1060
|
|
||||||
group_id: 1060
|
|
||||||
group: back
|
|
||||||
password: $y$j9T$wpg8hlvMpO4PAWSVdLoJq/$dgpQh4cEnbUOQkkZzKUM4S8XzNS/Md5gMmMuNTqec74
|
|
||||||
shell: /bin/bash
|
|
||||||
ssh_keys:
|
|
||||||
- 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIO90culn3sicU2chTHn40ytcTay0nUIHap0uF/5fVM6P chris@sol'
|
|
||||||
|
|
||||||
sudo_users:
|
|
||||||
- chris
|
|
||||||
- sysadm
|
|
||||||
- maadmin
|
|
||||||
- wadmin
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/users-systemfiles.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/webadmin-user.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/sudoers.yml
|
|
||||||
# ---
|
|
||||||
#
|
|
||||||
# see: roles/common/tasks/vars
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/caching-nameserver.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
install_bind_packages: true
|
|
||||||
|
|
||||||
bind9_gateway_acl:
|
|
||||||
- local-net:
|
|
||||||
name: local-net
|
|
||||||
entries:
|
|
||||||
- 127.0.0.0/8
|
|
||||||
- 172.16.0.0/12
|
|
||||||
- 192.168.0.0/16
|
|
||||||
- 10.0.0.0/8
|
|
||||||
- fc00::/7
|
|
||||||
- fe80::/10
|
|
||||||
- ::1/128
|
|
||||||
- internaldns:
|
|
||||||
name: internaldns
|
|
||||||
entries:
|
|
||||||
- '# Nameserver Gateway Stockhausen'
|
|
||||||
- 192.168.11.1
|
|
||||||
- '# Domain Controller Stockhausen'
|
|
||||||
- 192.168.10.3
|
|
||||||
- '# Nameserver Gateway Altenschlirf'
|
|
||||||
- 192.168.10.1
|
|
||||||
- '# Domain Controller Altenschlirf'
|
|
||||||
- 192.168.10.3
|
|
||||||
- 192.168.10.6
|
|
||||||
- 172.16.0.1
|
|
||||||
- '# Nameserver Gateway Novalishaus'
|
|
||||||
- 192.168.81.1
|
|
||||||
- 10.2.11.2
|
|
||||||
- '# Nameserver wolle'
|
|
||||||
- 10.113.12.3
|
|
||||||
- '# Postfix Mailserver'
|
|
||||||
- 192.168.11.2
|
|
||||||
- '# Mail Relay System'
|
|
||||||
- 192.168.10.2
|
|
||||||
|
|
||||||
bind9_gateway_listen_on_v6:
|
|
||||||
- none
|
|
||||||
|
|
||||||
bind9_gateway_listen_on:
|
|
||||||
- any
|
|
||||||
|
|
||||||
#bind9_gateway_allow_transfer: {}
|
|
||||||
bind9_gateway_allow_transfer:
|
|
||||||
- internaldns
|
|
||||||
|
|
||||||
bind9_transfer_source: !!str "192.168.11.1"
|
|
||||||
bind9_notify_source: !!str "192.168.11.1"
|
|
||||||
|
|
||||||
#bind9_gateway_allow_query: {}
|
|
||||||
bind9_gateway_allow_query:
|
|
||||||
- local-net
|
|
||||||
|
|
||||||
#bind9_gateway_allow_query_cache: {}
|
|
||||||
bind9_gateway_allow_query_cache:
|
|
||||||
- local-net
|
|
||||||
|
|
||||||
bind9_gateway_recursion: !!str "yes"
|
|
||||||
#bind9_gateway_allow_recursion: {}
|
|
||||||
bind9_gateway_allow_recursion:
|
|
||||||
- local-net
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/git.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
git_firewall_repository:
|
|
||||||
name: ipt-gateway
|
|
||||||
repo: https://git.oopen.de/firewall/ipt-gateway
|
|
||||||
dest: /usr/local/src/ipt-gateway
|
|
||||||
|
|
||||||
# ==============================
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by scripts/reset_root_passwd.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
root_user:
|
|
||||||
name: root
|
|
||||||
password: $6$J1ssJfdshf/$mknQEPDcW4HN5.wFfawbamamywI7F7fhdZmaR1abNrc4DA7DNRx766lz3ygf9YV3gcmRq3QhJ3fBVlkwGMCvq.
|
|
||||||
|
|
||||||
@@ -1,592 +0,0 @@
|
|||||||
---
|
|
||||||
# ---
|
|
||||||
# vars used by roles/network_interfaces
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# If true, all additional files in /etc/network/interfaces/interfaces.d/ are deleted
|
|
||||||
network_manage_devices: True
|
|
||||||
|
|
||||||
# Should the interfaces be reloaded after config change?
|
|
||||||
network_interface_reload: False
|
|
||||||
|
|
||||||
network_interface_path: /etc/network/interfaces.d
|
|
||||||
network_interface_required_packages:
|
|
||||||
- vlan
|
|
||||||
- bridge-utils
|
|
||||||
- ifmetric
|
|
||||||
- ifupdown
|
|
||||||
- ifenslave
|
|
||||||
|
|
||||||
network_interfaces:
|
|
||||||
|
|
||||||
- device: lan0
|
|
||||||
headline: lan0 - Temporary LAN network
|
|
||||||
auto: false
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
address: 192.168.11.18
|
|
||||||
gateway: 192.168.11.254
|
|
||||||
netmask: 24
|
|
||||||
|
|
||||||
- device: lan4
|
|
||||||
headline: lan4 - Uplink static line (radio) to Altenschlirf
|
|
||||||
auto: true
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
address: 172.16.111.254
|
|
||||||
netmask: 24
|
|
||||||
up:
|
|
||||||
# - For management Antennas
|
|
||||||
- /sbin/ip link add link lan4 name lan4.111 type vlan id 111
|
|
||||||
post-up:
|
|
||||||
# - Static routes to Altenschlirf (Router Ip-Address Altenschlirf: 172.16.111.253)
|
|
||||||
# -
|
|
||||||
# - Telefon Altenshlirf
|
|
||||||
- /sbin/ip route add 172.16.210.0/24 via 172.16.111.253
|
|
||||||
# User Network Altenshlirf
|
|
||||||
- /sbin/ip route add 192.168.10.0/24 via 172.16.111.253
|
|
||||||
# Management Network Altenschlirf
|
|
||||||
- /sbin/ip route add 10.10.10.0/24 via 172.16.111.253
|
|
||||||
# WLan Router (Accesspoints) Altenshlirf
|
|
||||||
- /sbin/ip route add 10.122.1.0/24 via 172.16.111.253
|
|
||||||
# # WLan Networks Altenshlirf
|
|
||||||
- /sbin/ip route add 10.123.0.0/16 via 172.16.111.253
|
|
||||||
# DSL via Fritzbox Altenschlirf
|
|
||||||
- /sbin/ip route add 172.16.10.0/24 via 172.16.111.253
|
|
||||||
# - WLAN Gemeinschaft Altenschlirf guest NET (Unifi routet Network)
|
|
||||||
- /sbin/ip route add 10.221.0.0/20 via 172.16.111.253
|
|
||||||
# - WLAN Gemeinschaft Altenschlirf private NET (Unifi routet Network)
|
|
||||||
- /sbin/ip route add 10.231.0.0/20 via 172.16.111.253
|
|
||||||
# VPN home Network Altenschlirf
|
|
||||||
#
|
|
||||||
- /sbin/ip route add 10.0.10.0/24 via 172.16.111.253
|
|
||||||
# VPN 'gw-ckubu' Network Altenschlirf
|
|
||||||
#
|
|
||||||
- /sbin/ip route add 10.1.10.0/24 via 172.16.111.253
|
|
||||||
# private networks 'ckubu'
|
|
||||||
#
|
|
||||||
# connections from private ckubu networks ist routed through VPN Altenschlirf (gw-ckubu),
|
|
||||||
# so we route them back to that gateway..
|
|
||||||
- /sbin/ip route add 192.168.63.0/24 via 172.16.111.253
|
|
||||||
- /sbin/ip route add 192.168.64.0/24 via 172.16.111.253
|
|
||||||
|
|
||||||
|
|
||||||
- device: lan4.111
|
|
||||||
headline: lan4.111 - network 10.10.111.0 (management antennas)
|
|
||||||
auto: true
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
address: 10.10.111.254
|
|
||||||
netmask: 24
|
|
||||||
|
|
||||||
|
|
||||||
- device: lan6
|
|
||||||
headline: lan6 - holds VLAN 211 device for Network Telefons Stockhausen
|
|
||||||
auto: false
|
|
||||||
family: inet
|
|
||||||
method: manual
|
|
||||||
up:
|
|
||||||
- /sbin/ip link add link lan6 name lan6.211 type vlan id 211
|
|
||||||
|
|
||||||
|
|
||||||
- device: lan6.211
|
|
||||||
headline: lan6.211 - Network Telefons Stockhausen
|
|
||||||
auto: true
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
# Note:
|
|
||||||
# !! 172.16.211.254 is reserved for LANCom Router (DSL line teleefon).
|
|
||||||
# This LANCom Router IS NOT pngable !!
|
|
||||||
address: 172.16.211.1
|
|
||||||
netmask: 24
|
|
||||||
pre-up:
|
|
||||||
- /sbin/ifconfig lan6 up
|
|
||||||
|
|
||||||
|
|
||||||
- device: lan8
|
|
||||||
headline: lan8 - Uplink DSL surf2 via (static) line to Fritz!Box 7490 (formaly Zyxel 6501)
|
|
||||||
auto: true
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
address: 172.16.11.1
|
|
||||||
netmask: 24
|
|
||||||
gateway: 172.16.11.254
|
|
||||||
|
|
||||||
|
|
||||||
- device: lan9
|
|
||||||
headline: lan9 - Uplink DSL surf3 via (static) line to Fritz!Box 7490
|
|
||||||
auto: true
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
address: 172.16.13.1
|
|
||||||
netmask: 24
|
|
||||||
gateway: 172.16.13.254
|
|
||||||
|
|
||||||
|
|
||||||
- device: lan7
|
|
||||||
headline: lan7 - Uplink DSL surf1 via (static) line to Fritz!Box 7490 (Mailserver)
|
|
||||||
auto: true
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
address: 172.16.12.1
|
|
||||||
netmask: 24
|
|
||||||
gateway: 172.16.12.254
|
|
||||||
|
|
||||||
|
|
||||||
# ----------
|
|
||||||
# Note: Install the 'ifenslave' package, necessary to enable bonding:
|
|
||||||
#
|
|
||||||
# apt-get install ifenslave
|
|
||||||
# ----------
|
|
||||||
- device: bond0
|
|
||||||
headline: bond0 - LAG (Link Aggregation) on devices lan2 and lan10
|
|
||||||
auto: true
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
address: 10.1.9.254
|
|
||||||
netmask: 24
|
|
||||||
bond:
|
|
||||||
slaves: lan2 lan10
|
|
||||||
# Mode 4 (802.3ad)
|
|
||||||
#
|
|
||||||
# also possible here:
|
|
||||||
# - Mode 5: balance-tlb
|
|
||||||
# - Mode 6: balance-alb
|
|
||||||
mode: 4
|
|
||||||
miimon: 100
|
|
||||||
lacp-rate: 1
|
|
||||||
ad-select: count
|
|
||||||
downdelay: 200
|
|
||||||
updelay: 200
|
|
||||||
post-up:
|
|
||||||
# VLAN 11 for management network Stockhausen/Schloss 10.10.11.0/24
|
|
||||||
- /sbin/ip link add link bond0 name bond0.11 type vlan id 11
|
|
||||||
# VLAN 78 for network Georgshaus 192.168.78.0/24
|
|
||||||
- /sbin/ip link add link bond0 name bond0.78 type vlan id 78
|
|
||||||
|
|
||||||
|
|
||||||
- device: bond0.11
|
|
||||||
headline: bond0.11 - VLAN 11 on interface bond0 (Management Network Stockhausen)
|
|
||||||
auto: true
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
address: 10.10.11.254
|
|
||||||
netmask: 24
|
|
||||||
|
|
||||||
|
|
||||||
- device: bond0.78
|
|
||||||
headline: bond0.78 - VLAN 78 on interface bond0 (Georgshaus ?)
|
|
||||||
auto: true
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
address: 192.168.78.254
|
|
||||||
netmask: 24
|
|
||||||
|
|
||||||
|
|
||||||
# ----------
|
|
||||||
# Note: Install the 'ifenslave' package, necessary to enable bonding:
|
|
||||||
#
|
|
||||||
# apt-get install ifenslave
|
|
||||||
# ----------
|
|
||||||
- device: bond1
|
|
||||||
headline: bond1 - LAG (Link Aggregation) on devices lan3 and lan11 - Main Network Stockhausen
|
|
||||||
auto: true
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
address: 192.168.11.254
|
|
||||||
netmask: 24
|
|
||||||
nameservers:
|
|
||||||
- 192.168.11.1
|
|
||||||
- 192.168.10.3
|
|
||||||
search: ga.netz ga.intra
|
|
||||||
bond:
|
|
||||||
slaves: lan3 lan11
|
|
||||||
# Mode 4 (802.3ad)
|
|
||||||
#
|
|
||||||
# also possible here:
|
|
||||||
# - Mode 5: balance-tlb
|
|
||||||
# - Mode 6: balance-alb
|
|
||||||
mode: 4
|
|
||||||
miimon: 100
|
|
||||||
lacp-rate: 1
|
|
||||||
ad-select: count
|
|
||||||
downdelay: 200
|
|
||||||
updelay: 200
|
|
||||||
post-up:
|
|
||||||
# VLAN 121 - for Ubiquiti UniFi Accesspoints
|
|
||||||
- /sbin/ip link add link bond1 name bond1.121 type vlan id 121
|
|
||||||
# VLAN 121 - for Ubiquiti UniFi Accesspoints Guests
|
|
||||||
- /sbin/ip link add link bond1 name bond1.131 type vlan id 131
|
|
||||||
# Route ???
|
|
||||||
- /sbin/ip route add 10.11.16.0/24 via 192.168.11.6
|
|
||||||
# Route to management network campus
|
|
||||||
- /sbin/ip route add 10.72.1.0/24 via 192.168.11.72
|
|
||||||
# Route to LAN campus
|
|
||||||
- /sbin/ip route add 192.168.72.0/24 via 192.168.11.72
|
|
||||||
# Route to WLAN campus
|
|
||||||
- /sbin/ip route add 192.168.73.0/24 via 192.168.11.72
|
|
||||||
|
|
||||||
|
|
||||||
- device: bond1.121
|
|
||||||
headline: bond1.121 - VLAN 121 on interface bond1 for Ubiquiti UniFi Accesspoints Guest NET
|
|
||||||
auto: true
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
address: 10.121.15.254
|
|
||||||
netmask: 20
|
|
||||||
|
|
||||||
|
|
||||||
- device: bond1.131
|
|
||||||
headline: bond1.131 - VLAN 131 on interface bond1 for Ubiquiti UniFi Accesspoints private NET
|
|
||||||
auto: true
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
address: 10.131.15.254
|
|
||||||
netmask: 20
|
|
||||||
|
|
||||||
|
|
||||||
- device: bond1:ns
|
|
||||||
headline: bond1:ns - Alias IP on bond1 device for Nameservice
|
|
||||||
auto: true
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
address: 192.168.11.1
|
|
||||||
netmask: 32
|
|
||||||
|
|
||||||
|
|
||||||
- device: bond1:1
|
|
||||||
headline: bond1:1 - Alias IP on bond1 device for (depricated) Management Network
|
|
||||||
auto: true
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
address: 10.10.9.254
|
|
||||||
netmask: 24
|
|
||||||
|
|
||||||
|
|
||||||
- device: bond1:ap
|
|
||||||
headline: bond1:ap - Alias IP on bond1 device for Network Accesspoints
|
|
||||||
auto: true
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
address: 10.112.1.254
|
|
||||||
netmask: 24
|
|
||||||
post-up:
|
|
||||||
# - Wireless Networks routed through appropriate Accesspoints
|
|
||||||
# -
|
|
||||||
- /sbin/ip route add 10.113.1.0/24 via 10.112.1.1
|
|
||||||
- /sbin/ip route add 10.113.2.0/24 via 10.112.1.2
|
|
||||||
- /sbin/ip route add 10.113.3.0/24 via 10.112.1.3
|
|
||||||
- /sbin/ip route add 10.113.4.0/24 via 10.112.1.4
|
|
||||||
- /sbin/ip route add 10.113.5.0/24 via 10.112.1.5
|
|
||||||
- /sbin/ip route add 10.113.6.0/24 via 10.112.1.6
|
|
||||||
- /sbin/ip route add 10.113.7.0/24 via 10.112.1.7
|
|
||||||
- /sbin/ip route add 10.113.8.0/24 via 10.112.1.8
|
|
||||||
- /sbin/ip route add 10.113.9.0/24 via 10.112.1.9
|
|
||||||
- /sbin/ip route add 10.113.10.0/24 via 10.112.1.10
|
|
||||||
- /sbin/ip route add 10.113.11.0/24 via 10.112.1.11
|
|
||||||
- /sbin/ip route add 10.113.12.0/24 via 10.112.1.12
|
|
||||||
- /sbin/ip route add 10.113.13.0/24 via 10.112.1.13
|
|
||||||
- /sbin/ip route add 10.113.14.0/24 via 10.112.1.14
|
|
||||||
- /sbin/ip route add 10.113.15.0/24 via 10.112.1.15
|
|
||||||
|
|
||||||
|
|
||||||
- device: bond1:ipmi
|
|
||||||
headline: bond1:ipmi - Alias IP on bond1 for IPMI Addresses Servr Stockhausen
|
|
||||||
auto: true
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
address: 10.11.11.254
|
|
||||||
netmask: 24
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/ansible_dependencies
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/ansible_user
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/basic.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/sshd.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/apt.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/systemd-resolved.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
systemd_resolved: true
|
|
||||||
|
|
||||||
# CyberGhost - Schnelle Verbindung mit Keine-Logs-Datenschutzrichtlinie
|
|
||||||
# Primäre DNS-Adresse: 38.132.106.139
|
|
||||||
# Sekundäre DNS-Adresse: 194.187.251.67
|
|
||||||
#
|
|
||||||
# Cloudflare (USA) Bester kostenloser DNS-Server für Gaming mit zuverlässigen Verbindungen
|
|
||||||
# primäre DNS-Adresse
|
|
||||||
# IPv4: 1.1.1.1
|
|
||||||
# IPv6: 2606:4700:4700::1111
|
|
||||||
# sekundäre DNS-Adresse
|
|
||||||
# IPv4: 1.0.0.1
|
|
||||||
# IPv6: 2606:4700:4700::1001
|
|
||||||
#
|
|
||||||
# Google (USA) Public DNS - Großartige Kombination aus Geschwindigkeit und Sicherheit
|
|
||||||
# primäre DNS-Adresse
|
|
||||||
# IPv4: 8.8.8.8
|
|
||||||
# IPv6: 2001:4860:4860::8888
|
|
||||||
# sekundäre DNS-Adresse
|
|
||||||
# IPv4: 8.8.4.4
|
|
||||||
# IPv6: 2001:4860:4860::8844
|
|
||||||
#
|
|
||||||
# Quad9 (CH) - Blockiert mühelos schädliche Seiten und verhindert Phishing-Betrug
|
|
||||||
# primäre DNS-Adresse
|
|
||||||
# IPv4: 9.9.9.9
|
|
||||||
# IPv6: 2620:fe::fe
|
|
||||||
# sekundäre DNS-Adresse
|
|
||||||
# IPv4: 149.112.112.112
|
|
||||||
# IPv6: 2620:fe::9
|
|
||||||
#
|
|
||||||
# OpenNIC - https://www.opennic.org/
|
|
||||||
# IPv4: 195.10.195.195 - ns31.de
|
|
||||||
# IPv4: 94.16.114.254 - ns28.de
|
|
||||||
# IPv4: 51.254.162.59 - ns9.de
|
|
||||||
# IPv4: 194.36.144.87 - ns29.de
|
|
||||||
# IPv6: 2a00:f826:8:2::195 - ns31.de
|
|
||||||
#
|
|
||||||
# Freifunk München (normales DNS, DNS-over-TLS und DNS-over-HTTPS)
|
|
||||||
# IPv4: 5.1.66.255
|
|
||||||
# IPv6: 2001:678:e68:f000::
|
|
||||||
# Servername für DNS-over-TLS: dot.ffmuc.net
|
|
||||||
# IPv4: 185.150.99.255
|
|
||||||
# IPv6: 2001:678:ed0:f000::
|
|
||||||
# Servername für DNS-over-TLS: dot.ffmuc.net
|
|
||||||
# für iOS 14+: DoT-Server-Konfiguration (unsigniert, vom PrHdb)
|
|
||||||
resolved_nameserver:
|
|
||||||
- 127.0.0.1
|
|
||||||
|
|
||||||
# search domains
|
|
||||||
#
|
|
||||||
# If there are more than one search domains, then specify them here in the order in which
|
|
||||||
# the resolver should also search them
|
|
||||||
#
|
|
||||||
#resolved_domains: []
|
|
||||||
resolved_domains:
|
|
||||||
- ~.
|
|
||||||
- ga.netz
|
|
||||||
- ga.intra
|
|
||||||
|
|
||||||
resolved_dnssec: false
|
|
||||||
|
|
||||||
# dns.as250.net: 194.150.168.168
|
|
||||||
#
|
|
||||||
resolved_fallback_nameserver:
|
|
||||||
- 192.168.10.1
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/cron.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
cron_user_special_time_entries:
|
|
||||||
|
|
||||||
- name: "Restart NTP service 'ntpsec'"
|
|
||||||
special_time: reboot
|
|
||||||
job: "sleep 15 ; /bin/systemctl restart ntpsec"
|
|
||||||
insertafter: PATH
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/users.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
insert_ssh_keypair_backup_server: false
|
|
||||||
ssh_keypair_backup_server:
|
|
||||||
- name: backup
|
|
||||||
backup_user: back
|
|
||||||
priv_key_src: root/.ssh/id_rsa.backup.oopen.de
|
|
||||||
priv_key_dest: /root/.ssh/id_rsa
|
|
||||||
pub_key_src: root/.ssh/id_rsa.backup.oopen.de.pub
|
|
||||||
pub_key_dest: /root/.ssh/id_rsa.pub
|
|
||||||
|
|
||||||
insert_keypair_backup_client: true
|
|
||||||
ssh_keypair_backup_client:
|
|
||||||
- name: backup
|
|
||||||
priv_key_src: root/.ssh/id_ed25519.oopen-server
|
|
||||||
priv_key_dest: /root/.ssh/id_ed25519
|
|
||||||
pub_key_src: root/.ssh/id_ed25519.oopen-server.pub
|
|
||||||
pub_key_dest: /root/.ssh/id_ed25519.pub
|
|
||||||
target: backup.oopen.de
|
|
||||||
|
|
||||||
default_user:
|
|
||||||
|
|
||||||
- name: chris
|
|
||||||
password: $y$j9T$rDrvWa/KInzTe601YYf9./$WjDlaItCrgX7gu4nCs481y8WLxiRaNJCC/MgFgKuzg3
|
|
||||||
shell: /bin/bash
|
|
||||||
ssh_keys:
|
|
||||||
- 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIO90culn3sicU2chTHn40ytcTay0nUIHap0uF/5fVM6P chris@sol'
|
|
||||||
- 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOQHMUKlDh2ufno5pZOhUY5xFljC1R5zQ/GjOHDkS58D root@sol'
|
|
||||||
|
|
||||||
- name: maadmin
|
|
||||||
password: $y$j9T$LCkYWvykWzrpFxIlmSUB01$e1ROfZxXAU53UdAwZAECzED4iV4LS02Q4IPQ2fycv51
|
|
||||||
shell: /bin/bash
|
|
||||||
ssh_keys:
|
|
||||||
- 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHCQRRXy0+9D+mhLniRlUpZZ3kZdZcQKXBsGnlsFYaRi maadmin@ga-st-lsx1'
|
|
||||||
|
|
||||||
- name: wadmin
|
|
||||||
password: $6$sLWIXKTW$i/STlSS0LijkrnGR/XMbaxJsEbrRdDYgqyCqIr.muLN5towes8yHDCXsyCYDjuaBNKPHXyFpr8lclg5DOm9OF1
|
|
||||||
shell: /bin/bash
|
|
||||||
ssh_keys:
|
|
||||||
- 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIF5GDIFA6/i6lzkr+EP/EZM9glrK0eSR0nmrEFgUJ4n8 wadmin@ga-st-lsx1'
|
|
||||||
- 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAID17MN6fUg0D1dMSgVYIBpIy+sDBBmiaHmXRXU63TXJA wadmin@ga-st-li1303'
|
|
||||||
- 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKtK8/rxHL1MKX5AHrgAzUYu0kV+1iYCmknpTQ7F0ham wadmin@wolf-debtest'
|
|
||||||
- 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIcaDFxj0pYjOv/ohFVxVY2RKvy6ACZFPX9UkrUPHkbN wadmin@wolf-x1'
|
|
||||||
|
|
||||||
- name: sysadm
|
|
||||||
user_id: 1050
|
|
||||||
group_id: 1050
|
|
||||||
group: sysadm
|
|
||||||
password: $y$j9T$awYUu9oRvV39ojITZOC7D1$czTh5HHIE32PXb0vl40ayAarm39txR4jaH1QzBscqfC
|
|
||||||
shell: /bin/bash
|
|
||||||
ssh_keys:
|
|
||||||
- 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIO90culn3sicU2chTHn40ytcTay0nUIHap0uF/5fVM6P chris@sol'
|
|
||||||
- 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOQHMUKlDh2ufno5pZOhUY5xFljC1R5zQ/GjOHDkS58D root@sol'
|
|
||||||
- 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHCQRRXy0+9D+mhLniRlUpZZ3kZdZcQKXBsGnlsFYaRi maadmin@ga-st-lsx1'
|
|
||||||
- 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIF5GDIFA6/i6lzkr+EP/EZM9glrK0eSR0nmrEFgUJ4n8 wadmin@ga-st-lsx1'
|
|
||||||
- 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAID17MN6fUg0D1dMSgVYIBpIy+sDBBmiaHmXRXU63TXJA wadmin@ga-st-li1303'
|
|
||||||
- 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKtK8/rxHL1MKX5AHrgAzUYu0kV+1iYCmknpTQ7F0ham wadmin@wolf-debtest'
|
|
||||||
- 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIcaDFxj0pYjOv/ohFVxVY2RKvy6ACZFPX9UkrUPHkbN wadmin@wolf-x1'
|
|
||||||
|
|
||||||
- name: back
|
|
||||||
user_id: 1060
|
|
||||||
group_id: 1060
|
|
||||||
group: back
|
|
||||||
password: $y$j9T$wpg8hlvMpO4PAWSVdLoJq/$dgpQh4cEnbUOQkkZzKUM4S8XzNS/Md5gMmMuNTqec74
|
|
||||||
shell: /bin/bash
|
|
||||||
ssh_keys:
|
|
||||||
- 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIO90culn3sicU2chTHn40ytcTay0nUIHap0uF/5fVM6P chris@sol'
|
|
||||||
|
|
||||||
sudo_users:
|
|
||||||
- chris
|
|
||||||
- sysadm
|
|
||||||
- maadmin
|
|
||||||
- wadmin
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/users-systemfiles.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/webadmin-user.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/sudoers.yml
|
|
||||||
# ---
|
|
||||||
#
|
|
||||||
# see: roles/common/tasks/vars
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/caching-nameserver.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
install_bind_packages: true
|
|
||||||
|
|
||||||
bind9_gateway_acl:
|
|
||||||
- local-net:
|
|
||||||
name: local-net
|
|
||||||
entries:
|
|
||||||
- 127.0.0.0/8
|
|
||||||
- 172.16.0.0/12
|
|
||||||
- 192.168.0.0/16
|
|
||||||
- 10.0.0.0/8
|
|
||||||
- fc00::/7
|
|
||||||
- fe80::/10
|
|
||||||
- ::1/128
|
|
||||||
- internaldns:
|
|
||||||
name: internaldns
|
|
||||||
entries:
|
|
||||||
- '# Nameserver Gateway Stockhausen'
|
|
||||||
- 192.168.11.1
|
|
||||||
- '# Domain Controller Stockhausen'
|
|
||||||
- 192.168.10.3
|
|
||||||
- '# Nameserver Gateway Altenschlirf'
|
|
||||||
- 192.168.10.1
|
|
||||||
- '# Domain Controller Altenschlirf'
|
|
||||||
- 192.168.10.3
|
|
||||||
- 192.168.10.6
|
|
||||||
- 172.16.0.1
|
|
||||||
- '# Nameserver Gateway Novalishaus'
|
|
||||||
- 192.168.81.1
|
|
||||||
- 10.2.11.2
|
|
||||||
- '# Nameserver wolle'
|
|
||||||
- 10.113.12.3
|
|
||||||
- '# Postfix Mailserver'
|
|
||||||
- 192.168.11.2
|
|
||||||
- '# Mail Relay System'
|
|
||||||
- 192.168.10.2
|
|
||||||
|
|
||||||
bind9_gateway_listen_on_v6:
|
|
||||||
- none
|
|
||||||
|
|
||||||
bind9_gateway_listen_on:
|
|
||||||
- any
|
|
||||||
|
|
||||||
#bind9_gateway_allow_transfer: {}
|
|
||||||
bind9_gateway_allow_transfer:
|
|
||||||
- internaldns
|
|
||||||
|
|
||||||
bind9_transfer_source: !!str "192.168.11.1"
|
|
||||||
bind9_notify_source: !!str "192.168.11.1"
|
|
||||||
|
|
||||||
#bind9_gateway_allow_query: {}
|
|
||||||
bind9_gateway_allow_query:
|
|
||||||
- local-net
|
|
||||||
|
|
||||||
#bind9_gateway_allow_query_cache: {}
|
|
||||||
bind9_gateway_allow_query_cache:
|
|
||||||
- local-net
|
|
||||||
|
|
||||||
bind9_gateway_recursion: !!str "yes"
|
|
||||||
#bind9_gateway_allow_recursion: {}
|
|
||||||
bind9_gateway_allow_recursion:
|
|
||||||
- local-net
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/git.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
git_firewall_repository:
|
|
||||||
name: ipt-gateway
|
|
||||||
repo: https://git.oopen.de/firewall/ipt-gateway
|
|
||||||
dest: /usr/local/src/ipt-gateway
|
|
||||||
|
|
||||||
# ==============================
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by scripts/reset_root_passwd.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
root_user:
|
|
||||||
name: root
|
|
||||||
password: $6$J1ssJfdshf/$mknQEPDcW4HN5.wFfawbamamywI7F7fhdZmaR1abNrc4DA7DNRx766lz3ygf9YV3gcmRq3QhJ3fBVlkwGMCvq.
|
|
||||||
|
|
||||||
@@ -1,583 +0,0 @@
|
|||||||
---
|
|
||||||
# ---
|
|
||||||
# vars used by roles/network_interfaces
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# If true, all additional files in /etc/network/interfaces/interfaces.d/ are deleted
|
|
||||||
network_manage_devices: True
|
|
||||||
|
|
||||||
# Should the interfaces be reloaded after config change?
|
|
||||||
network_interface_reload: False
|
|
||||||
|
|
||||||
network_interface_path: /etc/network/interfaces.d
|
|
||||||
network_interface_required_packages:
|
|
||||||
- vlan
|
|
||||||
- bridge-utils
|
|
||||||
- ifmetric
|
|
||||||
- ifupdown
|
|
||||||
- ifenslave
|
|
||||||
|
|
||||||
network_interfaces:
|
|
||||||
|
|
||||||
- device: eth2
|
|
||||||
headline: eth2 - Uplink static line (radio) to Altenschlirf
|
|
||||||
auto: true
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
address: 172.16.111.254
|
|
||||||
netmask: 24
|
|
||||||
up:
|
|
||||||
# - For management Antennas
|
|
||||||
- /sbin/ip link add link eth2 name eth2.111 type vlan id 111
|
|
||||||
post-up:
|
|
||||||
# - Static routes to Altenschlirf (Router Ip-Address Altenschlirf: 172.16.111.253)
|
|
||||||
# -
|
|
||||||
# - Telefon Altenshlirf
|
|
||||||
- /sbin/ip route add 172.16.210.0/24 via 172.16.111.253
|
|
||||||
# User Network Altenshlirf
|
|
||||||
- /sbin/ip route add 192.168.10.0/24 via 172.16.111.253
|
|
||||||
# Management Network Altenschlirf
|
|
||||||
- /sbin/ip route add 10.10.10.0/24 via 172.16.111.253
|
|
||||||
# WLan Router (Accesspoints) Altenshlirf
|
|
||||||
- /sbin/ip route add 10.122.1.0/24 via 172.16.111.253
|
|
||||||
# # WLan Networks Altenshlirf
|
|
||||||
- /sbin/ip route add 10.123.0.0/16 via 172.16.111.253
|
|
||||||
# DSL via Fritzbox Altenschlirf
|
|
||||||
- /sbin/ip route add 172.16.10.0/24 via 172.16.111.253
|
|
||||||
# - WLAN Gemeinschaft Altenschlirf guest NET (Unifi routet Network)
|
|
||||||
- /sbin/ip route add 10.221.0.0/20 via 172.16.111.253
|
|
||||||
# - WLAN Gemeinschaft Altenschlirf private NET (Unifi routet Network)
|
|
||||||
- /sbin/ip route add 10.231.0.0/20 via 172.16.111.253
|
|
||||||
# VPN home Network Altenschlirf
|
|
||||||
#
|
|
||||||
- /sbin/ip route add 10.0.10.0/24 via 172.16.111.253
|
|
||||||
# VPN 'gw-ckubu' Network Altenschlirf
|
|
||||||
#
|
|
||||||
- /sbin/ip route add 10.1.10.0/24 via 172.16.111.253
|
|
||||||
# private networks 'ckubu'
|
|
||||||
#
|
|
||||||
# connections from private ckubu networks ist routed through VPN Altenschlirf (gw-ckubu),
|
|
||||||
# so we route them back to that gateway..
|
|
||||||
- /sbin/ip route add 192.168.63.0/24 via 172.16.111.253
|
|
||||||
- /sbin/ip route add 192.168.64.0/24 via 172.16.111.253
|
|
||||||
|
|
||||||
|
|
||||||
- device: eth2.111
|
|
||||||
headline: eth2.111 - network 10.10.111.0 (management antennas)
|
|
||||||
auto: true
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
address: 10.10.111.254
|
|
||||||
netmask: 24
|
|
||||||
|
|
||||||
|
|
||||||
- device: eth8
|
|
||||||
headline: eth8 - holds VLAN 211 device for Network Telefons Stockhausen
|
|
||||||
auto: false
|
|
||||||
family: inet
|
|
||||||
method: manual
|
|
||||||
up:
|
|
||||||
- /sbin/ip link add link eth8 name eth8.211 type vlan id 211
|
|
||||||
|
|
||||||
|
|
||||||
- device: eth8.211
|
|
||||||
headline: eth8.211 - Network Telefons Stockhausen
|
|
||||||
auto: true
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
# Note:
|
|
||||||
# !! 172.16.211.254 is reserved for LANCom Router (DSL line teleefon).
|
|
||||||
# This LANCom Router IS NOT pngable !!
|
|
||||||
address: 172.16.211.1
|
|
||||||
netmask: 24
|
|
||||||
pre-up:
|
|
||||||
- /sbin/ifconfig eth8 up
|
|
||||||
|
|
||||||
|
|
||||||
- device: eth9
|
|
||||||
headline: eth9 - Uplink DSL surf2 via (static) line to Fritz!Box 7490 (formaly Zyxel 6501)
|
|
||||||
auto: true
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
address: 172.16.11.1
|
|
||||||
netmask: 24
|
|
||||||
gateway: 172.16.11.254
|
|
||||||
|
|
||||||
|
|
||||||
- device: eth10
|
|
||||||
headline: eth10 - Uplink DSL surf3 via (static) line to Fritz!Box 7490
|
|
||||||
auto: true
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
address: 172.16.13.1
|
|
||||||
netmask: 24
|
|
||||||
gateway: 172.16.13.254
|
|
||||||
|
|
||||||
|
|
||||||
- device: eth11
|
|
||||||
headline: eth11 - Uplink DSL surf1 via (static) line to Fritz!Box 7490 (Mailserver)
|
|
||||||
auto: true
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
address: 172.16.12.1
|
|
||||||
netmask: 24
|
|
||||||
gateway: 172.16.12.254
|
|
||||||
|
|
||||||
|
|
||||||
# ----------
|
|
||||||
# Note: Install the 'ifenslave' package, necessary to enable bonding:
|
|
||||||
#
|
|
||||||
# apt-get install ifenslave
|
|
||||||
# ----------
|
|
||||||
- device: bond0
|
|
||||||
headline: bond0 - LAG (Link Aggregation) on devices eth0 and eth4
|
|
||||||
auto: true
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
address: 10.1.9.254
|
|
||||||
netmask: 24
|
|
||||||
bond:
|
|
||||||
slaves: eth0 eth4
|
|
||||||
# Mode 4 (802.3ad)
|
|
||||||
#
|
|
||||||
# also possible here:
|
|
||||||
# - Mode 5: balance-tlb
|
|
||||||
# - Mode 6: balance-alb
|
|
||||||
mode: 4
|
|
||||||
miimon: 100
|
|
||||||
lacp-rate: 1
|
|
||||||
ad-select: count
|
|
||||||
downdelay: 200
|
|
||||||
updelay: 200
|
|
||||||
post-up:
|
|
||||||
# VLAN 11 for management network Stockhausen/Schloss 10.10.11.0/24
|
|
||||||
- /sbin/ip link add link bond0 name bond0.11 type vlan id 11
|
|
||||||
# VLAN 78 for network Georgshaus 192.168.78.0/24
|
|
||||||
- /sbin/ip link add link bond0 name bond0.78 type vlan id 78
|
|
||||||
|
|
||||||
|
|
||||||
- device: bond0.11
|
|
||||||
headline: bond0.11 - VLAN 11 on interface bond0 (Management Network Stockhausen)
|
|
||||||
auto: true
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
address: 10.10.11.254
|
|
||||||
netmask: 24
|
|
||||||
|
|
||||||
|
|
||||||
- device: bond0.78
|
|
||||||
headline: bond0.78 - VLAN 78 on interface bond0 (Georgshaus ?)
|
|
||||||
auto: true
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
address: 192.168.78.254
|
|
||||||
netmask: 24
|
|
||||||
|
|
||||||
|
|
||||||
# ----------
|
|
||||||
# Note: Install the 'ifenslave' package, necessary to enable bonding:
|
|
||||||
#
|
|
||||||
# apt-get install ifenslave
|
|
||||||
# ----------
|
|
||||||
- device: bond1
|
|
||||||
headline: bond1 - LAG (Link Aggregation) on devices eth3 and eth5 - Main Network Stockhausen
|
|
||||||
auto: true
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
address: 192.168.11.254
|
|
||||||
netmask: 24
|
|
||||||
nameservers:
|
|
||||||
- 192.168.11.1
|
|
||||||
- 192.168.10.3
|
|
||||||
search: ga.netz ga.intra
|
|
||||||
bond:
|
|
||||||
slaves: eth3 eth5
|
|
||||||
# Mode 4 (802.3ad)
|
|
||||||
#
|
|
||||||
# also possible here:
|
|
||||||
# - Mode 5: balance-tlb
|
|
||||||
# - Mode 6: balance-alb
|
|
||||||
mode: 4
|
|
||||||
miimon: 100
|
|
||||||
lacp-rate: 1
|
|
||||||
ad-select: count
|
|
||||||
downdelay: 200
|
|
||||||
updelay: 200
|
|
||||||
post-up:
|
|
||||||
# VLAN 121 - for Ubiquiti UniFi Accesspoints
|
|
||||||
- /sbin/ip link add link bond1 name bond1.121 type vlan id 121
|
|
||||||
# VLAN 121 - for Ubiquiti UniFi Accesspoints Guests
|
|
||||||
- /sbin/ip link add link bond1 name bond1.131 type vlan id 131
|
|
||||||
# Route ???
|
|
||||||
- /sbin/ip route add 10.11.16.0/24 via 192.168.11.6
|
|
||||||
# Route to management network campus
|
|
||||||
- /sbin/ip route add 10.72.1.0/24 via 192.168.11.72
|
|
||||||
# Route to LAN campus
|
|
||||||
- /sbin/ip route add 192.168.72.0/24 via 192.168.11.72
|
|
||||||
# Route to WLAN campus
|
|
||||||
- /sbin/ip route add 192.168.73.0/24 via 192.168.11.72
|
|
||||||
|
|
||||||
|
|
||||||
- device: bond1.121
|
|
||||||
headline: bond1.121 - VLAN 121 on interface bond1 for Ubiquiti UniFi Accesspoints Guest NET
|
|
||||||
auto: true
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
address: 10.121.15.254
|
|
||||||
netmask: 20
|
|
||||||
|
|
||||||
|
|
||||||
- device: bond1.131
|
|
||||||
headline: bond1.131 - VLAN 131 on interface bond1 for Ubiquiti UniFi Accesspoints private NET
|
|
||||||
auto: true
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
address: 10.131.15.254
|
|
||||||
netmask: 20
|
|
||||||
|
|
||||||
|
|
||||||
- device: bond1:ns
|
|
||||||
headline: bond1:ns - Alias IP on bond1 device for Nameservice
|
|
||||||
auto: true
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
address: 192.168.11.1
|
|
||||||
netmask: 32
|
|
||||||
|
|
||||||
|
|
||||||
- device: bond1:1
|
|
||||||
headline: bond1:1 - Alias IP on bond1 device for (depricated) Management Network
|
|
||||||
auto: true
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
address: 10.10.9.254
|
|
||||||
netmask: 24
|
|
||||||
|
|
||||||
|
|
||||||
- device: bond1:ap
|
|
||||||
headline: bond1:ap - Alias IP on bond1 device for Network Accesspoints
|
|
||||||
auto: true
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
address: 10.112.1.254
|
|
||||||
netmask: 24
|
|
||||||
post-up:
|
|
||||||
# - Wireless Networks routed through appropriate Accesspoints
|
|
||||||
# -
|
|
||||||
- /sbin/ip route add 10.113.1.0/24 via 10.112.1.1
|
|
||||||
- /sbin/ip route add 10.113.2.0/24 via 10.112.1.2
|
|
||||||
- /sbin/ip route add 10.113.3.0/24 via 10.112.1.3
|
|
||||||
- /sbin/ip route add 10.113.4.0/24 via 10.112.1.4
|
|
||||||
- /sbin/ip route add 10.113.5.0/24 via 10.112.1.5
|
|
||||||
- /sbin/ip route add 10.113.6.0/24 via 10.112.1.6
|
|
||||||
- /sbin/ip route add 10.113.7.0/24 via 10.112.1.7
|
|
||||||
- /sbin/ip route add 10.113.8.0/24 via 10.112.1.8
|
|
||||||
- /sbin/ip route add 10.113.9.0/24 via 10.112.1.9
|
|
||||||
- /sbin/ip route add 10.113.10.0/24 via 10.112.1.10
|
|
||||||
- /sbin/ip route add 10.113.11.0/24 via 10.112.1.11
|
|
||||||
- /sbin/ip route add 10.113.12.0/24 via 10.112.1.12
|
|
||||||
- /sbin/ip route add 10.113.13.0/24 via 10.112.1.13
|
|
||||||
- /sbin/ip route add 10.113.14.0/24 via 10.112.1.14
|
|
||||||
- /sbin/ip route add 10.113.15.0/24 via 10.112.1.15
|
|
||||||
|
|
||||||
|
|
||||||
- device: bond1:ipmi
|
|
||||||
headline: bond1:ipmi - Alias IP on bond1 for IPMI Addresses Servr Stockhausen
|
|
||||||
auto: true
|
|
||||||
family: inet
|
|
||||||
method: static
|
|
||||||
address: 10.11.11.254
|
|
||||||
netmask: 24
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/ansible_dependencies
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/ansible_user
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/basic.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/sshd.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/apt.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/systemd-resolved.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
systemd_resolved: true
|
|
||||||
|
|
||||||
# CyberGhost - Schnelle Verbindung mit Keine-Logs-Datenschutzrichtlinie
|
|
||||||
# Primäre DNS-Adresse: 38.132.106.139
|
|
||||||
# Sekundäre DNS-Adresse: 194.187.251.67
|
|
||||||
#
|
|
||||||
# Cloudflare (USA) Bester kostenloser DNS-Server für Gaming mit zuverlässigen Verbindungen
|
|
||||||
# primäre DNS-Adresse
|
|
||||||
# IPv4: 1.1.1.1
|
|
||||||
# IPv6: 2606:4700:4700::1111
|
|
||||||
# sekundäre DNS-Adresse
|
|
||||||
# IPv4: 1.0.0.1
|
|
||||||
# IPv6: 2606:4700:4700::1001
|
|
||||||
#
|
|
||||||
# Google (USA) Public DNS - Großartige Kombination aus Geschwindigkeit und Sicherheit
|
|
||||||
# primäre DNS-Adresse
|
|
||||||
# IPv4: 8.8.8.8
|
|
||||||
# IPv6: 2001:4860:4860::8888
|
|
||||||
# sekundäre DNS-Adresse
|
|
||||||
# IPv4: 8.8.4.4
|
|
||||||
# IPv6: 2001:4860:4860::8844
|
|
||||||
#
|
|
||||||
# Quad9 (CH) - Blockiert mühelos schädliche Seiten und verhindert Phishing-Betrug
|
|
||||||
# primäre DNS-Adresse
|
|
||||||
# IPv4: 9.9.9.9
|
|
||||||
# IPv6: 2620:fe::fe
|
|
||||||
# sekundäre DNS-Adresse
|
|
||||||
# IPv4: 149.112.112.112
|
|
||||||
# IPv6: 2620:fe::9
|
|
||||||
#
|
|
||||||
# OpenNIC - https://www.opennic.org/
|
|
||||||
# IPv4: 195.10.195.195 - ns31.de
|
|
||||||
# IPv4: 94.16.114.254 - ns28.de
|
|
||||||
# IPv4: 51.254.162.59 - ns9.de
|
|
||||||
# IPv4: 194.36.144.87 - ns29.de
|
|
||||||
# IPv6: 2a00:f826:8:2::195 - ns31.de
|
|
||||||
#
|
|
||||||
# Freifunk München (normales DNS, DNS-over-TLS und DNS-over-HTTPS)
|
|
||||||
# IPv4: 5.1.66.255
|
|
||||||
# IPv6: 2001:678:e68:f000::
|
|
||||||
# Servername für DNS-over-TLS: dot.ffmuc.net
|
|
||||||
# IPv4: 185.150.99.255
|
|
||||||
# IPv6: 2001:678:ed0:f000::
|
|
||||||
# Servername für DNS-over-TLS: dot.ffmuc.net
|
|
||||||
# für iOS 14+: DoT-Server-Konfiguration (unsigniert, vom PrHdb)
|
|
||||||
resolved_nameserver:
|
|
||||||
- 127.0.0.1
|
|
||||||
|
|
||||||
# search domains
|
|
||||||
#
|
|
||||||
# If there are more than one search domains, then specify them here in the order in which
|
|
||||||
# the resolver should also search them
|
|
||||||
#
|
|
||||||
#resolved_domains: []
|
|
||||||
resolved_domains:
|
|
||||||
- ~.
|
|
||||||
- ga.netz
|
|
||||||
- ga.intra
|
|
||||||
|
|
||||||
resolved_dnssec: false
|
|
||||||
|
|
||||||
# dns.as250.net: 194.150.168.168
|
|
||||||
#
|
|
||||||
resolved_fallback_nameserver:
|
|
||||||
- 192.168.10.1
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/cron.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
cron_user_special_time_entries:
|
|
||||||
|
|
||||||
- name: "Restart NTP service 'ntpsec'"
|
|
||||||
special_time: reboot
|
|
||||||
job: "sleep 15 ; /bin/systemctl restart ntpsec"
|
|
||||||
insertafter: PATH
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/users.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
insert_ssh_keypair_backup_server: false
|
|
||||||
ssh_keypair_backup_server:
|
|
||||||
- name: backup
|
|
||||||
backup_user: back
|
|
||||||
priv_key_src: root/.ssh/id_rsa.backup.oopen.de
|
|
||||||
priv_key_dest: /root/.ssh/id_rsa
|
|
||||||
pub_key_src: root/.ssh/id_rsa.backup.oopen.de.pub
|
|
||||||
pub_key_dest: /root/.ssh/id_rsa.pub
|
|
||||||
|
|
||||||
insert_keypair_backup_client: true
|
|
||||||
ssh_keypair_backup_client:
|
|
||||||
- name: backup
|
|
||||||
priv_key_src: root/.ssh/id_ed25519.oopen-server
|
|
||||||
priv_key_dest: /root/.ssh/id_ed25519
|
|
||||||
pub_key_src: root/.ssh/id_ed25519.oopen-server.pub
|
|
||||||
pub_key_dest: /root/.ssh/id_ed25519.pub
|
|
||||||
target: backup.oopen.de
|
|
||||||
|
|
||||||
default_user:
|
|
||||||
|
|
||||||
- name: chris
|
|
||||||
password: $y$j9T$rDrvWa/KInzTe601YYf9./$WjDlaItCrgX7gu4nCs481y8WLxiRaNJCC/MgFgKuzg3
|
|
||||||
shell: /bin/bash
|
|
||||||
ssh_keys:
|
|
||||||
- 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIO90culn3sicU2chTHn40ytcTay0nUIHap0uF/5fVM6P chris@sol'
|
|
||||||
- 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOQHMUKlDh2ufno5pZOhUY5xFljC1R5zQ/GjOHDkS58D root@sol'
|
|
||||||
|
|
||||||
- name: maadmin
|
|
||||||
password: $y$j9T$LCkYWvykWzrpFxIlmSUB01$e1ROfZxXAU53UdAwZAECzED4iV4LS02Q4IPQ2fycv51
|
|
||||||
shell: /bin/bash
|
|
||||||
ssh_keys:
|
|
||||||
- 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHCQRRXy0+9D+mhLniRlUpZZ3kZdZcQKXBsGnlsFYaRi maadmin@ga-st-lsx1'
|
|
||||||
|
|
||||||
- name: wadmin
|
|
||||||
password: $6$sLWIXKTW$i/STlSS0LijkrnGR/XMbaxJsEbrRdDYgqyCqIr.muLN5towes8yHDCXsyCYDjuaBNKPHXyFpr8lclg5DOm9OF1
|
|
||||||
shell: /bin/bash
|
|
||||||
ssh_keys:
|
|
||||||
- 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIF5GDIFA6/i6lzkr+EP/EZM9glrK0eSR0nmrEFgUJ4n8 wadmin@ga-st-lsx1'
|
|
||||||
- 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAID17MN6fUg0D1dMSgVYIBpIy+sDBBmiaHmXRXU63TXJA wadmin@ga-st-li1303'
|
|
||||||
- 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKtK8/rxHL1MKX5AHrgAzUYu0kV+1iYCmknpTQ7F0ham wadmin@wolf-debtest'
|
|
||||||
- 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIcaDFxj0pYjOv/ohFVxVY2RKvy6ACZFPX9UkrUPHkbN wadmin@wolf-x1'
|
|
||||||
|
|
||||||
- name: sysadm
|
|
||||||
user_id: 1050
|
|
||||||
group_id: 1050
|
|
||||||
group: sysadm
|
|
||||||
password: $y$j9T$awYUu9oRvV39ojITZOC7D1$czTh5HHIE32PXb0vl40ayAarm39txR4jaH1QzBscqfC
|
|
||||||
shell: /bin/bash
|
|
||||||
ssh_keys:
|
|
||||||
- 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIO90culn3sicU2chTHn40ytcTay0nUIHap0uF/5fVM6P chris@sol'
|
|
||||||
- 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOQHMUKlDh2ufno5pZOhUY5xFljC1R5zQ/GjOHDkS58D root@sol'
|
|
||||||
- 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHCQRRXy0+9D+mhLniRlUpZZ3kZdZcQKXBsGnlsFYaRi maadmin@ga-st-lsx1'
|
|
||||||
- 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIF5GDIFA6/i6lzkr+EP/EZM9glrK0eSR0nmrEFgUJ4n8 wadmin@ga-st-lsx1'
|
|
||||||
- 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAID17MN6fUg0D1dMSgVYIBpIy+sDBBmiaHmXRXU63TXJA wadmin@ga-st-li1303'
|
|
||||||
- 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKtK8/rxHL1MKX5AHrgAzUYu0kV+1iYCmknpTQ7F0ham wadmin@wolf-debtest'
|
|
||||||
- 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIcaDFxj0pYjOv/ohFVxVY2RKvy6ACZFPX9UkrUPHkbN wadmin@wolf-x1'
|
|
||||||
|
|
||||||
- name: back
|
|
||||||
user_id: 1060
|
|
||||||
group_id: 1060
|
|
||||||
group: back
|
|
||||||
password: $y$j9T$wpg8hlvMpO4PAWSVdLoJq/$dgpQh4cEnbUOQkkZzKUM4S8XzNS/Md5gMmMuNTqec74
|
|
||||||
shell: /bin/bash
|
|
||||||
ssh_keys:
|
|
||||||
- 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIO90culn3sicU2chTHn40ytcTay0nUIHap0uF/5fVM6P chris@sol'
|
|
||||||
|
|
||||||
sudo_users:
|
|
||||||
- chris
|
|
||||||
- sysadm
|
|
||||||
- maadmin
|
|
||||||
- wadmin
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/users-systemfiles.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/webadmin-user.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/sudoers.yml
|
|
||||||
# ---
|
|
||||||
#
|
|
||||||
# see: roles/common/tasks/vars
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/caching-nameserver.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
install_bind_packages: true
|
|
||||||
|
|
||||||
bind9_gateway_acl:
|
|
||||||
- local-net:
|
|
||||||
name: local-net
|
|
||||||
entries:
|
|
||||||
- 127.0.0.0/8
|
|
||||||
- 172.16.0.0/12
|
|
||||||
- 192.168.0.0/16
|
|
||||||
- 10.0.0.0/8
|
|
||||||
- fc00::/7
|
|
||||||
- fe80::/10
|
|
||||||
- ::1/128
|
|
||||||
- internaldns:
|
|
||||||
name: internaldns
|
|
||||||
entries:
|
|
||||||
- '# Nameserver Gateway Stockhausen'
|
|
||||||
- 192.168.11.1
|
|
||||||
- '# Domain Controller Stockhausen'
|
|
||||||
- 192.168.10.3
|
|
||||||
- '# Nameserver Gateway Altenschlirf'
|
|
||||||
- 192.168.10.1
|
|
||||||
- '# Domain Controller Altenschlirf'
|
|
||||||
- 192.168.10.3
|
|
||||||
- 192.168.10.6
|
|
||||||
- 172.16.0.1
|
|
||||||
- '# Nameserver Gateway Novalishaus'
|
|
||||||
- 192.168.81.1
|
|
||||||
- 10.2.11.2
|
|
||||||
- '# Nameserver wolle'
|
|
||||||
- 10.113.12.3
|
|
||||||
- '# Postfix Mailserver'
|
|
||||||
- 192.168.11.2
|
|
||||||
- '# Mail Relay System'
|
|
||||||
- 192.168.10.2
|
|
||||||
|
|
||||||
bind9_gateway_listen_on_v6:
|
|
||||||
- none
|
|
||||||
|
|
||||||
bind9_gateway_listen_on:
|
|
||||||
- any
|
|
||||||
|
|
||||||
#bind9_gateway_allow_transfer: {}
|
|
||||||
bind9_gateway_allow_transfer:
|
|
||||||
- internaldns
|
|
||||||
|
|
||||||
bind9_transfer_source: !!str "192.168.11.1"
|
|
||||||
bind9_notify_source: !!str "192.168.11.1"
|
|
||||||
|
|
||||||
#bind9_gateway_allow_query: {}
|
|
||||||
bind9_gateway_allow_query:
|
|
||||||
- local-net
|
|
||||||
|
|
||||||
#bind9_gateway_allow_query_cache: {}
|
|
||||||
bind9_gateway_allow_query_cache:
|
|
||||||
- local-net
|
|
||||||
|
|
||||||
bind9_gateway_recursion: !!str "yes"
|
|
||||||
#bind9_gateway_allow_recursion: {}
|
|
||||||
bind9_gateway_allow_recursion:
|
|
||||||
- local-net
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/git.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
git_firewall_repository:
|
|
||||||
name: ipt-gateway
|
|
||||||
repo: https://git.oopen.de/firewall/ipt-gateway
|
|
||||||
dest: /usr/local/src/ipt-gateway
|
|
||||||
|
|
||||||
# ==============================
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by scripts/reset_root_passwd.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
root_user:
|
|
||||||
name: root
|
|
||||||
password: $6$J1ssJfdshf/$mknQEPDcW4HN5.wFfawbamamywI7F7fhdZmaR1abNrc4DA7DNRx766lz3ygf9YV3gcmRq3QhJ3fBVlkwGMCvq.
|
|
||||||
|
|
||||||
@@ -5,10 +5,10 @@
|
|||||||
|
|
||||||
|
|
||||||
# If true, all additional files in /etc/network/interfaces/interfaces.d/ are deleted
|
# If true, all additional files in /etc/network/interfaces/interfaces.d/ are deleted
|
||||||
network_manage_devices: True
|
network_manage_devices: true
|
||||||
|
|
||||||
# Should the interfaces be reloaded after config change?
|
# Should the interfaces be reloaded after config change?
|
||||||
network_interface_reload: False
|
network_interface_reload: false
|
||||||
|
|
||||||
network_interface_path: /etc/network/interfaces.d
|
network_interface_path: /etc/network/interfaces.d
|
||||||
network_interface_required_packages:
|
network_interface_required_packages:
|
||||||
@@ -451,7 +451,6 @@ cron_user_special_time_entries:
|
|||||||
insertafter: PATH
|
insertafter: PATH
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
# vars used by roles/common/tasks/users.yml
|
# vars used by roles/common/tasks/users.yml
|
||||||
# ---
|
# ---
|
||||||
@@ -632,4 +631,3 @@ git_firewall_repository:
|
|||||||
root_user:
|
root_user:
|
||||||
name: root
|
name: root
|
||||||
password: $6$J1ssJfdshf/$mknQEPDcW4HN5.wFfawbamamywI7F7fhdZmaR1abNrc4DA7DNRx766lz3ygf9YV3gcmRq3QhJ3fBVlkwGMCvq.
|
password: $6$J1ssJfdshf/$mknQEPDcW4HN5.wFfawbamamywI7F7fhdZmaR1abNrc4DA7DNRx766lz3ygf9YV3gcmRq3QhJ3fBVlkwGMCvq.
|
||||||
|
|
||||||
+1
-2
@@ -83,8 +83,8 @@ default_user:
|
|||||||
sudo_users:
|
sudo_users:
|
||||||
- chris
|
- chris
|
||||||
- sysadm
|
- sysadm
|
||||||
- maadmin
|
|
||||||
- wadmin
|
- wadmin
|
||||||
|
- maadmin
|
||||||
|
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
@@ -123,7 +123,6 @@ sshd_permit_root_login: !!str "prohibit-password"
|
|||||||
# ---
|
# ---
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ==============================
|
# ==============================
|
||||||
|
|
||||||
|
|
||||||
+2
-3
@@ -6,10 +6,10 @@
|
|||||||
|
|
||||||
|
|
||||||
# If true, all additional files in /etc/network/interfaces/interfaces.d/ are deleted
|
# If true, all additional files in /etc/network/interfaces/interfaces.d/ are deleted
|
||||||
network_manage_devices: True
|
network_manage_devices: true
|
||||||
|
|
||||||
# Should the interfaces be reloaded after config change?
|
# Should the interfaces be reloaded after config change?
|
||||||
network_interface_reload: False
|
network_interface_reload: false
|
||||||
|
|
||||||
network_interface_path: /etc/network/interfaces.d
|
network_interface_path: /etc/network/interfaces.d
|
||||||
network_interface_required_packages:
|
network_interface_required_packages:
|
||||||
@@ -195,7 +195,6 @@ sshd_permit_root_login: !!str "prohibit-password"
|
|||||||
# ---
|
# ---
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ==============================
|
# ==============================
|
||||||
|
|
||||||
|
|
||||||
+2
-3
@@ -6,10 +6,10 @@
|
|||||||
|
|
||||||
|
|
||||||
# If true, all additional files in /etc/network/interfaces/interfaces.d/ are deleted
|
# If true, all additional files in /etc/network/interfaces/interfaces.d/ are deleted
|
||||||
network_manage_devices: True
|
network_manage_devices: true
|
||||||
|
|
||||||
# Should the interfaces be reloaded after config change?
|
# Should the interfaces be reloaded after config change?
|
||||||
network_interface_reload: False
|
network_interface_reload: false
|
||||||
|
|
||||||
network_interface_path: /etc/network/interfaces.d
|
network_interface_path: /etc/network/interfaces.d
|
||||||
network_interface_required_packages:
|
network_interface_required_packages:
|
||||||
@@ -311,4 +311,3 @@ sudo_users:
|
|||||||
# ---
|
# ---
|
||||||
|
|
||||||
root_user: {}
|
root_user: {}
|
||||||
|
|
||||||
+21
-62
@@ -108,14 +108,14 @@ insert_root_ssh_keypair: true
|
|||||||
|
|
||||||
root_ssh_keypair:
|
root_ssh_keypair:
|
||||||
- name: id-rsa-dehydrated
|
- name: id-rsa-dehydrated
|
||||||
priv_key_src: ga-st-mail/root/.ssh/ga-st-mail-id_rsa-dehydrated
|
priv_key_src: ga-st-mail.ga.netz/root/.ssh/ga-st-mail-id_rsa-dehydrated
|
||||||
priv_key_dest: /root/.ssh/id_rsa-dehydrated
|
priv_key_dest: /root/.ssh/id_rsa-dehydrated
|
||||||
pub_key_src: ga-st-mail/root/.ssh/ga-st-mail-id_rsa-dehydrated.pub
|
pub_key_src: ga-st-mail.ga.netz/root/.ssh/ga-st-mail-id_rsa-dehydrated.pub
|
||||||
pub_key_dest: /root/.ssh/id_rsa-dehydrated.pub
|
pub_key_dest: /root/.ssh/id_rsa-dehydrated.pub
|
||||||
- name: id-rsa-opendkim
|
- name: id-rsa-opendkim
|
||||||
priv_key_src: ga-st-mail/root/.ssh/ga-st-mail-id_rsa-opendkim
|
priv_key_src: ga-st-mail.ga.netz/root/.ssh/ga-st-mail-id_rsa-opendkim
|
||||||
priv_key_dest: /root/.ssh/id_rsa-opendkim
|
priv_key_dest: /root/.ssh/id_rsa-opendkim
|
||||||
pub_key_src: ga-st-mail/root/.ssh/ga-st-mail-id_rsa-opendkim.pub
|
pub_key_src: ga-st-mail.ga.netz/root/.ssh/ga-st-mail-id_rsa-opendkim.pub
|
||||||
pub_key_dest: /root/.ssh/id_rsa-opendkim.pub
|
pub_key_dest: /root/.ssh/id_rsa-opendkim.pub
|
||||||
|
|
||||||
default_user:
|
default_user:
|
||||||
@@ -206,49 +206,6 @@ sudo_users:
|
|||||||
# vars used by roles/common/tasks/copy_files.yml
|
# vars used by roles/common/tasks/copy_files.yml
|
||||||
# ---
|
# ---
|
||||||
|
|
||||||
copy_plain_files:
|
|
||||||
|
|
||||||
# /root/bin/monitoring
|
|
||||||
#
|
|
||||||
- name: monitoring_check_cert_for_dovecot.conf
|
|
||||||
src_path: ga-st-mail/root/bin/monitoring/conf/check_cert_for_dovecot.conf
|
|
||||||
dest_path: /root/bin/monitoring/conf/check_cert_for_dovecot.conf
|
|
||||||
|
|
||||||
# /root/bin/postfix
|
|
||||||
#
|
|
||||||
- name: postfix_create_opendkim_key.conf
|
|
||||||
src_path: ga-st-mail/root/bin/postfix/conf/create_opendkim_key.conf
|
|
||||||
dest_path: /root/bin/postfix/conf/create_opendkim_key.conf
|
|
||||||
|
|
||||||
- name: postfix_postfix_add_mailboxes.conf
|
|
||||||
src_path: ga-st-mail/root/bin/postfix/conf/postfix_add_mailboxes.conf
|
|
||||||
dest_path: /root/bin/postfix/conf/postfix_add_mailboxes.conf
|
|
||||||
|
|
||||||
- name: postfix_sent_userinfo_postfix.conf
|
|
||||||
src_path: ga-st-mail/root/bin/postfix/conf/sent_userinfo_postfix.conf
|
|
||||||
dest_path: /root/bin/postfix/conf/sent_userinfo_postfix.conf
|
|
||||||
|
|
||||||
- name: postfix_whitelist_mb_sigs.conf
|
|
||||||
src_path: ga-st-mail/root/bin/postfix/conf/whitelist_mb_sigs.conf
|
|
||||||
dest_path: /root/bin/postfix/conf/whitelist_mb_sigs.conf
|
|
||||||
|
|
||||||
|
|
||||||
copy_plain_files_postfwd_host_specific:
|
|
||||||
|
|
||||||
# Postfix Firewall postfwd
|
|
||||||
#
|
|
||||||
- name: postfwd.wl-user
|
|
||||||
src_path: ga-st-mail/etc/postfix/postfwd.cf
|
|
||||||
dest_path: /etc/postfix/postfwd.cf
|
|
||||||
|
|
||||||
|
|
||||||
#copy_template_files: []
|
|
||||||
#
|
|
||||||
# - name: mailsystem_install_amavis.conf
|
|
||||||
# src_path: usr/local/src/mailsystem/conf/install_amavis.conf.j2
|
|
||||||
# dest_path: /usr/local/src/mailsystem/conf/install_amavis.conf
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
# vars used by roles/common/tasks/config_files_mailsystem_scripts.yml
|
# vars used by roles/common/tasks/config_files_mailsystem_scripts.yml
|
||||||
@@ -282,31 +239,33 @@ si_authorisation_signature: abb4ec6b194639f3d123154f1b971843a3b8751d8c1bcdc7d07e
|
|||||||
#
|
#
|
||||||
website_name_postfixadmin: adm.gemeinschaft-altenschlirf.de
|
website_name_postfixadmin: adm.gemeinschaft-altenschlirf.de
|
||||||
|
|
||||||
email_welcome_message: "\n
|
email_welcome_message: |
|
||||||
Hallo,\n
|
|
||||||
|
|
||||||
Ihre/Deine neue E-Mail Adresse ist eingerichtet.\n
|
Hallo,
|
||||||
|
|
||||||
IT Team Gemeinschaft Altenschlirf\n
|
Ihre/Deine neue E-Mail Adresse ist eingerichtet.
|
||||||
|
|
||||||
--\n
|
IT Team Gemeinschaft Altenschlirf
|
||||||
Gemeinschaft Altenschlirf | Phone: +49 6647 / 9606 0\n
|
|
||||||
Müser Straße 1 | Fax: +49 6647 / 9606 179\n
|
--
|
||||||
D-36358 Herbstein | E-Mail: it@gemeinschaft-altenschlirf.de\n
|
|
||||||
"
|
Gemeinschaft Altenschlirf | Phone: +49 6647 / 9606 0
|
||||||
|
Müser Straße 1 | Fax: +49 6647 / 9606 179
|
||||||
|
D-36358 Herbstein | E-Mail: it@gemeinschaft-altenschlirf.de
|
||||||
|
|
||||||
# install_update_dovecot.conf
|
# install_update_dovecot.conf
|
||||||
#
|
#
|
||||||
dovecot_from_address: "Administrator E-Mail <postmaster@gemeinschaft-altenschlirf.de>"
|
dovecot_from_address: "Administrator E-Mail <postmaster@gemeinschaft-altenschlirf.de>"
|
||||||
dovecot_reply_to: "postmaster@gemeinschaft-altenschlirf.de"
|
dovecot_reply_to: "postmaster@gemeinschaft-altenschlirf.de"
|
||||||
webmailer_address: "https://webmail.gemeinschaft-altenschlirf.de"
|
webmailer_address: "https://webmail.gemeinschaft-altenschlirf.de"
|
||||||
salutation: "IT Team Gemeinschaft Altenschlirf\n
|
salutation: |
|
||||||
|
IT Team Gemeinschaft Altenschlirf
|
||||||
|
|
||||||
--\n
|
--
|
||||||
Gemeinschaft Altenschlirf | Phone: +49 6647 / 9606 0\n
|
|
||||||
Müser Straße 1 | Fax: +49 6647 / 9606 179\n
|
Gemeinschaft Altenschlirf | Phone: +49 6647 / 9606 0
|
||||||
D-36358 Herbstein | E-Mail: it@gemeinschaft-altenschlirf.de\n
|
Müser Straße 1 | Fax: +49 6647 / 9606 179
|
||||||
"
|
D-36358 Herbstein | E-Mail: it@gemeinschaft-altenschlirf.de
|
||||||
|
|
||||||
# install_upgrade_roundcube-webmail.conf
|
# install_upgrade_roundcube-webmail.conf
|
||||||
#
|
#
|
||||||
@@ -209,7 +209,6 @@ sudo_users:
|
|||||||
# ---
|
# ---
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
# vars used by roles/common/tasks/config_files_mailsystem_scripts.yml
|
# vars used by roles/common/tasks/config_files_mailsystem_scripts.yml
|
||||||
# ---
|
# ---
|
||||||
-1
@@ -207,7 +207,6 @@ sudo_users:
|
|||||||
# dest_path: /usr/local/src/mailsystem/conf/install_amavis.conf
|
# dest_path: /usr/local/src/mailsystem/conf/install_amavis.conf
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
# vars used by roles/common/tasks/config_files_mailsystem_scripts.yml
|
# vars used by roles/common/tasks/config_files_mailsystem_scripts.yml
|
||||||
# ---
|
# ---
|
||||||
@@ -1,148 +0,0 @@
|
|||||||
---
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/ansible_dependencies
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/ansible_user
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/basic.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/sshd.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/apt.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/systemd-resolved.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
systemd_resolved: true
|
|
||||||
|
|
||||||
# CyberGhost - Schnelle Verbindung mit Keine-Logs-Datenschutzrichtlinie
|
|
||||||
# Primäre DNS-Adresse: 38.132.106.139
|
|
||||||
# Sekundäre DNS-Adresse: 194.187.251.67
|
|
||||||
#
|
|
||||||
# Cloudflare (USA) Bester kostenloser DNS-Server für Gaming mit zuverlässigen Verbindungen
|
|
||||||
# primäre DNS-Adresse
|
|
||||||
# IPv4: 1.1.1.1
|
|
||||||
# IPv6: 2606:4700:4700::1111
|
|
||||||
# sekundäre DNS-Adresse
|
|
||||||
# IPv4: 1.0.0.1
|
|
||||||
# IPv6: 2606:4700:4700::1001
|
|
||||||
#
|
|
||||||
# Google (USA) Public DNS - Großartige Kombination aus Geschwindigkeit und Sicherheit
|
|
||||||
# primäre DNS-Adresse
|
|
||||||
# IPv4: 8.8.8.8
|
|
||||||
# IPv6: 2001:4860:4860::8888
|
|
||||||
# sekundäre DNS-Adresse
|
|
||||||
# IPv4: 8.8.4.4
|
|
||||||
# IPv6: 2001:4860:4860::8844
|
|
||||||
#
|
|
||||||
# Quad9 (CH) - Blockiert mühelos schädliche Seiten und verhindert Phishing-Betrug
|
|
||||||
# primäre DNS-Adresse
|
|
||||||
# IPv4: 9.9.9.9
|
|
||||||
# IPv6: 2620:fe::fe
|
|
||||||
# sekundäre DNS-Adresse
|
|
||||||
# IPv4: 149.112.112.112
|
|
||||||
# IPv6: 2620:fe::9
|
|
||||||
#
|
|
||||||
# OpenNIC - https://www.opennic.org/
|
|
||||||
# IPv4: 195.10.195.195 - ns31.de
|
|
||||||
# IPv4: 94.16.114.254 - ns28.de
|
|
||||||
# IPv4: 51.254.162.59 - ns9.de
|
|
||||||
# IPv4: 194.36.144.87 - ns29.de
|
|
||||||
# IPv6: 2a00:f826:8:2::195 - ns31.de
|
|
||||||
#
|
|
||||||
# Freifunk München (normales DNS, DNS-over-TLS und DNS-over-HTTPS)
|
|
||||||
# IPv4: 5.1.66.255
|
|
||||||
# IPv6: 2001:678:e68:f000::
|
|
||||||
# Servername für DNS-over-TLS: dot.ffmuc.net
|
|
||||||
# IPv4: 185.150.99.255
|
|
||||||
# IPv6: 2001:678:ed0:f000::
|
|
||||||
# Servername für DNS-over-TLS: dot.ffmuc.net
|
|
||||||
# für iOS 14+: DoT-Server-Konfiguration (unsigniert, vom PrHdb)
|
|
||||||
resolved_nameserver:
|
|
||||||
- 185.12.64.2
|
|
||||||
- 2a01:4ff:ff00::add:1
|
|
||||||
|
|
||||||
# search domains
|
|
||||||
#
|
|
||||||
# If there are more than one search domains, then specify them here in the order in which
|
|
||||||
# the resolver should also search them
|
|
||||||
#
|
|
||||||
#resolved_domains: []
|
|
||||||
resolved_domains:
|
|
||||||
- ~.
|
|
||||||
- oopen.de
|
|
||||||
|
|
||||||
resolved_dnssec: false
|
|
||||||
|
|
||||||
# dns.as250.net: 194.150.168.168
|
|
||||||
#
|
|
||||||
resolved_fallback_nameserver:
|
|
||||||
- 194.150.168.168
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/users.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/users-systemfiles.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/webadmin-user.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/sudoers.yml
|
|
||||||
# ---
|
|
||||||
#
|
|
||||||
# see: roles/common/tasks/vars
|
|
||||||
|
|
||||||
sudoers_file_user_back_svn_privileges:
|
|
||||||
- 'ALL=(root) NOPASSWD: /usr/bin/svnadmin'
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/caching-nameserver.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by roles/common/tasks/git.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
git_firewall_repository:
|
|
||||||
name: ipt-server
|
|
||||||
repo: https://git.oopen.de/firewall/ipt-server
|
|
||||||
dest: /usr/local/src/ipt-server
|
|
||||||
|
|
||||||
# ==============================
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# vars used by scripts/reset_root_passwd.yml
|
|
||||||
# ---
|
|
||||||
|
|
||||||
root_user:
|
|
||||||
name: root
|
|
||||||
password: $6$J1ssJfdshf/$mknQEPDcW4HN5.wFfawbamamywI7F7fhdZmaR1abNrc4DA7DNRx766lz3ygf9YV3gcmRq3QhJ3fBVlkwGMCvq.
|
|
||||||
|
|
||||||
@@ -0,0 +1,147 @@
|
|||||||
|
---
|
||||||
|
|
||||||
|
# ---
|
||||||
|
# vars used by roles/ansible_dependencies
|
||||||
|
# ---
|
||||||
|
|
||||||
|
|
||||||
|
# ---
|
||||||
|
# vars used by roles/ansible_user
|
||||||
|
# ---
|
||||||
|
|
||||||
|
|
||||||
|
# ---
|
||||||
|
# vars used by roles/common/tasks/basic.yml
|
||||||
|
# ---
|
||||||
|
|
||||||
|
|
||||||
|
# ---
|
||||||
|
# vars used by roles/common/tasks/sshd.yml
|
||||||
|
# ---
|
||||||
|
|
||||||
|
|
||||||
|
# ---
|
||||||
|
# vars used by roles/common/tasks/apt.yml
|
||||||
|
# ---
|
||||||
|
|
||||||
|
|
||||||
|
# ---
|
||||||
|
# vars used by roles/common/tasks/systemd-resolved.yml
|
||||||
|
# ---
|
||||||
|
|
||||||
|
systemd_resolved: true
|
||||||
|
|
||||||
|
# CyberGhost - Schnelle Verbindung mit Keine-Logs-Datenschutzrichtlinie
|
||||||
|
# Primäre DNS-Adresse: 38.132.106.139
|
||||||
|
# Sekundäre DNS-Adresse: 194.187.251.67
|
||||||
|
#
|
||||||
|
# Cloudflare (USA) Bester kostenloser DNS-Server für Gaming mit zuverlässigen Verbindungen
|
||||||
|
# primäre DNS-Adresse
|
||||||
|
# IPv4: 1.1.1.1
|
||||||
|
# IPv6: 2606:4700:4700::1111
|
||||||
|
# sekundäre DNS-Adresse
|
||||||
|
# IPv4: 1.0.0.1
|
||||||
|
# IPv6: 2606:4700:4700::1001
|
||||||
|
#
|
||||||
|
# Google (USA) Public DNS - Großartige Kombination aus Geschwindigkeit und Sicherheit
|
||||||
|
# primäre DNS-Adresse
|
||||||
|
# IPv4: 8.8.8.8
|
||||||
|
# IPv6: 2001:4860:4860::8888
|
||||||
|
# sekundäre DNS-Adresse
|
||||||
|
# IPv4: 8.8.4.4
|
||||||
|
# IPv6: 2001:4860:4860::8844
|
||||||
|
#
|
||||||
|
# Quad9 (CH) - Blockiert mühelos schädliche Seiten und verhindert Phishing-Betrug
|
||||||
|
# primäre DNS-Adresse
|
||||||
|
# IPv4: 9.9.9.9
|
||||||
|
# IPv6: 2620:fe::fe
|
||||||
|
# sekundäre DNS-Adresse
|
||||||
|
# IPv4: 149.112.112.112
|
||||||
|
# IPv6: 2620:fe::9
|
||||||
|
#
|
||||||
|
# OpenNIC - https://www.opennic.org/
|
||||||
|
# IPv4: 195.10.195.195 - ns31.de
|
||||||
|
# IPv4: 94.16.114.254 - ns28.de
|
||||||
|
# IPv4: 51.254.162.59 - ns9.de
|
||||||
|
# IPv4: 194.36.144.87 - ns29.de
|
||||||
|
# IPv6: 2a00:f826:8:2::195 - ns31.de
|
||||||
|
#
|
||||||
|
# Freifunk München (normales DNS, DNS-over-TLS und DNS-over-HTTPS)
|
||||||
|
# IPv4: 5.1.66.255
|
||||||
|
# IPv6: 2001:678:e68:f000::
|
||||||
|
# Servername für DNS-over-TLS: dot.ffmuc.net
|
||||||
|
# IPv4: 185.150.99.255
|
||||||
|
# IPv6: 2001:678:ed0:f000::
|
||||||
|
# Servername für DNS-over-TLS: dot.ffmuc.net
|
||||||
|
# für iOS 14+: DoT-Server-Konfiguration (unsigniert, vom PrHdb)
|
||||||
|
resolved_nameserver:
|
||||||
|
- 185.12.64.2
|
||||||
|
- 2a01:4ff:ff00::add:1
|
||||||
|
|
||||||
|
# search domains
|
||||||
|
#
|
||||||
|
# If there are more than one search domains, then specify them here in the order in which
|
||||||
|
# the resolver should also search them
|
||||||
|
#
|
||||||
|
# resolved_domains: []
|
||||||
|
resolved_domains:
|
||||||
|
- ~.
|
||||||
|
- oopen.de
|
||||||
|
|
||||||
|
resolved_dnssec: false
|
||||||
|
|
||||||
|
# dns.as250.net: 194.150.168.168
|
||||||
|
#
|
||||||
|
resolved_fallback_nameserver:
|
||||||
|
- 194.150.168.168
|
||||||
|
|
||||||
|
|
||||||
|
# ---
|
||||||
|
# vars used by roles/common/tasks/users.yml
|
||||||
|
# ---
|
||||||
|
|
||||||
|
|
||||||
|
# ---
|
||||||
|
# vars used by roles/common/tasks/users-systemfiles.yml
|
||||||
|
# ---
|
||||||
|
|
||||||
|
|
||||||
|
# ---
|
||||||
|
# vars used by roles/common/tasks/webadmin-user.yml
|
||||||
|
# ---
|
||||||
|
|
||||||
|
|
||||||
|
# ---
|
||||||
|
# vars used by roles/common/tasks/sudoers.yml
|
||||||
|
# ---
|
||||||
|
#
|
||||||
|
# see: roles/common/tasks/vars
|
||||||
|
|
||||||
|
sudoers_file_user_back_svn_privileges:
|
||||||
|
- 'ALL=(root) NOPASSWD: /usr/bin/svnadmin'
|
||||||
|
|
||||||
|
|
||||||
|
# ---
|
||||||
|
# vars used by roles/common/tasks/caching-nameserver.yml
|
||||||
|
# ---
|
||||||
|
|
||||||
|
|
||||||
|
# ---
|
||||||
|
# vars used by roles/common/tasks/git.yml
|
||||||
|
# ---
|
||||||
|
|
||||||
|
git_firewall_repository:
|
||||||
|
name: ipt-server
|
||||||
|
repo: https://git.oopen.de/firewall/ipt-server
|
||||||
|
dest: /usr/local/src/ipt-server
|
||||||
|
|
||||||
|
# ==============================
|
||||||
|
|
||||||
|
|
||||||
|
# ---
|
||||||
|
# vars used by scripts/reset_root_passwd.yml
|
||||||
|
# ---
|
||||||
|
|
||||||
|
root_user:
|
||||||
|
name: root
|
||||||
|
password: $6$J1ssJfdshf/$mknQEPDcW4HN5.wFfawbamamywI7F7fhdZmaR1abNrc4DA7DNRx766lz3ygf9YV3gcmRq3QhJ3fBVlkwGMCvq.
|
||||||
@@ -83,7 +83,6 @@ resolved_nameserver:
|
|||||||
- 2a01:4f8:0:1::add:9999
|
- 2a01:4f8:0:1::add:9999
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
# vars used by roles/common/tasks/users.yml
|
# vars used by roles/common/tasks/users.yml
|
||||||
# ---
|
# ---
|
||||||
@@ -133,4 +132,3 @@ git_firewall_repository:
|
|||||||
root_user:
|
root_user:
|
||||||
name: root
|
name: root
|
||||||
password: $6$J1ssJfdshf/$mknQEPDcW4HN5.wFfawbamamywI7F7fhdZmaR1abNrc4DA7DNRx766lz3ygf9YV3gcmRq3QhJ3fBVlkwGMCvq.
|
password: $6$J1ssJfdshf/$mknQEPDcW4HN5.wFfawbamamywI7F7fhdZmaR1abNrc4DA7DNRx766lz3ygf9YV3gcmRq3QhJ3fBVlkwGMCvq.
|
||||||
|
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
---
|
---
|
||||||
|
# yamllint disable rule:line-length
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
# vars used by role firewall
|
# vars used by role firewall
|
||||||
@@ -272,4 +273,3 @@ git_firewall_repository:
|
|||||||
root_user:
|
root_user:
|
||||||
name: root
|
name: root
|
||||||
password: $6$J1ssJfdshf/$mknQEPDcW4HN5.wFfawbamamywI7F7fhdZmaR1abNrc4DA7DNRx766lz3ygf9YV3gcmRq3QhJ3fBVlkwGMCvq.
|
password: $6$J1ssJfdshf/$mknQEPDcW4HN5.wFfawbamamywI7F7fhdZmaR1abNrc4DA7DNRx766lz3ygf9YV3gcmRq3QhJ3fBVlkwGMCvq.
|
||||||
|
|
||||||
@@ -219,4 +219,3 @@ git_firewall_repository:
|
|||||||
root_user:
|
root_user:
|
||||||
name: root
|
name: root
|
||||||
password: $y$j9T$IVBTpn.OrI6YiQ9q3fA8b1$Y1bmID5yXJbKfoLFt1VmQs6LezeTj5/1M9ppZBD2Pn4
|
password: $y$j9T$IVBTpn.OrI6YiQ9q3fA8b1$Y1bmID5yXJbKfoLFt1VmQs6LezeTj5/1M9ppZBD2Pn4
|
||||||
|
|
||||||
@@ -271,4 +271,3 @@ git_firewall_repository:
|
|||||||
root_user:
|
root_user:
|
||||||
name: root
|
name: root
|
||||||
password: $6$J1ssJfdshf/$mknQEPDcW4HN5.wFfawbamamywI7F7fhdZmaR1abNrc4DA7DNRx766lz3ygf9YV3gcmRq3QhJ3fBVlkwGMCvq.
|
password: $6$J1ssJfdshf/$mknQEPDcW4HN5.wFfawbamamywI7F7fhdZmaR1abNrc4DA7DNRx766lz3ygf9YV3gcmRq3QhJ3fBVlkwGMCvq.
|
||||||
|
|
||||||
@@ -6,10 +6,10 @@
|
|||||||
|
|
||||||
|
|
||||||
# If true, all additional files in /etc/network/interfaces/interfaces.d/ are deleted
|
# If true, all additional files in /etc/network/interfaces/interfaces.d/ are deleted
|
||||||
network_manage_devices: True
|
network_manage_devices: true
|
||||||
|
|
||||||
# Should the interfaces be reloaded after config change?
|
# Should the interfaces be reloaded after config change?
|
||||||
network_interface_reload: False
|
network_interface_reload: false
|
||||||
|
|
||||||
network_interface_path: /etc/network/interfaces.d
|
network_interface_path: /etc/network/interfaces.d
|
||||||
network_interface_required_packages:
|
network_interface_required_packages:
|
||||||
@@ -244,4 +244,3 @@ bind9_gateway_listen_on:
|
|||||||
root_user:
|
root_user:
|
||||||
name: root
|
name: root
|
||||||
password: $6$J1ssJfdshf/$mknQEPDcW4HN5.wFfawbamamywI7F7fhdZmaR1abNrc4DA7DNRx766lz3ygf9YV3gcmRq3QhJ3fBVlkwGMCvq.
|
password: $6$J1ssJfdshf/$mknQEPDcW4HN5.wFfawbamamywI7F7fhdZmaR1abNrc4DA7DNRx766lz3ygf9YV3gcmRq3QhJ3fBVlkwGMCvq.
|
||||||
|
|
||||||
@@ -214,4 +214,3 @@ bind9_gateway_listen_on:
|
|||||||
root_user:
|
root_user:
|
||||||
name: root
|
name: root
|
||||||
password: $y$j9T$IVBTpn.OrI6YiQ9q3fA8b1$Y1bmID5yXJbKfoLFt1VmQs6LezeTj5/1M9ppZBD2Pn4
|
password: $y$j9T$IVBTpn.OrI6YiQ9q3fA8b1$Y1bmID5yXJbKfoLFt1VmQs6LezeTj5/1M9ppZBD2Pn4
|
||||||
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user