Config

Configuration is used to set the ENF (emulated network function) as a specific NF's, and configuration connection information, or specific NF setup configuration.

For example, for GNB to configure a list of GNB's to emulate.

A configuration is a list of specific NF configuration

config:
    - type: nf_type1
      params:
        param1: "value1"
        param2: "value2"
    - type: nf_type2
      params:
        param1: "value1"
        param2: "value2"

Each NF type has its own supported parameters, see NF's section for specific NF parameters

For Example,

config:
    - type: gnb
      params:
        AmfAddress: "192.168.1.227:38412"
        PerfCluster: "192.168.1.178:50052,192.168.1.180:50052"
        DefaultGnbParams: 'NGSetupMessageFormat'
    - type: enb
      params:
        MmeAddress: "192.168.1.227:36412"
        PerfCluster: "192.168.1.178:50052,192.168.1.180:50052"

Last updated

Was this helpful?