blob: be1f7a8c523515c91d3092f11276f1b7dda64d69 [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 Moonb7f9b4f2019-08-30 16:48:37 -050026 sqn=$6
Hyunsun Mooned24cac2019-08-26 20:52:20 -050027 cassandra_ip=$7
28 mmeidentity=$8
29 mmerealm=$9
30
Hyunsun Moonb7f9b4f2019-08-30 16:48:37 -050031 echo "IMSI=$imsi MSISDN=$msisdn"
32 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', $sqn, '{\"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 -050033
Hyunsun Moonb7f9b4f2019-08-30 16:48:37 -050034 if [ $? -ne 0 ];then
35 echo -e "oops! Something went wrong adding $imsi to vhss.users_imsi!\n"
36 exit 1
37 fi
Hyunsun Mooned24cac2019-08-26 20:52:20 -050038
Hyunsun Moonb7f9b4f2019-08-30 16:48:37 -050039 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 $imsi to vhss.msisdn_imsi!\n"
42 exit 1
43 fi
Hyunsun Mooned24cac2019-08-26 20:52:20 -050044
Hyunsun Moonb7f9b4f2019-08-30 16:48:37 -050045 echo -e "Added $imsi\n"
Hyunsun Mooned24cac2019-08-26 20:52:20 -050046}
47
48function provision_mme() {
49 id=$1
50 isdn=$2
51 host=$3
52 realm=$4
53 uereachability=$5
54 cassandra_ip=$6
55
56 cqlsh $cassandra_ip -e "INSERT INTO vhss.mmeidentity (idmmeidentity, mmeisdn, mmehost, mmerealm, ue_reachability) VALUES ($id, '$isdn', '$host', '$realm', $uereachability);"
57 if [ $? -ne 0 ];then
58 echo -e "oops! Something went wrong adding to vhss.mmeidentity!\n"
59 exit 1
60 fi
61
62 cqlsh $cassandra_ip -e "INSERT INTO vhss.mmeidentity_host (idmmeidentity, mmeisdn, mmehost, mmerealm, ue_reachability) VALUES ($id, '$isdn', '$host', '$realm', $uereachability);"
63 if [ $? -ne 0 ];then
64 echo -e "oops! Something went wrong adding to vhss.mmeidentity_host!\n"
65 exit 1
66 fi
67
Hyunsun Moonb7f9b4f2019-08-30 16:48:37 -050068 echo -e "Added mme $id\n"
Hyunsun Mooned24cac2019-08-26 20:52:20 -050069}
70
Hyunsun Moonb7f9b4f2019-08-30 16:48:37 -050071mme_identity={{ tuple "mme" "identity" . | include "omec-control-plane.endpoint_lookup" }}
72mme_realm={{ tuple "mme" "realm" . | include "omec-control-plane.endpoint_lookup" }}
Hyunsun Mooned24cac2019-08-26 20:52:20 -050073
Hyunsun Moonb7f9b4f2019-08-30 16:48:37 -050074{{- range .Values.config.hss.bootstrap.users }}
75provision_users \
76 {{ .imsi }} \
77 {{ .msisdn }} \
78 {{ .apn }} \
79 {{ .key }} \
80 {{ .opc }} \
81 {{ .sqn }} \
82 {{ $.Values.config.hss.hssdb }} \
83 $mme_identity \
84 $mme_realm
85{{- end }}
86
87{{- range .Values.config.hss.bootstrap.mmes }}
Hyunsun Mooned24cac2019-08-26 20:52:20 -050088provision_mme \
Hyunsun Moonb7f9b4f2019-08-30 16:48:37 -050089 {{ .id }} \
90 {{ .isdn }} \
91 $mme_identity \
92 $mme_realm \
93 {{ .unreachability }} \
94 {{ $.Values.config.hss.hssdb }}
95{{- end }}