blob: 096a434b7bacf6da23bab874509f3b83875616ea [file] [log] [blame]
Hyunsun Mooned24cac2019-08-26 20:52:20 -05001#!/bin/bash
2#
3# Copyright 2019-present Open Networking Foundation
4# Copyright 2018 Intel Corporation
5#
6# Licensed under the Apache License, Version 2.0 (the "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17
18set -ex
19
20function provision_users() {
21 imsi=$1
22 msisdn=$2
23 apn=$3
24 key=$4
25 opc=$5
26 no_of_users=$6
27 cassandra_ip=$7
28 mmeidentity=$8
29 mmerealm=$9
30
31 for (( i=1; i<=$no_of_users; i++ )); do
32 echo "IMSI=$imsi MSISDN=$msisdn"
33 cqlsh $cassandra_ip -e "INSERT INTO vhss.users_imsi (imsi, msisdn, access_restriction, key, opc, mmehost, mmeidentity_idmmeidentity, mmerealm, rand, sqn, subscription_data) VALUES ('$imsi', $msisdn, 41, '$key', '$opc', '$mmeidentity', 3, '$mmerealm', '2683b376d1056746de3b254012908e0e', 96, '{\"Subscription-Data\":{\"Access-Restriction-Data\":41,\"Subscriber-Status\":0,\"Network-Access-Mode\":2,\"Regional-Subscription-Zone-Code\":[\"0x0123\",\"0x4567\",\"0x89AB\",\"0xCDEF\",\"0x1234\",\"0x5678\",\"0x9ABC\",\"0xDEF0\",\"0x2345\",\"0x6789\"],\"MSISDN\":\"0x$msisdn\",\"AMBR\":{\"Max-Requested-Bandwidth-UL\":50000000,\"Max-Requested-Bandwidth-DL\":100000000},\"APN-Configuration-Profile\":{\"Context-Identifier\":0,\"All-APN-Configurations-Included-Indicator\":0,\"APN-Configuration\":{\"Context-Identifier\":0,\"PDN-Type\":0,\"Served-Party-IP-Address\":[\"10.0.0.1\",\"10.0.0.2\"],\"Service-Selection\":\"apn1\",\"EPS-Subscribed-QoS-Profile\":{\"QoS-Class-Identifier\":9,\"Allocation-Retention-Priority\":{\"Priority-Level\":15,\"Pre-emption-Capability\":0,\"Pre-emption-Vulnerability\":0}},\"AMBR\":{\"Max-Requested-Bandwidth-UL\":50000000,\"Max-Requested-Bandwidth-DL\":100000000},\"PDN-GW-Allocation-Type\":0,\"MIP6-Agent-Info\":{\"MIP-Home-Agent-Address\":[\"172.26.17.183\"]}}},\"Subscribed-Periodic-RAU-TAU-Timer\":0}}');"
34 if [ $? -ne 0 ];then
35 echo -e "oops! Something went wrong adding to vhss.users_imsi!\n"
36 exit 1
37 fi
38
39 cqlsh $cassandra_ip -e "INSERT INTO vhss.msisdn_imsi (msisdn, imsi) VALUES ($msisdn, '$imsi');"
40 if [ $? -ne 0 ];then
41 echo -e "oops! Something went wrong adding to vhss.msisdn_imsi!\n"
42 exit 1
43 fi
44
45 imsi=`expr $imsi + 1`;
46 msisdn=`expr $msisdn + 1`
47 done
48
49 echo -e "The provisioning is successful\n"
50}
51
52function provision_mme() {
53 id=$1
54 isdn=$2
55 host=$3
56 realm=$4
57 uereachability=$5
58 cassandra_ip=$6
59
60 cqlsh $cassandra_ip -e "INSERT INTO vhss.mmeidentity (idmmeidentity, mmeisdn, mmehost, mmerealm, ue_reachability) VALUES ($id, '$isdn', '$host', '$realm', $uereachability);"
61 if [ $? -ne 0 ];then
62 echo -e "oops! Something went wrong adding to vhss.mmeidentity!\n"
63 exit 1
64 fi
65
66 cqlsh $cassandra_ip -e "INSERT INTO vhss.mmeidentity_host (idmmeidentity, mmeisdn, mmehost, mmerealm, ue_reachability) VALUES ($id, '$isdn', '$host', '$realm', $uereachability);"
67 if [ $? -ne 0 ];then
68 echo -e "oops! Something went wrong adding to vhss.mmeidentity_host!\n"
69 exit 1
70 fi
71
72 echo -e "The mme identity provisioning is successfull\n"
73}
74
75provision_users \
76 {{ .Values.config.hss.bootstrap.users.imsi }} \
77 {{ .Values.config.hss.bootstrap.users.msisdn }} \
78 {{ .Values.config.hss.bootstrap.users.apn }} \
79 {{ .Values.config.hss.bootstrap.users.key }} \
80 {{ .Values.config.hss.bootstrap.users.opc }} \
81 {{ .Values.config.hss.bootstrap.users.numbers }} \
82 {{ .Values.config.hss.hssdb }} \
83 {{ tuple "mme" "identity" . | include "omec-control-plane.endpoint_lookup" }} \
84 {{ tuple "mme" "reaml" . | include "omec-control-plane.endpoint_lookup" }}
85
86provision_mme \
87 {{ .Values.config.hss.bootstrap.mme.id }} \
88 {{ .Values.config.hss.bootstrap.mme.isdn }} \
89 {{ tuple "mme" "identity" . | include "omec-control-plane.endpoint_lookup" }} \
90 {{ tuple "mme" "realm" . | include "omec-control-plane.endpoint_lookup" }} \
91 {{ .Values.config.hss.bootstrap.mme.unreachability }} \
92 {{ .Values.config.hss.hssdb }}