aboutsummaryrefslogtreecommitdiffstats
path: root/resources/test_data/lisp/lisp.py
blob: f6a4152fdad7c9039148b1f190b3e2741cc27390 (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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
# 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 = b"tst_locator"

# Test configuration data
tg_if1_ip4= u"6.0.0.2"
tg_if2_ip4= u"6.0.1.2"
dut_if1_ip4= u"6.0.0.1"
dut_if2_ip4= u"6.0.1.1"
tg_if2_ip6= u"6:0:1::2"
dut_if2_ip6= u"6:0:1::1"
ip4_plen= 24
src_ip4= u"6.0.0.2"
dst_ip4= u"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= u"6::2"
dut_if1_ip6= u"6:0:0::1"
src_ip6= u"6::2"
dst_ip6= u"6:0:2::2"
ip6_plen=64

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

# IPv4 Lisp static mapping configuration

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

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

# IPv6 Lisp static mapping configuration

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

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


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

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