feat(nat): enabling for dgnum members for tests
Some checks failed
Check meta / check_meta (pull_request) Successful in 20s
Check meta / check_dns (pull_request) Successful in 20s
lint / check (pull_request) Successful in 24s
build configuration / build_storage01 (pull_request) Successful in 1m18s
build configuration / build_web02 (pull_request) Successful in 1m16s
build configuration / build_vault01 (pull_request) Successful in 1m18s
build configuration / build_compute01 (pull_request) Successful in 1m21s
build configuration / build_web01 (pull_request) Successful in 1m46s
build configuration / build_bridge01 (pull_request) Successful in 1m13s
build configuration / build_geo02 (pull_request) Successful in 1m14s
build configuration / build_geo01 (pull_request) Successful in 1m19s
build configuration / build_rescue01 (pull_request) Successful in 1m26s
build configuration / push_to_cache_storage01 (pull_request) Failing after 1m10s
build configuration / build_and_cache_krz01 (pull_request) Failing after 2m14s
build configuration / push_to_cache_web02 (pull_request) Failing after 1m11s
build configuration / push_to_cache_vault01 (pull_request) Failing after 1m18s
build configuration / push_to_cache_compute01 (pull_request) Failing after 1m17s
build configuration / push_to_cache_geo02 (pull_request) Failing after 1m2s
build configuration / push_to_cache_web01 (pull_request) Failing after 1m40s
build configuration / push_to_cache_bridge01 (pull_request) Failing after 1m1s
build configuration / push_to_cache_geo01 (pull_request) Failing after 1m5s
build configuration / push_to_cache_rescue01 (pull_request) Failing after 1m9s
build configuration / build_compute01 (push) Successful in 1m15s
build configuration / build_storage01 (push) Successful in 1m16s
build configuration / build_vault01 (push) Successful in 1m11s
build configuration / build_web02 (push) Successful in 1m7s
build configuration / build_web01 (push) Successful in 1m37s
build configuration / build_geo01 (push) Successful in 1m4s
build configuration / build_geo02 (push) Successful in 1m3s
build configuration / build_rescue01 (push) Successful in 1m18s
build configuration / build_bridge01 (push) Successful in 1m4s
lint / check (push) Successful in 25s
build configuration / push_to_cache_geo01 (push) Successful in 1m34s
build configuration / build_and_cache_krz01 (push) Successful in 2m24s
build configuration / push_to_cache_web02 (push) Successful in 1m45s
build configuration / push_to_cache_storage01 (push) Successful in 2m8s
build configuration / push_to_cache_vault01 (push) Successful in 2m8s
build configuration / push_to_cache_compute01 (push) Successful in 2m22s
build configuration / push_to_cache_geo02 (push) Successful in 1m8s
build configuration / push_to_cache_bridge01 (push) Successful in 1m11s
build configuration / push_to_cache_rescue01 (push) Successful in 1m18s
build configuration / push_to_cache_web01 (push) Successful in 1m52s

This commit is contained in:
catvayor 2024-09-13 21:59:18 +02:00
parent 93c47f47be
commit 5b271b7b4a
Signed by: lbailly
GPG key ID: CE3E645251AC63F3

View file

@ -238,7 +238,11 @@ in
content = ''
chain postrouting {
type nat hook postrouting priority 100;
ip saddr 10.0.0.0/16 ether saddr 1c:1b:b5:14:9c:e5 snat ip to 129.199.195.130-129.199.195.158
ip saddr 10.0.0.0/16 ip saddr != 10.0.255.0/24 snat ip to 129.199.195.130-129.199.195.158
ether saddr e0:2b:e9:b5:b4:cc snat to 129.199.195.130 comment "Elias"
ether saddr { 1c:1b:b5:14:9c:e5, e6:ce:e2:b6:e3:82 } snat to 129.199.195.131 comment "Lubin"
ether saddr d0:49:7c:46:f6:39 snat to 129.199.195.132 comment "Jean-Marc"
ether saddr { 5c:64:8e:f4:09:06 } snat to 129.199.195.158 comment "APs"
}
'';
};