blob: 8d2bd1ae4e1750e2917ee8a273d48187cf8d5cab [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:
55 - addr: ${epc.run_addr}
56 port: 2125
57 pfcp:
58 - addr: ${epc.run_addr}
59 port: 8805
60
61#
62# sgwu:
63#
64# <PFCP Client>>
65#
66# o PFCP Client(127.0.0.6:8805)
67#
68# pfcp:
69# addr: 127.0.0.6
70#
71# <SGWU_SELECTION_MODE - EPC only>
72#
73# o Round-Robin
74# (note that round robin can be disabled for a particular node
75# by setting flag 'rr' to 0)
76#
77# sgwu:
78# pfcp:
79# - addr: 127.0.0.6
80# - addr: 127.0.0.12
81# rr: 0
82# - addr: 127.0.0.18
83#
84# o SGWU selection by eNodeB TAC
85# (either single TAC or multiple TACs, DECIMAL representation)
86#
87# sgwu:
88# pfcp:
89# - addr: 127.0.0.6
90# tac: 1
91# - addr: 127.0.0.12
92# tac: [3,5,8]
93#
94# o SGWU selection by UE's APN (either single APN or multiple APNs)
95#
96# sgwu:
97# pfcp:
98# - addr: 127.0.0.6
99# apn: ims
100# - addr: 127.0.0.12
101# apn: [internet, web]
102#
103# o SGWU selection by CellID(e_cell_id: 28bit)
104# (either single e_cell_id or multiple e_cell_id, HEX representation)
105#
106# sgwu:
107# pfcp:
108# - addr: 127.0.0.6
109# e_cell_id: 463
110# - addr: 127.0.0.12
111# e_cell_id: [123456789, 9413]
112#
113sgwu:
114 pfcp:
115 - addr: ${epc.run_addr}
116 port: 8806
117
118#
119# parameter:
120#
121# o Number of output streams per SCTP associations.
122# sctp_streams: 30
123#
124# o Disable use of IPv4 addresses (only IPv6)
125# no_ipv4: true
126#
127# o Disable use of IPv6 addresses (only IPv4)
128# no_ipv6: true
129#
130# o Prefer IPv4 instead of IPv6 for estabishing new GTP connections.
131# prefer_ipv4: true
132#
133# o Enable Multicast traffic to the UE
134# multicast: true
135#
136# o Disable Stateless Address Autoconfiguration for IPv6
137# no_slaac: true
138#
139parameter:
140
141#
142# max:
143#
144# o Maximum Number of UE per AMF/MME
145# ue: 1024
146# o Maximum Number of gNB/eNB per AMF/MME
147# gnb: 32
148#
149max:
150
151#
152# pool:
153#
154# o The default memory pool size was set assuming 1024 UEs.
155# To connect more UEs, you need to increase the size further.
156#
157# - Pool-size 128 => 65536 Number
158# - Pool-size 256 => 16384 Number
159# - Pool-size 512 => 4096 Number
160# - Pool-size 1024 => 1024 Number
161# - Pool-size 2048 => 512 Number
162# - Pool-size 8192 => 128 Number
163# - Pool-size 1024*1024 => 8 Number
164#
165# 128: 65536
166# 256: 16384
167# 512: 4096
168# 1024: 1024
169# 2048: 512
170# 8192: 128
171# big: 8
172#
173pool:
174
175#
176# time:
177#
178# o Message Wait Duration (Default : 10,000 ms = 10 seconds)
179#
180# o Message Wait Duration (3000 ms)
181# message:
182# duration: 3000
183time: