diff options
| author | Robert Günzler <r@gnzler.io> | 2025-09-07 17:32:13 +0200 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2025-09-25 12:56:47 +0200 |
| commit | 0bb17cd2f34918add1ddaedeb0a66531dea561a3 (patch) | |
| tree | f1d3a825273c8a2ab3e804876328bd3f1a939f68 /bundles/go-away/files/config/snippets/networks-private.yml | |
| parent | 332d333fa24c8b1943799aadb017f61e642008e1 (diff) | |
go-away: use config.yml and vendor all configuration files
Signed-off-by: Robert Günzler <r@gnzler.io>
Diffstat (limited to 'bundles/go-away/files/config/snippets/networks-private.yml')
| -rw-r--r-- | bundles/go-away/files/config/snippets/networks-private.yml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/bundles/go-away/files/config/snippets/networks-private.yml b/bundles/go-away/files/config/snippets/networks-private.yml new file mode 100644 index 0000000..4d81b6a --- /dev/null +++ b/bundles/go-away/files/config/snippets/networks-private.yml @@ -0,0 +1,22 @@ +networks: + localhost: + # localhost and loopback addresses + - prefixes: + - "127.0.0.0/8" + - "::1/128" + private: + # Private network CIDR blocks + - prefixes: + # private networks + - "10.0.0.0/8" + - "172.16.0.0/12" + - "192.168.0.0/16" + - "fc00::/7" + # CGNAT + - "100.64.0.0/10" + +conditions: + is-network-localhost: + - &is-network-localhost 'remoteAddress.network("localhost")' + is-network-private: + - &is-network-private 'remoteAddress.network("private")' \ No newline at end of file |