open5gs/configs/sample.yaml.in

300 lines
6.7 KiB
YAML
Raw Permalink Normal View History

2020-08-13 00:31:22 +00:00
db_uri: mongodb://localhost/open5gs
logger:
parameter:
2020-08-22 03:33:45 +00:00
# no_nrf: true
# no_scp: true
2020-08-22 03:33:45 +00:00
# no_amf: true
# no_smf: true
# no_upf: true
# no_ausf: true
# no_udm: true
2021-01-01 02:07:08 +00:00
# no_pcf: true
# no_nssf: true
# no_bsf: true
2020-08-22 03:33:45 +00:00
# no_udr: true
# no_mme: true
# no_sgwc: true
# no_sgwu: true
# no_pcrf: true
# no_hss: true
2020-08-13 00:31:22 +00:00
mme:
freeDiameter:
identity: mme.localdomain
realm: localdomain
listen_on: 127.0.0.2
2021-06-21 13:36:38 +00:00
no_fwd: true
2020-08-13 00:31:22 +00:00
load_extension:
- module: @freediameter_extensions_builddir@/dbg_msg_dumps.fdx
conf: 0x8888
- module: @freediameter_extensions_builddir@/dict_rfc5777.fdx
- module: @freediameter_extensions_builddir@/dict_mip6i.fdx
- module: @freediameter_extensions_builddir@/dict_nasreq.fdx
- module: @freediameter_extensions_builddir@/dict_nas_mipv6.fdx
- module: @freediameter_extensions_builddir@/dict_dcca.fdx
2021-10-27 06:23:09 +00:00
- module: @freediameter_extensions_builddir@/dict_dcca_3gpp/dict_dcca_3gpp.fdx
2020-08-13 00:31:22 +00:00
connect:
- identity: hss.localdomain
2020-08-22 03:33:45 +00:00
addr: 127.0.0.8
2020-08-13 00:31:22 +00:00
s1ap:
2020-09-12 16:16:08 +00:00
- addr: 127.0.0.2
2020-08-13 00:31:22 +00:00
gtpc:
2020-09-12 16:16:08 +00:00
- addr: 127.0.0.2
2020-08-22 03:33:45 +00:00
gummei:
2020-08-13 00:31:22 +00:00
plmn_id:
mcc: 999
2020-08-13 00:31:22 +00:00
mnc: 70
mme_gid: 2
mme_code: 1
tai:
plmn_id:
mcc: 999
2020-08-13 00:31:22 +00:00
mnc: 70
tac: 1
security:
2020-09-12 16:16:08 +00:00
integrity_order : [ EIA2, EIA1, EIA0 ]
2020-08-13 00:31:22 +00:00
ciphering_order : [ EEA0, EEA1, EEA2 ]
network_name:
full: Open5GS
sgwc:
gtpc:
2020-09-12 16:16:08 +00:00
- addr: 127.0.0.3
2020-08-13 00:31:22 +00:00
pfcp:
2020-09-12 16:16:08 +00:00
- addr: 127.0.0.3
2020-08-13 00:31:22 +00:00
smf:
sbi:
2020-08-22 03:33:45 +00:00
- addr: 127.0.0.4
2020-08-13 00:31:22 +00:00
port: 7777
2021-03-15 01:01:55 +00:00
pfcp:
- addr: 127.0.0.4
2020-08-13 00:31:22 +00:00
gtpc:
2020-08-22 03:33:45 +00:00
- addr: 127.0.0.4
2020-08-13 00:31:22 +00:00
- addr: ::1
2021-03-15 01:01:55 +00:00
gtpu:
2020-08-22 03:33:45 +00:00
- addr: 127.0.0.4
2021-03-15 01:01:55 +00:00
- addr: ::1
subnet:
2020-08-13 00:31:22 +00:00
- addr: 10.45.0.1/16
- addr: 2001:db8:cafe::1/48
2020-08-13 00:31:22 +00:00
dns:
- 8.8.8.8
- 8.8.4.4
- 2001:4860:4860::8888
- 2001:4860:4860::8844
mtu: 1400
freeDiameter:
identity: smf.localdomain
realm: localdomain
2020-08-22 03:33:45 +00:00
listen_on: 127.0.0.4
2021-06-21 13:36:38 +00:00
no_fwd: true
2020-08-13 00:31:22 +00:00
load_extension:
- module: @freediameter_extensions_builddir@/dbg_msg_dumps.fdx
conf: 0x8888
- module: @freediameter_extensions_builddir@/dict_rfc5777.fdx
- module: @freediameter_extensions_builddir@/dict_mip6i.fdx
- module: @freediameter_extensions_builddir@/dict_nasreq.fdx
- module: @freediameter_extensions_builddir@/dict_nas_mipv6.fdx
- module: @freediameter_extensions_builddir@/dict_dcca.fdx
2021-10-27 06:23:09 +00:00
- module: @freediameter_extensions_builddir@/dict_dcca_3gpp/dict_dcca_3gpp.fdx
2020-08-13 00:31:22 +00:00
connect:
- identity: pcrf.localdomain
2020-08-22 03:33:45 +00:00
addr: 127.0.0.9
#
# <For Indirect Communication with Delegated Discovery>
#
# o (Default) If you do not set Delegated Discovery as shown below,
#
# sbi:
# - addr: 127.0.0.5
# port: 7777
#
# - Use SCP if SCP avaiable. Otherwise NRF is used.
# => App fails if both NRF and SCP are unavailable.
#
# sbi:
# - addr: 127.0.0.5
# port: 7777
# discovery:
# delegated: auto
#
# o To use SCP always => App fails if no SCP available.
# delegated: yes
#
# o Don't use SCP server => App fails if no NRF available.
# delegated: no
#
2020-08-22 03:33:45 +00:00
amf:
sbi:
- addr: 127.0.0.5
port: 7777
ngap:
- addr: 127.0.0.5
guami:
- plmn_id:
mcc: 999
2020-08-22 03:33:45 +00:00
mnc: 70
amf_id:
region: 2
set: 1
tai:
- plmn_id:
mcc: 999
2020-08-22 03:33:45 +00:00
mnc: 70
tac: 1
2020-09-12 16:16:08 +00:00
plmn_support:
2020-08-22 03:33:45 +00:00
- plmn_id:
mcc: 999
2020-08-22 03:33:45 +00:00
mnc: 70
s_nssai:
- sst: 1
security:
2020-09-12 16:16:08 +00:00
integrity_order : [ NIA2, NIA1, NIA0 ]
2020-08-22 03:33:45 +00:00
ciphering_order : [ NEA0, NEA1, NEA2 ]
network_name:
full: Open5GS
amf_name: open5gs-amf0
sgwu:
pfcp:
2020-09-12 16:16:08 +00:00
- addr: 127.0.0.6
2021-03-15 01:01:55 +00:00
gtpu:
- addr: 127.0.0.6
2020-08-22 03:33:45 +00:00
2020-08-13 00:31:22 +00:00
upf:
pfcp:
2020-08-22 03:33:45 +00:00
- addr: 127.0.0.7
2020-08-13 00:31:22 +00:00
gtpu:
2020-09-12 16:16:08 +00:00
- addr: 127.0.0.7
subnet:
2020-08-13 00:31:22 +00:00
- addr: 10.45.0.1/16
- addr: 2001:db8:cafe::1/48
2020-08-13 00:31:22 +00:00
hss:
freeDiameter:
identity: hss.localdomain
realm: localdomain
2020-08-22 03:33:45 +00:00
listen_on: 127.0.0.8
2021-06-21 13:36:38 +00:00
no_fwd: true
2020-08-13 00:31:22 +00:00
load_extension:
- module: @freediameter_extensions_builddir@/dbg_msg_dumps.fdx
conf: 0x8888
- module: @freediameter_extensions_builddir@/dict_rfc5777.fdx
- module: @freediameter_extensions_builddir@/dict_mip6i.fdx
- module: @freediameter_extensions_builddir@/dict_nasreq.fdx
- module: @freediameter_extensions_builddir@/dict_nas_mipv6.fdx
- module: @freediameter_extensions_builddir@/dict_dcca.fdx
2021-10-27 06:23:09 +00:00
- module: @freediameter_extensions_builddir@/dict_dcca_3gpp/dict_dcca_3gpp.fdx
2020-08-13 00:31:22 +00:00
connect:
- identity: mme.localdomain
addr: 127.0.0.2
pcrf:
freeDiameter:
identity: pcrf.localdomain
realm: localdomain
2020-08-22 03:33:45 +00:00
listen_on: 127.0.0.9
2021-06-21 13:36:38 +00:00
no_fwd: true
2020-08-13 00:31:22 +00:00
load_extension:
- module: @freediameter_extensions_builddir@/dbg_msg_dumps.fdx
conf: 0x8888
- module: @freediameter_extensions_builddir@/dict_rfc5777.fdx
- module: @freediameter_extensions_builddir@/dict_mip6i.fdx
- module: @freediameter_extensions_builddir@/dict_nasreq.fdx
- module: @freediameter_extensions_builddir@/dict_nas_mipv6.fdx
- module: @freediameter_extensions_builddir@/dict_dcca.fdx
2021-10-27 06:23:09 +00:00
- module: @freediameter_extensions_builddir@/dict_dcca_3gpp/dict_dcca_3gpp.fdx
2020-08-13 00:31:22 +00:00
connect:
- identity: smf.localdomain
2020-08-22 03:33:45 +00:00
addr: 127.0.0.4
nrf:
sbi:
2020-09-12 16:16:08 +00:00
- addr:
2020-08-22 03:33:45 +00:00
- 127.0.0.10
- ::1
2020-09-12 16:16:08 +00:00
port: 7777
2020-08-22 03:33:45 +00:00
#
# scp:
#
# <SBI Client>>
#
# o SBI Client(http://127.0.1.10:7777)
# sbi:
# addr: 127.0.1.10
# port: 7777
#
# o SBI Client(https://127.0.1.10:443, http://scp.open5gs.org:80)
# sbi:
# - addr: 127.0.1.10
# tls:
# key: scp.key
# pem: scp.pem
# - name: scp.open5gs.org
#
# o SBI Client(http://[fd69:f21d:873c:fb::1]:80)
# If prefer_ipv4 is true, http://127.0.1.10:80 is selected.
#
# sbi:
# addr:
# - 127.0.1.10
# - fd69:f21d:873c:fb::1
#
# o SBI Option (Default)
# - tcp_nodelay : true
# - so_linger.l_onoff : false
#
# sbi:
# addr: 127.0.1.10
# option:
# tcp_nodelay: false
# so_linger:
# l_onoff: true
# l_linger: 10
#
#
scp:
sbi:
- addr: 127.0.1.10
port: 7777
2020-08-22 03:33:45 +00:00
ausf:
sbi:
- addr: 127.0.0.11
port: 7777
udm:
sbi:
- addr: 127.0.0.12
port: 7777
2020-12-11 19:03:20 +00:00
pcf:
2020-08-22 03:33:45 +00:00
sbi:
- addr: 127.0.0.13
port: 7777
2020-12-11 19:03:20 +00:00
nssf:
sbi:
- addr: 127.0.0.14
port: 7777
nsi:
- addr: ::1
port: 7777
s_nssai:
sst: 1
bsf:
sbi:
- addr: 127.0.0.15
port: 7777
2020-12-11 19:03:20 +00:00
udr:
sbi:
- addr: 127.0.0.20
port: 7777