diff options
author | Christian Breunig <christian@breunig.cc> | 2024-01-03 11:51:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-03 11:51:27 +0100 |
commit | 48f2a0a8d2fe182f057a09e0af7ed78746a223a2 (patch) | |
tree | a8ac8e975d10c8b764cecea94490a20e6588f6cb /smoketest | |
parent | 03a74692b4ac5d7e8d31976676af8930ac7c84ac (diff) | |
parent | d61f5a269b17b4926ad848a14786ef7291ec0352 (diff) | |
download | vyos-1x-48f2a0a8d2fe182f057a09e0af7ed78746a223a2.tar.gz vyos-1x-48f2a0a8d2fe182f057a09e0af7ed78746a223a2.zip |
Merge pull request #2732 from vyos/mergify/bp/sagitta/pr-2728
T5880: verify_source_interface() should not allow dynamic interfaces like ppp, l2tp, ipoe or sstpc client interfaces (backport #2728)
Diffstat (limited to 'smoketest')
-rwxr-xr-x | smoketest/scripts/cli/test_interfaces_tunnel.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/smoketest/scripts/cli/test_interfaces_tunnel.py b/smoketest/scripts/cli/test_interfaces_tunnel.py index 2a7a519fd..dd9f1d2d1 100755 --- a/smoketest/scripts/cli/test_interfaces_tunnel.py +++ b/smoketest/scripts/cli/test_interfaces_tunnel.py @@ -393,5 +393,21 @@ class TunnelInterfaceTest(BasicInterfaceTest.TestCase): self.assertEqual(tunnel_config['encapsulation'], conf['linkinfo']['info_kind']) self.assertEqual(tunnel_config['remote'], conf['linkinfo']['info_data']['remote']) + def test_tunnel_invalid_source_interface(self): + encapsulation = 'gre' + remote = '192.0.2.1' + interface = 'tun7543' + + self.cli_set(self._base_path + [interface, 'encapsulation', encapsulation]) + self.cli_set(self._base_path + [interface, 'remote', remote]) + + for dynamic_interface in ['l2tp0', 'ppp4220', 'sstpc0', 'ipoe654']: + self.cli_set(self._base_path + [interface, 'source-interface', dynamic_interface]) + # verify() - we can not source from dynamic interfaces + with self.assertRaises(ConfigSessionError): + self.cli_commit() + self.cli_set(self._base_path + [interface, 'source-interface', 'eth0']) + self.cli_commit() + if __name__ == '__main__': unittest.main(verbosity=2) |