diff options
author | Viacheslav Hletenko <v.gletenko@vyos.io> | 2023-03-14 22:22:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-14 22:22:25 +0200 |
commit | 7f0eb0b029c927e4b7b0003c934f682be9b36380 (patch) | |
tree | eecad127b99f640b5e2dd512e1ad51ac15d21c10 /smoketest/scripts/cli/test_nat.py | |
parent | c5ee06af8cb0b4485d08a2cf1d1e338c74b3fd85 (diff) | |
parent | 80bdd7f93430769ea5cda32d1925dfcd43df5107 (diff) | |
download | vyos-1x-7f0eb0b029c927e4b7b0003c934f682be9b36380.tar.gz vyos-1x-7f0eb0b029c927e4b7b0003c934f682be9b36380.zip |
Merge pull request #1890 from nicolas-fort/T5055
T5055: NAT: extend packet-type to NAT
Diffstat (limited to 'smoketest/scripts/cli/test_nat.py')
-rwxr-xr-x | smoketest/scripts/cli/test_nat.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/smoketest/scripts/cli/test_nat.py b/smoketest/scripts/cli/test_nat.py index 9f4e3b831..1f2b777a8 100755 --- a/smoketest/scripts/cli/test_nat.py +++ b/smoketest/scripts/cli/test_nat.py @@ -194,12 +194,13 @@ class TestNAT(VyOSUnitTestSHIM.TestCase): self.cli_set(dst_path + ['rule', '1', 'inbound-interface', 'eth1']) self.cli_set(dst_path + ['rule', '1', 'destination', 'port', '443']) self.cli_set(dst_path + ['rule', '1', 'protocol', 'tcp']) + self.cli_set(dst_path + ['rule', '1', 'packet-type', 'host']) self.cli_set(dst_path + ['rule', '1', 'translation', 'port', '443']) self.cli_commit() nftables_search = [ - ['iifname "eth1"', 'tcp dport 443', 'dnat to :443'] + ['iifname "eth1"', 'tcp dport 443', 'pkttype host', 'dnat to :443'] ] self.verify_nftables(nftables_search, 'ip vyos_nat') |