diff options
| author | Ahmed Abdelhalim <[email protected]> | 2026-01-24 23:36:50 +0100 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2026-01-29 18:16:35 +0100 |
| commit | 32c738d4ce0336b16eb870419b4ed02af3d6c227 (patch) | |
| tree | de0e66968766d7694b257a43ca5f3bf15410f98f /roles/gateway/meta | |
| parent | 8cf32ee8b4b8d28ec9ab1b75c476291a4e7c555d (diff) | |
Add ipv6 support to gateway VPN role
After finding issues that vpn ip6 wasn't working reliably (which was
obvious over VPN)
Needed to add the VPN routing table support (similar to ipv4)
This together with disabling ssh (for github and sr.ht) over ipv6 makes
the vpn reliable again
Will test and see, since I saw that the archlinux machine wasn't working
properly over the vpn, but it could be due to the VPN ipv6 wasn't
resolving.
Diffstat (limited to 'roles/gateway/meta')
| -rw-r--r-- | roles/gateway/meta/argument_specs.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/roles/gateway/meta/argument_specs.yml b/roles/gateway/meta/argument_specs.yml index e5d14e35..4ee6ddb6 100644 --- a/roles/gateway/meta/argument_specs.yml +++ b/roles/gateway/meta/argument_specs.yml @@ -13,6 +13,11 @@ argument_specs: description: "Local subnet CIDR for NAT and routing rules (e.g., '192.168.178.0/24')" type: "str" required: true + gateway_local_ipv6_subnet: + description: "Local IPv6 subnet CIDR for NAT and routing rules (e.g., '2a02:3102:4ced:ec00::/64')" + type: "str" + required: false + default: "" gateway_router_interface: description: "Default route interface for direct routing mode" type: "str" |
