diff options
author | selias <samelias@cisco.com> | 2016-06-30 16:29:25 +0200 |
---|---|---|
committer | Matej Klotton <mklotton@cisco.com> | 2016-07-11 12:33:38 +0000 |
commit | d5e00c67d229e6f6fd9461755423cee800a1635e (patch) | |
tree | a892530d93916bc75cd5b1403958a9f5eca76cf2 /tests/suites/honeycomb/resources/sub_interfaces.py | |
parent | 3bb84bee3516c1e7326becfc3c2f70bf6e3f59ce (diff) |
CSIT-184: Add Honeycomb sub-interface ipv4 tests
- add tests for sub-interface ipv4 support
- add keywords and methods used in tests
Change-Id: I98af193a4c4f0d3822eb9637f01acead37accb8c
Signed-off-by: selias <samelias@cisco.com>
Diffstat (limited to 'tests/suites/honeycomb/resources/sub_interfaces.py')
-rw-r--r-- | tests/suites/honeycomb/resources/sub_interfaces.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/suites/honeycomb/resources/sub_interfaces.py b/tests/suites/honeycomb/resources/sub_interfaces.py index e4acd004ac..6904b48015 100644 --- a/tests/suites/honeycomb/resources/sub_interfaces.py +++ b/tests/suites/honeycomb/resources/sub_interfaces.py @@ -275,3 +275,13 @@ tag_rewrite_translate_1_2_wrong = { } ] } + +# IP addresses configured on sub-interface during tests +ipv4 = { + "address": "192.168.0.4", + "netmask": "255.255.255.0", + "prefix-length": 24} +ipv4_2 = { + "address": "192.168.0.5", + "netmask": "255.255.0.0", + "prefix-length": 16} |