Tolerate failures when setting MTU
[csit.git] / resources / test_data / honeycomb / interface_ip.py
1 # Copyright (c) 2016 Cisco and/or its affiliates.
2 # Licensed under the Apache License, Version 2.0 (the "License");
3 # you may not use this file except in compliance with the License.
4 # You may obtain a copy of the License at:
5 #
6 #     http://www.apache.org/licenses/LICENSE-2.0
7 #
8 # Unless required by applicable law or agreed to in writing, software
9 # distributed under the License is distributed on an "AS IS" BASIS,
10 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 # See the License for the specific language governing permissions and
12 # limitations under the License.
13
14 """Test variables for Basic interface management and IP addresses."""
15
16 # Configuration which will be set and verified during tests.
17 ipv4_address = "192.168.0.2"
18 ipv4_address2 = "192.168.1.2"
19 ipv4_prefix = 24
20 ipv4_mask = "255.255.255.0"
21 ipv4_neighbor = "192.168.0.4"
22 ipv4_neighbor2 = "192.168.1.4"
23 ipv4_settings = {"mtu": 9000}
24 ipv6_address = "10::10"
25 ipv6_address2 = "11::10"
26 ipv6_prefix = 64
27 ipv6_mask = "ffff:ffff:ffff:ffff::"
28 ipv6_neighbor = "10::11"
29 ipv6_neighbor2 = "11::11"
30 neighbor_mac = "08:00:27:c0:5d:37"
31 neighbor_mac2 = "08:00:27:c0:5d:37"
32 ipv6_settings = {"enabled": True, "forwarding": True, "mtu": 9000,
33                  "dup-addr-detect-transmits": 5}
34 ethernet = {"mtu": 9000}
35 routing = {"vrf-id": 27}