Skip to content

Commit c98dc76

Browse files
committed
make xput settings default
1 parent a9f223f commit c98dc76

File tree

3 files changed

+19
-355
lines changed

3 files changed

+19
-355
lines changed

roles/core/templates/sdcore-5g-values.yaml

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -245,9 +245,9 @@ omec-sub-provision:
245245
mtu: 1460 # Value is sent to UE when PDU Session Established
246246
ue-ip-pool: "172.250.1.0/16" # IP address pool for subscribers
247247
ue-dnn-qos:
248-
dnn-mbr-downlink: 200000000 # UE level downlink QoS
249-
dnn-mbr-uplink: 20000000 # UE level uplink QoS
250-
bitrate-unit: bps # Unit for above QoS rates
248+
dnn-mbr-downlink: 500 # UE level downlink QoS (Maximum bit rate per UE)
249+
dnn-mbr-uplink: 500 # UE level uplink QoS (Maximum bit rate per UE)
250+
bitrate-unit: Mbps # Unit for above QoS rates
251251
traffic-class: # Default bearer QCI/ARP (not used in 5G)
252252
name: "platinum"
253253
qci: 9
@@ -329,15 +329,22 @@ omec-user-plane:
329329
ip: 192.168.250.3/24
330330
cfgFiles:
331331
upf.jsonc:
332-
mode: af_packet # This mode implies no DPDK
332+
mode: af_packet # This mode implies no DPDK
333333
hwcksum: true
334334
log_level: "trace"
335335
measure_upf: true
336336
measure_flow: true
337-
gtppsc: true # Extension header enabled in 5G.
337+
gtppsc: true # Extension header enabled in 5G.
338338
cpiface:
339339
dnn: "internet" # Must match Slice dnn
340340
hostname: "upf"
341341
#http_port: "8080"
342342
enable_ue_ip_alloc: false # If true, UPF allocates address from following pool
343343
ue_ip_pool: "172.250.0.0/16" # IP pool used UEs if enable_ue_ip_alloc=true
344+
slice_rate_limit_config: # Slice-level rate limiting (also controlled by ROC)
345+
# Uplink
346+
n6_bps: 10000000000 # 10Gbps
347+
n6_burst_bytes: 12500000 # 10ms * 10Gbps
348+
# Downlink
349+
n3_bps: 10000000000 # 10Gbps
350+
n3_burst_bytes: 12500000 # 10ms * 10Gbps

roles/core/templates/sdcore-5g-xput-values.yaml

Lines changed: 0 additions & 350 deletions
This file was deleted.

roles/upf/templates/upf-5g-values.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,10 @@ config:
5151
#http_port: "8080"
5252
enable_ue_ip_alloc: false # If true, UPF allocates address from following pool
5353
ue_ip_pool: {{ upf_ue_ip_pool }} # IP pool used UEs if enable_ue_ip_alloc=true
54+
slice_rate_limit_config: # Slice-level rate limiting (also controlled by ROC)
55+
# Uplink
56+
n6_bps: 10000000000 # 10Gbps
57+
n6_burst_bytes: 12500000 # 10ms * 10Gbps
58+
# Downlink
59+
n3_bps: 10000000000 # 10Gbps
60+
n3_burst_bytes: 12500000 # 10ms * 10Gbps

0 commit comments

Comments
 (0)