Compare commits
6 commits
main
...
router-kil
Author | SHA1 | Date | |
---|---|---|---|
23548107d5 |
|||
e3c12b18e8 |
|||
c8fa55fafd |
|||
217b44c3fa |
|||
ed8670f7da |
|||
987327863a |
25 changed files with 359 additions and 0 deletions
2
inventories/chaosknoten/host_vars/router.yaml
Normal file
2
inventories/chaosknoten/host_vars/router.yaml
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
systemd_networkd__config_dir: 'resources/chaosknoten/router/systemd_networkd/'
|
||||||
|
nftables__config: "{{ lookup('ansible.builtin.file', 'resources/chaosknoten/router/nftables/nftables.conf') }}"
|
|
@ -55,6 +55,9 @@ all:
|
||||||
public-reverse-proxy:
|
public-reverse-proxy:
|
||||||
ansible_host: public-reverse-proxy.hamburg.ccc.de
|
ansible_host: public-reverse-proxy.hamburg.ccc.de
|
||||||
ansible_user: chaos
|
ansible_user: chaos
|
||||||
|
router:
|
||||||
|
ansible_host: router.hamburg.ccc.de
|
||||||
|
ansible_user: chaos
|
||||||
wiki:
|
wiki:
|
||||||
ansible_host: wiki-intern.hamburg.ccc.de
|
ansible_host: wiki-intern.hamburg.ccc.de
|
||||||
ansible_user: chaos
|
ansible_user: chaos
|
||||||
|
@ -81,9 +84,16 @@ base_config_hosts:
|
||||||
pad:
|
pad:
|
||||||
pretalx:
|
pretalx:
|
||||||
public-reverse-proxy:
|
public-reverse-proxy:
|
||||||
|
router:
|
||||||
tickets:
|
tickets:
|
||||||
wiki:
|
wiki:
|
||||||
zammad:
|
zammad:
|
||||||
|
systemd_networkd_hosts:
|
||||||
|
hosts:
|
||||||
|
router:
|
||||||
|
nftables_hosts:
|
||||||
|
hosts:
|
||||||
|
router:
|
||||||
docker_compose_hosts:
|
docker_compose_hosts:
|
||||||
hosts:
|
hosts:
|
||||||
ccchoir:
|
ccchoir:
|
||||||
|
@ -161,6 +171,7 @@ infrastructure_authorized_keys_hosts:
|
||||||
pad:
|
pad:
|
||||||
pretalx:
|
pretalx:
|
||||||
public-reverse-proxy:
|
public-reverse-proxy:
|
||||||
|
router:
|
||||||
wiki:
|
wiki:
|
||||||
zammad:
|
zammad:
|
||||||
wiki_hosts:
|
wiki_hosts:
|
||||||
|
|
|
@ -4,6 +4,16 @@
|
||||||
roles:
|
roles:
|
||||||
- base_config
|
- base_config
|
||||||
|
|
||||||
|
- name: Ensure systemd-networkd config deployment on systemd_networkd_hosts
|
||||||
|
hosts: systemd_networkd_hosts
|
||||||
|
roles:
|
||||||
|
- systemd_networkd
|
||||||
|
|
||||||
|
- name: Ensure nftables deployment on nftables_hosts
|
||||||
|
hosts: nftables_hosts
|
||||||
|
roles:
|
||||||
|
- nftables
|
||||||
|
|
||||||
- name: Ensure deployment of infrastructure authorized keys
|
- name: Ensure deployment of infrastructure authorized keys
|
||||||
hosts: infrastructure_authorized_keys_hosts
|
hosts: infrastructure_authorized_keys_hosts
|
||||||
roles:
|
roles:
|
||||||
|
|
84
resources/chaosknoten/router/nftables/nftables.conf
Normal file
84
resources/chaosknoten/router/nftables/nftables.conf
Normal file
|
@ -0,0 +1,84 @@
|
||||||
|
#!/usr/sbin/nft -f
|
||||||
|
|
||||||
|
## Variables
|
||||||
|
|
||||||
|
# Interfaces
|
||||||
|
define if_net1_v4_wan = "net1"
|
||||||
|
define if_net2_v6_wan = "net2"
|
||||||
|
define if_net0_2_v4_nat = "net0.2"
|
||||||
|
define if_net0_3_ci_runner = "net0.3"
|
||||||
|
define if_net0_4_v4_nat_legacy = "net0.4"
|
||||||
|
define if_net0_5_public = "net0.5"
|
||||||
|
|
||||||
|
# Interface Groups
|
||||||
|
define wan_ifs = { $if_net1_v4_wan,
|
||||||
|
$if_net2_v6_wan }
|
||||||
|
define lan_ifs = { $if_net0_2_v4_nat,
|
||||||
|
$if_net0_3_ci_runner,
|
||||||
|
$if_net0_4_v4_nat_legacy,
|
||||||
|
$if_net0_5_public }
|
||||||
|
define v4_exposed_ifs = { $if_net0_5_public }
|
||||||
|
define v6_exposed_ifs = { $if_net0_2_v4_nat,
|
||||||
|
$if_net0_4_v4_nat_legacy,
|
||||||
|
$if_net0_5_public }
|
||||||
|
|
||||||
|
|
||||||
|
## Rules
|
||||||
|
|
||||||
|
table inet reverse-path-forwarding {
|
||||||
|
chain rpf-filter {
|
||||||
|
type filter hook prerouting priority mangle + 10; policy drop;
|
||||||
|
|
||||||
|
# Only allow packets if their source address is routed via their incoming interface.
|
||||||
|
# https://github.com/NixOS/nixpkgs/blob/d9d87c51960050e89c79e4025082ed965e770d68/nixos/modules/services/networking/firewall-nftables.nix#L100
|
||||||
|
fib saddr . mark . iif oif exists accept
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
table inet host {
|
||||||
|
chain input {
|
||||||
|
type filter hook input priority filter; policy drop;
|
||||||
|
|
||||||
|
iifname "lo" accept comment "allow loopback"
|
||||||
|
|
||||||
|
ct state invalid drop
|
||||||
|
ct state established,related accept
|
||||||
|
|
||||||
|
ip protocol icmp accept
|
||||||
|
ip6 nexthdr icmpv6 accept
|
||||||
|
|
||||||
|
# Allow SSH access.
|
||||||
|
tcp dport 22 accept comment "allow ssh access"
|
||||||
|
|
||||||
|
# Allow DHCP server access.
|
||||||
|
iifname $if_net0_3_ci_runner udp dport 67 accept comment "allow dhcp server access"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
table ip v4nat {
|
||||||
|
chain prerouting {
|
||||||
|
type nat hook prerouting priority dstnat; policy accept;
|
||||||
|
}
|
||||||
|
|
||||||
|
chain postrouting {
|
||||||
|
type nat hook postrouting priority srcnat; policy accept;
|
||||||
|
|
||||||
|
oifname $if_net1_v4_wan masquerade
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
table inet forward {
|
||||||
|
chain forward {
|
||||||
|
type filter hook forward priority filter; policy drop;
|
||||||
|
|
||||||
|
ct state invalid drop
|
||||||
|
ct state established,related accept
|
||||||
|
|
||||||
|
# Allow internet access.
|
||||||
|
iifname $lan_ifs oifname $wan_ifs accept comment "allow internet access"
|
||||||
|
|
||||||
|
# Allow access to exposed networks from internet.
|
||||||
|
meta nfproto ipv4 oifname $v4_exposed_ifs accept comment "allow v4 exposed network access"
|
||||||
|
meta nfproto ipv6 oifname $v6_exposed_ifs accept comment "allow v6 exposed network access"
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,6 @@
|
||||||
|
[Match]
|
||||||
|
MACAddress=BC:24:11:54:11:15
|
||||||
|
Type=ether
|
||||||
|
|
||||||
|
[Link]
|
||||||
|
Name=net0
|
|
@ -0,0 +1,7 @@
|
||||||
|
[Match]
|
||||||
|
# Stolen from turing to make 212.12.48.122 work.
|
||||||
|
MACAddress=0E:A4:E3:97:16:92
|
||||||
|
Type=ether
|
||||||
|
|
||||||
|
[Link]
|
||||||
|
Name=net1
|
|
@ -0,0 +1,6 @@
|
||||||
|
[Match]
|
||||||
|
MACAddress=BC:24:11:AE:C7:04
|
||||||
|
Type=ether
|
||||||
|
|
||||||
|
[Link]
|
||||||
|
Name=net2
|
|
@ -0,0 +1,7 @@
|
||||||
|
[NetDev]
|
||||||
|
Name=net0.2
|
||||||
|
Kind=vlan
|
||||||
|
|
||||||
|
[VLAN]
|
||||||
|
Id=2
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
[NetDev]
|
||||||
|
Name=net0.3
|
||||||
|
Kind=vlan
|
||||||
|
|
||||||
|
[VLAN]
|
||||||
|
Id=3
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
[NetDev]
|
||||||
|
Name=net0.4
|
||||||
|
Kind=vlan
|
||||||
|
|
||||||
|
[VLAN]
|
||||||
|
Id=4
|
|
@ -0,0 +1,6 @@
|
||||||
|
[NetDev]
|
||||||
|
Name=net0.5
|
||||||
|
Kind=vlan
|
||||||
|
|
||||||
|
[VLAN]
|
||||||
|
Id=5
|
|
@ -0,0 +1,13 @@
|
||||||
|
[Match]
|
||||||
|
Name=net0
|
||||||
|
|
||||||
|
[Link]
|
||||||
|
RequiredForOnline=no
|
||||||
|
|
||||||
|
[Network]
|
||||||
|
VLAN=net0.2
|
||||||
|
VLAN=net0.3
|
||||||
|
VLAN=net0.4
|
||||||
|
VLAN=net0.5
|
||||||
|
|
||||||
|
LinkLocalAddressing=no
|
|
@ -0,0 +1,15 @@
|
||||||
|
[Match]
|
||||||
|
Name=net1
|
||||||
|
|
||||||
|
[Network]
|
||||||
|
DNS=212.12.50.158
|
||||||
|
IPForward=ipv4
|
||||||
|
IPv6AcceptRA=no
|
||||||
|
# v4 taken from turing for routing public v4 range and turing-compat for v4-NAT-legacy network.
|
||||||
|
# Also just the v4 for other purposes as well.
|
||||||
|
Address=212.12.48.122/24
|
||||||
|
Address=212.12.48.123/24
|
||||||
|
# v6 for turing-compat for v4-NAT-legacy network routed v6.
|
||||||
|
Address=2a00:14b0:4200:3000:122::1
|
||||||
|
Gateway=212.12.48.55
|
||||||
|
Gateway=2a00:14b0:4200:3000::1
|
|
@ -0,0 +1,14 @@
|
||||||
|
[Match]
|
||||||
|
Name=net2
|
||||||
|
|
||||||
|
[Network]
|
||||||
|
#DNS=212.12.50.158
|
||||||
|
IPForward=ipv6
|
||||||
|
IPv6AcceptRA=no
|
||||||
|
|
||||||
|
[Address]
|
||||||
|
Address=2a00:14b0:4200:3500::130:2/112
|
||||||
|
|
||||||
|
[Route]
|
||||||
|
Gateway=2a00:14b0:4200:3500::130:1
|
||||||
|
|
|
@ -0,0 +1,23 @@
|
||||||
|
[Match]
|
||||||
|
Name=net0.2
|
||||||
|
Type=vlan
|
||||||
|
|
||||||
|
[Link]
|
||||||
|
RequiredForOnline=no
|
||||||
|
|
||||||
|
[Network]
|
||||||
|
Description=v4-NAT
|
||||||
|
|
||||||
|
# Masquerading done in nftables (nftables.conf).
|
||||||
|
IPv6SendRA=yes
|
||||||
|
|
||||||
|
[Address]
|
||||||
|
Address=10.32.2.1/24
|
||||||
|
|
||||||
|
[IPv6SendRA]
|
||||||
|
UplinkInterface=net2
|
||||||
|
|
||||||
|
[IPv6Prefix]
|
||||||
|
Prefix=2a00:14b0:42:102::/64
|
||||||
|
Assign=true
|
||||||
|
Token=static:::1
|
|
@ -0,0 +1,29 @@
|
||||||
|
[Match]
|
||||||
|
Name=net0.3
|
||||||
|
Type=vlan
|
||||||
|
|
||||||
|
[Link]
|
||||||
|
RequiredForOnline=no
|
||||||
|
|
||||||
|
[Network]
|
||||||
|
Description=ci-runners
|
||||||
|
|
||||||
|
# Masquerading done in nftables (nftables.conf).
|
||||||
|
IPv6SendRA=yes
|
||||||
|
|
||||||
|
DHCPServer=true
|
||||||
|
|
||||||
|
[DHCPServer]
|
||||||
|
PoolOffset=100
|
||||||
|
PoolSize=150
|
||||||
|
|
||||||
|
[Address]
|
||||||
|
Address=10.32.3.1/24
|
||||||
|
|
||||||
|
[IPv6SendRA]
|
||||||
|
UplinkInterface=net2
|
||||||
|
|
||||||
|
[IPv6Prefix]
|
||||||
|
Prefix=2a00:14b0:42:103::/64
|
||||||
|
Assign=true
|
||||||
|
Token=static:::1
|
|
@ -0,0 +1,23 @@
|
||||||
|
[Match]
|
||||||
|
Name=net0.4
|
||||||
|
Type=vlan
|
||||||
|
|
||||||
|
[Link]
|
||||||
|
RequiredForOnline=no
|
||||||
|
|
||||||
|
[Network]
|
||||||
|
Description=v4-NAT-legacy
|
||||||
|
|
||||||
|
# Masquerading done in nftables (nftables.conf).
|
||||||
|
IPv6SendRA=yes
|
||||||
|
|
||||||
|
[Address]
|
||||||
|
Address=172.31.17.129/25
|
||||||
|
|
||||||
|
[IPv6SendRA]
|
||||||
|
UplinkInterface=net1
|
||||||
|
|
||||||
|
[IPv6Prefix]
|
||||||
|
Prefix=2a00:14b0:f000:23::/64
|
||||||
|
Assign=true
|
||||||
|
Token=static:::1
|
|
@ -0,0 +1,22 @@
|
||||||
|
[Match]
|
||||||
|
Name=net0.5
|
||||||
|
Type=vlan
|
||||||
|
|
||||||
|
[Link]
|
||||||
|
RequiredForOnline=no
|
||||||
|
|
||||||
|
[Network]
|
||||||
|
Description=public
|
||||||
|
|
||||||
|
IPv6SendRA=yes
|
||||||
|
|
||||||
|
[Address]
|
||||||
|
Address=212.12.50.209/29
|
||||||
|
|
||||||
|
[IPv6SendRA]
|
||||||
|
UplinkInterface=net2
|
||||||
|
|
||||||
|
[IPv6Prefix]
|
||||||
|
Prefix=2a00:14b0:42:105::/64
|
||||||
|
Assign=true
|
||||||
|
Token=static:::1
|
11
roles/nftables/README.md
Normal file
11
roles/nftables/README.md
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
# Role `nftables`
|
||||||
|
|
||||||
|
Deploys nftables.
|
||||||
|
|
||||||
|
## Support Distributions
|
||||||
|
|
||||||
|
Should work on Debian-based distributions.
|
||||||
|
|
||||||
|
## Required Arguments
|
||||||
|
|
||||||
|
- `nftables__config`: nftables configuration to deploy.
|
5
roles/nftables/handlers/main.yaml
Normal file
5
roles/nftables/handlers/main.yaml
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
- name: Restart nftables service
|
||||||
|
ansible.builtin.systemd_service:
|
||||||
|
name: nftables
|
||||||
|
state: restarted
|
||||||
|
become: true
|
6
roles/nftables/meta/argument_specs.yaml
Normal file
6
roles/nftables/meta/argument_specs.yaml
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
argument_specs:
|
||||||
|
main:
|
||||||
|
options:
|
||||||
|
nftables__config:
|
||||||
|
type: str
|
||||||
|
required: true
|
15
roles/nftables/tasks/main.yaml
Normal file
15
roles/nftables/tasks/main.yaml
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
- name: ensure nftables is installed
|
||||||
|
ansible.builtin.apt:
|
||||||
|
name: nftables
|
||||||
|
state: present
|
||||||
|
become: true
|
||||||
|
|
||||||
|
- name: deploy nftables configuration
|
||||||
|
ansible.builtin.copy:
|
||||||
|
content: "{{ nftables__config }}"
|
||||||
|
dest: "/etc/nftables.conf"
|
||||||
|
mode: "0644"
|
||||||
|
owner: root
|
||||||
|
group: root
|
||||||
|
become: true
|
||||||
|
notify: Restart nftables service
|
11
roles/systemd_networkd/README.md
Normal file
11
roles/systemd_networkd/README.md
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
# Role `systemd_networkd`
|
||||||
|
|
||||||
|
Deploys the given systemd-networkd configuration files.
|
||||||
|
|
||||||
|
## Support Distributions
|
||||||
|
|
||||||
|
Should work on Debian-based distributions.
|
||||||
|
|
||||||
|
## Required Arguments
|
||||||
|
|
||||||
|
- `systemd_networkd__config_dir`: Directory with systemd-networkd configs to deploy.
|
6
roles/systemd_networkd/meta/argument_specs.yaml
Normal file
6
roles/systemd_networkd/meta/argument_specs.yaml
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
argument_specs:
|
||||||
|
main:
|
||||||
|
options:
|
||||||
|
systemd_networkd__config_dir:
|
||||||
|
type: path
|
||||||
|
required: true
|
14
roles/systemd_networkd/tasks/main.yaml
Normal file
14
roles/systemd_networkd/tasks/main.yaml
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
- name: ensure rsync is installed
|
||||||
|
ansible.builtin.apt:
|
||||||
|
name: rsync
|
||||||
|
state: present
|
||||||
|
become: true
|
||||||
|
|
||||||
|
- name: synchronize systemd-networkd configs
|
||||||
|
ansible.posix.synchronize:
|
||||||
|
src: "{{ systemd_networkd__config_dir }}"
|
||||||
|
dest: "/etc/systemd/network"
|
||||||
|
archive: false
|
||||||
|
recursive: true
|
||||||
|
delete: true
|
||||||
|
become: true
|
Loading…
Add table
Add a link
Reference in a new issue