summaryrefslogtreecommitdiff
path: root/src/op_mode/show_nat66_statistics.py
diff options
context:
space:
mode:
authorjack9603301 <jack9603301@163.com>2021-03-16 17:00:47 +0800
committerjack9603301 <jack9603301@163.com>2021-03-17 02:58:09 +0800
commitf8e91ecebb69328300ddc3d863005209541b1225 (patch)
tree3d39b7afa045609bc824a883fba969e6cc8a7631 /src/op_mode/show_nat66_statistics.py
parenta340f27512e71b5d5730be44b53768e1b7aee7f8 (diff)
downloadvyos-1x-f8e91ecebb69328300ddc3d863005209541b1225.tar.gz
vyos-1x-f8e91ecebb69328300ddc3d863005209541b1225.zip
nat66: T2518: Correct the wrong logic
For nat66, the previous processing of f0d0a572 (NAT: nat66: t2518: support operation...) has errors. If there is no index 3, we think that this is not the record we need
Diffstat (limited to 'src/op_mode/show_nat66_statistics.py')
-rwxr-xr-xsrc/op_mode/show_nat66_statistics.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/op_mode/show_nat66_statistics.py b/src/op_mode/show_nat66_statistics.py
index 0f0b05978..bc81692ae 100755
--- a/src/op_mode/show_nat66_statistics.py
+++ b/src/op_mode/show_nat66_statistics.py
@@ -31,7 +31,7 @@ rule pkts bytes interface
{% set bytes = r.counter.bytes %}
{% set interface = r.interface %}
{# remove rule comment prefix #}
-{% set comment = r.comment | replace('SRC-NAT-', '') | replace('DST-NAT-', '') | replace(' tcp_udp', '') %}
+{% set comment = r.comment | replace('SRC-NAT66-', '') | replace('DST-NAT66-', '') %}
{{ "%-4s" | format(comment) }} {{ "%9s" | format(packets) }} {{ "%12s" | format(bytes) }} {{ interface }}
{% endif %}
{% endfor %}