blob: 64316f504cdd9070293b05078dff40f8f3801067 [file] [log] [blame]
Hyunsun Moon2b69b952019-08-19 03:19:03 -05001# Copyright 2019-present Open Networking Foundation
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15# Sample override values for 3-nodes cluster with SR-IOV configured on DP node.
16cassandra:
17 config:
18 cluster_size: 1
19
20config:
21 sriov:
22 resourceList:
23 vfio:
24 pfNames:
25 - eth2
26 netDevice:
27 pfNames:
28 - eth2
29 drivers:
30 - ixgbevf
31 mme:
32 cfgFiles:
33 config.json:
34 mme:
35 mcc:
36 dig1: 7
37 dig2: 3
38 dig3: 2
39 mnc:
40 dig1: 1
41 dig2: 1
42 dig3: 1
43 hss:
44 bootstrap:
45 enabled: true
46 users:
Hyunsun Moon9034b582019-08-30 16:52:22 -050047 - imsi: "732111000000420"
48 msisdn: "1122334455"
49 apn: apn1
50 key: "000102030405060708090a0b0c0d0e0f"
51 opc: "69d5c2eb2e2e624750541d3bbc692ba5"
Hyunsun Moon9034b582019-08-30 16:52:22 -050052 - imsi: "732111000000421"
53 msisdn: "1122334455"
54 apn: apn1
55 key: "000102030405060708090a0b0c0d0e0f"
56 opc: "69d5c2eb2e2e624750541d3bbc692ba5"
Hyunsun Moon9034b582019-08-30 16:52:22 -050057 mmes:
58 - id: 1
59 isdn: "19136246000"
60 unreachability: 1
Hyunsun Moon2b69b952019-08-19 03:19:03 -050061 spgwu:
62 cpComm:
Hyunsun Moon783459e2019-08-29 21:35:36 -050063 addr: 192.168.171.3
Hyunsun Moon2b69b952019-08-19 03:19:03 -050064 port: 30021
65 dpComm:
66 nodePort:
67 enabled: true
68 port: 30020
69 spgwc:
70 cpComm:
71 nodePort:
72 enabled: true
73 port: 30021
74 dpComm:
Hyunsun Moon783459e2019-08-29 21:35:36 -050075 addr: 192.168.170.3
Hyunsun Moon2b69b952019-08-19 03:19:03 -050076 port: 30020
77 cfgFiles:
78 adc_rules.cfg: |
79 [GLOBAL]
80 NUM_ADC_RULES = 5
81
82 [ADC_RULE_1]
83 ADC_TYPE = 1
84 IP = 13.1.1.111
85
86 [ADC_RULE_2]
87 ADC_TYPE = 2
88 IP = 13.1.1.0
89 PREFIX = 24
90
91 [ADC_RULE_3]
92 ADC_TYPE = 1
93 IP = 13.1.1.112
94 PREFIX = 24
95
96 [ADC_RULE_4]
97 ADC_TYPE = 0
98 DOMAIN = www.example.gov
99
100 [ADC_RULE_5]
101 ADC_TYPE = 0
102 DOMAIN = www.drop_example.com
103 meter_profile.cfg: |
104 [GLOBAL]
105 NUM_OF_IDX = 7
106
107 [ENTRY_1]
108 ;Committed Information Rate (CIR). Measured in bytes per second.
109 ;MBR is mapped into CIR, convert MBR from bits to Bytes and set CIR.
110 CIR = 2342400
111 ;Committed Burst Size unit = Bytes
112 CBS = 5856
113 ;Excess Burst Size unit = Bytes
114 EBS = 11712
115 ;Meter profile index. Refer this index in static_pcc.cfg to set AMBR/MBR
116 MTR_PROFILE_IDX = 3
117
118 [ENTRY_2]
119 ;1200 = 1756800
120 ;1400 = 2049600
121 ;1600 = 2342400
122 CIR = 2342400
123 CBS = 5856
124 EBS = 11712
125 MTR_PROFILE_IDX = 4
126
127 [ENTRY_3]
128 ; QCI5,QCI7 15.571kbps = 1947 B
129 CIR = 2342400
130 CBS = 5856
131 EBS = 11712
132 MTR_PROFILE_IDX = 5
133
134 [ENTRY_4]
135 ; QCI1, 44kbps = 5500 B
136 CIR = 2342400
137 CBS = 5856
138 EBS = 11712
139 MTR_PROFILE_IDX = 6
140
141 [ENTRY_5]
142 ; QCI9, 31.143kbps = 3893 B
143 CIR = 2342400
144 CBS = 5856
145 EBS = 11712
146 MTR_PROFILE_IDX = 7
147
148 [ENTRY_6]
149 ; 128B, 7pps
150 CIR = 2342400
151 CBS = 512
152 EBS = 1024
153 MTR_PROFILE_IDX = 8
154
155 [ENTRY_7]
156 ; 128B, 2pps
157 CIR = 2342400
158 CBS = 512
159 EBS = 1024
160 MTR_PROFILE_IDX = 9
161
162 pcc_rules.cfg: |
163 [GLOBAL]
164 NUM_PCC_FILTERS = 9
165 ;To config AMBR/MBR values refer meter_profile.cfg. specify only the
166 ;meter profile index to be set here.
167 UL_AMBR_MTR_PROFILE_IDX = 3
168 DL_AMBR_MTR_PROFILE_IDX = 4
169
170 ;default filter - must be first for now (until DP doesn't install any filters)
171 ;associated with default adc rule
172 [PCC_FILTER_1]
173 RULE_NAME = DefaultRule
174 RATING_GROUP = 9
175 SERVICE_ID = 0
176 RULE_STATUS = 0
177 GATE_STATUS = 1
178 SESSION_CONT = 0
179 REPORT_LEVEL = 1
180 CHARGING_MODE = 0
181 METERING_METHOD = 0
182 MUTE_NOTIFY = 0
183 MONITORING_KEY = 0
184 SPONSOR_ID = 0
185 REDIRECT_INFO = 0
186 PRECEDENCE = 254
187 DROP_PKT_COUNT = 0
188 ;Specify the meter profile index from meter_profile.cfg
189 UL_MBR_MTR_PROFILE_IDX = 7
190 DL_MBR_MTR_PROFILE_IDX = 7
191 ;List of ADC filter indices
192 SDF_FILTER_IDX = 99998
193
194 [PCC_FILTER_2]
195 RULE_NAME = sdf_rule_1
196 RATING_GROUP = 5
197 SERVICE_ID = 0
198 RULE_STATUS = 0
199 GATE_STATUS = 1
200 SESSION_CONT = 0
201 REPORT_LEVEL = 2
202 CHARGING_MODE = 0
203 METERING_METHOD = 0
204 MUTE_NOTIFY = 0
205 MONITORING_KEY = 0
206 SPONSOR_ID = 0
207 REDIRECT_INFO = 0
208 PRECEDENCE = 1
209 DROP_PKT_COUNT = 0
210 UL_MBR_MTR_PROFILE_IDX = 5
211 DL_MBR_MTR_PROFILE_IDX = 5
212 ;List of SDF filter indices
213 SDF_FILTER_IDX = 1
214
215 [PCC_FILTER_3]
216 RULE_NAME = sdf_rule_2
217 RATING_GROUP = 1
218 SERVICE_ID = 0
219 RULE_STATUS = 0
220 GATE_STATUS = 1
221 SESSION_CONT = 0
222 REPORT_LEVEL = 3
223 CHARGING_MODE = 0
224 METERING_METHOD = 0
225 MUTE_NOTIFY = 0
226 MONITORING_KEY = 0
227 SPONSOR_ID = 0
228 REDIRECT_INFO = 0
229 PRECEDENCE = 18
230 DROP_PKT_COUNT = 0
231 UL_MBR_MTR_PROFILE_IDX = 6
232 DL_MBR_MTR_PROFILE_IDX = 6
233 ;List of SDF filter indices
234 SDF_FILTER_IDX = 2
235
236 [PCC_FILTER_4]
237 RULE_NAME = adc_rule_1
238 RATING_GROUP = Zero-Rate
239 SERVICE_ID = Internet
240 RULE_STATUS = 0
241 GATE_STATUS = 1
242 SESSION_CONT = 0
243 REPORT_LEVEL = 8
244 CHARGING_MODE = 0
245 METERING_METHOD = 0
246 MUTE_NOTIFY = 0
247 MONITORING_KEY = 0
248 REDIRECT_INFO = 0
249 SPONSOR_ID = Example
250 PRECEDENCE = 15
251 DROP_PKT_COUNT = 0
252 UL_MBR_MTR_PROFILE_IDX = 7
253 DL_MBR_MTR_PROFILE_IDX = 7
254 ;List of SDF filter indices
255 ADC_FILTER_IDX = 1
256
257 [PCC_FILTER_5]
258 RULE_NAME = adc_rule_2
259 RATING_GROUP = 0
260 SERVICE_ID = CIPA
261 RULE_STATUS = 0
262 GATE_STATUS = 1
263 SESSION_CONT = 0
264 REPORT_LEVEL = 9
265 CHARGING_MODE = 0
266 METERING_METHOD = 0
267 MUTE_NOTIFY = 0
268 MONITORING_KEY = 0
269 SPONSOR_ID = Example
270 REDIRECT_INFO = 0
271 SPONSOR_ID = Example
272 REDIRECT_INFO = 0
273 PRECEDENCE = 4
274 DROP_PKT_COUNT = 0
275 UL_MBR_MTR_PROFILE_IDX = 0
276 DL_MBR_MTR_PROFILE_IDX = 0
277 ;List of SDF filter indices
278 ADC_FILTER_IDX = 2
279
280 [PCC_FILTER_6]
281 RULE_NAME = sdf_rule_3
282 RATING_GROUP = 7
283 SERVICE_ID = 0
284 RULE_STATUS = 0
285 GATE_STATUS = 1
286 SESSION_CONT = 0
287 REPORT_LEVEL = 4
288 CHARGING_MODE = 0
289 METERING_METHOD = 0
290 MUTE_NOTIFY = 0
291 MONITORING_KEY = 0
292 SPONSOR_ID = 0
293 REDIRECT_INFO = 0
294 PRECEDENCE = 17
295 DROP_PKT_COUNT = 0
296 UL_MBR_MTR_PROFILE_IDX = 5
297 DL_MBR_MTR_PROFILE_IDX = 5
298 ;List of SDF filter indices
299 SDF_FILTER_IDX = 3
300
301 [PCC_FILTER_7]
302 RULE_NAME = adc_rule_3
303 RATING_GROUP = Zero-Rate
304 SERVICE_ID = Internet
305 RULE_STATUS = 0
306 GATE_STATUS = 1
307 SESSION_CONT = 0
308 REPORT_LEVEL = 5
309 CHARGING_MODE = 0
310 METERING_METHOD = 0
311 MUTE_NOTIFY = 0
312 MONITORING_KEY = 0
313 SPONSOR_ID = Example
314 REDIRECT_INFO = 0
315 PRECEDENCE = 210
316 DROP_PKT_COUNT = 0
317 UL_MBR_MTR_PROFILE_IDX = 7
318 DL_MBR_MTR_PROFILE_IDX = 7
319 ;List of SDF filter indices
320 ADC_FILTER_IDX = 4
321
322 [PCC_FILTER_8]
323 RULE_NAME = adc_rule_4
324 RATING_GROUP = Zero-Rate
325 SERVICE_ID = Management
326 RULE_STATUS = 0
327 GATE_STATUS = 1
328 SESSION_CONT = 0
329 REPORT_LEVEL = 6
330 CHARGING_MODE = 0
331 METERING_METHOD = 0
332 MUTE_NOTIFY = 0
333 MONITORING_KEY = 0
334 SPONSOR_ID = Example
335 REDIRECT_INFO = 0
336 PRECEDENCE = 200
337 DROP_PKT_COUNT = 0
338 UL_MBR_MTR_PROFILE_IDX = 7
339 DL_MBR_MTR_PROFILE_IDX = 7
340 ;List of SDF filter indices
341 ADC_FILTER_IDX = 12
342
343 [PCC_FILTER_9]
344 RULE_NAME = adc_rule_5
345 RATING_GROUP = Zero-Rate
346 SERVICE_ID = Provisioning
347 RULE_STATUS = 0
348 GATE_STATUS = 1
349 SESSION_CONT = 0
350 REPORT_LEVEL = 7
351 CHARGING_MODE = 0
352 METERING_METHOD = 0
353 MUTE_NOTIFY = 0
354 MONITORING_KEY = 0
355 SPONSOR_ID = Example
356 REDIRECT_INFO = 0
357 PRECEDENCE = 220
358 DROP_PKT_COUNT = 0
359 UL_MBR_MTR_PROFILE_IDX = 7
360 DL_MBR_MTR_PROFILE_IDX = 7
361 ;List of SDF filter indices
362 ADC_FILTER_IDX = 3
363 sdf_rules.cfg: |
364 [GLOBAL]
365 NUM_SDF_FILTERS = 4
366
367 [SDF_FILTER_1]
368 DIRECTION = downlink_only
369 IPV4_REMOTE = 13.2.1.113
370 IPV4_REMOTE_MASK = 255.255.255.0
371 PROTOCOL = 17
372 LOCAL_LOW_LIMIT_PORT = 0
373 LOCAL_HIGH_LIMIT_PORT = 65535
374 REMOTE_LOW_LIMIT_PORT = 0
375 REMOTE_HIGH_LIMIT_PORT = 65535
376
377 [SDF_FILTER_2]
378 DIRECTION = uplink_only
379 IPV4_LOCAL = 16.255.255.0
380 IPV4_LOCAL_MASK = 255.255.255.0
381 PROTOCOL = 17
382 LOCAL_LOW_LIMIT_PORT = 0
383 LOCAL_HIGH_LIMIT_PORT = 65535
384 REMOTE_LOW_LIMIT_PORT = 0
385 REMOTE_HIGH_LIMIT_PORT = 65535
386
387 [SDF_FILTER_3]
388 DIRECTION = downlink_only
389 IPV4_REMOTE = 130.10.0.0
390 IPV4_REMOTE_MASK = 255.255.0.0
391 PROTOCOL = 17
392 REMOTE_LOW_LIMIT_PORT = 5060
393 REMOTE_HIGH_LIMIT_PORT = 5060
394
395 [SDF_FILTER_4]
396 DIRECTION = uplink_only
397 IPV4_REMOTE = 103.1.0.0
398 IPV4_REMOTE_MASK = 255.255.0.0
399 PROTOCOL = 17
400 LOCAL_LOW_LIMIT_PORT = 17000
401 LOCAL_HIGH_LIMIT_PORT = 17010
402
403nodeSelectors:
404 enabled: true
Hyunsun Moon783459e2019-08-29 21:35:36 -0500405
406# cord-platform values
407etcd-operator:
408 enabled: false
409logging:
410 enabled: false
411nem-monitoring:
412 enabled: true
413
414# comac-platform values
415mcord-setup:
416 enabled: false
417etcd-cluster:
418 enabled: false
419
420# CDN local values
421remote_streaming:
422 antmedia_ip: 192.168.171.3
423 video_quality: 360
424stream_name: 360
425
426# CDN remote values
427remote_ip: 192.168.171.3