mirror of https://github.com/apache/cloudstack.git
systemvm: accept ipv6 established/related return traffic (#13173)
This commit is contained in:
parent
4a49ffa9aa
commit
3285e2fad8
|
|
@ -232,7 +232,7 @@ class CsNetfilters(object):
|
|||
if hook == "input" or hook == "output":
|
||||
CsHelper.execute("nft add rule %s %s %s icmpv6 type { echo-request, echo-reply, \
|
||||
nd-neighbor-solicit, nd-router-advert, nd-neighbor-advert } accept" % (address_family, table, chain))
|
||||
elif hook == "forward":
|
||||
if hook == "input" or hook == "forward":
|
||||
CsHelper.execute("nft add rule %s %s %s ct state established,related accept" % (address_family, table, chain))
|
||||
|
||||
def add_ip4_chain(self, address_family, table, chain, hook, action):
|
||||
|
|
|
|||
Loading…
Reference in New Issue