summaryrefslogtreecommitdiff
path: root/meta-google
diff options
context:
space:
mode:
authorWilliam A. Kennington III <wak@google.com>2022-01-19 20:57:22 +0300
committerWilliam A. Kennington III <wak@google.com>2022-01-27 02:12:24 +0300
commita27086f3bc36022627a2cc280dc0f0ea153db567 (patch)
tree4df903c020f08e279174303cb9da97d3e9dd8144 /meta-google
parent49ebfb425caa4fee177062588663200a63ce2b85 (diff)
downloadopenbmc-a27086f3bc36022627a2cc280dc0f0ea153db567.tar.xz
meta-google: gbmc-ncsi-config: Fix broadcast rules
Distinguish between broadcast only packets and broadcast + unicast packets. Change-Id: I52f7969ccd00e4142d5585a37b92cc5530b76dec Signed-off-by: William A. Kennington III <wak@google.com>
Diffstat (limited to 'meta-google')
-rw-r--r--meta-google/recipes-google/ncsi/files/50-gbmc-ncsi.rules.in5
1 files changed, 4 insertions, 1 deletions
diff --git a/meta-google/recipes-google/ncsi/files/50-gbmc-ncsi.rules.in b/meta-google/recipes-google/ncsi/files/50-gbmc-ncsi.rules.in
index e2ade6e5bc..303dbca8c7 100644
--- a/meta-google/recipes-google/ncsi/files/50-gbmc-ncsi.rules.in
+++ b/meta-google/recipes-google/ncsi/files/50-gbmc-ncsi.rules.in
@@ -14,13 +14,16 @@ table inet filter {
chain gbmc_br_pub_input {
}
chain ncsi_legacy_input {
- jump ncsi_brd_input
+ jump ncsi_any_input
tcp dport 3959 accept
udp dport 3959 accept
tcp dport 3967 accept
udp dport 3967 accept
}
chain ncsi_brd_input {
+ jump ncsi_any_input
+ }
+ chain ncsi_any_input {
icmpv6 type nd-neighbor-advert accept
icmpv6 type nd-neighbor-solicit accept
icmpv6 type nd-router-advert accept