summaryrefslogtreecommitdiffstats
path: root/tests/data_plane/csit_topo/lisp_test.sh
blob: 06ea7fb4a8052482232aa5975e1b21980346139d (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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
#!/usr/bin/env bash
#
#
#         +------+                   +-----+
#         |      | VPP1_INT  TG_INT1 |     |
#         | VPP1 +-------------------+ TG  |
#         |      |                   |     |
#         |      |                   |     |
#         +--+---+                   +--+--+
#            | VPP1_INT                 | TG_INT2
#   ODL_INT  |                          |
# ODL -------|                          |
#            | VPP2_INT                 |
#         +--+---+                      |
#         |      | VPP2_INT             |
#         | VPP2 +----------------------+
#         |      |
#         |      |
#         +------+

if [ "$1" == "-h" ] || [ "$1" == "-help" ] ; then
  echo "lisp_test.sh [ip4] [ip6] [ip4_ip6] [4o6] [6o4]"
  echo "        ip4 - test ip4 topology"
  echo "        ip6 - test ip6 topology"
  echo "        ip4_ip6 - test ip4 and ip6 topology"
  echo "        4o6 - test ip4 over ip6"
  echo "        6o4 - test ip6 over ip4"
  exit 0
fi

set -x

USER="csit"
ODL_USER="admin"
ODL_PASSWD="admin"
VPP1_IP="192.168.255.101"
VPP2_IP="192.168.255.102"
TG_IP="192.168.255.100"
ODL_IP="192.168.255.10"
ODL_PORT="8181"
TMP_DIR="/tmp/vpp_${RANDOM}_lisp_test"
TG_INT1="eth2"
TG_INT2="eth3"
ODL_M_USER="user"
ODL_INT="eth2"
VPP_CONFIG_DIR="../configs/vpp_csit_config/"
VPP_CONFIG1="vpp1.conf"
VPP_CONFIG1_4o6="vpp1_4o6.conf"
VPP_CONFIG1_6="vpp1_6.conf"
VPP_CONFIG1_6o4="vpp1_6o4.conf"
VPP_CONFIG2="vpp2.conf"
VPP_CONFIG2_4o6="vpp2_4o6.conf"
VPP_CONFIG2_6="vpp2_6.conf"
VPP_CONFIG2_6o4="vpp2_6o4.conf"
VPP_RECONF2="vpp2_reconf.conf"
VPP_RECONF2_6="vpp2_reconf_6.conf"
VPP_RECONF2_4o6="vpp2_reconf_4o6.conf"
VPP_RECONF2_6o4="vpp2_reconf_6o4.conf"
ODL_CONFIG_DIR="../configs/odl/"
ODL_ADD_CONFIG1="add_ipv4_odl1.txt"
ODL_ADD_CONFIG1_4o6="add_ipv4o6_odl1.txt"
ODL_ADD_CONFIG1_6="add_ipv6_odl1.txt"
ODL_ADD_CONFIG1_6o4="add_ipv6o4_odl1.txt"
ODL_ADD_CONFIG2="add_ipv4_odl2.txt"
ODL_ADD_CONFIG2_4o6="add_ipv4o6_odl2.txt"
ODL_ADD_CONFIG2_6="add_ipv6_odl2.txt"
ODL_ADD_CONFIG2_6o4="add_ipv6o4_odl2.txt"
ODL_REPLACE_CONFIG2="replace_ipv4_odl2.txt"
ODL_REPLACE_CONFIG2_6="replace_ipv6_odl2.txt"
ODL_REPLACE_CONFIG2_4o6="replace_ipv4o6_odl2.txt"
ODL_REPLACE_CONFIG2_6o4="replace_ipv6o4_odl2.txt"

function ssh_vpp1 {
    ssh ${USER}@${VPP1_IP} ${@} || exit
}

function ssh_vpp2 {
    ssh ${USER}@${VPP2_IP} ${@} || exit
}

function ssh_tg {
    ssh ${USER}@${TG_IP} ${@} || exit
}

function ssh_odl {
    ssh ${ODL_M_USER}@${ODL_IP} ${@} || exit
}

function post_curl {
  curl -X POST http://${ODL_IP}:${ODL_PORT}/restconf/operations/odl-mappingservice:${1} \
     -H "Content-Type: application/json" --data-binary "@${ODL_CONFIG_DIR}${2}" \
     -u ${ODL_USER}:${ODL_PASSWD}
}

curl -X DELETE http://${ODL_IP}:${ODL_PORT}/restconf/config/odl-mappingservice:mapping-database/ \
     -u ${ODL_USER}:${ODL_PASSWD}

ssh_tg "sudo ip netns del net2 &> /dev/null || exit 0"
ssh_tg "sudo ip addr flush dev ${TG_INT1} &> /dev/null || exit 0"
ssh_tg "sudo ip route del 6.0.2.0/24 via 6.0.1.1 || exit 0"
ssh_tg "sudo ip route del 6:0:2::0/64 via 6:0:1::1 || exit 0"

ssh_odl "sudo ip addr flush dev ${ODL_INT} &> /dev/null || exit 0"
ssh_odl "sudo ip addr add 6.0.3.100/24 dev ${ODL_INT}"
ssh_odl "sudo ip addr add 6:0:3::100/64 dev ${ODL_INT}"

ssh_odl "sudo ethtool --offload  ${ODL_INT}  rx off tx off"

ssh_vpp1 "sudo stop vpp;  exit 0"
ssh_vpp2 "sudo stop vpp;  exit 0"

ssh_vpp1 "sudo start vpp;  exit 0"
ssh_vpp2 "sudo start vpp;  exit 0"

ssh_vpp1 "mkdir ${TMP_DIR}"
ssh_vpp2 "mkdir ${TMP_DIR}"

ssh_tg "sudo ip netns add net2"
ssh_tg "sudo ip link set dev ${TG_INT2} netns net2"

if [ "$#" == 0 ] || [ "$1" == "ip4" ] ; then
  source lisp_ip4.sh
fi

if [ "$1" == "ip6" ] ; then
  source lisp_ip6.sh
fi

if [ "$1" == "4o6" ] ; then
  source lisp_ip4o6.sh
fi

if [ "$1" == "6o4" ] ; then
  source lisp_ip6o4.sh
fi

if [ "$1" == "ip4_ip6" ] ; then
  source lisp_ip4.sh
  source lisp_ip6.sh

  ping_lisp
  ping_lisp6
fi

#clean tmp file
ssh_vpp1 "sudo rm -r ${TMP_DIR}"
ssh_vpp2 "sudo rm -r ${TMP_DIR}"

echo "Success"