summaryrefslogtreecommitdiff
path: root/src/op_mode
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2020-05-16 18:32:22 +0200
committerChristian Poessinger <christian@poessinger.com>2020-05-16 18:32:22 +0200
commit2ba8c8499f8664b69bb9b48268f7c5cd5b06cd89 (patch)
tree1dd977c169415b71297b17df0d8f012543fc042a /src/op_mode
parentd8891acde69ba17019b650656eaa6fa313a222b9 (diff)
downloadvyos-1x-2ba8c8499f8664b69bb9b48268f7c5cd5b06cd89.tar.gz
vyos-1x-2ba8c8499f8664b69bb9b48268f7c5cd5b06cd89.zip
nat: T2198: remove "tcp_udp" from "show nat dest stat"x
Diffstat (limited to 'src/op_mode')
-rwxr-xr-xsrc/op_mode/show_nat_statistics.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/op_mode/show_nat_statistics.py b/src/op_mode/show_nat_statistics.py
index b77693e19..0b53112f2 100755
--- a/src/op_mode/show_nat_statistics.py
+++ b/src/op_mode/show_nat_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-', '') -%}
+{%- set comment = r.comment | replace('SRC-NAT-', '') | replace('DST-NAT-', '') | replace(' tcp_udp', '') -%}
{{ "%-4s" | format(comment) }} {{ "%9s" | format(packets) }} {{ "%12s" | format(bytes) }} {{ interface }}
{%- endif %}
{% endfor %}