summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2024-01-02 22:41:17 +0100
committerGitHub <noreply@github.com>2024-01-02 22:41:17 +0100
commit31564819227fb455113998926b1303f3c7519b02 (patch)
tree38dfb6b07bacc55d411d24c00f02165941e35008
parent8c81472fe9d408ef561dffd68114fc05c12d10c6 (diff)
parent7b086968c517050ec0e27c6d35606d7ba8a5f2d4 (diff)
downloadvyos-1x-31564819227fb455113998926b1303f3c7519b02.tar.gz
vyos-1x-31564819227fb455113998926b1303f3c7519b02.zip
Merge pull request #2744 from vyos/mergify/bp/sagitta/pr-2743
T5888: fix migration script in order to fit new type-names for icmp and icmpv6 (backport #2743)
-rwxr-xr-xsrc/migration-scripts/firewall/6-to-79
1 files changed, 8 insertions, 1 deletions
diff --git a/src/migration-scripts/firewall/6-to-7 b/src/migration-scripts/firewall/6-to-7
index 9ad887acc..b918833e9 100755
--- a/src/migration-scripts/firewall/6-to-7
+++ b/src/migration-scripts/firewall/6-to-7
@@ -73,6 +73,7 @@ icmp_translations = {
# Time Exceeded
'ttl-zero-during-transit': [11, 0],
'ttl-zero-during-reassembly': [11, 1],
+ 'ttl-exceeded': 'time-exceeded',
# Parameter Problem
'ip-header-bad': [12, 0],
'required-option-missing': [12, 1]
@@ -87,8 +88,14 @@ icmpv6_translations = {
'communication-prohibited': [1, 1],
'address-unreachble': [1, 3],
'port-unreachable': [1, 4],
- # Redirect
+ # nd
'redirect': 'nd-redirect',
+ 'router-solicitation': 'nd-router-solicit',
+ 'router-advertisement': 'nd-router-advert',
+ 'neighbour-solicitation': 'nd-neighbor-solicit',
+ 'neighbor-solicitation': 'nd-neighbor-solicit',
+ 'neighbour-advertisement': 'nd-neighbor-advert',
+ 'neighbor-advertisement': 'nd-neighbor-advert',
# Time Exceeded
'ttl-zero-during-transit': [3, 0],
'ttl-zero-during-reassembly': [3, 1],