instance-tdd3700-enb-epc-input-schema.json 3.22 KB
Newer Older
1
{
2 3 4 5
  "type": "object",
  "$schema": "http://json-schema.org/draft-04/schema",
  "title": "Input Parameters",
  "properties": {
6 7 8 9 10 11 12 13 14 15 16 17
    "epc_plmn": {
      "default": "00101",
      "title": "Core Network PLMN",
      "description": "Core Network Public Land Mobile Network",
      "type": "string"
    },
    "external_enb_gnb": {
      "default": false,
      "title": "External eNB / gNB",
      "description": "Set to true if external eNB / gNB will need to connect to this core network.",
      "type": "boolean"
    },
18 19 20 21 22 23
    "iperf3": {
      "default": false,
      "title": "iperf3 UDP server",
      "description": "Activate iperf3 UDP server",
      "type": "boolean"
    },
24 25 26 27
    "tx_gain": {
      "title": "Tx gain",
      "description": "Tx gain (in dB)",
      "type": "number",
28
      "default": 78
29 30 31 32 33
    },
    "rx_gain": {
      "title": "Rx gain",
      "description": "Rx gain (in dB)",
      "type": "number",
34
      "default": 40
35 36 37 38 39 40 41 42 43 44 45 46
    },
    "dl_earfcn": {
      "title": "DL EARFCN",
      "description": "Downlink E-UTRA Absolute Radio Frequency Channel Number of the cell",
      "type": "number",
      "default": 44590
    },
    "n_rb_dl": {
      "title": "DL RB",
      "description": "number of DL resource blocks",
      "type": "number",
      "default": 100
47
    },
48 49 50
    "mme_list": {
      "title": "MME list",
      "description": "Optionnal. List of MME to which the gNodeB is connected",
51
      "patternProperties": {
52 53 54 55 56 57 58 59 60 61 62 63 64 65
        ".*": {
          "properties": {
            "mme_addr": {
              "title": "MME Address",
              "description": "IP address (and optional port) of S1AP SCTP connection to the MME. The default port is 36412.",
              "type": "string"
            }
          },
          "type": "object"
        }
      },
      "type": "object",
      "default": {}
    },
66 67 68 69 70
    "enb_id": {
      "title": "eNB ID",
      "description": "eNB ID",
      "type": "string",
      "default": "0x1A2D0"
71
    },
72 73 74 75 76 77
    "pci": {
      "title": "Physical Cell ID",
      "description": "Physical Cell ID",
      "type": "number",
      "default": 1
    },
78 79 80
    "plmn_list": {
      "title": "PLMN list",
      "description": "List of PLMNs broadcasted by the eNodeB, at most 6 (default: 00101)",
81
      "patternProperties": {
82 83 84 85
        ".*": {
          "properties": {
            "plmn": {
              "default": "00101",
86 87
              "title": "Public Land Mobile Network",
              "description": "Public Land Mobile Network",
88 89 90 91
              "type": "string"
            },
            "attach_without_pdn": {
              "default": false,
92 93
              "title": "Attach Without PDN",
              "description": "Optional boolean. Indicates if PLMN supports attach without PDN connectivity.",
94 95 96 97
              "type": "boolean"
            },
            "reserved": {
              "default": false,
98 99
              "title": "Reserved",
              "description": "True if the cell is reserved for operator use.",
100 101 102 103 104 105 106 107
              "type": "boolean"
            }
          },
          "type": "object"
        }
      },
      "type": "object",
      "default": {}
108 109 110 111 112 113
    },
    "use_ipv4": {
      "default": false,
      "title": "Use IPv4",
      "description": "Set to true to use IPv4 for AMF / MME addresses",
      "type": "boolean"
114
    }
115
  }
116
}