On 2018-10-26 16:25, mark wrote:
Working on a script, and to test, I need to shut down ip6tables temporarily. firewalld is running; is there any way to shut down *just* ip6tables?
I tried installinf iptables-services, and did a systemctl stop ip6tables, and no joy.
mark
CentOS mailing list CentOS@centos.org https://lists.centos.org/mailman/listinfo/centos
Hi
I believe this should remove any ipv6 rules (rules and chains)
ip6tables -F ip6tables -X
You may need to set the default policies as well, as they I belive are to deny all incoming and unrestricted outgoing
ip6tables -P INPUT DROP ip6tables -P FORWARD DROP ip6tables -P OUTPUT ACCEPT
Regards
Andrew