srsLTE/srsepc/epc.conf.example

78 lines
2.3 KiB
Plaintext
Raw Normal View History

#####################################################################
# srsEPC configuration file
#####################################################################
#####################################################################
# MME configuration
#
# mme_code: 8-bit MME code identifies the MME within a group.
# mme_group: 16-bit MME group identifier.
# tac: 16-bit Tracking Area Code.
# mcc: Mobile Country Code
# mnc: Mobile Network Code
# apn: Set Access Point Name (APN)
# mme_bind_addr: IP bind addr to listen for eNB S1-MME connnections
# dns_addr: DNS server address for the UEs
#
#####################################################################
[mme]
2017-12-15 10:20:57 -08:00
mme_code = 0x1a
mme_group = 0x0001
tac = 0x0007
mcc = 001
mnc = 01
mme_bind_addr = 127.0.1.100
2018-01-26 09:43:21 -08:00
apn = srsapn
dns_addr = 8.8.8.8
#####################################################################
# HSS configuration
#
# algo: Authentication algorithm (xor/milenage)
# db_file: Location of .csv file that stores UEs information.
#
#####################################################################
[hss]
2017-12-15 10:20:57 -08:00
auth_algo = xor
db_file = user_db.csv
#####################################################################
# SP-GW configuration
#
2018-01-19 03:01:02 -08:00
# gtpu_bind_addr: GTP-U bind adress.
#
#####################################################################
2017-11-20 04:30:25 -08:00
[spgw]
gtpu_bind_addr=127.0.1.100
2017-12-17 09:54:26 -08:00
sgi_if_addr=172.16.0.1
####################################################################
# Log configuration
#
# Log levels can be set for individual layers. "all_level" sets log
# level for all layers unless otherwise configured.
2018-01-10 09:04:36 -08:00
# Format: e.g. s1ap_level = info
#
# In the same way, packet hex dumps can be limited for each level.
# "all_hex_limit" sets the hex limit for all layers unless otherwise
# configured.
2018-01-10 09:04:36 -08:00
# Format: e.g. s1ap_hex_limit = 32
#
2018-01-10 09:04:36 -08:00
# Logging layers: s1ap, gtpc, spgw, hss, all
# Logging levels: debug, info, warning, error, none
#
# filename: File path to use for log output. Can be set to stdout
# to print logs to standard output
#####################################################################
[log]
2018-01-10 09:04:36 -08:00
all_level = debug
all_hex_limit = 32
filename = /tmp/epc.log
#s1ap_level = debug
#gtpc_level = debug
#spgw_level = debug
#hss_level = debug