diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-02-13 19:42:20 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-02-13 19:43:02 +0100 |
commit | cec4b325ea014c09d3c60fac07651ec2a0b2d522 (patch) | |
tree | c078d945e6a2333bff06995a28639a79af9c77b2 /smoketest/scripts/cli/test_protocols_rpki.py | |
parent | ce70f775a2ca071c6b02ad21da0b81850cca3a7b (diff) | |
download | vyos-1x-cec4b325ea014c09d3c60fac07651ec2a0b2d522.tar.gz vyos-1x-cec4b325ea014c09d3c60fac07651ec2a0b2d522.zip |
smoketest: rpki: extend tests with IPv6 caching servers
Diffstat (limited to 'smoketest/scripts/cli/test_protocols_rpki.py')
-rwxr-xr-x | smoketest/scripts/cli/test_protocols_rpki.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/smoketest/scripts/cli/test_protocols_rpki.py b/smoketest/scripts/cli/test_protocols_rpki.py index 17b9ba346..bec4ef76f 100755 --- a/smoketest/scripts/cli/test_protocols_rpki.py +++ b/smoketest/scripts/cli/test_protocols_rpki.py @@ -61,6 +61,14 @@ class TestProtocolsRPKI(unittest.TestCase): 'port' : '9090', 'preference' : '2' }, + '2001:db8::1' : { + 'port' : '1234', + 'preference' : '3' + }, + '2001:db8::2' : { + 'port' : '5678', + 'preference' : '4' + }, } self.session.set(base_path + ['polling-period', polling]) |