feat: 参数配置mib数据smf mocngw

This commit is contained in:
TsMask
2024-03-21 10:16:04 +08:00
parent 04732b877d
commit 08e27bd26b
3 changed files with 219 additions and 4 deletions

View File

@@ -0,0 +1,108 @@
mocngw:
system:
display: "System Config"
list:
- name: "s1apSouthAddr"
type: "string"
value: "192.168.7.163"
access: "read-write"
filter: '0~64'
display: "S1AP South Address"
comment: ""
- name: "s1apNorthAddr"
type: "string"
value: "192.168.8.163"
access: "read-write"
filter: '0~64'
display: "S1AP North Address"
comment: ""
- name: "tac"
type: "int"
value: "1"
access: "read-write"
filter: '0~65535'
display: "TAC"
comment: "0~65535"
- name: "enbId"
type: "int"
value: "24"
access: "read-write"
filter: "0~1048575"
display: "ENB ID"
comment: "0~1048575"
- name: "userPlaneEnabled"
type: "bool"
value: "0"
access: "read-write"
filter: '{"0":"false","1":"true"}'
display: "User Plane Enabled"
comment: ""
- name: "pfcpAddr"
type: "string"
value: "192.168.7.163"
access: "read-write"
filter: '0~64'
display: "PFCP Address"
comment: ""
mme:
display: "MME List"
array:
- name: "index"
type: "int"
value: "0"
access: "read-only"
filter: '0~15'
display: "Index"
comment: "0~15"
- name: "s1apAddr"
type: "string"
value: "192.168.1.161"
access: "read-write"
filter: '0~64'
display: "S1AP Address"
comment: ""
- name: "s1apPort"
type: "int"
value: "36412"
access: "read-write"
filter: "0~65535"
display: "S1AP Port"
comment: "0~65535"
- name: "plmnId"
type: "regex"
value: '46000'
access: "read-write"
filter: '^[0-9]{5,6}$'
display: "PLMN ID"
comment: ""
upgw:
display: "UPGW Config"
list:
- name: "pfcpAddr"
type: "string"
value: "192.168.1.159"
access: "read-write"
filter: '0~64'
display: "PFCP Address"
comment: ""
- name: "pfcpPort"
type: "int"
value: "8805"
access: "read-write"
filter: "0~65535"
display: "PFCP Port"
comment: "0~65535"
- name: "gtpuSouthAddr"
type: "string"
value: "10.10.1.2"
access: "read-write"
filter: '0~64'
display: "GTP-U South Address"
comment: ""
- name: "gtpuNorthAddr"
type: "string"
value: "192.168.7.123"
access: "read-write"
filter: '0~64'
display: "GTP-U North Address"
comment: ""

View File

@@ -72,6 +72,26 @@ smf:
filter: '' filter: ''
display: "UDM URI" display: "UDM URI"
comment: "" comment: ""
- name: "chgEnable5G"
type: "bool"
value: "false"
access: "read-write"
filter: "{\"0\":\"false\", \"1\":\"true\"}"
display: "5G Charing Enable"
- name: "chfPrimaryUri"
type: "string"
value: "http://172.16.5.240:8080"
access: "read-write"
filter: ''
display: "CHF PRIMARY URI"
comment: ""
- name: "chfSecondaryUri"
type: "string"
value: ""
access: "read-write"
filter: ''
display: "CHF SECONDARY URI"
comment: ""
- name: "nrfEnable" - name: "nrfEnable"
type: "bool" type: "bool"
value: "false" value: "false"
@@ -156,7 +176,7 @@ smf:
type: "int" type: "int"
value: "" value: ""
access: "read-only" access: "read-only"
filter: '0~65535' filter: '0~2047'
display: "Index" display: "Index"
comment: "" comment: ""
- name: "id" - name: "id"
@@ -173,6 +193,13 @@ smf:
filter: '7~45' filter: '7~45'
display: "Address" display: "Address"
comment: "e.g. ip:port" comment: "e.g. ip:port"
- name: "ipPoolType"
type: "string"
value: "IPv4v6"
access: "read-write"
filter: ''
display: "Ip Pool Type"
comment: "IPv4,IPv6,IPv4v6"
- name: "ipv4Pools" - name: "ipv4Pools"
type: "string" type: "string"
value: "" value: ""
@@ -229,6 +256,86 @@ smf:
filter: '' filter: ''
display: "Static IPv6 End" display: "Static IPv6 End"
comment: "ipv6 format" comment: "ipv6 format"
- name: "ueDnnIpPool"
display: "UE DNN IP Pool"
array:
- name: "index"
type: "int"
value: ""
access: "read-only"
filter: '0~2047'
display: "Index"
comment: ""
- name: "dnn"
type: "string"
value: ""
access: "read-write"
filter: '1~64'
display: "DNN"
comment: ""
- name: "ipPoolType"
type: "string"
value: "IPv4v6"
access: "read-write"
filter: ''
display: "Ip Pool Type"
comment: "IPv4,IPv6,IPv4v6"
- name: "ipv4Pools"
type: "string"
value: ""
access: "read-write"
filter: '10~256'
display: "IPv4 Pools"
comment: "CIDR format, e.g. 192.168.1.0/24"
- name: "ipv6Pools"
type: "string"
value: ""
access: "read-write"
filter: '5~512'
display: "IPv6 Pools"
comment: "CIDR format, e.g. fe80::20c:29ff:fee4:dab7/50"
- name: "staticIpv4Enable"
type: "bool"
value: ""
access: "read-write"
filter: "{\"0\":\"false\", \"1\":\"true\"}"
display: "Static IPv4 Enable"
comment: ""
- name: "staticIpv4Start"
type: "ipv4"
value: ""
access: "read-write"
filter: ''
display: "Static IPv4 Start"
comment: "ipv4 format"
- name: "staticIpv4End"
type: "ipv4"
value: ""
access: "read-write"
filter: ''
display: "Static IPv4 End"
comment: "ipv4 format"
- name: "staticIpv6Enable"
type: "bool"
value: ""
access: "read-write"
filter: "{\"0\":\"false\", \"1\":\"true\"}"
display: "Static IPv6 Enable"
comment: ""
- name: "staticIpv6Start"
type: "ipv6"
value: ""
access: "read-write"
filter: ''
display: "Static IPv6 Start"
comment: "ipv6 format"
- name: "staticIpv6End"
type: "ipv6"
value: ""
access: "read-write"
filter: ''
display: "Static IPv6 End"
comment: "ipv6 format"
dnnSelectUpf: dnnSelectUpf:
display: "DNN Select UPF" display: "DNN Select UPF"
array: array:

File diff suppressed because one or more lines are too long