commit 9e5a1d7546fef83ba356bffdc22b90a11aaec2b7 Author: Matthias Hinrichs Date: Tue Jan 13 14:42:19 2026 +0100 starting homelab RKE2 cluster diff --git a/01_unifi_gateway_setup/bgp.conf b/01_unifi_gateway_setup/bgp.conf new file mode 100644 index 0000000..5cbea70 --- /dev/null +++ b/01_unifi_gateway_setup/bgp.conf @@ -0,0 +1,19 @@ +frr version 9.1 +frr defaults traditional +hostname UniFi-Gateway +log syslog informational +service integrated-vtysh-config +! +router bgp 65100 + bgp router-id 192.168.1.1 + no bgp ebgp-requires-policy + neighbor RKE2 peer-group + neighbor RKE2 remote-as 65200 + neighbor 192.168.1.238 peer-group RKE2 + address-family ipv4 unicast + neighbor RKE2 activate + neighbor RKE2 next-hop-self + redistribute connected + exit-address-family +! +end diff --git a/02_rke2_installation/server_installation_instructions.md b/02_rke2_installation/server_installation_instructions.md new file mode 100644 index 0000000..dc0900e --- /dev/null +++ b/02_rke2_installation/server_installation_instructions.md @@ -0,0 +1,22 @@ +direkt auf dem Server ausführen + +# RKE2 installieren +curl -sfL https://get.rke2.io | sudo INSTALL_RKE2_TYPE="server" sh + +# Verzeichnis für die Konfiguration anlegen +sudo mkdir -p /etc/rancher/rke2 + +# Konfigurationsdatei erstellen +cat <