summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorKyrylo Yatsenko <hedrok@gmail.com>2026-03-07 21:58:39 +0200
committerKyrylo Yatsenko <hedrok@gmail.com>2026-03-07 22:02:07 +0200
commit9e2d972d5d4940efa28be38a1b55b3d6e4b4be7a (patch)
treefde749baab33e70bd70625f3482e672e8baeee2b /python
parent2a90b963e1f1f399f2173ba1b4f4a289960c8f7d (diff)
downloadvyos-1x-9e2d972d5d4940efa28be38a1b55b3d6e4b4be7a.tar.gz
vyos-1x-9e2d972d5d4940efa28be38a1b55b3d6e4b4be7a.zip
T8186: netflow: disable IPv6 for protocol version5
Diffstat (limited to 'python')
-rw-r--r--python/vyos/ipt_netflow.py14
1 files changed, 9 insertions, 5 deletions
diff --git a/python/vyos/ipt_netflow.py b/python/vyos/ipt_netflow.py
index b1630f30c..14d2a458d 100644
--- a/python/vyos/ipt_netflow.py
+++ b/python/vyos/ipt_netflow.py
@@ -140,14 +140,18 @@ def _iptables_config_v4_and_v6(configured_ifaces, direction):
_iptables_config(command, configured_ifaces, direction)
-def set_watched_iptables_interfaces(ingress_interfaces, egress_interfaces):
+def set_watched_iptables_interfaces(ingress_interfaces, egress_interfaces, ipv6=True):
"""
Update iptables and ip6tables rules so that ipt_NETFLOW watches
exact list of interfaces in ingress_interfaces for ingress table/chain
and egress_interfaces for egress table/chain
"""
- _iptables_config_v4_and_v6(ingress_interfaces, 'ingress')
- _iptables_config_v4_and_v6(egress_interfaces, 'egress')
+ commands = ['iptables']
+ if ipv6:
+ commands.append('ip6tables')
+ for command in commands:
+ _iptables_config(command, ingress_interfaces, 'ingress')
+ _iptables_config(command, egress_interfaces, 'egress')
def stop():
@@ -160,7 +164,7 @@ def stop():
unload_kmod(module_name)
-def start(ingress_interfaces, egress_interfaces):
+def start(ingress_interfaces, egress_interfaces, ipv6=True):
"""
Start ipt_NETFLOW:
@@ -171,4 +175,4 @@ def start(ingress_interfaces, egress_interfaces):
check_kmod(module_name)
- set_watched_iptables_interfaces(ingress_interfaces, egress_interfaces)
+ set_watched_iptables_interfaces(ingress_interfaces, egress_interfaces, ipv6=ipv6)