server/fickit-frontend.yml

505 lines
17 KiB
YAML
Raw Permalink Normal View History

2018-01-21 16:03:45 +00:00
kernel:
2022-06-01 10:39:40 +00:00
#image: nemunaire/kernel:5.10.62-0b705d955f5e283f62583c4e227d64a7924c138f-amd64
image: linuxkit/kernel:6.6.13
2018-12-10 01:16:07 +00:00
cmdline: "console=ttyS0 console=tty0"
2018-01-21 16:03:45 +00:00
init:
2024-03-24 10:42:11 +00:00
- linuxkit/init:v1.0.0
2024-03-18 17:58:57 +00:00
- linuxkit/runc:6062483d748609d505f2bcde4e52ee64a3329f5f
2024-03-24 10:42:11 +00:00
- linuxkit/containerd:v1.0.0
- linuxkit/ca-certificates:v1.0.0
- linuxkit/getty:v1.0.0
2024-03-22 17:46:43 +00:00
- nemunaire/mdadm:04814350d71ba9417e1f861be1685de26adf7a67
2023-04-03 09:42:00 +00:00
- nemunaire/kexec:839b4eedfce02a56c581dec2383dc6faff120855
2023-07-22 09:39:04 +00:00
- nemunaire/fic-frontend-ui:latest
2018-01-21 16:03:45 +00:00
onboot:
2022-06-02 09:40:43 +00:00
- name: mod
2024-03-24 10:42:11 +00:00
image: linuxkit/modprobe:v1.0.0
2022-06-02 09:40:43 +00:00
command: ["/bin/sh", "-c", "modprobe xhci_pci ahci intel_lpss_pci i2c_i801 megaraid_sas tg3 bnxt_en"]
2018-12-10 01:16:07 +00:00
2019-01-17 08:11:13 +00:00
- name: sysctl
2024-03-24 10:42:11 +00:00
image: linuxkit/sysctl:v1.0.0
2018-01-21 16:03:45 +00:00
2023-07-24 14:14:52 +00:00
# Metadata
- name: metadata
2024-03-24 10:42:11 +00:00
image: linuxkit/metadata:v1.0.0
command: ["/usr/bin/metadata", "-v", "cdrom"]
2023-07-24 14:14:52 +00:00
2018-01-21 16:03:45 +00:00
# Filesystem
- name: swap
2024-03-24 10:42:11 +00:00
image: linuxkit/swap:v1.0.0
command: ["/sbin/swapon", "/dev/sda3"]
2020-01-30 18:03:14 +00:00
- name: dm-crypt
2024-03-18 17:58:57 +00:00
image: linuxkit/dm-crypt:d49723bc9d10c5ada9e03b0670f4e57416d5d084
command: ["/usr/bin/crypto", "-l", "crypt_fic", "/dev/sda4"]
2023-07-24 14:14:52 +00:00
binds:
- /dev:/dev
2023-07-24 14:14:52 +00:00
- /run/config/dm-crypt:/etc/dm-crypt
2018-01-21 16:03:45 +00:00
- name: mount
2024-03-24 10:42:11 +00:00
image: linuxkit/mount:v1.0.0
2020-01-30 18:03:14 +00:00
command: ["/usr/bin/mountie", "-device", "/dev/mapper/crypt_fic", "/var/lib/fic" ]
2018-01-21 16:03:45 +00:00
# Network
# - name: ntp
2024-03-24 10:42:11 +00:00
# image: linuxkit/openntpd:v1.0.0
2018-01-21 16:03:45 +00:00
- name: nginx-ip-setup
2024-03-24 10:42:11 +00:00
image: linuxkit/ip:v1.0.0
2018-01-21 16:03:45 +00:00
command: ["/bin/sh", "-c", "ip a add 172.17.1.2/24 dev vethin-nginx; ip link set vethin-nginx up;" ]
net: new
runtime:
interfaces:
- name: vethin-nginx
add: veth
peer: veth-nginx
bindNS:
net: /run/netns/nginx
2021-09-04 15:09:40 +00:00
- name: frontal-ip-setup # without bonding
2024-03-24 10:42:11 +00:00
image: linuxkit/ip:v1.0.0
2024-03-22 17:56:57 +00:00
command: ["/bin/sh", "-c", "ip link set name bond-frontal eth3; ip link set bond-frontal up; while read IP; do ip a add ${IP} dev bond-frontal; done < /run/config/ip_config/frontend-players; ip r add default via $(cat /run/config/ip_config/frontend-router); ip link add link bond-frontal name internet type vlan id 4; ip a add 10.10.10.2/29 dev internet; ip link set internet up;" ]
2021-09-04 15:09:40 +00:00
net: /run/netns/nginx
2024-03-22 17:56:57 +00:00
binds:
- /run/config/ip_config/:/run/config/ip_config/:ro
2021-09-04 15:09:40 +00:00
runtime:
interfaces:
2022-06-04 16:09:33 +00:00
# - name: eth1
2021-09-04 15:09:40 +00:00
# - name: eth2
2022-06-04 16:09:33 +00:00
- name: eth3
2021-09-04 15:09:40 +00:00
# - name: eth4
# - name: frontal-ip-setup # with bonding
2024-03-24 10:42:11 +00:00
# image: linuxkit/ip:v1.0.0
2024-03-22 17:56:57 +00:00
# command: ["/bin/sh", "-c", "ip link set dev bond-frontal type bond mode balance-alb; ip link set bond-frontal up; ifenslave bond-frontal eth1 eth2 eth3 eth4; while read IP; do ip a add ${IP} dev bond-frontal; done < /run/config/ip_config/frontend-players; ip r add default via $(cat /run/config/ip_config/frontend-router); ip link add link bond-frontal name internet type vlan id 4; ip link set internet up; sysctl -w net.ipv4.ip_forward=1;" ]
2018-12-10 01:16:07 +00:00
# net: /run/netns/nginx
2024-03-22 17:56:57 +00:00
# binds:
# - /run/config/ip_config/:/run/config/ip_config/:ro
2018-12-10 01:16:07 +00:00
# runtime:
# interfaces:
# - name: eth1
# - name: eth2
# - name: eth3
2019-12-16 13:46:25 +00:00
# - name: eth4
2021-09-04 15:09:40 +00:00
# - name: bond-frontal
# add: bond
2023-07-09 18:40:53 +00:00
- name: receiver-ip-setup
2024-03-24 10:42:11 +00:00
image: linuxkit/ip:v1.0.0
2023-07-09 18:40:53 +00:00
command: ["/bin/sh", "-c", "ip a add 172.17.1.3/24 dev vethin-receiver; ip link set vethin-receiver up;" ]
2018-01-21 16:03:45 +00:00
net: new
runtime:
interfaces:
2023-07-09 18:40:53 +00:00
- name: vethin-receiver
2018-01-21 16:03:45 +00:00
add: veth
2023-07-09 18:40:53 +00:00
peer: veth-receiver
2018-01-21 16:03:45 +00:00
bindNS:
2023-07-09 18:40:53 +00:00
net: /run/netns/fic-receiver
2018-01-21 16:03:45 +00:00
- name: sshd-ip-setup
2024-03-24 10:42:11 +00:00
image: linuxkit/ip:v1.0.0
2022-06-04 16:09:33 +00:00
command: ["/bin/sh", "-c", "ip a add 10.10.10.2/29 dev eth2; ip link set eth2 up;" ]
2018-01-21 16:03:45 +00:00
net: new
runtime:
interfaces:
2022-06-04 16:09:33 +00:00
- name: eth2
2018-01-21 16:03:45 +00:00
bindNS:
net: /run/netns/sshd
2021-09-05 10:39:36 +00:00
- name: auth-ip-setup
2024-03-24 10:42:11 +00:00
image: linuxkit/ip:v1.0.0
2021-09-05 10:39:36 +00:00
command: ["/bin/sh", "-c", "ip a add 172.17.1.4/24 dev vethin-auth; ip link set vethin-auth up;" ]
net: new
runtime:
interfaces:
- name: vethin-auth
add: veth
peer: veth-auth
bindNS:
net: /run/netns/auth
2018-01-21 16:03:45 +00:00
- name: bridge-setup
2024-03-24 10:42:11 +00:00
image: linuxkit/ip:v1.0.0
2023-07-09 18:40:53 +00:00
command: ["/bin/sh", "-c", "ip a add 172.17.1.1/24 dev br0; ip link set veth-nginx master br0; ip link set veth-receiver master br0; ip link set veth-auth master br0; ip link set br0 up; ip link set veth-nginx up; ip link set veth-receiver up; ip link set veth-auth up;" ]
2018-01-21 16:03:45 +00:00
runtime:
interfaces:
- name: br0
add: bridge
- name: firewall-frontal
2024-03-24 10:42:11 +00:00
image: linuxkit/ip:v1.0.0
command: ["/bin/bash", "-c", "/sbin/iptables-restore < /etc/iptables/rules-frontal.v4; /sbin/ip6tables-restore < /etc/iptables/rules.v6; [ -f /run/config/remote_sync/destination ] && /sbin/iptables -I OUTPUT 7 -o bond-frontal -d $(cat /run/config/remote_sync/destination | tr -d '\n') -p tcp -m tcp --dport https -j ACCEPT;" ]
2018-01-21 16:03:45 +00:00
binds:
- /etc/iptables/rules-frontal.v4:/etc/iptables/rules-frontal.v4:ro
- /etc/iptables/rules.v6:/etc/iptables/rules.v6:ro
- /etc/resolv.conf:/etc/resolv.conf:ro
- /run/config/remote_sync/:/run/config/remote_sync/:ro
2018-01-21 16:03:45 +00:00
net: /run/netns/nginx
- name: firewall-sshd
2024-03-24 10:42:11 +00:00
image: linuxkit/ip:v1.0.0
2018-01-21 16:03:45 +00:00
command: ["/bin/bash", "-c", "/sbin/iptables-restore < /etc/iptables/rules-sshd.v4; /sbin/ip6tables-restore < /etc/iptables/rules.v6" ]
binds:
- /etc/iptables/rules-sshd.v4:/etc/iptables/rules-sshd.v4:ro
- /etc/iptables/rules.v6:/etc/iptables/rules.v6:ro
net: /run/netns/sshd
services:
2018-12-10 01:16:07 +00:00
# - name: getty
2024-03-24 10:42:11 +00:00
# image: linuxkit/getty:v1.0.0
2018-12-10 01:16:07 +00:00
# env:
# - INSECURE=true
# Enable acpi to shutdown on power events
- name: acpid
2024-03-24 10:42:11 +00:00
image: linuxkit/acpid:v1.0.0
2018-01-21 16:03:45 +00:00
- name: rngd
2024-03-24 10:42:11 +00:00
image: linuxkit/rngd:v1.0.0
2019-01-17 06:55:05 +00:00
- name: dhcpcd
2024-03-24 10:42:11 +00:00
image: linuxkit/dhcpcd:v1.0.0
2019-01-17 06:55:05 +00:00
net: /run/netns/nginx
binds:
- /etc/dhcpcd.conf:/dhcpcd.conf:ro
2018-01-21 16:03:45 +00:00
- name: nginx
image: nginx:1-alpine
2018-01-21 16:03:45 +00:00
capabilities:
- CAP_NET_BIND_SERVICE
- CAP_CHOWN
- CAP_SETUID
- CAP_SETGID
- CAP_DAC_OVERRIDE
tmpfs:
- /var/cache
2018-01-21 16:03:45 +00:00
binds:
- /etc/hosts:/etc/hosts:ro
- /etc/resolv.conf:/etc/resolv.conf:ro
- /etc/nginx/conf.d/default.conf:/etc/nginx/conf.d/default.conf:ro
2023-07-24 14:14:52 +00:00
- /run/config/tls_config/:/etc/nginx/ssl/:ro
2018-01-21 16:03:45 +00:00
- /etc/nginx/fic-auth.conf:/etc/nginx/fic-auth.conf:ro
2021-09-05 03:23:55 +00:00
- /etc/nginx/fic-get-team.conf:/etc/nginx/fic-get-team.conf:ro
2018-01-21 16:03:45 +00:00
- /www/htdocs-frontend:/srv/htdocs-frontend:ro
- /var/lib/fic/files:/srv/FILES:ro
- /var/lib/fic/pki:/srv/PKI:ro
- /var/lib/fic/settingsdist:/srv/SETTINGSDIST:ro
2018-01-21 16:03:45 +00:00
- /var/lib/fic/startingblock:/srv/startingblock:ro
- /var/lib/fic/teams:/srv/TEAMS:ro
net: /run/netns/nginx
pid: new
ipc: new
uts: new
runtime:
mkdir:
- /var/lib/fic/files
- /var/lib/fic/pki
- /var/lib/fic/startingblock
- /var/lib/fic/settingsdist
2018-01-21 16:03:45 +00:00
- /var/lib/fic/teams
2023-07-09 18:40:53 +00:00
- name: fic-receiver
2023-07-22 09:39:04 +00:00
image: nemunaire/fic-receiver:latest
2023-07-09 18:40:53 +00:00
command: ["/srv/receiver", "-bind=:8080", "-startedFile=/srv/startingblock/started"]
2018-01-21 16:03:45 +00:00
binds:
- /etc/hosts:/etc/hosts:ro
- /var/lib/fic/files:/srv/FILES:ro
- /var/lib/fic/settingsdist:/srv/SETTINGSDIST:ro
2018-01-21 16:03:45 +00:00
- /var/lib/fic/startingblock:/srv/startingblock
- /var/lib/fic/submissions:/srv/submissions
- /var/lib/fic/teams:/srv/TEAMS:ro
2023-07-09 18:40:53 +00:00
net: /run/netns/fic-receiver
2018-01-21 16:03:45 +00:00
runtime:
mkdir:
- /var/lib/fic/files
- /var/lib/fic/settingsdist
2018-01-21 16:03:45 +00:00
- /var/lib/fic/startingblock
- /var/lib/fic/submissions
- /var/lib/fic/teams
2022-06-06 10:55:39 +00:00
- name: fic-remote-challenge-sync-airbus
image: nemunaire/fic-remote-challenge-sync-airbus:latest
command: ["/srv/challenge-sync-airbus", "--no-validate-challenge", "--watch"]
env:
- AIRBUS_BASEURL_FILE=/run/config/remote_sync/baseurl
- AIRBUS_TOKEN_FILE=/run/config/remote_sync/token
- AIRBUS_SESSION_NAME_FILE=/run/config/remote_sync/session_name
- AIRBUS_SKIP_TLS_VERIFY=true
binds:
- /etc/hosts:/etc/hosts:ro
- /etc/resolv.conf:/etc/resolv.conf:ro
2024-03-24 10:42:41 +00:00
- /run/config/remote_sync/:/run/config/remote_sync/:ro
- /var/lib/fic/teams:/srv/TEAMS:ro
2022-11-07 15:31:19 +00:00
- /var/lib/fic/remote:/srv/REMOTE
runtime:
mkdir:
- /var/lib/fic/remote
net: /run/netns/nginx
- name: fic-remote-challenge-sync
image: alpine:3
command: ["/bin/sh", "-c", "while true; do sleep 300; done;"]
env:
- AIRBUS_BASEURL_FILE=/run/config/remote_sync/baseurl
- AIRBUS_TOKEN_FILE=/run/config/remote_sync/token
- AIRBUS_SESSION_NAME_FILE=/run/config/remote_sync/session_name
- AIRBUS_SKIP_TLS_VERIFY=true
binds:
- /etc/hosts:/etc/hosts:ro
- /etc/resolv.conf:/etc/resolv.conf:ro
- /run/config/remote_sync/:/run/config/remote_sync/:ro
- /var/lib/fic/teams:/srv/TEAMS:ro
- /var/lib/fic/remote:/srv/REMOTE
net: /run/netns/nginx
2018-01-21 16:03:45 +00:00
- name: sshd
2023-07-22 09:39:04 +00:00
image: nemunaire/rsync:a3d76b2dd0a9ad73be44dc77ad765b20d96a3285
capabilities:
- all
2018-01-21 16:03:45 +00:00
binds:
- /etc/hosts:/etc/hosts:ro
2019-12-16 13:47:00 +00:00
- /var/lib/fic/ssh:/etc/ssh:ro
- /run/config/synchro/id_ed25519.pub:/root/.ssh/authorized_keys:ro
2018-01-21 16:03:45 +00:00
- /var/lib/fic/files:/srv/FILES
- /var/lib/fic/pki:/srv/PKI
- /var/lib/fic/settingsdist:/srv/SETTINGSDIST
2018-01-21 16:03:45 +00:00
- /var/lib/fic/submissions:/srv/submissions
- /var/lib/fic/teams:/srv/TEAMS
- /var/log:/var/log:ro
2018-01-21 16:03:45 +00:00
net: /run/netns/sshd
runtime:
mkdir:
- /var/lib/fic/files
- /var/lib/fic/pki
- /var/lib/fic/settingsdist
2019-12-16 13:47:00 +00:00
- /var/lib/fic/ssh
2018-01-21 16:03:45 +00:00
- /var/lib/fic/submissions
- /var/lib/fic/teams
2021-09-05 10:40:09 +00:00
# - name: dhcp-server
# image: joebiellik/dhcpd
# binds:
# - /etc/dhcp/dhcpd.conf:/etc/dhcp/dhcpd.conf:ro
# capabilities:
# - CAP_NET_BIND_SERVICE
# - CAP_NET_RAW
# - CAP_DAC_OVERRIDE
# net: /run/netns/nginx
# pid: new
# ipc: new
# uts: new
# - name: dns-server
2023-04-03 09:42:00 +00:00
# image: nemunaire/unbound:8a5c8b7be1392fea9300bc884926141cb6db6792
2021-09-05 10:40:09 +00:00
# binds:
# - /etc/unbound/unbound.d:/etc/unbound/unbound.d:ro
# net: /run/netns/nginx
2018-01-21 16:03:45 +00:00
2021-09-05 10:39:36 +00:00
- name: dexidp
2024-03-23 12:55:21 +00:00
image: ghcr.io/dexidp/dex:v2.39.0
2021-09-05 10:39:36 +00:00
net: /run/netns/auth
binds:
- /etc/hosts:/etc/hosts:ro
- /var/lib/fic/pki/shared/dex-config.yaml:/etc/dex/config.docker.yaml:ro
- /var/lib/fic/dex:/var/dex
- /www/dex-templates/theme/styles.css:/srv/dex/web/themes/light/styles.css
- /www/dex-templates/templates/header.html:/srv/dex/web/templates/header.html
- /var/lib/fic/pki/shared/dex-password.tpl:/srv/dex/web/templates/password.html
2024-03-23 16:34:26 +00:00
- /var/lib/fic/files/logo/ec2.png:/srv/dex/web/themes/light/favicon.png
2021-09-05 10:39:36 +00:00
runtime:
mkdir:
- /var/lib/fic/dex
- name: vouch-proxy
2023-04-03 09:00:23 +00:00
image: quay.io/vouch/vouch-proxy:alpine-0.39
2021-09-05 10:39:36 +00:00
env:
2024-03-23 17:51:53 +00:00
- VOUCH_CONFIG=/etc/vouch/config.yml
2021-09-05 10:39:36 +00:00
net: /run/netns/auth
2024-03-23 17:51:53 +00:00
binds:
- /var/lib/fic/pki/shared/vouch-config.yaml:/etc/vouch/config.yml:ro
2021-09-05 10:39:36 +00:00
2018-01-21 16:03:45 +00:00
files:
2022-06-02 09:41:12 +00:00
- path: etc/init.d/001-hostname
contents: |
#!/bin/sh
/bin/hostname phobos
mode: "0555"
2022-06-02 18:11:35 +00:00
- path: etc/profile.d/color_prompt.sh
contents: |
PS1='\[\e[1;35m\]'$PS1'\[\e[0m\]'
mode: "0444"
2020-01-30 18:02:19 +00:00
- path: etc/init.d/015-setup-sshd
source: configs/sshd-setup.sh
mode: "0555"
2021-09-05 10:40:09 +00:00
- path: etc/init.d/016-copy-dex-config
contents: |
#!/bin/sh
2021-09-05 10:39:36 +00:00
[ -f /var/lib/fic/pki/shared/dex-config.yaml ] || {
cp /etc/dex/config.auth.yaml /var/lib/fic/pki/shared/dex-config.yaml
}
[ -e /var/lib/fic/pki/shared ] || mkdir -p /var/lib/fic/pki/shared
2021-09-05 10:39:36 +00:00
[ -f /var/lib/fic/pki/shared/dex-password.tpl ] || {
cp /www/dex-templates/templates/password.html /var/lib/fic/pki/shared/dex-password.tpl
2021-09-05 10:40:09 +00:00
}
[ -f /var/lib/fic/pki/shared/vouch-config.yaml ] || {
touch /var/lib/fic/pki/shared/vouch-config.yaml
}
2021-09-05 10:40:09 +00:00
mode: "0555"
2020-01-30 18:02:19 +00:00
2021-09-04 15:09:40 +00:00
- path: /containers/onboot/000-sysctl/rootfs/etc/sysctl.d/01-fic.conf
2019-01-17 08:11:13 +00:00
source: configs/sysctl-frontend.conf
mode: "0444"
2018-01-21 16:03:45 +00:00
- path: etc/hosts
source: configs/hosts
mode: "0644"
- path: etc/dhcp/dhcpd.conf
source: configs/dhcpd.conf
mode: "0400"
- path: etc/nginx/conf.d/default.conf
2021-09-05 03:23:55 +00:00
source: configs/nginx/base/prod.conf
2018-01-21 16:03:45 +00:00
mode: "0400"
- path: etc/nginx/fic-auth.conf
2021-09-05 03:23:55 +00:00
source: configs/nginx/auth/oidc.conf
mode: "0400"
- path: etc/nginx/fic-get-team.conf
source: configs/nginx/get-team/oidc.conf
2018-01-21 16:03:45 +00:00
mode: "0400"
2023-07-25 05:50:48 +00:00
- path: etc/nginx/conf.d/qa.fic-conf
contents: |
location /qa {
include fic-get-team.conf;
proxy_pass http://deimos:8083;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header X-FIC-Team $team;
proxy_redirect off;
}
mode: "0400"
2018-01-21 16:03:45 +00:00
2021-09-05 10:39:36 +00:00
- path: etc/dex/config.auth.yaml
source: configs/dex.yaml
mode: "0400"
- path: www/dex-templates/theme/styles.css
source: configs/dex-templates/theme/styles.css
mode: "0444"
- path: www/dex-templates/templates/header.html
source: configs/dex-templates/templates/header.html
mode: "0444"
- path: www/dex-templates/templates/password.html
source: configs/dex-templates/templates/password.html
mode: "0444"
2018-01-21 16:03:45 +00:00
- path: usr/bin/status
contents: |
#!/bin/sh
ctr -n services.linuxkit t ls
mode: "0755"
- path: usr/bin/iptables
source: configs/nsenter_iptables.sh
mode: "0755"
- path: usr/bin/pnsenter
source: configs/nsenter_process.sh
mode: "0755"
- path: etc/resolv.conf
contents: |
nameserver 9.9.9.9
mode: "0444"
2019-01-17 06:55:05 +00:00
- path: etc/dhcpcd.conf
contents: |
allowinterfaces internet
hostname
clientid
persistent
option rapid_commit
option domain_name_servers, domain_name, domain_search, host_name
option classless_static_routes
option interface_mtu
require dhcp_server_identifier
slaac private
nodelay
noarp
waitip 4
mode: "0440"
- path: etc/unbound/unbound.d/tmp-user.conf
contents: |
username: ""
mode: "0440"
# - path: etc/unbound/unbound.d/forwarder.conf
# contents: |
# forward-zone:
# name: "."
# forward-addr: 9.9.9.9
# forward-addr: 1.1.1.1
# mode: "0440"
2019-01-17 07:10:47 +00:00
- path: etc/unbound/unbound.d/access-control.conf
contents: |
access-control: 172.23.0.0/16 allow
mode: "0440"
- path: etc/unbound/unbound.d/local-zone.conf
contents: |
local-zone: "fic.srs.epita.fr" typetransparent
local-data: "live.fic.srs.epita.fr A 172.23.42.1"
local-data-ptr: "172.23.42.1 live.fic.srs.epita.fr"
2019-01-17 07:10:47 +00:00
mode: "0440"
2018-01-21 16:03:45 +00:00
- path: etc/iptables/rules.v6
contents: |
*filter
:INPUT DROP [0:0]
:FORWARD DROP [0:0]
:OUTPUT DROP [0:0]
COMMIT
mode: "0440"
- path: etc/iptables/rules-sshd.v4
contents: |
*filter
:INPUT DROP [0:0]
:FORWARD DROP [0:0]
:OUTPUT DROP [0:0]
[0:0] -A INPUT -i lo -j ACCEPT
[0:0] -A INPUT -m conntrack --ctstate INVALID -j DROP
[0:0] -A INPUT -p icmp -j ACCEPT
[0:0] -A INPUT -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
2022-06-04 16:09:33 +00:00
[0:0] -A INPUT -i eth2 -s 10.10.10.0/29 -p tcp -m conntrack --ctstate NEW -m tcp --dport ssh -j ACCEPT
2018-01-21 16:03:45 +00:00
[0:0] -A INPUT -j LOG
[0:0] -A FORWARD -j LOG
[0:0] -A OUTPUT -o lo -j ACCEPT
[0:0] -A OUTPUT -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
[0:0] -A OUTPUT -j LOG
[0:0] -A OUTPUT -j REJECT
COMMIT
mode: "0440"
- path: etc/iptables/rules-frontal.v4
contents: |
*nat
:PREROUTING ACCEPT [0:0]
:INPUT ACCEPT [0:0]
:OUTPUT ACCEPT [0:0]
:POSTROUTING ACCEPT [0:0]
[0:0] -A POSTROUTING -o internet -j MASQUERADE
COMMIT
2018-01-21 16:03:45 +00:00
*filter
:INPUT DROP [0:0]
2019-01-17 06:55:05 +00:00
:FORWARD ACCEPT [0:0]
2018-01-21 16:03:45 +00:00
:OUTPUT DROP [0:0]
[0:0] -A INPUT -i lo -j ACCEPT
[0:0] -A INPUT -m conntrack --ctstate INVALID -j DROP
[0:0] -A INPUT -p icmp --icmp-type 8 -j ACCEPT
[0:0] -A INPUT -p icmp --icmp-type 0 -j ACCEPT
2019-01-17 07:10:47 +00:00
[0:0] -A INPUT -i bond-frontal -p udp -m udp --dport domain -j ACCEPT
2018-01-21 16:03:45 +00:00
[0:0] -A INPUT -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
2019-01-17 07:10:47 +00:00
[0:0] -A INPUT -i bond-frontal -p tcp -m conntrack --ctstate NEW -m tcp --dport domain -j ACCEPT
2018-01-21 16:03:45 +00:00
[0:0] -A INPUT -i bond-frontal -p tcp -m conntrack --ctstate NEW -m tcp --dport http -j ACCEPT
[0:0] -A INPUT -i bond-frontal -p tcp -m conntrack --ctstate NEW -m tcp --dport https -j ACCEPT
[0:0] -A INPUT -j LOG
[0:0] -A FORWARD -j LOG
[0:0] -A OUTPUT -o lo -j ACCEPT
[0:0] -A OUTPUT -p icmp --icmp-type 0 -j ACCEPT
[0:0] -A OUTPUT -p icmp --icmp-type 8 -j ACCEPT
2019-01-17 07:10:47 +00:00
[0:0] -A OUTPUT -o bond-frontal -p udp -m udp --sport domain -j ACCEPT
[0:0] -A OUTPUT -o bond-frontal -d 9.9.9.9 -p udp -m udp --dport domain -j ACCEPT
[0:0] -A OUTPUT -o bond-frontal -d 9.9.9.9 -p tcp -m tcp --dport domain -j ACCEPT
2018-01-21 16:03:45 +00:00
[0:0] -A OUTPUT -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
2019-01-17 06:55:05 +00:00
[0:0] -A OUTPUT -o vethin-nginx -d 172.17.1.3 -p tcp -m conntrack --ctstate NEW -m tcp --dport 8080 -j ACCEPT
2021-09-05 10:39:36 +00:00
[0:0] -A OUTPUT -o vethin-nginx -d 172.17.1.4 -p tcp -m conntrack --ctstate NEW -m tcp --dport 5556 -j ACCEPT
[0:0] -A OUTPUT -o vethin-nginx -d 172.17.1.4 -p tcp -m conntrack --ctstate NEW -m tcp --dport 9090 -j ACCEPT
2019-01-17 06:55:05 +00:00
[0:0] -A OUTPUT -o internet -j ACCEPT
2018-01-21 16:03:45 +00:00
[0:0] -A OUTPUT -j LOG
[0:0] -A OUTPUT -j REJECT
COMMIT
mode: "0440"
trust:
org:
- linuxkit
- library