diff options
author | JACK <jack9603301@163.com> | 2021-05-22 16:48:38 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-22 10:48:38 +0200 |
commit | 9c6874f0abad9ff65bca58bd08458f24970f06c2 (patch) | |
tree | e00d0bf5c6e1eec566ec61594faecd4def140f66 /src | |
parent | 93885e583810f1ebfde8e3c34f39f4d3a3a49830 (diff) | |
download | vyos-1x-9c6874f0abad9ff65bca58bd08458f24970f06c2.tar.gz vyos-1x-9c6874f0abad9ff65bca58bd08458f24970f06c2.zip |
nat66: T2518: op-mode typo fixup
Diffstat (limited to 'src')
-rwxr-xr-x | src/op_mode/show_nat_rules.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/op_mode/show_nat_rules.py b/src/op_mode/show_nat_rules.py index 68cff61c8..4b7e40d1f 100755 --- a/src/op_mode/show_nat_rules.py +++ b/src/op_mode/show_nat_rules.py @@ -34,8 +34,8 @@ if args.source or args.destination: tmp = json.loads(tmp) format_nat66_rule = '{0: <10} {1: <50} {2: <50} {3: <10}' - print(format_nat66_rule.format("Rule", "Source" if args.source else "Destination", "Translation", "Outbound Interface" if args.source else "Inbound Interface")) - print(format_nat66_rule.format("----", "------" if args.source else "-----------", "-----------", "------------------" if args.source else "-----------------")) + print(format_nat_rule.format("Rule", "Source" if args.source else "Destination", "Translation", "Outbound Interface" if args.source else "Inbound Interface")) + print(format_nat_rule.format("----", "------" if args.source else "-----------", "-----------", "------------------" if args.source else "-----------------")) data_json = jmespath.search('nftables[?rule].rule[?chain]', tmp) for idx in range(0, len(data_json)): @@ -86,7 +86,7 @@ if args.source or args.destination: else: tran_addr = dict_search('snat.addr' if args.source else 'dnat.addr', data['expr'][3]) - print(format_nat66_rule.format(rule, srcdest, tran_addr, interface)) + print(format_nat_rule.format(rule, srcdest, tran_addr, interface)) exit(0) else: |