blob: a1db7ed3718d5952ea6042f0b314b7ad5b79d8cd [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,pfcp,gtp,sgwc,event,tlv,mem,sock
20#
21logger:
22 file: ${sgwc.log_filename}
23 level: debug
24
25#
26# sgwc:
27#
28# <GTP-C Server>
29#
30# o GTP-C Server(127.0.0.3:2123, [fe80::2%lo]:2123)
31# gtpc:
32# addr:
33# - 127.0.0.3
34# - fe80::2%lo
35#
36# o On SGW, Same Configuration(127.0.0.3:2123,
37# [fe80::2%lo]:2123) as below.
38# gtpc:
39# - addr: 127.0.0.3
40# - addr: fe80::2%lo
41#
42# <PFCP Server>
43#
44# o PFCP Server(127.0.0.3:8805, ::1:8805)
45# pfcp:
46# - addr: 127.0.0.3
47# - addr: ::1
48#
49# o PFCP-U Server(127.0.0.1:2152, [::1]:2152)
50# pfcp:
51# name: localhost
52#
53sgwc:
54 gtpc:
Pau Espin Pedrold7760592021-03-31 13:35:04 +020055 - addr: ${epc.addr_sgwc}
Pau Espin Pedrol0696c602021-03-16 14:25:37 +010056 pfcp:
Pau Espin Pedrold7760592021-03-31 13:35:04 +020057 - addr: ${epc.addr_sgwc}
Pau Espin Pedrol0696c602021-03-16 14:25:37 +010058
59#
60# sgwu:
61#
62# <PFCP Client>>
63#
64# o PFCP Client(127.0.0.6:8805)
65#
66# pfcp:
67# addr: 127.0.0.6
68#
69# <SGWU_SELECTION_MODE - EPC only>
70#
71# o Round-Robin
72# (note that round robin can be disabled for a particular node
73# by setting flag 'rr' to 0)
74#
75# sgwu:
76# pfcp:
77# - addr: 127.0.0.6
78# - addr: 127.0.0.12
79# rr: 0
80# - addr: 127.0.0.18
81#
82# o SGWU selection by eNodeB TAC
83# (either single TAC or multiple TACs, DECIMAL representation)
84#
85# sgwu:
86# pfcp:
87# - addr: 127.0.0.6
88# tac: 1
89# - addr: 127.0.0.12
90# tac: [3,5,8]
91#
92# o SGWU selection by UE's APN (either single APN or multiple APNs)
93#
94# sgwu:
95# pfcp:
96# - addr: 127.0.0.6
97# apn: ims
98# - addr: 127.0.0.12
99# apn: [internet, web]
100#
101# o SGWU selection by CellID(e_cell_id: 28bit)
102# (either single e_cell_id or multiple e_cell_id, HEX representation)
103#
104# sgwu:
105# pfcp:
106# - addr: 127.0.0.6
107# e_cell_id: 463
108# - addr: 127.0.0.12
109# e_cell_id: [123456789, 9413]
110#
111sgwu:
112 pfcp:
Pau Espin Pedrold7760592021-03-31 13:35:04 +0200113 - addr: ${epc.addr_sgwu}
Pau Espin Pedrol0696c602021-03-16 14:25:37 +0100114
115#
116# parameter:
117#
118# o Number of output streams per SCTP associations.
119# sctp_streams: 30
120#
121# o Disable use of IPv4 addresses (only IPv6)
122# no_ipv4: true
123#
124# o Disable use of IPv6 addresses (only IPv4)
125# no_ipv6: true
126#
127# o Prefer IPv4 instead of IPv6 for estabishing new GTP connections.
128# prefer_ipv4: true
129#
130# o Enable Multicast traffic to the UE
131# multicast: true
132#
133# o Disable Stateless Address Autoconfiguration for IPv6
134# no_slaac: true
135#
136parameter:
137
138#
139# max:
140#
141# o Maximum Number of UE per AMF/MME
142# ue: 1024
143# o Maximum Number of gNB/eNB per AMF/MME
144# gnb: 32
145#
146max:
147
148#
149# pool:
150#
151# o The default memory pool size was set assuming 1024 UEs.
152# To connect more UEs, you need to increase the size further.
153#
154# - Pool-size 128 => 65536 Number
155# - Pool-size 256 => 16384 Number
156# - Pool-size 512 => 4096 Number
157# - Pool-size 1024 => 1024 Number
158# - Pool-size 2048 => 512 Number
159# - Pool-size 8192 => 128 Number
160# - Pool-size 1024*1024 => 8 Number
161#
162# 128: 65536
163# 256: 16384
164# 512: 4096
165# 1024: 1024
166# 2048: 512
167# 8192: 128
168# big: 8
169#
170pool:
171
172#
173# time:
174#
175# o Message Wait Duration (Default : 10,000 ms = 10 seconds)
176#
177# o Message Wait Duration (3000 ms)
178# message:
179# duration: 3000
180time: