我有以下命令
ip6tables -A INPUT -m ipv6header --header hop,dst,route,frag,auth,esp,none,prot --tcp-flags ACK SYN
但出现错误ip6tables v1.8.4 (legacy): unknown option "--tcp-flags"
我已经尝试过--tcp-flags
选项iptables
,效果很好。但在 中ip6tables
,它给出了错误
我有以下命令
ip6tables -A INPUT -m ipv6header --header hop,dst,route,frag,auth,esp,none,prot --tcp-flags ACK SYN
但出现错误ip6tables v1.8.4 (legacy): unknown option "--tcp-flags"
我已经尝试过--tcp-flags
选项iptables
,效果很好。但在 中ip6tables
,它给出了错误
引用自
man ip6tables
添加参数
--protocol tcp
。根据手册页,是如果指定
--tcp-flags
则加载的扩展的一部分。--protocol tcp
您的命令行似乎没有指定--protocol tcp
,因此扩展名不存在并且该选项不可用。