Andy Bavier | ebf479c | 2021-09-08 15:47:58 -0700 | [diff] [blame] | 1 | # Copyright 2019-present Open Networking Foundation |
| 2 | # |
| 3 | # SPDX-License-Identifier: LicenseRef-ONF-Member-Only-1.0 |
| 4 | |
| 5 | resources: |
| 6 | enabled: false |
Andy Bavier | 0a055a5 | 2022-01-07 10:46:17 -0700 | [diff] [blame] | 7 | |
| 8 | config: |
| 9 | gnbsim: |
| 10 | yamlCfgFiles: |
| 11 | gnb.conf: | |
| 12 | info: |
| 13 | version: 1.0.0 |
| 14 | description: gNodeB sim initial configuration |
| 15 | configuration: |
| 16 | gnbs: # pool of gNodeBs |
| 17 | gnb1: |
| 18 | n2IpAddr: # gNB N2 interface IP address used to connect to AMF |
| 19 | n2Port: 9487 # gNB N2 Port used to connect to AMF |
| 20 | n3IpAddr: 192.168.251.5 # gNB N3 interface IP address used to connect to UPF |
| 21 | n3Port: 2152 # gNB N3 Port used to connect to UPF |
| 22 | name: gnb1 # gNB name that uniquely identify a gNB within application |
| 23 | globalRanId: |
| 24 | plmnId: |
| 25 | mcc: 208 # Mobile Country Code (3 digits string, digit: 0~9) |
| 26 | mnc: 93 # Mobile Network Code (2 or 3 digits string, digit: 0~9) |
| 27 | gNbId: |
| 28 | bitLength: 24 |
| 29 | gNBValue: 000102 # gNB identifier (3 bytes hex string, range: 000000~FFFFFF) |
| 30 | supportedTaList: |
| 31 | - tac: 000001 # Tracking Area Code (3 bytes hex string, range: 000000~FFFFFF) |
| 32 | broadcastPlmnList: |
| 33 | - plmnId: |
| 34 | mcc: 208 |
| 35 | mnc: 93 |
| 36 | taiSliceSupportList: |
| 37 | - sst: 1 # Slice/Service Type (uinteger, range: 0~255) |
| 38 | sd: 010203 # Slice Differentiator (3 bytes hex string, range: 000000~FFFFFF) |
| 39 | defaultAmf: |
| 40 | hostName: amf # Host name of AMF |
| 41 | ipAddr: # AMF IP address |
| 42 | port: 38412 # AMF port |
| 43 | |
| 44 | profiles: # profile information |
| 45 | - profileType: register # profile type |
| 46 | profileName: profile1 # uniqely identifies a profile within application |
| 47 | enable: false # Set true to execute the profile, false otherwise. |
| 48 | gnbName: gnb1 # gNB to be used for this profile |
| 49 | startImsi: 208930100007487 #First IMSI. Subsequent values will be used if ueCount is mo re than 1 |
| 50 | ueCount: 5 # Number of UEs for for which the profile will be executed |
| 51 | plmnId: # Public Land Mobile Network ID, <PLMN ID> = <MCC><MNC> |
| 52 | mcc: 208 # Mobile Country Code (3 digits string, digit: 0~9) |
| 53 | mnc: 93 # Mobile Network Code (2 or 3 digits string, digit: 0~9) |
| 54 | - profileType: pdusessest |
| 55 | profileName: profile2 |
| 56 | enable: true |
| 57 | gnbName: gnb1 |
| 58 | startImsi: 208930100007492 |
| 59 | ueCount: 5 |
| 60 | plmnId: |
| 61 | mcc: 208 |
| 62 | mnc: 93 |
| 63 | dataPktCount: 5 # Number of UL user data packets to be transmitted. Common for all UEs |
| 64 | - profileType: anrelease |
| 65 | profileName: profile3 |
| 66 | enable: false |
| 67 | gnbName: gnb1 |
| 68 | startImsi: 208930100007497 |
| 69 | ueCount: 5 |
| 70 | plmnId: |
| 71 | mcc: 208 |
| 72 | mnc: 93 |
| 73 | - profileType: deregister |
| 74 | profileName: profile4 |
| 75 | enable: false |
| 76 | gnbName: gnb1 |
| 77 | startImsi: 208930100007497 |
| 78 | ueCount: 5 |
| 79 | plmnId: |
| 80 | mcc: 208 |
| 81 | mnc: 93 |
| 82 | logger: |
| 83 | logLevel: info # how detailed the log will be, values: trace, debug, info, warn, error, fatal, panic |