diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-07-05 22:09:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-05 22:09:57 +0200 |
commit | f794ed27e3991bff9bd41e868f53a5b393a519d3 (patch) | |
tree | 3c81cd13ed8167783a69d4e27b4b97fced34777f /smoketest/configs | |
parent | 373aacd2375f35400a351345b2fa849efdae0543 (diff) | |
parent | d9ba5d4a6f38111b9656c91589bdc274214ac93b (diff) | |
download | vyos-1x-f794ed27e3991bff9bd41e868f53a5b393a519d3.tar.gz vyos-1x-f794ed27e3991bff9bd41e868f53a5b393a519d3.zip |
Merge pull request #1393 from sarthurdev/firewall_migrate
firewall: T2199: Fix migration when `icmpv6 type` is an integer
Diffstat (limited to 'smoketest/configs')
-rw-r--r-- | smoketest/configs/dialup-router-complex | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/smoketest/configs/dialup-router-complex b/smoketest/configs/dialup-router-complex index ac5ff5e99..909e6d17b 100644 --- a/smoketest/configs/dialup-router-complex +++ b/smoketest/configs/dialup-router-complex @@ -66,6 +66,27 @@ firewall { action accept protocol icmpv6 } + rule 15 { + action accept + icmpv6 { + type 1 + } + protocol icmpv6 + } + rule 16 { + action accept + icmpv6 { + type 1/1 + } + protocol icmpv6 + } + rule 17 { + action accept + icmpv6 { + type destination-unreachable + } + protocol icmpv6 + } } ipv6-name ALLOW-ESTABLISHED-6 { default-action drop |