blob: 7895ed3994da882663aea54e0e1805b22c6d5c95 [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
Hyunsun Moon29454642019-08-30 22:09:39 -050026 cassandra_ip=$6
27 mmeidentity=$7
28 mmerealm=$8
Hyunsun Mooned24cac2019-08-26 20:52:20 -050029
Hyunsun Moonb7f9b4f2019-08-30 16:48:37 -050030 echo "IMSI=$imsi MSISDN=$msisdn"
Hyunsun Moon29454642019-08-30 22:09:39 -050031 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}}');"
Hyunsun Mooned24cac2019-08-26 20:52:20 -050032
Hyunsun Moonb7f9b4f2019-08-30 16:48:37 -050033 if [ $? -ne 0 ];then
34 echo -e "oops! Something went wrong adding $imsi to vhss.users_imsi!\n"
35 exit 1
36 fi
Hyunsun Mooned24cac2019-08-26 20:52:20 -050037
Hyunsun Moonb7f9b4f2019-08-30 16:48:37 -050038 cqlsh $cassandra_ip -e "INSERT INTO vhss.msisdn_imsi (msisdn, imsi) VALUES ($msisdn, '$imsi');"
39 if [ $? -ne 0 ];then
40 echo -e "oops! Something went wrong adding $imsi to vhss.msisdn_imsi!\n"
41 exit 1
42 fi
Hyunsun Mooned24cac2019-08-26 20:52:20 -050043
Hyunsun Moonb7f9b4f2019-08-30 16:48:37 -050044 echo -e "Added $imsi\n"
Hyunsun Mooned24cac2019-08-26 20:52:20 -050045}
46
47function provision_mme() {
48 id=$1
49 isdn=$2
50 host=$3
51 realm=$4
52 uereachability=$5
53 cassandra_ip=$6
54
55 cqlsh $cassandra_ip -e "INSERT INTO vhss.mmeidentity (idmmeidentity, mmeisdn, mmehost, mmerealm, ue_reachability) VALUES ($id, '$isdn', '$host', '$realm', $uereachability);"
56 if [ $? -ne 0 ];then
57 echo -e "oops! Something went wrong adding to vhss.mmeidentity!\n"
58 exit 1
59 fi
60
61 cqlsh $cassandra_ip -e "INSERT INTO vhss.mmeidentity_host (idmmeidentity, mmeisdn, mmehost, mmerealm, ue_reachability) VALUES ($id, '$isdn', '$host', '$realm', $uereachability);"
62 if [ $? -ne 0 ];then
63 echo -e "oops! Something went wrong adding to vhss.mmeidentity_host!\n"
64 exit 1
65 fi
66
Hyunsun Moonb7f9b4f2019-08-30 16:48:37 -050067 echo -e "Added mme $id\n"
Hyunsun Mooned24cac2019-08-26 20:52:20 -050068}
69
Hyunsun Moon2eede662019-10-11 13:11:44 -060070mme_identity={{ tuple "mme" "identity" . | include "omec-control-plane.diameter_endpoint" }}
71mme_realm={{ tuple "mme" "realm" . | include "omec-control-plane.diameter_endpoint" }}
Hyunsun Mooned24cac2019-08-26 20:52:20 -050072
Hyunsun Moonb7f9b4f2019-08-30 16:48:37 -050073{{- range .Values.config.hss.bootstrap.users }}
74provision_users \
75 {{ .imsi }} \
76 {{ .msisdn }} \
77 {{ .apn }} \
78 {{ .key }} \
79 {{ .opc }} \
Hyunsun Moonb7f9b4f2019-08-30 16:48:37 -050080 {{ $.Values.config.hss.hssdb }} \
81 $mme_identity \
82 $mme_realm
83{{- end }}
84
85{{- range .Values.config.hss.bootstrap.mmes }}
Hyunsun Mooned24cac2019-08-26 20:52:20 -050086provision_mme \
Hyunsun Moonb7f9b4f2019-08-30 16:48:37 -050087 {{ .id }} \
88 {{ .isdn }} \
89 $mme_identity \
90 $mme_realm \
91 {{ .unreachability }} \
92 {{ $.Values.config.hss.hssdb }}
93{{- end }}