blob: 57261e72f5c91575803bff63422917a9bc46b9e2 [file] [log] [blame]
Pau Espin Pedrol0696c602021-03-16 14:25:37 +01001#
2# logger:
3#
4# o Set OGS_LOG_INFO to all domain level
5# - If `level` is omitted, the default level is OGS_LOG_INFO)
6# - If `domain` is omitted, the all domain level is set from 'level'
7# (Nothing is needed)
8#
9# o Set OGS_LOG_ERROR to all domain level
10# - `level` can be set with none, fatal, error, warn, info, debug, trace
11# level: error
12#
13# o Set OGS_LOG_DEBUG to mme/emm domain level
14# level: debug
15# domain: mme,emm
16#
17# o Set OGS_LOG_TRACE to all domain level
18# level: trace
19# domain: core,s1ap,nas,fd,gtp,mme,emm,esm,event,tlv,mem,sock
20#
21logger:
22 file: ${mme.log_filename}
Andre Puschmannfaa8e7c2021-05-10 20:50:30 +020023 level: info
Pau Espin Pedrol0696c602021-03-16 14:25:37 +010024
25mme:
26 freeDiameter: ${mme.diameter_filename}
27 s1ap:
28 - addr: ${epc.run_addr}
29 gtpc:
30 - addr: ${epc.run_addr}
31 gummei:
32 plmn_id:
33 mcc: ${epc.mcc}
34 mnc: ${epc.mnc}
35 mme_gid: 2
36 mme_code: 1
37 tai:
38 plmn_id:
39 mcc: ${epc.mcc}
40 mnc: ${epc.mnc}
41 tac: 7
42 security:
43 integrity_order : [ EIA2, EIA1, EIA0 ]
44 ciphering_order : [ EEA0, EEA1, EEA2 ]
45 network_name:
46 full: Open5GS
47 mme_name: open5gs-mme0
48
49#
50# sgwc:
51#
52# <GTP-C Client>
53#
54# o Specify SGW addresses the GTP-C must connect to
55#
56# o One SGW is defined.
57# If prefer_ipv4 is not true, [fe80::2%lo] is selected.
58# gtpc:
59# addr:
60# - 127.0.0.3
61# - fe80::2%lo
62#
63# o Two SGW are defined. MME selects SGW with round-robin manner per UE
64# gtpc:
65# - addr: 127.0.0.3
66# - addr: fe80::2%lo
67#
68# o Three SGW are defined. MME selects SGW with round-robin manner per UE
69# gtpc:
70# - addr
71# - 127.0.0.3
72# - fe80::2%lo
73# - addr
74# - 127.0.0.22
75# - fe80::12%lo
76# - name: sgw3.open5gs.org
77#
78# <SGW Selection Mode>
79#
80# o Round-Robin
81#
82# gtpc:
83# addr: 127.0.0.3
84# addr: 127.0.2.2
85# addr: 127.0.4.2
86#
87# o SGW selection by eNodeB TAC
88# (either single TAC or multiple TACs, DECIMAL representation)
89#
90# gtpc:
91# - addr: 127.0.0.3
92# tac: 26000
93# - addr: 127.0.2.2
94# tac: [25000, 27000, 28000]
95#
96# o SGW selection by e_cell_id(28bit)
97# (either single or multiple e_cell_id, HEX representation)
98#
99# gtpc:
100# - addr: 127.0.0.3
101# e_cell_id: abcde01
102# - addr: 127.0.2.2
103# e_cell_id: [12345, a9413, 98765]
104#
105sgwc:
106 gtpc:
Pau Espin Pedrold7760592021-03-31 13:35:04 +0200107 - addr: ${epc.addr_sgwc}
Pau Espin Pedrol0696c602021-03-16 14:25:37 +0100108
109#
110# smf:
111#
112# <GTP-C Client>
113#
114# o By default, the SMF uses the first SMF node.
115# - To use a different APN for each SMF, specify gtpc.apn as the APN name.
116# - If the HSS uses WebUI to set the SMF IP for each UE,
117# you can use a specific SMF node for each UE.
118#
119# o Two SMF are defined. 127.0.0.4:2123 is used.
120# [fe80::3%lo]:2123 is ignored.
121# gtpc:
122# - addr: 127.0.0.4
123# - addr: fe80::3%lo
124#
125# o One SMF is defined. if prefer_ipv4 is not true,
126# [fe80::3%lo] is selected.
127# gtpc:
128# - addr:
129# - 127.0.0.4
130# - fe80::3%lo
131#
132# o Two SMF are defined with a different APN.
133# - Note that if SMF IP for UE is configured in HSS,
134# the following configurion for this UE is ignored.
135# gtpc:
136# - addr: 127.0.0.4
137# apn: internet
138# - addr: 127.0.0.5
139# apn: volte
140#
141# o If APN is omitted, the default APN uses the first SMF node.
142# gtpc:
143# - addr: 127.0.0.4
144# - addr: 127.0.0.5
145# apn: volte
146smf:
147 gtpc:
Pau Espin Pedrold7760592021-03-31 13:35:04 +0200148 - addr: ${epc.addr_smf}
Pau Espin Pedrol0696c602021-03-16 14:25:37 +0100149
150#
151# parameter:
152#
153# o Number of output streams per SCTP associations.
154# sctp_streams: 30
155#
156# o Disable use of IPv4 addresses (only IPv6)
157# no_ipv4: true
158#
159# o Disable use of IPv6 addresses (only IPv4)
160# no_ipv6: true
161#
162# o Prefer IPv4 instead of IPv6 for estabishing new GTP connections.
163# prefer_ipv4: true
164#
165# o Enable Multicast traffic to the UE
166# multicast: true
167#
168# o Disable Stateless Address Autoconfiguration for IPv6
169# no_slaac: true
170#
171# o Use OAI UE
172# - Remove HashMME in Security-mode command message
173# - Use the length 1 of EPS network feature support in Attach accept message
174# use_openair: true
175#
176parameter:
177
178#
179# max:
180#
181# o Maximum Number of UE per AMF/MME
182# ue: 1024
183# o Maximum Number of gNB/eNB per AMF/MME
184# gnb: 32
185#
186max:
187
188#
189# pool:
190#
191# o The default memory pool size was set assuming 1024 UEs.
192# To connect more UEs, you need to increase the size further.
193#
194# - Pool-size 128 => 65536 Number
195# - Pool-size 256 => 16384 Number
196# - Pool-size 512 => 4096 Number
197# - Pool-size 1024 => 1024 Number
198# - Pool-size 2048 => 512 Number
199# - Pool-size 8192 => 128 Number
200# - Pool-size 1024*1024 => 8 Number
201#
202# 128: 65536
203# 256: 16384
204# 512: 4096
205# 1024: 1024
206# 2048: 512
207# 8192: 128
208# big: 8
209#
210pool:
211
212#
213# sctp:
214#
215# o heartbit_interval : 5000 (5secs)
216# o rto_initial : 3000 (3secs)
217# o rto_min : 1000 (1sec)
218# o rto_max : 5000 (5secs)
219# o max_num_of_ostreams : 30
220# o max_num_of_istreams : 65535
221# o max_attempts : 4
222# o max_initial_timeout : 8000(8secs)
223# o usrsctp_udp_port : 9899
224#
225sctp:
226
227#
228# time:
229#
230# o Message Wait Duration (Default : 10,000 ms = 10 seconds)
231#
232# o Message Wait Duration (3000 ms)
233# message:
234# duration: 3000
235#
236# o Handover Wait Duration (Default : 300 ms)
237# Time to wait for MME to send UEContextReleaseCommand
238# to the source eNB after receiving HandoverNotify
239#
240# o Handover Wait Duration (500ms)
241# handover:
242# duration: 500
243time: