-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
91ab6d9
commit 591fa0e
Showing
1 changed file
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# | ||
# .csv to store UE's information in HSS | ||
# Kept in the following format: "Name,IMSI,Key,OP_Type,OP/OPc,AMF,QCI,IP_alloc" | ||
# | ||
# Name: Human readable name to help distinguish UE's. Ignored by the HSS | ||
# IMSI: UE's IMSI value | ||
# Key: UE's key, where other keys are derived from. Stored in hexadecimal | ||
# OP_Type: Operator's code type, either OP or OPc | ||
# OP/OPc: Operator Code/Cyphered Operator Code, stored in hexadecimal | ||
# AMF: Authentication management field, stored in hexadecimal | ||
# QCI: QoS Class Identifier for the UE's default bearer. | ||
# IP_alloc: Statically assigned IP for the UE. | ||
# | ||
# Note: Lines starting by '#' are ignored and will be overwritten | ||
# List of UEs with IMSI, and key increasing by one for each new UE. Useful for testing with AmariUE simulator and ue_count option | ||
ue01,001010123456789,00112233445566778899aabbccddeeff,opc,63bfa50ee6523365ff14c1f45f88737d,9001,9,10.45.1.2 | ||
ue02,001010123456790,00112233445566778899aabbccddef00,opc,63bfa50ee6523365ff14c1f45f88737d,9001,9,10.45.2.2 | ||
ue03,001010123456791,00112233445566778899aabbccddef01,opc,63bfa50ee6523365ff14c1f45f88737d,9001,9,10.45.3.2 |