aboutsummaryrefslogtreecommitdiffstats
path: root/resources/test_data/lisp/lisp.py
blob: 4539f8208d88381417f5c948b3c720231ac51f3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# Copyright (c) 2019 Cisco and/or its affiliates.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at:
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

"""Test variables of lisp and lispgpe (ip4/ip6) encapsulation test suite."""

# Lisp default global value
locator_name = 'tst_locator'

# Test configuration data
tg_if1_ip4= '6.0.0.2'
tg_if2_ip4= '6.0.1.2'
dut_if1_ip4= '6.0.0.1'
dut_if2_ip4= '6.0.1.1'
tg_if2_ip6= '6:0:1::2'
dut_if2_ip6= '6:0:1::1'
ip4_plen= 24
src_ip4= '6.0.0.2'
dst_ip4= '6.0.2.2'
src_rloc4= dut_if2_ip4
dst_rloc4= tg_if2_ip4
src_rloc6= dut_if2_ip6
dst_rloc6= tg_if2_ip6

#IP6 over IP4 LISP configuration data
tg_if1_ip6= '6::2'
dut_if1_ip6= '6:0:0::1'
src_ip6= '6::2'
dst_ip6= '6:0:2::2'
ip6_plen=64

# Lisp default locator_set value
duts_locator_set = {'locator_name': locator_name,
                    'priority': 1,
                    'weight': 1}

# IPv4 Lisp static mapping configuration

dut1_to_tg_ip4_static_adjacency = {'vni': 0,
                                   'deid': '6.0.2.0',
                                   'seid': '6.0.0.0',
                                   'rloc': '6.0.1.2',
                                   'prefix': 24}

dut1_ip4_eid = {'locator_name': locator_name,
                'vni': 0,
                'eid': '6.0.0.0',
                'prefix': 24}

# IPv6 Lisp static mapping configuration

dut1_to_tg_ip6_static_adjacency = {'vni': 0,
                                   'deid': '6:0:2::0',
                                   'seid': '6:0:0::0',
                                   'rloc': '6:0:1::2',
                                   'prefix': 64}

dut1_ip6_eid = {'locator_name': locator_name,
                'vni': 0,
                'eid': '6:0:0::0',
                'prefix': 64}


#IPv6 over IPv4 LISP mapping
dut1_ip6o4_static_adjacency = {'vni': 0,
                               'deid': '6:0:2::0',
                               'seid': '6:0:0::0',
                               'rloc': '6.0.1.2',
                               'prefix': 64}
dut1_ip6o4_eid = {'locator_name': locator_name,
                  'vni': 0,
                  'eid': '6:0:0::0',
                  'prefix': 64}

#IPv4 over IPv6 LISP mapping
dut1_ip4o6_static_adjacency = {'vni': 0,
                               'deid': '6.0.2.0',
                               'seid': '6.0.0.0',
                               'rloc': '6:0:1::2',
                               'prefix': 24}
dut1_ip4o6_eid = {'locator_name': locator_name,
                  'vni': 0,
                  'eid': '6.0.0.0',
                  'prefix': 24}