summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
12 daysUpdate desktop monitor placementAhmed AbdelHalim1-0/+0
12 daysPrefer ipv4 for ansible ssh connectionsAhmed AbdelHalim1-0/+1
12 daysConfigure preference of ip family (ipv4 > ipv6)Ahmed AbdelHalim13-0/+25
12 daysFix ansible-distro-installAhmed AbdelHalim3-1/+4
The ansible-distro-install depends on using chroot as the connection `Failed to connect to the host via ssh: ssh: Could not resolve hostname /mnt: Name or service not known` moving the ansible_connection variable into the all group, overrides the connection automatically created for the inventory in the ansible-distro-install repo, causing the configure playbook to fail This reverts this change and define the connection on the inventory level
13 daysFix nvidia driver on desktopAhmed AbdelHalim1-0/+12
The nvidia_gtx1060 role rebuilds the initramfs via mkinitcpio but never synced the result to the ESP that rEFInd actually boots from. The sync only happens automatically via a pacman hook on `linux` package upgrades, so a manual mkinitcpio rebuild (e.g. after changing this role's modprobe.d config) left rEFInd booting a stale initramfs - nouveau kept winning the race for the GPU until the next kernel upgrade happened to trigger the hook. Co-Authored-By: Claude.ai
2026-07-10Fix nvidia driver on macAhmed AbdelHalim4-4/+12
Co-authored-By: Claude.ai
2026-07-10Replace hyprland monitors with kanshi profilesAhmed AbdelHalim13-21/+63
2026-07-10Fix linting and testing gateway with dummy interfaceAhmed AbdelHalim5-5/+4
2026-07-10Extract logind lid configuration into it's own roleAhmed AbdelHalim24-36/+109
2026-07-09Fix IPv6 first-request failure caused by ICMPv6 RedirectsAhmed AbdelHalim3-12/+53
Root cause: Pi, the ISP router (FritzBox), and LAN clients share the same L2 segment. When Pi forwards a client's IPv6 packet to an external GUA destination, the Linux kernel detects that the ISP router is a "better" next-hop on the same link and sends an ICMPv6 Redirect (type 137) to the client. The client obeys the redirect and sends its first SYN to the ISP router directly — Pi never forwards the original packet. The ISP router applies per-device content filtering to the unmasqueraded client GUA and issues a RST. This produced the symptom of the first IPv6 request failing with "Connection reset by peer" every ~30-60 seconds (matching the FritzBox RA interval, after which clients re-resolve their default gateway). Diagnosis method: tcpdump with MAC addresses (-e flag) on Pi's end0 caught the ICMPv6 Redirect being sent immediately after the first SYN arrived. Inserting a DROP rule for icmpv6-type redirect at position 1 in ip6tables OUTPUT confirmed the fix — 0 failures across extended testing. Fix: - Drop ICMPv6 Redirect (type 137) in ip6tables OUTPUT as the first rule, before the ACCEPT rule, in both direct and VPN modes - Flush ip6tables OUTPUT chain on clear_rules() instead of per-rule -D deletion, which was fragile and left stale rules accumulating across mode switches (previously caused duplicate/conflicting OUTPUT rules) - Flush ip6tables nat POSTROUTING table instead of per-rule -D deletion for the same reason Also documents the ICMPv6 Redirect issue and IPv6 masquerade rationale in roles/gateway/README.md for future reference. Co-Authored-By: Claude Sonnet 4.6 <[email protected]>
2026-07-09Fix IPv6 direct mode routing for LAN clientsAhmed AbdelHalim5-2/+2
- Remove static network_ipv6_gateway from LAN hosts so they pick up Pi's radvd RA (pref high) instead of FritzBox (pref low) - Add missing ip6tables FORWARD ACCEPT rule for new connections in direct mode (only ESTABLISHED was present, blocking new flows) - Flush ip6tables nat POSTROUTING table on clear instead of fragile per-rule -D deletion to prevent stale rule accumulation
2026-07-08Route IPv6 through WireGuard VPN via radvd and static gatewayAhmed AbdelHalim17-24/+68
Add radvd to gateway role to advertise Pi as high-preference IPv6 default router using the stable ULA prefix (fd1e:.../64). With FritzBox also sending RAs, devices end up with ECMP between Pi and FritzBox. To solve this, add network_ipv6_gateway (Pi's link-local) as a static route with metric 100 to all managed hosts — beats RA metric 425, ensuring all IPv6 default traffic goes through Pi. Fix IPv6 MASQUERADE in gateway-apply-rules: - Direct mode: add MASQUERADE on end0 (LAN devices use ULA source addresses not known to FritzBox, so Pi must NAT them) - FORWARD rules: restrict to RELATED,ESTABLISHED only — previously the broad ACCEPT rule passed un-NAT'd packets alongside masqueraded copies, causing duplicate SYNs, conntrack corruption, and RSTs - MASQUERADE/clear rules: match by interface not by source subnet (devices may use any source address, not just the ULA prefix) - VPN mode return traffic: explicitly restrict to wg+→end0 direction Add network_ipv6_gateway var (optional) to network role NM templates (ethernet, wifi, bridge) — injects a static IPv6 default route at metric 100 when set. Add rpi5 static route to FritzBox link-local so Pi keeps IPv6 after FritzBox RA is disabled. Force SSH to IPv4 for *.local hosts (AddressFamily inet) — prevents Ansible from hanging on mDNS returning multiple IPv6 addresses. Update gateway and pihole READMEs with two-step IPv6 setup process. Co-Authored-By: Claude.ai
2026-07-08Update gateway/ip configurations for the piAhmed AbdelHalim1-0/+0
2026-07-08Fix bridge network treated as new deviceAhmed AbdelHalim1-1/+1
2026-07-08Refactor network roleAhmed AbdelHalim9-56/+8
Remove static IPv6 support from network role — all hosts use SLAAC (method=auto). Simplifies NM templates, argument_specs, and resolved.conf. gateway sysctl accept_ra=2 is now unconditional when gateway_enabled. Co-authored-by: Claude.ai
2026-07-08Implement a working ipv6 on gatewayAhmed AbdelHalim4-3/+58
2026-07-08Fix install proxmoxer using pipAhmed AbdelHalim3-7/+13
Using mise or python role broke on other machines so went with the simplest solution for now, it's safe to break the system packages for python as this is not used internally in other ways Also proxmoxer 2+ is needed to work with the proxmox module
2026-07-08Update pihole docsAhmed AbdelHalim1-7/+15
2026-07-08Revert 70d45f2 commit change on ipv6Ahmed AbdelHalim2-2/+2
2026-07-08Revert d3431c8 changes on gateway roleAhmed AbdelHalim4-73/+5
2026-07-07Add cgit role with testing of molecule serviceAhmed AbdelHalim11-0/+220
2026-07-07Add pve-lxc service provisioning using service.yml and containers groupAhmed AbdelHalim10-4/+41
2026-07-07Fix the proxmox_template linting issueAhmed AbdelHalim3-6/+9
2026-07-07Remove unneeded GSSAPIAuthenticationAhmed AbdelHalim1-1/+0
2026-07-07Add missing dependencies for the lintingAhmed AbdelHalim1-1/+3
2026-07-07Refactor mise not to use package managerAhmed AbdelHalim4-34/+22
2026-07-07Enable ipv6 on the rpiAhmed AbdelHalim4-12/+14
2026-07-06Fix starting the created containerAhmed AbdelHalim1-0/+1
2026-07-06Fix network setup on pveAhmed AbdelHalim9-16/+15
2026-07-06Fix pve network setupAhmed AbdelHalim16-125/+44
2026-07-06Use conventional storage nameAhmed AbdelHalim4-3/+3
2026-07-04Add pve-storage and pve-lxc to run containers on pveAhmed AbdelHalim1-0/+20
2026-07-04Add pve-lxc role to create containersAhmed AbdelHalim4-0/+111
2026-07-04Add notes about notest tagsAhmed AbdelHalim3-2/+10
2026-07-04Ignore failing tests in containersAhmed AbdelHalim1-0/+3
2026-07-03Add missing testing vars and rolesAhmed AbdelHalim1-0/+4
2026-07-03Refactor pve roles to create storage separatelyAhmed AbdelHalim10-27/+66
2026-07-03Refactor pve and add pve-network role to configure the pve networkAhmed AbdelHalim14-14/+170
2026-07-03Disable unstable ipv6 setup for nowAhmed AbdelHalim11-16/+5
2026-07-03Attempt to enable ipv6 on the network but doesn't work stable enoughAhmed AbdelHalim5-12/+76
2026-07-03Update ethtool to handle laptop lid suspend issuesAhmed AbdelHalim8-2/+46
When using WoL with laptops (ex Lenovo) closing the lid suspends the laptop and breaks WoL, this is to allow configuring the lid behavior
2026-07-03Add ethtool and configure interface for pveAhmed AbdelHalim3-0/+60
2026-07-03Use permanent MAC addresses for ehternet/LAN connectionsAhmed AbdelHalim1-0/+1
This prevents FRITZ!Box from messing up the setup when seeing a new mac address on the LAN connections (causing it to block the pi or not able to wake the pve)
2026-07-02Add ethtool testingAhmed AbdelHalim6-0/+6
2026-07-02Add role to install ethtool (Wake-on-LAN)Ahmed AbdelHalim6-0/+67
2026-07-01Add prometheus node exporter to pveAhmed AbdelHalim2-0/+1
2026-07-01Update the README for gateway and pihole setup with details about ipv6Ahmed AbdelHalim2-17/+67
2026-07-01Add proxmoxer dependency roleAhmed AbdelHalim4-0/+24
2026-07-01Allow router advertisement on gateway interfacesAhmed AbdelHalim1-0/+3
2026-06-30Fix ipv6 with examplesAhmed AbdelHalim10-0/+15