From f8535772a200337e19273dc80d0619edf7896017 Mon Sep 17 00:00:00 2001 From: Vivek Kumar Dutta Date: Wed, 21 Jul 2021 09:55:29 +0000 Subject: [PATCH] Added similar input options across tools - Remove sub-process for calling sub scripts - Updated readme - Module test for tools --- .gitlab-ci.yml | 16 + README.md | 313 +- dmtree/json/tr104.json | 955 + dmtree/json/tr135.json | 8307 +++ dmtree/json/tr181.json | 6256 ++- gitlab-ci/shared.sh | 11 + gitlab-ci/tools-test.sh | 78 + test/tools/cwmp-datamodel-1-8.xsd | 1983 + test/tools/tr-104-2-0-2-cwmp-full.xml | 11904 +++++ test/tools/tr-104-2-0-2-usp-full.xml | 11931 +++++ test/tools/tr-135-1-4-1-cwmp-full.xml | 8125 +++ test/tools/tr-135-1-4-1-usp-full.xml | 8064 +++ test/tools/tr-181-2-14-1-cwmp-full.xml | 62106 ++++++++++++++++++++++ test/tools/tr-181-2-14-1-usp-full.xml | 64192 +++++++++++++++++++++++ test/tools/validate_json_plugin.py | 181 + tools/.gitignore | 3 + tools/bbf_common.py | 652 +- tools/convert_dm_json_to_c.py | 1102 + tools/convert_dm_xml_to_json.py | 929 + tools/generate_dm.py | 119 + tools/generate_dm_c.py | 1004 - tools/generate_dm_excel.py | 390 +- tools/generate_dm_json.py | 847 - tools/generate_dm_xml.py | 475 +- tools/tools_input.json | 64 + 25 files changed, 187283 insertions(+), 2724 deletions(-) create mode 100644 dmtree/json/tr135.json create mode 100755 gitlab-ci/tools-test.sh create mode 100644 test/tools/cwmp-datamodel-1-8.xsd create mode 100644 test/tools/tr-104-2-0-2-cwmp-full.xml create mode 100644 test/tools/tr-104-2-0-2-usp-full.xml create mode 100644 test/tools/tr-135-1-4-1-cwmp-full.xml create mode 100644 test/tools/tr-135-1-4-1-usp-full.xml create mode 100644 test/tools/tr-181-2-14-1-cwmp-full.xml create mode 100644 test/tools/tr-181-2-14-1-usp-full.xml create mode 100755 test/tools/validate_json_plugin.py create mode 100644 tools/.gitignore create mode 100755 tools/convert_dm_json_to_c.py create mode 100755 tools/convert_dm_xml_to_json.py create mode 100755 tools/generate_dm.py delete mode 100755 tools/generate_dm_c.py delete mode 100755 tools/generate_dm_json.py create mode 100644 tools/tools_input.json diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index dab8c3bd..43615429 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,6 +7,7 @@ stages: - unit_test - functional_test - functional_api_test + - tools_test - uspd variables: @@ -54,6 +55,21 @@ run_functional_api_test: - timestamp.log - functional-api-test-coverage.xml +run_tools_test: + stage: tools_test + image: iopsys/code-analysis:latest + allow_failure: false + script: + - "./gitlab-ci/tools-test.sh" + + artifacts: + when: always + paths: + - timestamp.log + - tools/out/datamodel_default.xml + - tools/out/datamodel_hdm.xml + - tools/out/datamodel.xls + run_uspd: stage: uspd variables: diff --git a/README.md b/README.md index 74415f6e..b57fb0f0 100644 --- a/README.md +++ b/README.md @@ -50,19 +50,19 @@ As mentioned above, all Data Models are stored in the **'dmtree'** folder. In or `bbfdm` library offers a tool to generate templates of the source code from json files placed under **'dmtree/json'**. So, any developer can fill these json files ([tr181](/dmtree/json/tr181.json) or [tr104](/dmtree/json/tr104.json)) with mapping field according to UCI, UBUS or CLI commands then generate the source code in C. ```bash -$ python generate_dm_c.py -Usage: generate_dm_c.py [Object path] +$ ./convert_dm_json_to_c.py +Usage: convert_dm_json_to_c.py [Object path] data model name: The data model(s) to be used, for ex: tr181 or tr181,tr104 Examples: - - generate_dm_c.py tr181 + - convert_dm_json_to_c.py tr181 ==> Generate the C code of tr181 data model in datamodel/ folder - - generate_dm_c.py tr104 + - convert_dm_json_to_c.py tr104 ==> Generate the C code of tr104 data model in datamodel/ folder - - generate_dm_c.py tr181,tr104 + - convert_dm_json_to_c.py tr181,tr104 ==> Generate the C code of tr181 and tr104 data model in datamodel/ folder - - generate_dm_c.py tr181 Device.DeviceInfo. + - convert_dm_json_to_c.py tr181 Device.DeviceInfo. ==> Generate the C code of Device.DeviceInfo object in datamodel/ folder - - generate_dm_c.py tr104 Device.Services.VoiceService.{i}.Capabilities. + - convert_dm_json_to_c.py tr104 Device.Services.VoiceService.{i}.Capabilities. ==> Generate the C code of Device.Services.VoiceService.{i}.Capabilities. object in datamodel/ folder ``` @@ -292,7 +292,7 @@ Example: [Custom Vendor Object Dropbear](https://dev.iopsys.eu/iopsys/bbf/-/blob #### 4. link vendor tables to the main tree -To register the new vendor tables, you need to link them in the main three tables: +To register the new vendor tables, you need to link them in the main three tables: - **tVendorExtension** @@ -324,7 +324,7 @@ BBF_VENDOR_PREFIX="X_TEST_COM_" > Note1: The `libbbfdm` vendor list can support multi-vendor with comma seperated. -> Note2: If multi vendors are supported and there is a object/parameter that is implmented by multi customers in different way, the implemented object/parameter of the first vendor name in the **BBF_VENDOR_LIST** will be considered. +> Note2: If multi vendors are supported and there is a object/parameter that is implmented by multi customers in different way, the implemented object/parameter of the first vendor name in the **BBF_VENDOR_LIST** will be considered. > Note3: Overwrite and Exclude are only considered in `dmtree/vendor//` @@ -347,7 +347,7 @@ Each library should contains two Root tables: - **“tDynamicObj”** -- **“tDynamicOperate”** +- **“tDynamicOperate”** #### DynamicObject definition @@ -393,34 +393,34 @@ The application should bring its JSON file under **'/etc/bbfdm/json/'** path wit ```bash "Device.CWMP.": { - "type": "object", + "type": "object", "protocols": [ - "cwmp", + "cwmp", "usp" - ], + ], "array": false } ``` -**2. Object with instace:** +**2. Object with instance:** - **UCI command:** uci show wireless | grep wifi-device ```bash "Device.X_IOPSYS_EU_Radio.{i}.": { - "type": "object", + "type": "object", "protocols": [ - "cwmp", + "cwmp", "usp" - ], + ], "array": true, "mapping": { - "type": "uci", + "type": "uci", "uci": { - "file": "wireless", + "file": "wireless", "section": { "type": "wifi-device" - }, + }, "dmmapfile": "dmmap_wireless" } } @@ -431,18 +431,18 @@ The application should bring its JSON file under **'/etc/bbfdm/json/'** path wit ```bash "Device.DSL.Line.{i}.": { - "type": "object", + "type": "object", "protocols": [ - "cwmp", + "cwmp", "usp" - ], + ], "array": true, "mapping": { - "type": "ubus", + "type": "ubus", "ubus": { - "object": "dsl", - "method": "status", - "args": {}, + "object": "dsl", + "method": "status", + "args": {}, "key": "line" } } @@ -457,13 +457,13 @@ The application should bring its JSON file under **'/etc/bbfdm/json/'** path wit ```bash "Country": { - "type": "string", + "type": "string", "protocols": [ - "cwmp", + "cwmp", "usp" ], - "read": true, - "write": true, + "read": true, + "write": true, "mapping": [ { "type" : "uci", @@ -487,12 +487,12 @@ The application should bring its JSON file under **'/etc/bbfdm/json/'** path wit - **@Name:** the section name of paraent object, in this example, the section name is "lan" ```bash "SSID": { - "type": "string", + "type": "string", "protocols": [ - "cwmp", + "cwmp", "usp" ], - "read": true, + "read": true, "write": false, "mapping": [ { @@ -514,12 +514,12 @@ The application should bring its JSON file under **'/etc/bbfdm/json/'** path wit ```bash "Noise": { - "type": "int", + "type": "int", "protocols": [ - "cwmp", + "cwmp", "usp" ], - "read": true, + "read": true, "write": false, "mapping": [ { @@ -541,13 +541,13 @@ The application should bring its JSON file under **'/etc/bbfdm/json/'** path wit ```bash "Username": { - "type": "string", + "type": "string", "protocols": [ - "cwmp", + "cwmp", "usp" ], - "read": true, - "write": true, + "read": true, + "write": true, "mapping": [ { "type" : "uci", @@ -570,12 +570,12 @@ The application should bring its JSON file under **'/etc/bbfdm/json/'** path wit ```bash "Uptime": { - "type": "unsignedInt", + "type": "unsignedInt", "protocols": [ - "cwmp", + "cwmp", "usp" ], - "read": true, + "read": true, "write": false, "mapping": [ { @@ -595,12 +595,12 @@ The application should bring its JSON file under **'/etc/bbfdm/json/'** path wit ```bash "Total": { - "type": "unsignedInt", + "type": "unsignedInt", "protocols": [ - "cwmp", + "cwmp", "usp" ], - "read": true, + "read": true, "write": false, "mapping": [ { @@ -623,87 +623,186 @@ The application should bring its JSON file under **'/etc/bbfdm/json/'** path wit - For more examples on JSON files, you can see these links: [X_IOPSYS_EU_MCPD](https://dev.iopsys.eu/feed/broadcom/-/blob/devel/mcpd/files/etc/bbfdm/json/X_IOPSYS_EU_MCPD.json), [UserInterface](/test/files/etc/bbfdm/json/UserInterface.json), [X_IOPSYS_EU_Dropbear](/test/files/etc/bbfdm/json/X_IOPSYS_EU_Dropbear.json) ## BBFDM Tools +BBF tools are written in python3 and has below dependencies. -### XML generator - -It is a generator of Data Model tree in XML with two format: **Broadband Forum schema** and **HDM**. - +System utilities: python3-pip, libxml2-utils ```bash -$ python generate_dm_xml.py -h -Usage: generate_dm_xml.py [options...] -Options: - -r, --remote-dm Check OBJ/PARAM under these repositories if it is not found under bbf repo - -v, --vendor-list Generate data model tree with vendor extension OBJ/PARAM - -p, --vendor-prefix Generate data model tree using this vendor prefix. Default vendor prefix: X_IOPSYS_EU_ - -f, --format Generate data model tree with HDM format. Default format: BBF - -d, --device-protocol Generate data model tree using this device protocol. Default device protocol: DEVICE_PROTOCOL_DSLFTR069v1 - -m, --manufacturer Generate data model tree using this manufacturer. Default manufacturer: iopsys - -o, --manufacturer-oui Generate data model tree using this manufacturer oui. Default manufacturer oui: 002207 - -c, --product-class Generate data model tree using this product class. Default product class: DG400PRIME - -n, --model-name Generate data model tree using this model name. Default model name: DG400PRIME-A - -s, --software-version Generate data model tree using this software version. Default software version: 1.2.3.4 - -h, --help This help text -Urls: - url^(branch,hash,tag) The url with branch, hash or tag to be used - -Examples: - - python generate_dm_xml.py - ==> Generate xml file in datamodel.xml - - python generate_dm_xml.py -f HDM - ==> Generate xml file with HDM format in datamodel.xml - - python generate_dm_xml.py -v iopsys - ==> Generate xml file using iopsys extension in datamodel.xml - - python generate_dm_xml.py -r https://dev.iopsys.eu/feed/iopsys.git^devel,https://dev.iopsys.eu/iopsys/mydatamodel.git^5c8e7cb740dc5e425adf53ea574fb529d2823f88 - ==> Generate xml file in datamodel.xml - - python generate_dm_xml.py -v iopsys,openwrt,test -r https://dev.iopsys.eu/feed/iopsys.git^6.0.0ALPHA1 -p X_TEST_COM_ - ==> Generate xml file in datamodel.xml +$ sudo apt install -y python3-pip +$ sudo apt install -y libxml2-utils +``` +Python utilities: jsonschema, xlwt +```bash +$ pip3 install jsonschema xlwt ``` -### JSON generator +| Tools | Description | +| ----------------------- |:------------------------------------------------------------:| +|convert_dm_json_to_c.py | Convert json mapping to C code for dynamic plugins library. | +|convert_dm_xml_to_json.py| Convert standart xml to Json format. | +|generate_dm.py | Generate list of supported/un-supported parameters based of json input| +|generate_dm_xml.py | Generate list of supported/un-supported parameters in xml format | +|generate_dm_excel.py | Generate list of supported/un-supported parameters in xls format | -It is a generator of Data Model JSON format +> Note: Currently all the tools needs to be executed in tools directory. + +### XML->JSON convertor +It is a [python script](./tools/convert_dm_xml_to_json.py) to convert Data Model from Broadband Forum XML format to JSON format. ```bash -$ python generate_dm_json.py -Usage: generate_dm_json.py [Object path] +$ ./convert_dm_xml_to_json.py +Usage: ./convert_dm_xml_to_json.py [Object path] Examples: - - generate_dm_json.py tr-181-2-14-1-cwmp-full.xml tr-181-2-14-1-usp-full.xml Device. + - ./convert_dm_xml_to_json.py tr-181-2-14-1-cwmp-full.xml tr-181-2-14-1-usp-full.xml Device. ==> Generate the json file of the sub tree Device. in tr181.json - - generate_dm_json.py tr-104-2-0-2-cwmp-full.xml tr-104-2-0-2-usp-full.xml Device.Services.VoiceService. + - ./convert_dm_xml_to_json.py tr-104-2-0-2-cwmp-full.xml tr-104-2-0-2-usp-full.xml Device.Services.VoiceService. ==> Generate the json file of the sub tree Device.Services.VoiceService. in tr104.json - - generate_dm_json.py tr-106-1-2-0-full.xml Device. + - ./convert_dm_xml_to_json.py tr-106-1-2-0-full.xml Device. ==> Generate the json file of the sub tree Device. in tr106.json Example of xml data model file: https://www.broadband-forum.org/cwmp/tr-181-2-14-1-cwmp-full.xml ``` -### Excel generator +### XML generator -It is a generator of excel sheet with supported and unsupported Data Model tree. +[Python script](./tools/generate_dm_xml.py) to generator list of supported and un-supported Data Model tree in XML for acs supported format: **Broadband Forum schema** and **HDM**. ```bash -$ python generate_dm_excel.py -Usage: generate_dm_excel.py [options...] -data model name: The data model(s) to be used, for ex: tr181 or tr181,tr104 -Options: - -r, --remote-dm Check OBJ/PARAM under these repositories if it is not found under bbf repo - -v, --vendor-list Generate data model tree with vendor extension OBJ/PARAM - -p, --vendor-prefix Generate data model tree using this vendor prefix. Default vendor prefix: X_IOPSYS_EU_ - -h, --help This help text -Urls: - url^(branch,hash,tag) The url with branch, hash or tag to be used +$ ./generate_dm_xml.py -h +usage: generate_dm_xml.py [-h] [-r https://dev.iopsys.eu/iopsys/stunc.git^devel] [-v iopsys] [-p X_IOPSYS_EU_] [-d DEVICE_PROTOCOL_DSLFTR069v1] [-m iopsys] [-u 002207] [-c DG400PRIME] [-n DG400PRIME-A] + [-s 1.2.3.4] [-f BBF] [-o datamodel.xml] -Examples: - - python generate_dm_excel.py tr181 - ==> Generate excel file in datamodel.xls - - python generate_dm_excel.py tr104 - ==> Generate excel file in datamodel.xls - - python generate_dm_excel.py tr181,tr104 -r https://dev.iopsys.eu/feed/iopsys.git^release-5.3,https://dev.iopsys.eu/iopsys/mydatamodel.git^5c8e7cb740dc5e425adf53ea574fb529d2823f88 - ==> Generate excel file in datamodel.xls - - python generate_dm_excel.py tr181,tr104 -v iopsys,openwrt,test -r https://dev.iopsys.eu/feed/iopsys.git^6.0.0ALPHA1 -p X_TEST_COM_ - ==> Generate excel file in datamodel.xls +Script to generate list of supported and non-supported parameter in xml format + +optional arguments: + -h, --help show this help message and exit + -r https://dev.iopsys.eu/iopsys/stunc.git^devel, --remote-dm https://dev.iopsys.eu/iopsys/stunc.git^devel + Includes OBJ/PARAM defined under remote repositories defined as bbf plugin + -v iopsys, --vendor-list iopsys + Generate data model tree with vendor extension OBJ/PARAM. + -p X_IOPSYS_EU_, --vendor-prefix X_IOPSYS_EU_ + Generate data model tree using provided vendor prefix for vendor defined objects. + -d DEVICE_PROTOCOL_DSLFTR069v1, --device-protocol DEVICE_PROTOCOL_DSLFTR069v1 + Generate data model tree using this device protocol. + -m iopsys, --manufacturer iopsys + Generate data model tree using this manufacturer. + -u 002207, --manufacturer-oui 002207 + Generate data model tree using this manufacturer oui. + -c DG400PRIME, --product-class DG400PRIME + Generate data model tree using this product class. + -n DG400PRIME-A, --model-name DG400PRIME-A + Generate data model tree using this model name. + -s 1.2.3.4, --software-version 1.2.3.4 + Generate data model tree using this software version. + -f BBF, --format BBF Generate data model tree with HDM format. + -o datamodel.xml, --output datamodel.xml + Generate the output file with given name + +Part of BBF-tools, refer Readme for more examples ``` +More examples: +```bash +$ ./generate_dm_xml.py -v iopsys -v openwrt +``` + +### Excel generator +[Python script](./tools/generate_dm_excel.py) to generat list of supported and un-supported parameters in excel sheet. + +```bash +$ ./generate_dm_excel.py -h +usage: generate_dm_excel.py [-h] -d tr181 [-r https://dev.iopsys.eu/iopsys/stunc.git^devel] [-v iopsys] [-p X_IOPSYS_EU_] [-o supported_datamodel.xls] + +Script to generate list of supported and non-supported parameter in xls format + +optional arguments: + -h, --help show this help message and exit + -d tr181, --datamodel tr181 + -r https://dev.iopsys.eu/iopsys/stunc.git^devel, --remote-dm https://dev.iopsys.eu/iopsys/stunc.git^devel + Includes OBJ/PARAM defined under remote repositories defined as bbf plugin + -v iopsys, --vendor-list iopsys + Generate data model tree with vendor extension OBJ/PARAM + -p X_IOPSYS_EU_, --vendor-prefix X_IOPSYS_EU_ + Generate data model tree using provided vendor prefix for vendor defined objects + -o supported_datamodel.xls, --output supported_datamodel.xls + Generate the output file with given name + +Part of BBF-tools, refer Readme for more examples +``` + +More examples: +```bash +$ ./generate_dm_excel.py -d tr181 -v iopsys -v openwrt -o datamodel.xls +$ ./generate_dm_excel.py -d tr181 -d tr104 -v iopsys -v openwrt -o datamodel.xls +``` +### Data Model generator + +This is a pipeline friendly master script to generate the list of supported and un-supported datamodels in xml and xls formats based on provided input in a json file. +Example json file available [here](./tools/tools_input.json). + +```bash +$ Usage: generate_dm.py +Examples: + - generate_dm.py tools_input.json + ==> Generate all required files defined in tools_input.json file +``` + +The input json file should be defined as follow: + +```bash +{ + "manufacturer": "iopsys", + "protocol": "DEVICE_PROTOCOL_DSLFTR069v1", + "manufacturer_oui": "002207", + "product_class": "DG400PRIME", + "model_name": "DG400PRIME-A", + "software_version": "1.2.3.4", + "vendor_list": [ + "iopsys", + "openwrt", + "test" + ], + "vendor_prefix": "X_IOPSYS_EU_", + "plugins": [ + { + "repo": "https://dev.iopsys.eu/iopsys/mydatamodel.git", + "version": "tag/hash/branch", + "dm_files": [ + "src/datamodel.c", + "src/additional_datamodel.c" + ] + }, + { + "repo": "https://dev.iopsys.eu/iopsys/mybbfplugin.git", + "version": "tag/hash/branch", + "dm_files": [ + "dm.c" + ] + }, + { + "repo": "https://dev.iopsys.eu/iopsys/mydatamodeljson.git", + "version": "tag/hash/branch", + "dm_files": [ + "src/plugin/datamodel.json" + ] + } + ], + "output": { + "acs": [ + "hdm", + "default" + ], + "file_format": [ + "xml", + "xls" + ], + "output_dir": "./out", + "output_file_prefix": "datamodel" + } +} +``` + +- For more examples of tools input json file, you can see this link: [tools_input.json](./devel/tools/tools_input.json) + ## Dependencies To successfully build libbbfdm, the following libraries are needed: diff --git a/dmtree/json/tr104.json b/dmtree/json/tr104.json index 244896db..56ccf59a 100644 --- a/dmtree/json/tr104.json +++ b/dmtree/json/tr104.json @@ -1,6 +1,7 @@ { "Device.Services.VoiceService.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -14,6 +15,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -29,6 +31,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39,6 +42,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -49,6 +53,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -59,6 +64,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -69,6 +75,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -79,6 +86,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -87,6 +95,7 @@ }, "Device.Services.VoiceService.{i}.Capabilities.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -97,6 +106,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -112,6 +122,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -127,6 +138,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -142,6 +154,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -157,6 +170,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -172,6 +186,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -187,6 +202,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -209,6 +225,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -230,6 +247,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -250,6 +268,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -270,6 +289,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -340,6 +360,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -348,6 +369,7 @@ }, "Device.Services.VoiceService.{i}.Capabilities.SIP.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -356,6 +378,7 @@ "array": false, "Device.Services.VoiceService.{i}.Capabilities.SIP.Client.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -366,6 +389,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -378,6 +402,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -390,6 +415,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -402,6 +428,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -421,6 +448,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -433,6 +461,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -454,6 +483,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -466,6 +496,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -485,6 +516,7 @@ }, "Device.Services.VoiceService.{i}.Capabilities.SIP.Registrar.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -495,6 +527,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -507,6 +540,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -519,6 +553,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -531,6 +566,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -550,6 +586,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -562,6 +599,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -583,6 +621,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -595,6 +634,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -615,6 +655,7 @@ }, "Device.Services.VoiceService.{i}.Capabilities.MGCP.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -625,6 +666,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -636,6 +678,7 @@ }, "Device.Services.VoiceService.{i}.Capabilities.H323.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -646,6 +689,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -656,6 +700,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -675,6 +720,7 @@ }, "Device.Services.VoiceService.{i}.Capabilities.ISDN.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -685,6 +731,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -695,6 +742,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -705,6 +753,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -715,6 +764,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -725,6 +775,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -735,6 +786,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -744,6 +796,7 @@ }, "Device.Services.VoiceService.{i}.Capabilities.POTS.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -754,6 +807,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -769,6 +823,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -779,6 +834,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -788,6 +844,7 @@ }, "Device.Services.VoiceService.{i}.Capabilities.Codec.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -803,6 +860,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -818,6 +876,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -852,6 +911,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -863,6 +923,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -880,6 +941,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -889,6 +951,7 @@ }, "Device.Services.VoiceService.{i}.Capabilities.QualityIndicator.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -899,6 +962,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -909,6 +973,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -925,6 +990,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -941,6 +1007,7 @@ }, "Device.Services.VoiceService.{i}.ReservedPorts.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -961,6 +1028,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -988,6 +1056,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1014,6 +1083,7 @@ }, "Device.Services.VoiceService.{i}.ISDN.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1024,6 +1094,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1034,6 +1105,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1042,6 +1114,7 @@ }, "Device.Services.VoiceService.{i}.ISDN.BRI.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1056,6 +1129,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1066,6 +1140,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1082,6 +1157,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1097,6 +1173,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1112,6 +1189,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1127,6 +1205,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1142,6 +1221,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1162,6 +1242,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1176,6 +1257,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1186,6 +1268,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1196,6 +1279,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1206,6 +1290,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1220,6 +1305,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1235,6 +1321,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1245,6 +1332,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1255,6 +1343,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1270,6 +1359,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1288,6 +1378,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1306,6 +1397,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1323,6 +1415,7 @@ }, "Device.Services.VoiceService.{i}.ISDN.PRI.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1337,6 +1430,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1347,6 +1441,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1363,6 +1458,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1378,6 +1474,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1393,6 +1490,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1408,6 +1506,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1423,6 +1522,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1442,6 +1542,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1456,6 +1557,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1466,6 +1568,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1481,6 +1584,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1500,6 +1604,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1514,6 +1619,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1529,6 +1635,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1547,6 +1654,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1565,6 +1673,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1583,6 +1692,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1597,6 +1707,7 @@ }, "Device.Services.VoiceService.{i}.POTS.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1617,6 +1728,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1627,6 +1739,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1637,6 +1750,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1665,6 +1779,7 @@ }, "Device.Services.VoiceService.{i}.POTS.FXO.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1679,6 +1794,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1689,6 +1805,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1705,6 +1822,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1720,6 +1838,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1735,6 +1854,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1750,6 +1870,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1760,6 +1881,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1777,6 +1899,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1794,6 +1917,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1810,6 +1934,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1827,6 +1952,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1841,6 +1967,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1858,6 +1985,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1868,6 +1996,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1876,6 +2005,7 @@ }, "Device.Services.VoiceService.{i}.POTS.FXO.{i}.DiagTests.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1886,6 +2016,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1903,6 +2034,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1917,6 +2049,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1931,6 +2064,7 @@ }, "Device.Services.VoiceService.{i}.POTS.FXS.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1955,6 +2089,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1965,6 +2100,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1981,6 +2117,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1996,6 +2133,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2026,6 +2164,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2041,6 +2180,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2056,6 +2196,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2071,6 +2212,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2085,6 +2227,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2110,6 +2253,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2120,6 +2264,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2130,6 +2275,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2144,6 +2290,7 @@ }, "Device.Services.VoiceService.{i}.POTS.FXS.{i}.VoiceProcessing.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2154,6 +2301,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2180,6 +2328,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2206,6 +2355,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2231,6 +2381,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2241,6 +2392,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2251,6 +2403,7 @@ }, "Device.Services.VoiceService.{i}.POTS.FXS.{i}.DiagTests.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2261,6 +2414,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2278,6 +2432,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2295,6 +2450,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2309,6 +2465,7 @@ }, "Device.Services.VoiceService.{i}.POTS.Ringer.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2319,6 +2476,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2327,6 +2485,7 @@ }, "Device.Services.VoiceService.{i}.POTS.Ringer.Event.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2341,6 +2500,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2356,6 +2516,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2374,6 +2535,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2391,6 +2553,7 @@ }, "Device.Services.VoiceService.{i}.DECT.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2401,6 +2564,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2411,6 +2575,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2419,6 +2584,7 @@ }, "Device.Services.VoiceService.{i}.DECT.Base.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2434,6 +2600,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2444,6 +2611,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2460,6 +2628,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2475,6 +2644,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2490,6 +2660,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2505,6 +2676,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2523,6 +2695,7 @@ "type": "hexBinary", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2538,6 +2711,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2548,6 +2722,7 @@ "type": "hexBinary", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2563,6 +2738,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2573,6 +2749,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2583,6 +2760,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2593,6 +2771,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2603,6 +2782,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2618,6 +2798,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2632,6 +2813,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2647,6 +2829,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2662,6 +2845,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2675,6 +2859,7 @@ }, "Device.Services.VoiceService.{i}.DECT.Base.{i}.Stats.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2685,6 +2870,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2695,6 +2881,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2705,6 +2892,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2715,6 +2903,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2725,6 +2914,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2735,6 +2925,7 @@ }, "Device.Services.VoiceService.{i}.DECT.Portable.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2749,6 +2940,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2759,6 +2951,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2775,6 +2968,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2790,6 +2984,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2802,6 +2997,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2816,6 +3012,7 @@ "type": "hexBinary", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2831,6 +3028,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2842,6 +3040,7 @@ "type": "hexBinary", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2857,6 +3056,7 @@ "type": "hexBinary", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2872,6 +3072,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2887,6 +3088,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2907,6 +3109,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2917,6 +3120,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2931,6 +3135,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2946,6 +3151,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2961,6 +3167,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2971,6 +3178,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2981,6 +3189,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -2996,6 +3205,7 @@ }, "Device.Services.VoiceService.{i}.SIP.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3006,6 +3216,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3016,6 +3227,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3026,6 +3238,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3036,6 +3249,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3044,6 +3258,7 @@ }, "Device.Services.VoiceService.{i}.SIP.Client.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3067,6 +3282,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3092,6 +3308,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3102,6 +3319,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3123,6 +3341,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3138,6 +3357,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3152,6 +3372,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3168,6 +3389,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3198,6 +3420,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3228,6 +3451,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3243,6 +3467,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3253,6 +3478,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3283,6 +3509,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3293,6 +3520,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3303,6 +3531,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3313,6 +3542,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3321,6 +3551,7 @@ }, "Device.Services.VoiceService.{i}.SIP.Client.{i}.Contact.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3334,6 +3565,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3344,6 +3576,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3359,6 +3592,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3374,6 +3608,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3388,6 +3623,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3403,6 +3639,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3434,6 +3671,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3449,6 +3687,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3474,6 +3713,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3491,6 +3731,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3505,6 +3746,7 @@ }, "Device.Services.VoiceService.{i}.SIP.Client.{i}.EventSubscribe.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3519,6 +3761,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3529,6 +3772,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3544,6 +3788,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3559,6 +3804,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3574,6 +3820,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3589,6 +3836,7 @@ }, "Device.Services.VoiceService.{i}.SIP.Network.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3612,6 +3860,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3638,6 +3887,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3648,6 +3898,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3665,6 +3916,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3680,6 +3932,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3710,6 +3963,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3741,6 +3995,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3772,6 +4027,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3802,6 +4058,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3833,6 +4090,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3864,6 +4122,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3879,6 +4138,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3894,6 +4154,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3909,6 +4170,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3925,6 +4187,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3955,6 +4218,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -3971,6 +4235,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4002,6 +4267,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4032,6 +4298,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4047,6 +4314,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4061,6 +4329,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4092,6 +4361,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4102,6 +4372,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4132,6 +4403,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4143,6 +4415,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4154,6 +4427,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4169,6 +4443,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4200,6 +4475,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4225,6 +4501,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4241,6 +4518,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4257,6 +4535,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4273,6 +4552,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4289,6 +4569,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4305,6 +4586,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4321,6 +4603,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4337,6 +4620,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4353,6 +4637,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4369,6 +4654,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4385,6 +4671,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4401,6 +4688,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4417,6 +4705,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4433,6 +4722,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4449,6 +4739,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4465,6 +4756,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4481,6 +4773,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4512,6 +4805,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4528,6 +4822,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4543,6 +4838,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4558,6 +4854,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4573,6 +4870,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4583,6 +4881,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4599,6 +4898,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4614,6 +4914,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4629,6 +4930,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4644,6 +4946,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4655,6 +4958,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4665,6 +4969,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4676,6 +4981,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4687,6 +4993,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4697,6 +5004,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4712,6 +5020,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4724,6 +5033,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4734,6 +5044,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4744,6 +5055,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4754,6 +5066,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4768,6 +5081,7 @@ }, "Device.Services.VoiceService.{i}.SIP.Network.{i}.FQDNServer.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4782,6 +5096,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4807,6 +5122,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4822,6 +5138,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4836,6 +5153,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4866,6 +5184,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4882,6 +5201,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4898,6 +5218,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4914,6 +5235,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4930,6 +5252,7 @@ }, "Device.Services.VoiceService.{i}.SIP.Network.{i}.EventSubscribe.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4944,6 +5267,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4954,6 +5278,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4969,6 +5294,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4984,6 +5310,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -4999,6 +5326,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5015,6 +5343,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5031,6 +5360,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5041,6 +5371,7 @@ }, "Device.Services.VoiceService.{i}.SIP.Network.{i}.ResponseMap.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5055,6 +5386,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5070,6 +5402,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5086,6 +5419,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5096,6 +5430,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5111,6 +5446,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5126,6 +5462,7 @@ }, "Device.Services.VoiceService.{i}.SIP.Proxy.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5141,6 +5478,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5151,6 +5489,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5166,6 +5505,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5181,6 +5521,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5195,6 +5536,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5210,6 +5552,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5226,6 +5569,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5241,6 +5585,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5255,6 +5600,7 @@ }, "Device.Services.VoiceService.{i}.SIP.Registrar.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5270,6 +5616,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5280,6 +5627,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5290,6 +5638,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5305,6 +5654,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5320,6 +5670,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5334,6 +5685,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5349,6 +5701,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5365,6 +5718,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5376,6 +5730,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5393,6 +5748,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5408,6 +5764,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5418,6 +5775,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5433,6 +5791,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5448,6 +5807,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5456,6 +5816,7 @@ }, "Device.Services.VoiceService.{i}.SIP.Registrar.{i}.Account.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5470,6 +5831,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5485,6 +5847,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5495,6 +5858,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5516,6 +5880,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5531,6 +5896,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5545,6 +5911,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5563,6 +5930,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5578,6 +5946,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5593,6 +5962,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5607,6 +5977,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5622,6 +5993,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5637,6 +6009,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5649,6 +6022,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5664,6 +6038,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5672,6 +6047,7 @@ }, "Device.Services.VoiceService.{i}.SIP.Registrar.{i}.Account.{i}.Contact.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5685,6 +6061,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5695,6 +6072,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5710,6 +6088,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5725,6 +6104,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5739,6 +6119,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5754,6 +6135,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5770,6 +6152,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5785,6 +6168,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5795,6 +6179,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5812,6 +6197,7 @@ }, "Device.Services.VoiceService.{i}.MGCP.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5822,6 +6208,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5832,6 +6219,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5840,6 +6228,7 @@ }, "Device.Services.VoiceService.{i}.MGCP.Client.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5853,6 +6242,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5863,6 +6253,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5873,6 +6264,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5894,6 +6286,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5909,6 +6302,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5923,6 +6317,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5939,6 +6334,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5954,6 +6350,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5969,6 +6366,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5984,6 +6382,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -5993,6 +6392,7 @@ }, "Device.Services.VoiceService.{i}.MGCP.Network.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6006,6 +6406,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6016,6 +6417,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6026,6 +6428,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6043,6 +6446,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6058,6 +6462,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6073,6 +6478,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6089,6 +6495,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6104,6 +6511,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6120,6 +6528,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6137,6 +6546,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6153,6 +6563,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6169,6 +6580,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6184,6 +6596,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6199,6 +6612,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6209,6 +6623,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6219,6 +6634,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6229,6 +6645,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6244,6 +6661,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6255,6 +6673,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6266,6 +6685,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6276,6 +6696,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6291,6 +6712,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6303,6 +6725,7 @@ }, "Device.Services.VoiceService.{i}.H323.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6313,6 +6736,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6323,6 +6747,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6331,6 +6756,7 @@ }, "Device.Services.VoiceService.{i}.H323.Client.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6344,6 +6770,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6354,6 +6781,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6364,6 +6792,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6385,6 +6814,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6400,6 +6830,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6410,6 +6841,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6420,6 +6852,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6430,6 +6863,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6445,6 +6879,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6460,6 +6895,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6469,6 +6905,7 @@ }, "Device.Services.VoiceService.{i}.H323.Network.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6482,6 +6919,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6492,6 +6930,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6502,6 +6941,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6519,6 +6959,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6534,6 +6975,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6544,6 +6986,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6554,6 +6997,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6564,6 +7008,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6575,6 +7020,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6591,6 +7037,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6606,6 +7053,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6621,6 +7069,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6631,6 +7080,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6646,6 +7096,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6657,6 +7108,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6668,6 +7120,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6678,6 +7131,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6693,6 +7147,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6705,6 +7160,7 @@ }, "Device.Services.VoiceService.{i}.Trunk.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6718,6 +7174,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6728,6 +7185,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6738,6 +7196,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6757,6 +7216,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6772,6 +7232,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6786,6 +7247,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6801,6 +7263,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6813,6 +7276,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6823,6 +7287,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6833,6 +7298,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6848,6 +7314,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6863,6 +7330,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6877,6 +7345,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6891,6 +7360,7 @@ }, "Device.Services.VoiceService.{i}.CallControl.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6901,6 +7371,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6911,6 +7382,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6921,6 +7393,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6931,6 +7404,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6941,6 +7415,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6951,6 +7426,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6961,6 +7437,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6971,6 +7448,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6981,6 +7459,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6989,6 +7468,7 @@ }, "Device.Services.VoiceService.{i}.CallControl.Line.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7013,6 +7493,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7038,6 +7519,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7048,6 +7530,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7065,6 +7548,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7080,6 +7564,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7098,6 +7583,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7112,6 +7598,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7127,6 +7614,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7157,6 +7645,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7170,6 +7659,7 @@ }, "Device.Services.VoiceService.{i}.CallControl.Line.{i}.Stats.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7178,6 +7668,7 @@ "array": false, "Device.Services.VoiceService.{i}.CallControl.Line.{i}.Stats.IncomingCalls.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7188,6 +7679,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7198,6 +7690,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7208,6 +7701,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7218,6 +7712,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7228,6 +7723,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7238,6 +7734,7 @@ }, "Device.Services.VoiceService.{i}.CallControl.Line.{i}.Stats.OutgoingCalls.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7248,6 +7745,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7258,6 +7756,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7268,6 +7767,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7278,6 +7778,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7288,6 +7789,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7298,6 +7800,7 @@ }, "Device.Services.VoiceService.{i}.CallControl.Line.{i}.Stats.RTP.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7308,6 +7811,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7318,6 +7822,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7328,6 +7833,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7338,6 +7844,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7348,6 +7855,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7357,6 +7865,7 @@ }, "Device.Services.VoiceService.{i}.CallControl.Line.{i}.Stats.DSP.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7367,6 +7876,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7377,6 +7887,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7388,6 +7899,7 @@ }, "Device.Services.VoiceService.{i}.CallControl.Extension.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7402,6 +7914,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7412,6 +7925,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7422,6 +7936,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7440,6 +7955,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7455,6 +7971,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7473,6 +7990,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7487,6 +8005,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7502,6 +8021,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7517,6 +8037,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7532,6 +8053,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7547,6 +8069,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7562,6 +8085,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7579,6 +8103,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7597,6 +8122,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7607,6 +8133,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7620,6 +8147,7 @@ }, "Device.Services.VoiceService.{i}.CallControl.Extension.{i}.Stats.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7628,6 +8156,7 @@ "array": false, "Device.Services.VoiceService.{i}.CallControl.Extension.{i}.Stats.IncomingCalls.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7638,6 +8167,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7648,6 +8178,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7658,6 +8189,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7668,6 +8200,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7678,6 +8211,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7688,6 +8222,7 @@ }, "Device.Services.VoiceService.{i}.CallControl.Extension.{i}.Stats.OutgoingCalls.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7698,6 +8233,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7708,6 +8244,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7718,6 +8255,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7728,6 +8266,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7738,6 +8277,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7748,6 +8288,7 @@ }, "Device.Services.VoiceService.{i}.CallControl.Extension.{i}.Stats.RTP.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7758,6 +8299,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7768,6 +8310,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7778,6 +8321,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7788,6 +8332,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7798,6 +8343,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7807,6 +8353,7 @@ }, "Device.Services.VoiceService.{i}.CallControl.Extension.{i}.Stats.DSP.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7817,6 +8364,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7827,6 +8375,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7838,6 +8387,7 @@ }, "Device.Services.VoiceService.{i}.CallControl.Group.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7851,6 +8401,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7866,6 +8417,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7878,6 +8430,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7893,6 +8446,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7903,6 +8457,7 @@ }, "Device.Services.VoiceService.{i}.CallControl.Mailbox.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7916,6 +8471,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7926,6 +8482,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7941,6 +8498,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7951,6 +8509,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7962,6 +8521,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7973,6 +8533,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7988,6 +8549,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8004,6 +8566,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8019,6 +8582,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8034,6 +8598,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8050,6 +8615,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8064,6 +8630,7 @@ }, "Device.Services.VoiceService.{i}.CallControl.IncomingMap.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8079,6 +8646,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8089,6 +8657,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8104,6 +8673,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8134,6 +8704,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8149,6 +8720,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8164,6 +8736,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8174,6 +8747,7 @@ }, "Device.Services.VoiceService.{i}.CallControl.OutgoingMap.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8199,6 +8773,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8209,6 +8784,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8224,6 +8800,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8254,6 +8831,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8269,6 +8847,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8284,6 +8863,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8298,6 +8878,7 @@ }, "Device.Services.VoiceService.{i}.CallControl.NumberingPlan.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8321,6 +8902,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8336,6 +8918,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8352,6 +8935,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8368,6 +8952,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8400,6 +8985,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8417,6 +9003,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8432,6 +9019,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8447,6 +9035,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8457,6 +9046,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8465,6 +9055,7 @@ }, "Device.Services.VoiceService.{i}.CallControl.NumberingPlan.{i}.PrefixInfo.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8478,6 +9069,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8493,6 +9085,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8503,6 +9096,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8518,6 +9112,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8534,6 +9129,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8550,6 +9146,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8566,6 +9163,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8582,6 +9180,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8597,6 +9196,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8612,6 +9212,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8627,6 +9228,7 @@ }, "Device.Services.VoiceService.{i}.CallControl.CallingFeatures.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8637,6 +9239,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8645,6 +9248,7 @@ }, "Device.Services.VoiceService.{i}.CallControl.CallingFeatures.Set.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8668,6 +9272,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8683,6 +9288,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8693,6 +9299,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8703,6 +9310,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8713,6 +9321,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8723,6 +9332,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8738,6 +9348,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8748,6 +9359,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8763,6 +9375,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8774,6 +9387,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8784,6 +9398,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8799,6 +9414,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8810,6 +9426,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8820,6 +9437,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8830,6 +9448,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8840,6 +9459,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8850,6 +9470,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8860,6 +9481,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8870,6 +9492,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8880,6 +9503,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8890,6 +9514,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8900,6 +9525,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8910,6 +9536,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8920,6 +9547,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8930,6 +9558,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8940,6 +9569,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8950,6 +9580,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8960,6 +9591,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8970,6 +9602,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8980,6 +9613,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8990,6 +9624,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8998,6 +9633,7 @@ }, "Device.Services.VoiceService.{i}.CallControl.CallingFeatures.Set.{i}.CFT.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9011,6 +9647,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9021,6 +9658,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9036,6 +9674,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9056,6 +9695,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9071,6 +9711,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9086,6 +9727,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9100,6 +9742,7 @@ }, "Device.Services.VoiceService.{i}.CallControl.CallingFeatures.Set.{i}.SCF.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9114,6 +9757,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9124,6 +9768,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9139,6 +9784,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9154,6 +9800,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9168,6 +9815,7 @@ }, "Device.Services.VoiceService.{i}.CallControl.CallingFeatures.Set.{i}.SCREJ.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9182,6 +9830,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9192,6 +9841,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9207,6 +9857,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9221,6 +9872,7 @@ }, "Device.Services.VoiceService.{i}.CallControl.CallingFeatures.Set.{i}.FollowMe.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9236,6 +9888,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9246,6 +9899,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9261,6 +9915,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9272,6 +9927,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9287,6 +9943,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9296,6 +9953,7 @@ }, "Device.Services.VoiceService.{i}.CallControl.CallingFeatures.Set.{i}.Voice2Mail.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9306,6 +9964,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9316,6 +9975,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9327,6 +9987,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9337,6 +9998,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9347,6 +10009,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9359,6 +10022,7 @@ }, "Device.Services.VoiceService.{i}.Interwork.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9372,6 +10036,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9382,6 +10047,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9392,6 +10058,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9408,6 +10075,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9423,6 +10091,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9438,6 +10107,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9453,6 +10123,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9469,6 +10140,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9484,6 +10156,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9494,6 +10167,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9509,6 +10183,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9524,6 +10199,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9539,6 +10215,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9550,6 +10227,7 @@ "type": "dateTime", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9560,6 +10238,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9575,6 +10254,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9586,6 +10266,7 @@ "type": "dateTime", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9596,6 +10277,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9611,6 +10293,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9626,6 +10309,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9638,6 +10322,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9653,6 +10338,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9663,6 +10349,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9671,6 +10358,7 @@ }, "Device.Services.VoiceService.{i}.Interwork.{i}.UserInterface.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9685,6 +10373,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9695,6 +10384,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9710,6 +10400,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9725,6 +10416,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9739,6 +10431,7 @@ }, "Device.Services.VoiceService.{i}.Interwork.{i}.Map.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9752,6 +10445,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9762,6 +10456,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9776,6 +10471,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9791,6 +10487,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9806,6 +10503,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9816,6 +10514,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9830,6 +10529,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9845,6 +10545,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9860,6 +10561,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9875,6 +10577,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9885,6 +10588,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9900,6 +10604,7 @@ }, "Device.Services.VoiceService.{i}.CallLog.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9913,6 +10618,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9928,6 +10634,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9943,6 +10650,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9958,6 +10666,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9973,6 +10682,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9988,6 +10698,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10003,6 +10714,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10018,6 +10730,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10030,6 +10743,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10044,6 +10758,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10054,6 +10769,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10065,6 +10781,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10104,6 +10821,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10114,6 +10832,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10122,6 +10841,7 @@ }, "Device.Services.VoiceService.{i}.CallLog.{i}.SignalingPerformance.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10135,6 +10855,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10149,6 +10870,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10160,6 +10882,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10171,6 +10894,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10181,6 +10905,7 @@ }, "Device.Services.VoiceService.{i}.CallLog.{i}.Session.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10194,6 +10919,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10210,6 +10936,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10220,6 +10947,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10231,6 +10959,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10246,6 +10975,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10259,6 +10989,7 @@ }, "Device.Services.VoiceService.{i}.CallLog.{i}.Session.{i}.Source.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10267,6 +10998,7 @@ "array": false, "Device.Services.VoiceService.{i}.CallLog.{i}.Session.{i}.Source.RTP.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10277,6 +11009,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10292,6 +11025,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10308,6 +11042,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10324,6 +11059,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10340,6 +11076,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10356,6 +11093,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10372,6 +11110,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10388,6 +11127,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10404,6 +11144,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10414,6 +11155,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10424,6 +11166,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10434,6 +11177,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10444,6 +11188,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10454,6 +11199,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10464,6 +11210,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10474,6 +11221,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10490,6 +11238,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10506,6 +11255,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10521,6 +11271,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10536,6 +11287,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10551,6 +11303,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10566,6 +11319,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10582,6 +11336,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10598,6 +11353,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10608,6 +11364,7 @@ }, "Device.Services.VoiceService.{i}.CallLog.{i}.Session.{i}.Source.DSP.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10616,6 +11373,7 @@ "array": false, "Device.Services.VoiceService.{i}.CallLog.{i}.Session.{i}.Source.DSP.ReceiveCodec.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10626,6 +11384,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10641,6 +11400,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10651,6 +11411,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10661,6 +11422,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10670,6 +11432,7 @@ }, "Device.Services.VoiceService.{i}.CallLog.{i}.Session.{i}.Source.DSP.TransmitCodec.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10680,6 +11443,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10695,6 +11459,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10705,6 +11470,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10716,6 +11482,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10726,6 +11493,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10736,6 +11504,7 @@ }, "Device.Services.VoiceService.{i}.CallLog.{i}.Session.{i}.Source.VoiceQuality.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10746,6 +11515,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10763,6 +11533,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10780,6 +11551,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10797,6 +11569,7 @@ }, "Device.Services.VoiceService.{i}.CallLog.{i}.Session.{i}.Destination.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10805,6 +11578,7 @@ "array": false, "Device.Services.VoiceService.{i}.CallLog.{i}.Session.{i}.Destination.RTP.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10815,6 +11589,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10830,6 +11605,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10846,6 +11622,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10862,6 +11639,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10878,6 +11656,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10894,6 +11673,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10910,6 +11690,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10926,6 +11707,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10942,6 +11724,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10952,6 +11735,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10962,6 +11746,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10972,6 +11757,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10982,6 +11768,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10992,6 +11779,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11002,6 +11790,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11012,6 +11801,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11028,6 +11818,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11044,6 +11835,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11059,6 +11851,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11074,6 +11867,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11089,6 +11883,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11104,6 +11899,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11120,6 +11916,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11136,6 +11933,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11146,6 +11944,7 @@ }, "Device.Services.VoiceService.{i}.CallLog.{i}.Session.{i}.Destination.DSP.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11154,6 +11953,7 @@ "array": false, "Device.Services.VoiceService.{i}.CallLog.{i}.Session.{i}.Destination.DSP.ReceiveCodec.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11164,6 +11964,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11179,6 +11980,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11189,6 +11991,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11199,6 +12002,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11208,6 +12012,7 @@ }, "Device.Services.VoiceService.{i}.CallLog.{i}.Session.{i}.Destination.DSP.TransmitCodec.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11218,6 +12023,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11233,6 +12039,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11243,6 +12050,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11254,6 +12062,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11264,6 +12073,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11274,6 +12084,7 @@ }, "Device.Services.VoiceService.{i}.CallLog.{i}.Session.{i}.Destination.VoiceQuality.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11284,6 +12095,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11301,6 +12113,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11318,6 +12131,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11337,6 +12151,7 @@ }, "Device.Services.VoiceService.{i}.VoIPProfile.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11360,6 +12175,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11370,6 +12186,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11380,6 +12197,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11395,6 +12213,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11410,6 +12229,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11442,6 +12262,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11458,6 +12279,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11473,6 +12295,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11484,6 +12307,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11492,6 +12316,7 @@ }, "Device.Services.VoiceService.{i}.VoIPProfile.{i}.RTP.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11502,6 +12327,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11533,6 +12359,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11564,6 +12391,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11580,6 +12408,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11611,6 +12440,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11626,6 +12456,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11641,6 +12472,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11672,6 +12504,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11701,6 +12534,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11727,6 +12561,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11738,6 +12573,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11747,6 +12583,7 @@ }, "Device.Services.VoiceService.{i}.VoIPProfile.{i}.RTP.RTCP.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11757,6 +12594,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11767,6 +12605,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11798,6 +12637,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11812,6 +12652,7 @@ }, "Device.Services.VoiceService.{i}.VoIPProfile.{i}.RTP.SRTP.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11822,6 +12663,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11847,6 +12689,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11865,6 +12708,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11876,6 +12720,7 @@ }, "Device.Services.VoiceService.{i}.VoIPProfile.{i}.RTP.Redundancy.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11886,6 +12731,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11896,6 +12742,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11912,6 +12759,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11928,6 +12776,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11944,6 +12793,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11960,6 +12810,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11976,6 +12827,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11992,6 +12844,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12002,6 +12855,7 @@ }, "Device.Services.VoiceService.{i}.VoIPProfile.{i}.FaxT38.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12012,6 +12866,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12029,6 +12884,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12045,6 +12901,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12061,6 +12918,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12075,6 +12933,7 @@ }, "Device.Services.VoiceService.{i}.CodecProfile.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12098,6 +12957,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12108,6 +12968,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12123,6 +12984,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12153,6 +13015,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12185,6 +13048,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12194,6 +13058,7 @@ }, "Device.Services.VoiceService.{i}.Tone.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12204,6 +13069,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12214,6 +13080,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12224,6 +13091,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12234,6 +13102,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12247,6 +13116,7 @@ }, "Device.Services.VoiceService.{i}.Tone.Description.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12260,6 +13130,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12270,6 +13141,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12285,6 +13157,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12300,6 +13173,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12315,6 +13189,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12330,6 +13205,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12346,6 +13222,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12360,6 +13237,7 @@ }, "Device.Services.VoiceService.{i}.Tone.Pattern.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12373,6 +13251,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12383,6 +13262,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12398,6 +13278,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12408,6 +13289,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12425,6 +13307,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12436,6 +13319,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12453,6 +13337,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12464,6 +13349,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12481,6 +13367,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12492,6 +13379,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12509,6 +13397,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12520,6 +13409,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12537,6 +13427,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12548,6 +13439,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12559,6 +13451,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12573,6 +13466,7 @@ }, "Device.Services.VoiceService.{i}.Tone.EventProfile.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12586,6 +13480,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12601,6 +13496,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12609,6 +13505,7 @@ }, "Device.Services.VoiceService.{i}.Tone.EventProfile.{i}.Event.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12622,6 +13519,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12637,6 +13535,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12670,6 +13569,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12686,6 +13586,7 @@ }, "Device.Services.VoiceService.{i}.Terminal.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12699,6 +13600,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12709,6 +13611,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12719,6 +13622,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12739,6 +13643,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12754,6 +13659,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12769,6 +13675,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12777,6 +13684,7 @@ }, "Device.Services.VoiceService.{i}.Terminal.{i}.Audio.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12790,6 +13698,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12805,6 +13714,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12818,6 +13728,7 @@ }, "Device.Services.VoiceService.{i}.Terminal.{i}.Audio.{i}.VoiceProcessing.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12828,6 +13739,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12839,6 +13751,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12850,6 +13763,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12860,6 +13774,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12870,6 +13785,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12881,6 +13797,7 @@ }, "Device.Services.VoiceService.{i}.Terminal.{i}.ButtonMap.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12891,6 +13808,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12899,6 +13817,7 @@ }, "Device.Services.VoiceService.{i}.Terminal.{i}.ButtonMap.Button.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12912,6 +13831,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12927,6 +13847,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12942,6 +13863,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12957,6 +13879,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12972,6 +13895,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12987,6 +13911,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -13002,6 +13927,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -13012,6 +13938,7 @@ }, "Device.Services.VoiceService.{i}.Terminal.{i}.Ringer.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -13022,6 +13949,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -13032,6 +13960,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -13040,6 +13969,7 @@ }, "Device.Services.VoiceService.{i}.Terminal.{i}.Ringer.Description.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -13053,6 +13983,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -13063,6 +13994,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -13078,6 +14010,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -13093,6 +14026,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -13108,6 +14042,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -13122,6 +14057,7 @@ }, "Device.Services.VoiceService.{i}.Terminal.{i}.Ringer.Pattern.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -13135,6 +14071,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -13145,6 +14082,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -13160,6 +14098,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -13170,6 +14109,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -13181,6 +14121,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -13196,6 +14137,7 @@ }, "Device.Services.VoiceService.{i}.Terminal.{i}.DiagTests.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -13206,6 +14148,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -13223,6 +14166,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -13236,6 +14180,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -13246,6 +14191,7 @@ }, "Device.Services.VoiceService.{i}.ClockSynchronization.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -13256,6 +14202,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -13266,6 +14213,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -13281,6 +14229,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -13296,6 +14245,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -13304,6 +14254,7 @@ }, "Device.Services.VoiceService.{i}.ClockSynchronization.ClockSource.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -13319,6 +14270,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -13329,6 +14281,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -13344,6 +14297,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -13360,6 +14314,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" diff --git a/dmtree/json/tr135.json b/dmtree/json/tr135.json new file mode 100644 index 00000000..e3fbff7e --- /dev/null +++ b/dmtree/json/tr135.json @@ -0,0 +1,8307 @@ +{ + "Device.Services.STBService.{i}.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "uniqueKeys": [ + "Alias" + ], + "access": false, + "array": true, + "Enable": { + "type": "boolean", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "boolean" + }, + "Alias": { + "type": "string", + "read": true, + "write": true, + "version": "1.2", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "Alias", + "range": [ + { + "max": 64 + } + ] + }, + "Device.Services.STBService.{i}.Capabilities.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "MaxActiveAVStreams": { + "type": "int", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "int", + "range": [ + { + "min": -1 + } + ] + }, + "MaxActiveAVPlayers": { + "type": "int", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "int", + "range": [ + { + "min": -1 + } + ] + }, + "Device.Services.STBService.{i}.Capabilities.FrontEnd.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "Device.Services.STBService.{i}.Capabilities.FrontEnd.DVBT.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "MaxActiveDVBTStreams": { + "type": "int", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "int", + "range": [ + { + "min": -1 + } + ] + }, + "MaxLogicalChannels": { + "type": "int", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "int", + "range": [ + { + "min": -1 + } + ] + } + }, + "Device.Services.STBService.{i}.Capabilities.FrontEnd.IP.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "MaxActiveIPStreams": { + "type": "int", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "int", + "range": [ + { + "min": -1 + } + ] + }, + "MaxActiveInboundIPStreams": { + "type": "int", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "int", + "range": [ + { + "min": -1 + } + ] + }, + "MaxActiveOutboundIPStreams": { + "type": "int", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "int", + "range": [ + { + "min": -1 + } + ] + }, + "StreamingControlProtocols": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "string", + "enumerations": [ + "RTSP", + "IGMP", + "IGMPv2", + "IGMPv3", + "DSM-CC" + ] + } + }, + "StreamingTransportProtocols": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "string", + "enumerations": [ + "UDP", + "TCP", + "SCTP", + "DCCP", + "RTP", + "HTTP" + ] + } + }, + "StreamingTransportControlProtocols": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "string", + "enumerations": [ + "RTCP", + "ARQ", + "AL-FEC" + ] + } + }, + "DownloadTransportProtocols": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "string", + "enumerations": [ + "HTTP", + "HTTPS", + "FTP", + "FTPS", + "SFTP", + "TFTP" + ] + } + }, + "MultiplexTypes": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "string", + "enumerations": [ + "None", + "MPEG1-SYS", + "MPEG2-PS", + "VOB", + "MPEG2-TS" + ] + } + }, + "MaxDejitteringBufferSize": { + "type": "int", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "int", + "range": [ + { + "min": -1 + } + ], + "unit": "bytes" + } + } + }, + "Device.Services.STBService.{i}.Capabilities.PVR.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "MaxIOStreams": { + "type": "int", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "int", + "range": [ + { + "min": -1 + } + ] + }, + "MaxRecordingStreams": { + "type": "int", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "int", + "range": [ + { + "min": -1 + } + ] + }, + "MaxPlaybackStreams": { + "type": "int", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "int", + "range": [ + { + "min": -1 + } + ] + }, + "MaxTimeDelay": { + "type": "int", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "int", + "range": [ + { + "min": -1 + } + ], + "unit": "seconds" + } + }, + "Device.Services.STBService.{i}.Capabilities.AudioDecoder.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "AudioStandards": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "string", + "enumerations": [ + "MPEG1-Part3-Layer2", + "MPEG1-Part3-Layer3", + "MPEG2-Part3 -Layer2", + "MPEG2-Part3-Layer3", + "MPEG2.5", + "MP3-PRO", + "MP3-Surround", + "MPEG2-AAC-LC", + "MPEG4-AAC-LC", + "MPEG4-AAC-MP", + "MPEG4-BSAC", + "MPEG4-AAC-HE-v2", + "MPEG-Surround", + "DOLBY-AC3", + "DOLBY-DD+", + "DTS", + "DTS-HD" + ] + } + } + }, + "Device.Services.STBService.{i}.Capabilities.VideoDecoder.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "VideoStandards": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "string", + "enumerations": [ + "MPEG2-Part2", + "MPEG4-Part2", + "MPEG4-Part10", + "SMPTE-VC-1" + ] + } + }, + "Device.Services.STBService.{i}.Capabilities.VideoDecoder.MPEG2Part2.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "AudioStandards": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "string" + } + }, + "ProfileLevelNumberOfEntries": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "Device.Services.STBService.{i}.Capabilities.VideoDecoder.MPEG2Part2.ProfileLevel.{i}.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "uniqueKeys": [ + "Profile", + "Level", + "Alias" + ], + "access": false, + "array": true, + "Alias": { + "type": "string", + "read": true, + "write": true, + "version": "1.2", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "Alias", + "range": [ + { + "max": 64 + } + ] + }, + "Profile": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "enumerations": [ + "SP", + "MP", + "SNR", + "Spt", + "HP", + "4:2:2" + ] + }, + "Level": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "enumerations": [ + "LL", + "ML", + "H-14", + "HL" + ] + }, + "MaximumDecodingCapability": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "unit": "Kilobits per second" + } + } + }, + "Device.Services.STBService.{i}.Capabilities.VideoDecoder.MPEG4Part2.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "AudioStandards": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "string" + } + }, + "ProfileLevelNumberOfEntries": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "Device.Services.STBService.{i}.Capabilities.VideoDecoder.MPEG4Part2.ProfileLevel.{i}.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "uniqueKeys": [ + "Profile", + "Level", + "Alias" + ], + "access": false, + "array": true, + "Alias": { + "type": "string", + "read": true, + "write": true, + "version": "1.2", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "Alias", + "range": [ + { + "max": 64 + } + ] + }, + "Profile": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "enumerations": [ + "SIMPLE", + "SIMPLE SCALABLE", + "CORE", + "CORE SCALABLE", + "ADVANCED CORE", + "MAIN", + "N-BIT", + "ADVANCED REAL TIME SIMPLE", + "ADVANCED CODING EFFICIENCY", + "SIMPLE STUDIO", + "CORE STUDIO", + "ADVANCED SIMPLE", + "FINE GRANULARITY SCALABLE", + "ADVANCED SCALABLE TEXTURE", + "ANIMATED 2D MESH", + "BASIC ANIMATED TEXTURE", + "STILL SCALABLE TEXTURE", + "SIMPLE FACE", + "SIMPLE FBA" + ] + }, + "Level": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "enumerations": [ + "L5", + "L4", + "L4a", + "L3b", + "L3", + "L2", + "L1", + "L0" + ] + }, + "MaximumDecodingCapability": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "unit": "Kilobits per second" + } + } + }, + "Device.Services.STBService.{i}.Capabilities.VideoDecoder.MPEG4Part10.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "AudioStandards": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "string" + } + }, + "ProfileLevelNumberOfEntries": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "Device.Services.STBService.{i}.Capabilities.VideoDecoder.MPEG4Part10.ProfileLevel.{i}.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "uniqueKeys": [ + "Profile", + "Level", + "Alias" + ], + "access": false, + "array": true, + "Alias": { + "type": "string", + "read": true, + "write": true, + "version": "1.2", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "Alias", + "range": [ + { + "max": 64 + } + ] + }, + "Profile": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "string", + "enumerations": [ + "BASELINE", + "MAIN", + "EXTENDED", + "HIGH", + "HIGH 10", + "HIGH 4:2:2", + "HIGH 4:4:4" + ] + } + }, + "Level": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "string", + "enumerations": [ + "1", + "1b", + "1.1", + "1.2", + "1.3", + "2", + "2.1", + "2.2", + "3", + "3.1", + "3.2", + "4", + "4.1", + "4.2", + "5", + "5.1" + ] + } + }, + "MaximumDecodingCapability": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "unit": "Kilobits per second" + } + } + }, + "Device.Services.STBService.{i}.Capabilities.VideoDecoder.SMPTEVC1.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "AudioStandards": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "string" + } + }, + "ProfileLevelNumberOfEntries": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "Device.Services.STBService.{i}.Capabilities.VideoDecoder.SMPTEVC1.ProfileLevel.{i}.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "uniqueKeys": [ + "Profile", + "Level", + "Alias" + ], + "access": false, + "array": true, + "Alias": { + "type": "string", + "read": true, + "write": true, + "version": "1.2", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "Alias", + "range": [ + { + "max": 64 + } + ] + }, + "Profile": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "enumerations": [ + "SP", + "MP", + "AP" + ] + }, + "Level": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "enumerations": [ + "LL", + "ML", + "HL", + "L0", + "L1", + "L2", + "L3", + "L4" + ] + }, + "MaximumDecodingCapability": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "unit": "Kilobits per second" + } + } + } + }, + "Device.Services.STBService.{i}.Capabilities.AudioOutput.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "AudioFormats": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "string", + "enumerations": [ + "ANALOG-MONO", + "ANALOG-2-CHANNELS", + "ANALOG-5.1-CHANNELS", + "DIGITAL-OPTICAL-SP/DIF", + "DIGITAL-COAXIAL-SP/DIF", + "HDMI", + "RF" + ] + } + } + }, + "Device.Services.STBService.{i}.Capabilities.VideoOutput.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "CompositeVideoStandards": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "string", + "enumerations": [ + "NTSC-J", + "NTSC-M", + "PAL-B", + "PAL-D", + "PAL-G", + "PAL-H", + "PAL-I", + "PAL-N", + "PAL-M", + "SECAM-B", + "SECAM-G", + "SECAM-H", + "SECAM-D", + "SECAM-K", + "SECAM-K1", + "SECAM-L" + ] + } + }, + "VideoFormats": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "string", + "enumerations": [ + "CVBS", + "S-Video", + "YPrPb", + "RGsB", + "RGB", + "HDMI", + "DVI", + "RF" + ] + } + }, + "Macrovision": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 32 + } + ] + }, + "HDCP": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 32 + } + ] + }, + "DisplayFormats": { + "type": "string", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "string", + "pattern": [ + "\\d+:\\d+" + ] + } + } + }, + "Device.Services.STBService.{i}.Capabilities.HDMI.": { + "type": "object", + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "SupportedResolutions": { + "type": "string", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "string", + "enumerations": [ + "640x480p/60Hz", + "1280x720p/60Hz", + "1920x1080i/60Hz", + "720x480p/60Hz", + "720(1440)x480i/60Hz", + "1280x720p/50Hz", + "1920x1080i/50Hz", + "720x576p/50Hz", + "720(1440)x240p/60Hz", + "2880x480i/60Hz", + "2880x240p/60Hz", + "1440x480p/60Hz", + "1920x1080p/60Hz", + "720(1440)x288p/50Hz", + "2880x576i/50Hz", + "2880x288p/50Hz", + "1440x576p/50Hz", + "1920x1080p/50Hz", + "1920x1080p/24Hz", + "1920x1080p/25Hz", + "1920x1080p/30Hz", + "2880x480p/60Hz", + "2880x576p/50Hz", + "1920x1080i (1250 total)/50Hz", + "720(1440)x480i/120Hz", + "720x480p/120Hz", + "1920x1080i/120Hz", + "1280x720p/120Hz", + "720(1440)x480i/240Hz", + "720x480p/240Hz", + "720(1440)x576i/100Hz", + "720x576p/100Hz", + "1920x1080i/100Hz", + "1280x720p/100Hz", + "720(1440)x576i/200Hz", + "720x576p/200Hz", + "1280x720p/24Hz", + "1280x720p/25Hz", + "1280x720p/30Hz", + "1920x1080p/120Hz", + "1920x1080p/100Hz" + ] + } + }, + "CECSupport": { + "type": "boolean", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "boolean" + }, + "HDMI3D": { + "type": "boolean", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "boolean" + } + }, + "Device.Services.STBService.{i}.Capabilities.CDS.": { + "type": "object", + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "PushCapable": { + "type": "boolean", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "boolean" + }, + "PullCapable": { + "type": "boolean", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "boolean" + } + }, + "Device.Services.STBService.{i}.Capabilities.CA.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "CASystems": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "string", + "maxsize": 1024 + } + } + }, + "Device.Services.STBService.{i}.Capabilities.DRM.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "DRMSystems": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "string", + "maxsize": 1024 + } + } + }, + "Device.Services.STBService.{i}.Capabilities.ServiceMonitoring.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "ServiceTypes": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "string", + "enumerations": [ + "IPTV", + "VoD", + "IP", + "TEST", + "IP-All", + "CAB", + "DTT", + "SAT", + "PVR" + ] + } + }, + "MaxEventsPerSampleInterval": { + "type": "int", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "int", + "range": [ + { + "min": -1 + } + ], + "unit": "bytes" + }, + "MaxActiveMainStreams": { + "type": "int", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "int", + "range": [ + { + "min": -1 + } + ] + }, + "MinSampleInterval": { + "type": "int", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "int", + "range": [ + { + "min": -1 + } + ], + "unit": "seconds" + }, + "MaxReportSamples": { + "type": "int", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "int", + "range": [ + { + "min": -1 + } + ] + }, + "HighLevelMetricNames": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "string", + "maxsize": 1024 + } + }, + "MaxMainStreamEventLogEntries": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.4", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + } + }, + "Device.Services.STBService.{i}.Capabilities.AudienceStats.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "MaxAudienceStatsChannels": { + "type": "int", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "int", + "range": [ + { + "min": -1 + } + ] + } + } + }, + "Device.Services.STBService.{i}.Components.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "FrontEndNumberOfEntries": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "AudioDecoderNumberOfEntries": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "VideoDecoderNumberOfEntries": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "AudioOutputNumberOfEntries": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "VideoOutputNumberOfEntries": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "SCARTNumberOfEntries": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "CANumberOfEntries": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "DRMNumberOfEntries": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "HDMINumberOfEntries": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "SPDIFNumberOfEntries": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "Device.Services.STBService.{i}.Components.FrontEnd.{i}.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "uniqueKeys": [ + "Name", + "Alias" + ], + "access": false, + "array": true, + "Enable": { + "type": "boolean", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "boolean" + }, + "Status": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "enumerations": [ + "Disabled", + "Enabled", + "Error" + ] + }, + "Alias": { + "type": "string", + "read": true, + "write": true, + "version": "1.2", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "Alias", + "range": [ + { + "max": 64 + } + ] + }, + "Name": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 256 + } + ] + }, + "Device.Services.STBService.{i}.Components.FrontEnd.{i}.DVBT.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "Device.Services.STBService.{i}.Components.FrontEnd.{i}.DVBT.Modulation.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "Frequency": { + "type": "unsignedInt", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "unit": "kHz" + }, + "ChannelBandwidth": { + "type": "string", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "enumerations": [ + "8MHz", + "7MHz", + "6MHz" + ] + }, + "Constellation": { + "type": "string", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "enumerations": [ + "QPSK", + "16QAM", + "64QAM" + ] + }, + "HierarchicalInformation": { + "type": "string", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "enumerations": [ + "0", + "1", + "2", + "4" + ] + }, + "CodeRateHP": { + "type": "string", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "enumerations": [ + "1/2", + "2/3", + "3/4", + "5/6", + "7/8" + ] + }, + "CodeRateLP": { + "type": "string", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "enumerations": [ + "0", + "1/2", + "2/3", + "3/4", + "5/6", + "7/8" + ] + }, + "GuardInterval": { + "type": "string", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "enumerations": [ + "1/32", + "1/16", + "1/8", + "1/4" + ] + }, + "TransmissionMode": { + "type": "string", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "enumerations": [ + "2k", + "8k" + ] + }, + "SNR": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "unit": "dB" + }, + "BER": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "CBER": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "Locked": { + "type": "boolean", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "boolean" + } + }, + "Device.Services.STBService.{i}.Components.FrontEnd.{i}.DVBT.Service.": { + "type": "object", + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "CurrentLogicalChannel": { + "type": "string", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 256 + } + ] + }, + "CurrentService": { + "type": "string", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 256 + } + ] + } + }, + "Device.Services.STBService.{i}.Components.FrontEnd.{i}.DVBT.Install.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "Start": { + "type": "boolean", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "boolean" + }, + "Status": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "enumerations": [ + "Disabled", + "Enabled", + "Error" + ] + }, + "Progress": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "range": [ + { + "min": 0, + "max": 100 + } + ], + "unit": "%" + }, + "StartFrequency": { + "type": "unsignedInt", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "unit": "kHz" + }, + "StopFrequency": { + "type": "unsignedInt", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "unit": "kHz" + } + }, + "Device.Services.STBService.{i}.Components.FrontEnd.{i}.DVBT.ServiceListDatabase.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "TotalServices": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "LogicalChannelNumberOfEntries": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "Reset": { + "type": "boolean", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "boolean" + }, + "Device.Services.STBService.{i}.Components.FrontEnd.{i}.DVBT.ServiceListDatabase.LogicalChannel.{i}.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "uniqueKeys": [ + "LogicalChannelNumber", + "Alias" + ], + "access": false, + "array": true, + "Alias": { + "type": "string", + "read": true, + "write": true, + "version": "1.2", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "Alias", + "range": [ + { + "max": 64 + } + ] + }, + "LogicalChannelNumber": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "ServiceNumberOfEntries": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "Device.Services.STBService.{i}.Components.FrontEnd.{i}.DVBT.ServiceListDatabase.LogicalChannel.{i}.Service.{i}.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "uniqueKeys": [ + "DvbId", + "Alias" + ], + "access": false, + "array": true, + "Alias": { + "type": "string", + "read": true, + "write": true, + "version": "1.2", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "Alias", + "range": [ + { + "max": 64 + } + ] + }, + "Name": { + "type": "string", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 256 + } + ] + }, + "DvbId": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 12 + } + ] + }, + "Frequency": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "unit": "kHz" + }, + "BER": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "CBER": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "unit": "multiples of 1e-9" + }, + "SNR": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "unit": "dB" + }, + "Preferred": { + "type": "boolean", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "boolean" + } + } + } + }, + "Device.Services.STBService.{i}.Components.FrontEnd.{i}.DVBT.LogicalChannelConnect.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "LogicalChannelNumber": { + "type": "unsignedInt", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + } + }, + "Device.Services.STBService.{i}.Components.FrontEnd.{i}.DVBT.ServiceConnect.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "DvbId": { + "type": "string", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 12 + } + ] + } + } + }, + "Device.Services.STBService.{i}.Components.FrontEnd.{i}.IP.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "InboundNumberOfEntries": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "OutboundNumberOfEntries": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "ActiveInboundIPStreams": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "ActiveOutboundIPStreams": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "Device.Services.STBService.{i}.Components.FrontEnd.{i}.IP.RTCP.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "Enable": { + "type": "boolean", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "boolean" + }, + "Status": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "enumerations": [ + "Disabled", + "Enabled", + "Error" + ] + }, + "TxRepeatInterval": { + "type": "unsignedInt", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "range": [ + { + "min": 1 + } + ], + "unit": "milliseconds" + } + }, + "Device.Services.STBService.{i}.Components.FrontEnd.{i}.IP.RTPAVPF.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "Enable": { + "type": "boolean", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "boolean" + }, + "OperationMode": { + "type": "string", + "read": true, + "write": true, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "enumerations": [ + "Auto", + "Forced" + ] + }, + "ECOperationStatus": { + "type": "string", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "enumerations": [ + "Disabled", + "Auto mode EC On", + "Auto mode EC Off without buffering", + "Auto mode EC Off with buffering", + "Forced mode EC On", + "Error" + ] + }, + "Status": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "enumerations": [ + "Disabled", + "Enabled", + "Error" + ] + }, + "RetransmitTimeout": { + "type": "unsignedInt", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "unit": "milliseconds" + }, + "MinLossPackets": { + "type": "unsignedInt", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "MaxReportTime": { + "type": "unsignedInt", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "unit": "milliseconds" + }, + "MaxLossBurst": { + "type": "unsignedInt", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + } + }, + "Device.Services.STBService.{i}.Components.FrontEnd.{i}.IP.FEC.": { + "type": "object", + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "Enable": { + "type": "boolean", + "read": true, + "write": true, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "boolean" + }, + "OperationMode": { + "type": "string", + "read": true, + "write": true, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "enumerations": [ + "Auto", + "Forced" + ] + }, + "ECOperationStatus": { + "type": "string", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "enumerations": [ + "Disabled", + "Auto mode EC On", + "Auto mode EC Off without buffering", + "Auto mode EC Off with buffering", + "Forced mode EC On", + "Error" + ] + } + }, + "Device.Services.STBService.{i}.Components.FrontEnd.{i}.IP.IGMP.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "Enable": { + "type": "boolean", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "boolean" + }, + "Status": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "enumerations": [ + "Disabled", + "Enabled", + "Error" + ] + }, + "MaximumNumberOfConcurrentGroups": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "MaximumNumberOfTrackedGroups": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "LoggingEnable": { + "type": "boolean", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "boolean" + }, + "DSCPMark": { + "type": "unsignedInt", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "range": [ + { + "min": 0, + "max": 63 + } + ] + }, + "VLANIDMark": { + "type": "int", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "int", + "range": [ + { + "min": -1 + } + ] + }, + "EthernetPriorityMark": { + "type": "int", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "int", + "range": [ + { + "min": -1 + } + ] + }, + "ClientVersion": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "enumerations": [ + "v1", + "v2", + "v3" + ] + }, + "ClientRobustness": { + "type": "unsignedInt", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "ClientUnsolicitedReportInterval": { + "type": "unsignedInt", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "range": [ + { + "min": 1, + "max": 25 + } + ], + "unit": "seconds" + }, + "ClientGroupNumberOfEntries": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "ClientGroupStatsNumberOfEntries": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "Device.Services.STBService.{i}.Components.FrontEnd.{i}.IP.IGMP.ClientGroup.{i}.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "uniqueKeys": [ + "GroupAddress", + "Alias" + ], + "access": false, + "array": true, + "Alias": { + "type": "string", + "read": true, + "write": true, + "version": "1.2", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "Alias", + "range": [ + { + "max": 64 + } + ] + }, + "GroupAddress": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "IPAddress", + "range": [ + { + "max": 45 + } + ] + }, + "UpTime": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "unit": "seconds" + } + }, + "Device.Services.STBService.{i}.Components.FrontEnd.{i}.IP.IGMP.ClientGroupStats.{i}.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "uniqueKeys": [ + "GroupAddress", + "Alias" + ], + "access": false, + "array": true, + "Alias": { + "type": "string", + "read": true, + "write": true, + "version": "1.2", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "Alias", + "range": [ + { + "max": 64 + } + ] + }, + "GroupAddress": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "IPAddress", + "range": [ + { + "max": 45 + } + ] + }, + "TotalStart": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "unit": "seconds" + }, + "CurrentDayStart": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "unit": "seconds" + }, + "QuarterHourStart": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "unit": "seconds" + }, + "Device.Services.STBService.{i}.Components.FrontEnd.{i}.IP.IGMP.ClientGroupStats.{i}.Total.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "NumberOfJoins": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "NumberOfLeaves": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "MaxJoinDelay": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "unit": "milliseconds" + } + }, + "Device.Services.STBService.{i}.Components.FrontEnd.{i}.IP.IGMP.ClientGroupStats.{i}.CurrentDay.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "NumberOfJoins": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "NumberOfLeaves": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "MaxJoinDelay": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "unit": "milliseconds" + } + }, + "Device.Services.STBService.{i}.Components.FrontEnd.{i}.IP.IGMP.ClientGroupStats.{i}.QuarterHour.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "NumberOfJoins": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "NumberOfLeaves": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "MaxJoinDelay": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "unit": "milliseconds" + } + } + } + }, + "Device.Services.STBService.{i}.Components.FrontEnd.{i}.IP.Dejittering.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "BufferSize": { + "type": "unsignedInt", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "unit": "milliseconds" + }, + "BufferInitialLevel": { + "type": "unsignedInt", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "unit": "milliseconds" + } + }, + "Device.Services.STBService.{i}.Components.FrontEnd.{i}.IP.Inbound.{i}.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "uniqueKeys": [ + "Name", + "Alias" + ], + "access": false, + "array": true, + "Status": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "enumerations": [ + "Disabled", + "Enabled", + "Error" + ] + }, + "Alias": { + "type": "string", + "read": true, + "write": true, + "version": "1.2", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "Alias", + "range": [ + { + "max": 64 + } + ] + }, + "Name": { + "type": "string", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 256 + } + ] + }, + "StreamingControlProtocol": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string" + }, + "StreamingTransportProtocol": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string" + }, + "StreamingTransportControlProtocol": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string" + }, + "MultiplexType": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string" + }, + "DownloadTransportProtocol": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string" + }, + "SourceAddress": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "IPAddress", + "range": [ + { + "max": 45 + } + ] + }, + "SourcePort": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "range": [ + { + "min": 0, + "max": 65535 + } + ] + }, + "DestinationAddress": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "IPAddress", + "range": [ + { + "max": 45 + } + ] + }, + "DestinationPort": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "range": [ + { + "min": 0, + "max": 65535 + } + ] + }, + "URI": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 256 + } + ] + } + }, + "Device.Services.STBService.{i}.Components.FrontEnd.{i}.IP.Outbound.{i}.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "uniqueKeys": [ + "Name", + "Alias" + ], + "access": false, + "array": true, + "Status": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "enumerations": [ + "Disabled", + "Enabled", + "Error" + ] + }, + "Alias": { + "type": "string", + "read": true, + "write": true, + "version": "1.2", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "Alias", + "range": [ + { + "max": 64 + } + ] + }, + "Name": { + "type": "string", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 256 + } + ] + }, + "MultiplexType": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string" + }, + "URI": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 256 + } + ] + } + }, + "Device.Services.STBService.{i}.Components.FrontEnd.{i}.IP.ServiceConnect.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "URI": { + "type": "string", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 256 + } + ] + } + }, + "Device.Services.STBService.{i}.Components.FrontEnd.{i}.IP.ForceMonitor.": { + "type": "object", + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "Enable": { + "type": "boolean", + "read": true, + "write": true, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "boolean" + }, + "Status": { + "type": "string", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "enumerations": [ + "Normal", + "Force Monitor" + ] + }, + "URI": { + "type": "string", + "read": true, + "write": true, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 256 + } + ] + } + } + } + }, + "Device.Services.STBService.{i}.Components.PVR.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "StorageNumberOfEntries": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "Device.Services.STBService.{i}.Components.PVR.Storage.{i}.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "uniqueKeys": [ + "Name", + "Alias" + ], + "access": false, + "array": true, + "Alias": { + "type": "string", + "read": true, + "write": true, + "version": "1.2", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "Alias", + "range": [ + { + "max": 64 + } + ] + }, + "Name": { + "type": "string", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 256 + } + ] + }, + "Reference": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 256 + } + ] + } + } + }, + "Device.Services.STBService.{i}.Components.AudioDecoder.{i}.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "uniqueKeys": [ + "Name", + "Alias" + ], + "access": false, + "array": true, + "Enable": { + "type": "boolean", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "boolean" + }, + "Status": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "enumerations": [ + "Disabled", + "Enabled", + "Error" + ] + }, + "Alias": { + "type": "string", + "read": true, + "write": true, + "version": "1.2", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "Alias", + "range": [ + { + "max": 64 + } + ] + }, + "Name": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 256 + } + ] + }, + "AudioStandard": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string" + } + }, + "Device.Services.STBService.{i}.Components.VideoDecoder.{i}.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "uniqueKeys": [ + "Name", + "Alias" + ], + "access": false, + "array": true, + "Enable": { + "type": "boolean", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "boolean" + }, + "Status": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "enumerations": [ + "Disabled", + "Enabled", + "Error" + ] + }, + "Alias": { + "type": "string", + "read": true, + "write": true, + "version": "1.2", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "Alias", + "range": [ + { + "max": 64 + } + ] + }, + "Name": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 256 + } + ] + }, + "MPEG2Part2": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 256 + } + ] + }, + "MPEG4Part2": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 256 + } + ] + }, + "MPEG4Part10": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 256 + } + ] + }, + "SMPTEVC1": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 256 + } + ] + }, + "ContentAspectRatio": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "enumerations": [ + "4:3", + "16:9" + ] + } + }, + "Device.Services.STBService.{i}.Components.AudioOutput.{i}.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "uniqueKeys": [ + "Name", + "Alias" + ], + "access": false, + "array": true, + "Enable": { + "type": "boolean", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "boolean" + }, + "Status": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "enumerations": [ + "Disabled", + "Enabled", + "Muted", + "Error" + ] + }, + "Alias": { + "type": "string", + "read": true, + "write": true, + "version": "1.2", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "Alias", + "range": [ + { + "max": 64 + } + ] + }, + "Name": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 256 + } + ] + }, + "AudioFormat": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string" + }, + "AudioLevel": { + "type": "unsignedInt", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "range": [ + { + "min": 0, + "max": 100 + } + ], + "unit": "%" + }, + "CancelMute": { + "type": "boolean", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "boolean" + }, + "SCARTs": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "string", + "maxsize": 1024 + } + } + }, + "Device.Services.STBService.{i}.Components.SPDIF.{i}.": { + "type": "object", + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "uniqueKeys": [ + "Name", + "Alias" + ], + "access": false, + "array": true, + "Enable": { + "type": "boolean", + "read": true, + "write": true, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "boolean" + }, + "Status": { + "type": "string", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "enumerations": [ + "Disabled", + "Enabled", + "Error" + ] + }, + "Alias": { + "type": "string", + "read": true, + "write": true, + "version": "1.2", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "Alias", + "range": [ + { + "max": 64 + } + ] + }, + "Name": { + "type": "string", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 256 + } + ] + }, + "ForcePCM": { + "type": "boolean", + "read": true, + "write": true, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "boolean" + }, + "Passthrough": { + "type": "boolean", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "boolean" + }, + "AudioDelay": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "unit": "milliseconds" + } + }, + "Device.Services.STBService.{i}.Components.VideoOutput.{i}.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "uniqueKeys": [ + "Name", + "Alias" + ], + "access": false, + "array": true, + "Enable": { + "type": "boolean", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "boolean" + }, + "Status": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "enumerations": [ + "Disabled", + "Enabled", + "ColorbarEnabled", + "Error" + ] + }, + "Alias": { + "type": "string", + "read": true, + "write": true, + "version": "1.2", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "Alias", + "range": [ + { + "max": 64 + } + ] + }, + "ColorbarEnable": { + "type": "boolean", + "read": true, + "write": true, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "boolean" + }, + "Name": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 256 + } + ] + }, + "CompositeVideoStandard": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string" + }, + "VideoFormat": { + "type": "string", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string" + }, + "AspectRatioBehaviour": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "enumerations": [ + "None", + "Letterbox", + "16:9 Letterbox", + "14:9 Letterbox", + "CenterCutOut", + "Combined", + "Combined 16:9 Letterbox and CenterCutOut", + "Combined 14:9 Letterbox and CenterCutOut" + ] + }, + "DisplayFormat": { + "type": "string", + "read": true, + "write": true, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string" + }, + "Macrovision": { + "type": "boolean", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "boolean" + }, + "HDCP": { + "type": "boolean", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "boolean" + }, + "SCARTs": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "string", + "maxsize": 1024 + } + } + }, + "Device.Services.STBService.{i}.Components.SCART.{i}.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "uniqueKeys": [ + "Name", + "Alias" + ], + "access": false, + "array": true, + "Enable": { + "type": "boolean", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "boolean" + }, + "Status": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "enumerations": [ + "Disabled", + "Enabled", + "Error" + ] + }, + "Alias": { + "type": "string", + "read": true, + "write": true, + "version": "1.2", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "Alias", + "range": [ + { + "max": 64 + } + ] + }, + "Name": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 256 + } + ] + }, + "Presence": { + "type": "boolean", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "boolean" + } + }, + "Device.Services.STBService.{i}.Components.HDMI.{i}.": { + "type": "object", + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "uniqueKeys": [ + "Name", + "Alias" + ], + "access": false, + "array": true, + "Enable": { + "type": "boolean", + "read": true, + "write": true, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "boolean" + }, + "Status": { + "type": "string", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "enumerations": [ + "Disabled", + "Enabled", + "Error" + ] + }, + "Alias": { + "type": "string", + "read": true, + "write": true, + "version": "1.2", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "Alias", + "range": [ + { + "max": 64 + } + ] + }, + "Name": { + "type": "string", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 256 + } + ] + }, + "ResolutionMode": { + "type": "string", + "read": true, + "write": true, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "enumerations": [ + "Auto", + "Manual" + ] + }, + "ResolutionValue": { + "type": "string", + "read": true, + "write": true, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string" + }, + "Device.Services.STBService.{i}.Components.HDMI.{i}.DisplayDevice.": { + "type": "object", + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "Status": { + "type": "string", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "enumerations": [ + "Present", + "None", + "Error" + ] + }, + "Name": { + "type": "string", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 256 + } + ] + }, + "EEDID": { + "type": "hexBinary", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "hexBinary", + "range": [ + { + "max": 256 + } + ] + }, + "SupportedResolutions": { + "type": "string", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "string" + } + }, + "PreferredResolution": { + "type": "string", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string" + }, + "VideoLatency": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "unit": "milliseconds" + }, + "CECSupport": { + "type": "boolean", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "boolean" + }, + "AutoLipSyncSupport": { + "type": "boolean", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "boolean" + }, + "HDMI3DPresent": { + "type": "boolean", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "boolean" + } + } + }, + "Device.Services.STBService.{i}.Components.CA.{i}.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "uniqueKeys": [ + "Name", + "Alias" + ], + "access": false, + "array": true, + "Enable": { + "type": "boolean", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "boolean" + }, + "Status": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "enumerations": [ + "Disabled", + "Enabled", + "Error" + ] + }, + "Alias": { + "type": "string", + "read": true, + "write": true, + "version": "1.2", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "Alias", + "range": [ + { + "max": 64 + } + ] + }, + "Name": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 256 + } + ] + }, + "SmartCardReader": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 256 + } + ] + } + }, + "Device.Services.STBService.{i}.Components.DRM.{i}.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "uniqueKeys": [ + "Name", + "Alias" + ], + "access": false, + "array": true, + "Enable": { + "type": "boolean", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "boolean" + }, + "Status": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "enumerations": [ + "Disabled", + "Enabled", + "Error" + ] + }, + "Alias": { + "type": "string", + "read": true, + "write": true, + "version": "1.2", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "Alias", + "range": [ + { + "max": 64 + } + ] + }, + "Name": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 256 + } + ] + }, + "SmartCardReader": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 256 + } + ] + } + } + }, + "Device.Services.STBService.{i}.AVStreams.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "ActiveAVStreams": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "AVStreamNumberOfEntries": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "Device.Services.STBService.{i}.AVStreams.AVStream.{i}.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "uniqueKeys": [ + "Name", + "Alias" + ], + "access": false, + "array": true, + "Status": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "enumerations": [ + "Disabled", + "Enabled", + "Error_PVRWriteFailure", + "Error_PVRReadFailure", + "Error" + ] + }, + "Alias": { + "type": "string", + "read": true, + "write": true, + "version": "1.2", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "Alias", + "range": [ + { + "max": 64 + } + ] + }, + "Name": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 256 + } + ] + }, + "PVRState": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "enumerations": [ + "Disabled", + "Stopped", + "Play", + "Paused", + "FastForward", + "Rewind" + ] + }, + "FrontEnd": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 256 + } + ] + }, + "Inbound": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 256 + } + ] + }, + "Outbound": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 256 + } + ] + }, + "AudioDecoder": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 256 + } + ] + }, + "VideoDecoder": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 256 + } + ] + }, + "CA": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 256 + } + ] + }, + "DRM": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 256 + } + ] + } + } + }, + "Device.Services.STBService.{i}.AVPlayers.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "ActiveAVPlayers": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "AVPlayerNumberOfEntries": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "PreferredAudioLanguage": { + "type": "string", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 64 + } + ] + }, + "PreferredSubtitlingLanguage": { + "type": "string", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 64 + } + ] + }, + "PreferredBehaviour": { + "type": "string", + "read": true, + "write": true, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 64 + } + ] + }, + "ResetPINCode": { + "type": "boolean", + "read": true, + "write": true, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "boolean" + }, + "Device.Services.STBService.{i}.AVPlayers.AVPlayer.{i}.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "uniqueKeys": [ + "Name", + "Alias" + ], + "access": false, + "array": true, + "Enable": { + "type": "boolean", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "boolean" + }, + "Status": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "enumerations": [ + "Disabled", + "Enabled", + "Error" + ] + }, + "Alias": { + "type": "string", + "read": true, + "write": true, + "version": "1.2", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "Alias", + "range": [ + { + "max": 64 + } + ] + }, + "Name": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 256 + } + ] + }, + "AudioLanguage": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 64 + } + ] + }, + "SubtitlingStatus": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "enumerations": [ + "Disabled", + "Enabled", + "Error" + ] + }, + "SubtitlingLanguage": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 64 + } + ] + }, + "AudioOutputs": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "string", + "maxsize": 1024 + } + }, + "VideoOutputs": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "string", + "maxsize": 1024 + } + }, + "MainStream": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 256 + } + ] + }, + "PIPStreams": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "string", + "maxsize": 1024 + } + } + } + }, + "Device.Services.STBService.{i}.ServiceMonitoring.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "SampleEnable": { + "type": "boolean", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "boolean" + }, + "SampleState": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "enumerations": [ + "Disabled", + "Enabled", + "Trigger" + ] + }, + "SampleInterval": { + "type": "unsignedInt", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "range": [ + { + "min": 1 + } + ], + "unit": "seconds" + }, + "ReportSamples": { + "type": "unsignedInt", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "range": [ + { + "min": 1 + } + ] + }, + "EventsPerSampleInterval": { + "type": "unsignedInt", + "read": true, + "write": true, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "range": [ + { + "min": 1 + } + ] + }, + "FetchSamples": { + "type": "unsignedInt", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "TimeReference": { + "type": "dateTime", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "dateTime" + }, + "ForceSample": { + "type": "boolean", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "boolean" + }, + "ReportStartTime": { + "type": "dateTime", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "dateTime" + }, + "ReportEndTime": { + "type": "dateTime", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "dateTime" + }, + "MainStreamNumberOfEntries": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "EventCollectionEnable": { + "type": "boolean", + "read": true, + "write": true, + "version": "1.4", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "boolean" + }, + "Device.Services.STBService.{i}.ServiceMonitoring.MainStream.{i}.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "uniqueKeys": [ + "ServiceType", + "Alias" + ], + "access": false, + "array": true, + "Enable": { + "type": "boolean", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "boolean" + }, + "Status": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "enumerations": [ + "Disabled", + "Enabled", + "Error" + ] + }, + "SessionId": { + "type": "string", + "read": true, + "write": false, + "version": "1.4", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "UUID", + "range": [ + { + "min": 36, + "max": 36 + } + ], + "pattern": [ + "[A-Fa-f0-9]{8}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{12}" + ] + }, + "Alias": { + "type": "string", + "read": true, + "write": true, + "version": "1.2", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "Alias", + "range": [ + { + "max": 64 + } + ] + }, + "ServiceType": { + "type": "string", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string" + }, + "AVStream": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 256 + } + ] + }, + "Gmin": { + "type": "unsignedInt", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "SevereLossMinDistance": { + "type": "unsignedInt", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "SevereLossMinLength": { + "type": "unsignedInt", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "ChannelChangeFailureTimeout": { + "type": "unsignedInt", + "read": true, + "write": true, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "unit": "seconds" + }, + "PacketsLostByEventHistogramIntervals": { + "type": "string", + "read": true, + "write": true, + "version": "1.3", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt", + "range": [ + { + "min": 1 + } + ], + "unit": "packets" + } + }, + "DelayBetweenLossEventsHistogramIntervals": { + "type": "string", + "read": true, + "write": true, + "version": "1.3", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt", + "range": [ + { + "min": 1 + } + ], + "unit": "milliseconds" + } + }, + "DurationSevereLossEventsHistogramIntervals": { + "type": "string", + "read": true, + "write": true, + "version": "1.3", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt", + "range": [ + { + "min": 1 + } + ], + "unit": "milliseconds" + } + }, + "Device.Services.STBService.{i}.ServiceMonitoring.MainStream.{i}.Total.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "TotalSeconds": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "Reset": { + "type": "boolean", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "boolean" + }, + "ResetTime": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "Device.Services.STBService.{i}.ServiceMonitoring.MainStream.{i}.Total.DejitteringStats.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "TotalSeconds": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "EmptyBufferTime": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "unit": "milliseconds" + }, + "Overruns": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "Underruns": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + } + }, + "Device.Services.STBService.{i}.ServiceMonitoring.MainStream.{i}.Total.TCPStats.": { + "type": "object", + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "TotalSeconds": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "PacketsReceived": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "PacketsRetransmitted": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "BytesReceived": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + } + }, + "Device.Services.STBService.{i}.ServiceMonitoring.MainStream.{i}.Total.RTPStats.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "TotalSeconds": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "PacketsExpected": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "PacketsDiscarded": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "PacketsOutOfSequence": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "PacketsReceived": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "PacketsReceivedBeforeEC": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "PacketsLost": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "PacketsLostBeforeEC": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "PacketsLostByEventHistogram": { + "type": "string", + "read": true, + "write": false, + "version": "1.3", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + }, + "PacketsLostByEventHistogramBeforeEC": { + "type": "string", + "read": true, + "write": false, + "version": "1.3", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + }, + "LossEvents": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "LossEventsBeforeEC": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "DelayBetweenLossEventsHistogram": { + "type": "string", + "read": true, + "write": false, + "version": "1.3", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + }, + "DelayBetweenLossEventsHistogramBeforeEC": { + "type": "string", + "read": true, + "write": false, + "version": "1.3", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + }, + "SevereLossIndexCount": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "SevereLossIndexCountBeforeEC": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "SevereLossLengthCount": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "SevereLossLengthCountBeforeEC": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "DurationSevereLossEventsHistogram": { + "type": "string", + "read": true, + "write": false, + "version": "1.3", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + }, + "DurationSevereLossEventsHistogramBeforeEC": { + "type": "string", + "read": true, + "write": false, + "version": "1.3", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + }, + "RetransmitTimeouts": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + } + }, + "Device.Services.STBService.{i}.ServiceMonitoring.MainStream.{i}.Total.MPEG2TSStats.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "TotalSeconds": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "TSPacketsReceived": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "TSSyncByteErrorCount": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "TSSyncLossCount": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "PacketDiscontinuityCounter": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "PacketDiscontinuityCounterBeforeCA": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + } + }, + "Device.Services.STBService.{i}.ServiceMonitoring.MainStream.{i}.Total.VideoDecoderStats.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "TotalSeconds": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "FrameRate": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "DecodedFrames": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "LostFrames": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "ConcealedFrames": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "IDecodedFrames": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "ILostFrames": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "IConcealedFrames": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "PDecodedFrames": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "PLostFrames": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "PConcealedFrames": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "BDecodedFrames": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "BLostFrames": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "BConcealedFrames": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "AVResynchCounter": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + } + }, + "Device.Services.STBService.{i}.ServiceMonitoring.MainStream.{i}.Total.AudioDecoderStats.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "TotalSeconds": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "DecodedFrames": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "DecodingErrors": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + } + }, + "Device.Services.STBService.{i}.ServiceMonitoring.MainStream.{i}.Total.VideoResponseStats.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "TotalSeconds": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "ChannelChangeFailures": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "ChannelFailures": { + "type": "string", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "string", + "item": { + "max": 10 + } + } + }, + "MinimumVoDControlResponse": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "unit": "milliseconds" + }, + "MaximumVoDControlResponse": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "unit": "milliseconds" + }, + "RequestedTransactions": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "AccessSuccesses": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "CompletionCount": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "MinimumVideoSystemResponse": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "unit": "milliseconds" + }, + "MaximumVideoSystemResponse": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "unit": "milliseconds" + } + } + }, + "Device.Services.STBService.{i}.ServiceMonitoring.MainStream.{i}.Sample.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "SampleSeconds": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt", + "unit": "seconds" + } + }, + "SignificantChanges": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + }, + "PVRTimeShift": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "boolean" + } + }, + "HighLevelMetricStatsNumberOfEntries": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "Device.Services.STBService.{i}.ServiceMonitoring.MainStream.{i}.Sample.DejitteringStats.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "SampleSeconds": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt", + "unit": "seconds" + } + }, + "Overruns": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + }, + "Underruns": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + }, + "EmptyBufferTime": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt", + "unit": "milliseconds" + } + } + }, + "Device.Services.STBService.{i}.ServiceMonitoring.MainStream.{i}.Sample.TCPStats.": { + "type": "object", + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "SampleSeconds": { + "type": "string", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt", + "unit": "seconds" + } + }, + "PacketsReceived": { + "type": "string", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + }, + "PacketsRetransmitted": { + "type": "string", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + }, + "BytesReceived": { + "type": "string", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + } + }, + "Device.Services.STBService.{i}.ServiceMonitoring.MainStream.{i}.Sample.RTPStats.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "SampleSeconds": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt", + "unit": "seconds" + } + }, + "PacketsExpected": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + }, + "PacketsDiscarded": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + }, + "PacketsOutOfSequence": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + }, + "PacketsReceived": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + }, + "PacketsReceivedBeforeEC": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + }, + "RetransmitTimeouts": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + }, + "PacketsLost": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + }, + "PacketsLostBeforeEC": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + }, + "PacketsLostByEventHistogram": { + "type": "string", + "read": true, + "write": false, + "version": "1.3", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "string" + } + }, + "PacketsLostByEventHistogramBeforeEC": { + "type": "string", + "read": true, + "write": false, + "version": "1.3", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "string" + } + }, + "LossEvents": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + }, + "LossEventsBeforeEC": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + }, + "DelayBetweenLossEventsHistogram": { + "type": "string", + "read": true, + "write": false, + "version": "1.3", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "string" + } + }, + "DelayBetweenLossEventsHistogramBeforeEC": { + "type": "string", + "read": true, + "write": false, + "version": "1.3", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "string" + } + }, + "SevereLossIndexCount": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + }, + "SevereLossIndexCountBeforeEC": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + }, + "AverageLossDistance": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt", + "unit": "RTP packets" + } + }, + "AverageLossDistanceBeforeEC": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt", + "unit": "RTP packets" + } + }, + "MinimumLossDistance": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt", + "unit": "RTP packets" + } + }, + "MinimumLossDistanceBeforeEC": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt", + "unit": "RTP packets" + } + }, + "SevereLossLengthCount": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + }, + "SevereLossLengthCountBeforeEC": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + }, + "DurationSevereLossEventsHistogram": { + "type": "string", + "read": true, + "write": false, + "version": "1.3", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "string" + } + }, + "DurationSevereLossEventsHistogramBeforeEC": { + "type": "string", + "read": true, + "write": false, + "version": "1.3", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "string" + } + }, + "MaximumLossPeriod": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt", + "unit": "RTP packets" + } + }, + "MaximumLossPeriodBeforeEC": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt", + "unit": "RTP packets" + } + }, + "AverageLossPeriod": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt", + "unit": "RTP packets" + } + }, + "AverageLossPeriodBeforeEC": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt", + "unit": "RTP packets" + } + }, + "MinimumLossPeriod": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt", + "unit": "RTP packets" + } + }, + "MinimumLossPeriodBeforeEC": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt", + "unit": "RTP packets" + } + } + }, + "Device.Services.STBService.{i}.ServiceMonitoring.MainStream.{i}.Sample.MPEG2TSStats.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "SampleSeconds": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt", + "unit": "seconds" + } + }, + "TSPacketsReceived": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + }, + "TSPacketsDrained": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + }, + "TSSyncByteErrorCount": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + }, + "TSSyncLossCount": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + }, + "PacketDiscontinuityCounter": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + }, + "PacketDiscontinuityCounterBeforeCA": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + } + }, + "Device.Services.STBService.{i}.ServiceMonitoring.MainStream.{i}.Sample.VideoDecoderStats.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "SampleSeconds": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt", + "unit": "seconds" + } + }, + "FrameRate": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + }, + "DecodedFrames": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + }, + "LostFrames": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + }, + "ConcealedFrames": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + }, + "IDecodedFrames": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + }, + "ILostFrames": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + }, + "IConcealedFrames": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + }, + "PDecodedFrames": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + }, + "PLostFrames": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + }, + "PConcealedFrames": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + }, + "BDecodedFrames": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + }, + "BLostFrames": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + }, + "BConcealedFrames": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + }, + "AVResynchCounter": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + } + }, + "Device.Services.STBService.{i}.ServiceMonitoring.MainStream.{i}.Sample.AudioDecoderStats.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "SampleSeconds": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt", + "unit": "seconds" + } + }, + "DecodedFrames": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + }, + "DecodingErrors": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + } + }, + "Device.Services.STBService.{i}.ServiceMonitoring.MainStream.{i}.Sample.VideoResponseStats.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "SampleSeconds": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt", + "unit": "seconds" + } + }, + "AverageVideoSystemResponse": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt", + "unit": "milliseconds" + } + }, + "MinimumVideoSystemResponse": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt", + "unit": "milliseconds" + } + }, + "MaximumVideoSystemResponse": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt", + "unit": "milliseconds" + } + }, + "AverageVoDControlResponse": { + "type": "string", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt", + "unit": "milliseconds" + } + }, + "MinimumVoDControlResponse": { + "type": "string", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt", + "unit": "milliseconds" + } + }, + "MaximumVoDControlResponse": { + "type": "string", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt", + "unit": "milliseconds" + } + }, + "VoDControlResponse": { + "type": "string", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "string", + "pattern": [ + "(\\d+(:\\d+)*)?" + ] + } + }, + "VideoSystemResponse": { + "type": "string", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "string", + "pattern": [ + "(\\d+(:\\d+)*)?" + ] + } + }, + "RequestedTransactions": { + "type": "string", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + }, + "AccessSuccesses": { + "type": "string", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + }, + "CompletionCount": { + "type": "string", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + }, + "ChannelChangeFailures": { + "type": "string", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt" + } + } + }, + "Device.Services.STBService.{i}.ServiceMonitoring.MainStream.{i}.Sample.HighLevelMetricStats.{i}.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "uniqueKeys": [ + "MetricName", + "Alias" + ], + "access": false, + "array": true, + "Enable": { + "type": "boolean", + "read": true, + "write": true, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "boolean" + }, + "Status": { + "type": "string", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "enumerations": [ + "Disabled", + "Enabled", + "Error" + ] + }, + "Alias": { + "type": "string", + "read": true, + "write": true, + "version": "1.2", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "Alias", + "range": [ + { + "max": 64 + } + ] + }, + "MetricName": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 256 + } + ] + }, + "Metric1Threshold": { + "type": "unsignedInt", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "range": [ + { + "min": 0, + "max": 65535 + } + ] + }, + "Metric2Threshold": { + "type": "unsignedInt", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "range": [ + { + "min": 0, + "max": 65535 + } + ] + }, + "SampleSeconds": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt", + "unit": "seconds" + } + }, + "Metric1": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt", + "range": [ + { + "min": 0, + "max": 65535 + } + ] + } + }, + "Metric2": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt", + "range": [ + { + "min": 0, + "max": 65535 + } + ] + } + }, + "Metric1Failures": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "Metric2Failures": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "MetricSampleInterval": { + "type": "unsignedInt", + "read": true, + "write": true, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "unit": "seconds" + }, + "MetricThreshold": { + "type": "unsignedInt", + "read": true, + "write": true, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "range": [ + { + "min": 0, + "max": 65535 + } + ] + }, + "Metric": { + "type": "string", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt", + "range": [ + { + "min": 0, + "max": 65535 + } + ] + } + }, + "MetricFailures": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + } + } + }, + "Device.Services.STBService.{i}.ServiceMonitoring.MainStream.{i}.EventLog.": { + "type": "object", + "version": "1.4", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "Reset": { + "type": "boolean", + "read": true, + "write": true, + "version": "1.4", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "boolean" + }, + "EntryNumberOfEntries": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.4", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "Device.Services.STBService.{i}.ServiceMonitoring.MainStream.{i}.EventLog.Entry.{i}.": { + "type": "object", + "version": "1.4", + "protocols": [ + "cwmp", + "usp" + ], + "uniqueKeys": [ + "SequenceNumber" + ], + "access": false, + "array": true, + "SequenceNumber": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.4", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "range": [ + { + "min": 1 + } + ] + }, + "Type": { + "type": "string", + "read": true, + "write": false, + "version": "1.4", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string" + }, + "Time": { + "type": "dateTime", + "read": true, + "write": false, + "version": "1.4", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "dateTime" + }, + "ParameterNumberOfEntries": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.4", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "Device.Services.STBService.{i}.ServiceMonitoring.MainStream.{i}.EventLog.Entry.{i}.Parameter.{i}.": { + "type": "object", + "version": "1.4", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": true, + "Name": { + "type": "string", + "read": true, + "write": false, + "version": "1.4", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string" + }, + "Value": { + "type": "string", + "read": true, + "write": false, + "version": "1.4", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string" + } + } + } + } + }, + "Device.Services.STBService.{i}.ServiceMonitoring.GlobalOperation.": { + "type": "object", + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "Device.Services.STBService.{i}.ServiceMonitoring.GlobalOperation.Total.": { + "type": "object", + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "ServiceAccessTime": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "unit": "milliseconds" + }, + "MinimumPortalResponse": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "unit": "milliseconds" + }, + "MaximumPortalResponse": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "unit": "milliseconds" + } + }, + "Device.Services.STBService.{i}.ServiceMonitoring.GlobalOperation.Sample.": { + "type": "object", + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "MinimumPortalResponse": { + "type": "string", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt", + "unit": "milliseconds" + } + }, + "MaximumPortalResponse": { + "type": "string", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "unsignedInt", + "unit": "milliseconds" + } + }, + "PortalResponse": { + "type": "string", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "list": { + "datatype": "string", + "pattern": [ + "(\\d+(:\\d+)*)?" + ] + } + } + } + } + }, + "Device.Services.STBService.{i}.Applications.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "ServiceProviderNumberOfEntries": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "Device.Services.STBService.{i}.Applications.AudienceStats.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "Enable": { + "type": "boolean", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "boolean" + }, + "Reset": { + "type": "boolean", + "read": true, + "write": true, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "boolean" + }, + "ResetTime": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "unit": "seconds" + }, + "ChannelNumberOfEntries": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "Device.Services.STBService.{i}.Applications.AudienceStats.Channel.{i}.": { + "type": "object", + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "uniqueKeys": [ + "Name", + "Alias" + ], + "access": false, + "array": true, + "Alias": { + "type": "string", + "read": true, + "write": true, + "version": "1.2", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "Alias", + "range": [ + { + "max": 64 + } + ] + }, + "Name": { + "type": "string", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 256 + } + ] + }, + "Duration": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.0", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "unit": "seconds" + } + } + }, + "Device.Services.STBService.{i}.Applications.CDSPush.": { + "type": "object", + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "Reference": { + "type": "string", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 256 + } + ] + }, + "ContentItemNumberOfEntries": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "Device.Services.STBService.{i}.Applications.CDSPush.ContentItem.{i}.": { + "type": "object", + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "uniqueKeys": [ + "ContentReferenceId", + "Alias" + ], + "access": false, + "array": true, + "Alias": { + "type": "string", + "read": true, + "write": true, + "version": "1.2", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "Alias", + "range": [ + { + "max": 64 + } + ] + }, + "ContentReferenceId": { + "type": "string", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string" + }, + "VersionNumber": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "range": [ + { + "min": 0, + "max": 255 + } + ], + "unit": "%" + }, + "DeleteItem": { + "type": "boolean", + "read": true, + "write": true, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "boolean" + } + } + }, + "Device.Services.STBService.{i}.Applications.CDSPull.": { + "type": "object", + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "access": false, + "array": false, + "Reference": { + "type": "string", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 256 + } + ] + }, + "ContentItemNumberOfEntries": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt" + }, + "Device.Services.STBService.{i}.Applications.CDSPull.ContentItem.{i}.": { + "type": "object", + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "uniqueKeys": [ + "ContentReferenceId", + "Alias" + ], + "access": false, + "array": true, + "Alias": { + "type": "string", + "read": true, + "write": true, + "version": "1.2", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "Alias", + "range": [ + { + "max": 64 + } + ] + }, + "ContentReferenceId": { + "type": "string", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string" + }, + "VersionNumber": { + "type": "unsignedInt", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "unsignedInt", + "range": [ + { + "min": 0, + "max": 255 + } + ], + "unit": "%" + }, + "DeleteItem": { + "type": "boolean", + "read": true, + "write": true, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "boolean" + } + } + }, + "Device.Services.STBService.{i}.Applications.ServiceProvider.{i}.": { + "type": "object", + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "uniqueKeys": [ + "Name", + "Alias" + ], + "access": false, + "array": true, + "Alias": { + "type": "string", + "read": true, + "write": true, + "version": "1.2", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "Alias", + "range": [ + { + "max": 64 + } + ] + }, + "Name": { + "type": "string", + "read": true, + "write": true, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 256 + } + ] + }, + "Domain": { + "type": "string", + "read": true, + "write": true, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 256 + } + ] + }, + "ServiceDiscoveryServer": { + "type": "string", + "read": true, + "write": true, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 256 + } + ] + }, + "ActiveBCGServers": { + "type": "string", + "read": true, + "write": false, + "version": "1.1", + "protocols": [ + "cwmp", + "usp" + ], + "datatype": "string", + "range": [ + { + "max": 1024 + } + ] + } + } + } + } +} diff --git a/dmtree/json/tr181.json b/dmtree/json/tr181.json index 2cbb41a4..a827c44e 100644 --- a/dmtree/json/tr181.json +++ b/dmtree/json/tr181.json @@ -1,6 +1,7 @@ { "Device.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11,6 +12,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -29,6 +31,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39,6 +42,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "usp" ], @@ -46,18 +50,24 @@ }, "Reboot()": { "type": "command", + "async": false, + "version": "2.12", "protocols": [ "usp" ] }, "FactoryReset()": { "type": "command", + "async": false, + "version": "2.12", "protocols": [ "usp" ] }, "SelfTestDiagnostics()": { "type": "command", + "async": true, + "version": "2.12", "protocols": [ "usp" ], @@ -66,6 +76,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -80,6 +91,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -94,6 +106,8 @@ }, "PacketCaptureDiagnostics()": { "type": "command", + "async": true, + "version": "2.13", "protocols": [ "usp" ], @@ -102,6 +116,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -116,6 +131,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -129,6 +145,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -144,6 +161,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -153,6 +171,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -162,6 +181,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -176,6 +196,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -190,6 +211,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -204,6 +226,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -220,6 +243,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -236,6 +260,8 @@ }, "ScheduleTimer()": { "type": "command", + "async": true, + "version": "2.12", "protocols": [ "usp" ], @@ -244,6 +270,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -261,6 +288,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "usp" ], @@ -270,6 +298,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "usp" ], @@ -277,6 +306,7 @@ }, "Device.Services.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -286,6 +316,7 @@ }, "Device.DeviceInfo.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -296,6 +327,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -308,6 +340,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -338,6 +371,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -372,6 +406,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -381,6 +416,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -411,6 +447,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -426,6 +463,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -456,6 +494,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -486,6 +525,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -501,6 +541,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -516,6 +557,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -531,6 +573,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -541,6 +584,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -551,6 +595,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -564,6 +609,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -577,6 +623,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -607,6 +654,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -624,6 +672,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -634,6 +683,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -644,6 +694,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -654,6 +705,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -664,6 +716,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -674,6 +727,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -684,6 +738,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -694,6 +749,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "usp" ], @@ -712,6 +768,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "usp" ], @@ -726,6 +783,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -738,6 +796,7 @@ }, "Device.DeviceInfo.VendorConfigFile.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -752,6 +811,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -767,6 +827,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -782,6 +843,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -797,6 +859,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -807,6 +870,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -822,6 +886,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -830,6 +895,8 @@ }, "Backup()": { "type": "command", + "async": true, + "version": "2.12", "protocols": [ "usp" ], @@ -838,6 +905,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -852,6 +920,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -866,6 +935,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -880,6 +950,8 @@ }, "Restore()": { "type": "command", + "async": true, + "version": "2.12", "protocols": [ "usp" ], @@ -888,6 +960,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -902,6 +975,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -916,6 +990,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -930,6 +1005,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -939,6 +1015,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -953,6 +1030,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -969,6 +1047,7 @@ "type": "hexBinary", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -979,6 +1058,7 @@ }, "Device.DeviceInfo.MemoryStatus.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -989,6 +1069,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1011,6 +1092,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1032,6 +1114,7 @@ }, "Device.DeviceInfo.ProcessStatus.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1042,6 +1125,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1069,6 +1153,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1088,6 +1173,7 @@ }, "Device.DeviceInfo.ProcessStatus.Process.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1110,6 +1196,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1131,6 +1218,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1157,6 +1245,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1179,6 +1268,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1205,6 +1295,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1227,6 +1318,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1256,6 +1348,7 @@ }, "Device.DeviceInfo.TemperatureStatus.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1266,6 +1359,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1274,6 +1368,7 @@ }, "Device.DeviceInfo.TemperatureStatus.TemperatureSensor.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1288,6 +1383,7 @@ "type": "string", "read": true, "write": true, + "version": "2.3", "protocols": [ "cwmp", "usp" @@ -1303,6 +1399,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1313,6 +1410,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1328,6 +1426,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -1337,6 +1436,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1347,6 +1447,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1362,6 +1463,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1378,6 +1480,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1388,6 +1491,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1404,6 +1508,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1414,6 +1519,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1430,6 +1536,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1440,6 +1547,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1456,6 +1564,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1466,6 +1575,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1482,6 +1592,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -1493,6 +1604,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1501,6 +1613,8 @@ }, "Reset()": { "type": "command", + "async": false, + "version": "2.12", "protocols": [ "usp" ] @@ -1509,6 +1623,7 @@ }, "Device.DeviceInfo.NetworkProperties.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1519,6 +1634,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1530,6 +1646,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -1547,6 +1664,7 @@ }, "Device.DeviceInfo.Processor.{i}.": { "type": "object", + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -1560,6 +1678,7 @@ "type": "string", "read": true, "write": true, + "version": "2.3", "protocols": [ "cwmp", "usp" @@ -1575,6 +1694,7 @@ "type": "string", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -1596,6 +1716,7 @@ }, "Device.DeviceInfo.VendorLogFile.{i}.": { "type": "object", + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -1610,6 +1731,7 @@ "type": "string", "read": true, "write": true, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -1625,6 +1747,7 @@ "type": "string", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -1640,6 +1763,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -1651,6 +1775,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -1659,6 +1784,8 @@ }, "Upload()": { "type": "command", + "async": true, + "version": "2.12", "protocols": [ "usp" ], @@ -1667,6 +1794,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -1681,6 +1809,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -1695,6 +1824,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -1710,6 +1840,7 @@ }, "Device.DeviceInfo.Location.{i}.": { "type": "object", + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -1724,6 +1855,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -1740,6 +1872,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -1750,6 +1883,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -1760,6 +1894,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -1784,6 +1919,7 @@ "type": "string", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -1798,6 +1934,7 @@ }, "Device.DeviceInfo.DeviceImageFile.{i}.": { "type": "object", + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -1812,6 +1949,7 @@ "type": "string", "read": true, "write": true, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -1827,6 +1965,7 @@ "type": "string", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -1845,6 +1984,7 @@ "type": "base64", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -1854,6 +1994,7 @@ }, "Device.DeviceInfo.FirmwareImage.{i}.": { "type": "object", + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -1867,6 +2008,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -1882,6 +2024,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -1897,6 +2040,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -1912,6 +2056,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -1922,6 +2067,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -1943,6 +2089,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -1951,6 +2098,8 @@ }, "Download()": { "type": "command", + "async": true, + "version": "2.12", "protocols": [ "usp" ], @@ -1959,6 +2108,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -1973,6 +2123,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -1982,6 +2133,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -1996,6 +2148,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -2010,6 +2163,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -2019,6 +2173,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -2035,6 +2190,7 @@ "type": "hexBinary", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -2044,6 +2200,8 @@ }, "Activate()": { "type": "command", + "async": true, + "version": "2.12", "protocols": [ "usp" ], @@ -2052,6 +2210,7 @@ }, "Device.DeviceInfo.SupportedDataModel.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp" ], @@ -2066,6 +2225,7 @@ "type": "string", "read": true, "write": true, + "version": "2.3", "protocols": [ "cwmp" ], @@ -2080,6 +2240,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -2094,6 +2255,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp" ], @@ -2112,6 +2274,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -2126,6 +2289,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -2136,6 +2300,7 @@ }, "Device.DeviceInfo.ProxierInfo.": { "type": "object", + "version": "2.3", "protocols": [ "cwmp" ], @@ -2145,6 +2310,7 @@ "type": "string", "read": true, "write": false, + "version": "2.3", "protocols": [ "cwmp" ], @@ -2163,6 +2329,7 @@ "type": "string", "read": true, "write": false, + "version": "2.3", "protocols": [ "cwmp" ], @@ -2177,6 +2344,7 @@ "type": "string", "read": true, "write": false, + "version": "2.3", "protocols": [ "cwmp" ], @@ -2191,6 +2359,7 @@ "type": "string", "read": true, "write": false, + "version": "2.3", "protocols": [ "cwmp" ], @@ -2206,6 +2375,7 @@ }, "Device.ManagementServer.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp" ], @@ -2215,6 +2385,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -2224,6 +2395,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -2253,6 +2425,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -2282,6 +2455,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -2311,6 +2485,7 @@ "type": "dateTime", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp" ], @@ -2335,6 +2510,7 @@ "type": "int", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp" ], @@ -2365,6 +2541,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -2389,6 +2566,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -2419,6 +2597,7 @@ "type": "dateTime", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -2443,6 +2622,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -2472,6 +2652,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -2501,6 +2682,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -2530,6 +2712,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -2559,6 +2742,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -2583,6 +2767,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -2597,6 +2782,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -2611,6 +2797,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -2621,6 +2808,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -2652,6 +2840,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -2682,6 +2871,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.11", "protocols": [ "cwmp" ], @@ -2691,6 +2881,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -2720,6 +2911,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -2744,6 +2936,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -2773,6 +2966,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -2803,6 +2997,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -2832,6 +3027,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -2861,6 +3057,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -2891,6 +3088,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -2916,6 +3114,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -2940,6 +3139,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.3", "protocols": [ "cwmp" ], @@ -2964,6 +3164,7 @@ "type": "string", "read": true, "write": true, + "version": "2.3", "protocols": [ "cwmp" ], @@ -2992,6 +3193,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.3", "protocols": [ "cwmp" ], @@ -3001,6 +3203,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -3010,6 +3213,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp" ], @@ -3019,6 +3223,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.3", "protocols": [ "cwmp" ], @@ -3028,6 +3233,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.3", "protocols": [ "cwmp" ], @@ -3037,6 +3243,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp" ], @@ -3053,6 +3260,7 @@ "type": "string", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp" ], @@ -3062,6 +3270,7 @@ "type": "string", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp" ], @@ -3096,6 +3305,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp" ], @@ -3105,6 +3315,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp" ], @@ -3121,6 +3332,7 @@ "type": "string", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp" ], @@ -3145,6 +3357,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp" ], @@ -3159,6 +3372,7 @@ "type": "string", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp" ], @@ -3185,6 +3399,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp" ], @@ -3200,6 +3415,7 @@ "type": "dateTime", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp" ], @@ -3209,6 +3425,7 @@ "type": "string", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp" ], @@ -3238,6 +3455,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp" ], @@ -3262,6 +3480,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp" ], @@ -3271,6 +3490,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp" ], @@ -3278,6 +3498,7 @@ }, "Device.ManagementServer.ManageableDevice.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp" ], @@ -3293,6 +3514,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -3307,6 +3529,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -3325,6 +3548,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -3339,6 +3563,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -3353,6 +3578,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -3364,6 +3590,7 @@ }, "Device.ManagementServer.AutonomousTransferCompletePolicy.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp" ], @@ -3373,6 +3600,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -3382,6 +3610,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -3396,6 +3625,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -3410,6 +3640,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -3428,6 +3659,7 @@ }, "Device.ManagementServer.DownloadAvailability.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp" ], @@ -3435,6 +3667,7 @@ "array": false, "Device.ManagementServer.DownloadAvailability.Announcement.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp" ], @@ -3444,6 +3677,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -3453,6 +3687,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -3467,6 +3702,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -3474,6 +3710,7 @@ }, "Device.ManagementServer.DownloadAvailability.Announcement.Group.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp" ], @@ -3487,6 +3724,7 @@ "type": "string", "read": true, "write": true, + "version": "2.3", "protocols": [ "cwmp" ], @@ -3501,6 +3739,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -3510,6 +3749,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -3524,6 +3764,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -3538,6 +3779,7 @@ }, "Device.ManagementServer.DownloadAvailability.Query.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp" ], @@ -3547,6 +3789,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -3556,6 +3799,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -3570,6 +3814,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -3584,6 +3829,7 @@ }, "Device.ManagementServer.DUStateChangeComplPolicy.": { "type": "object", + "version": "2.1", "protocols": [ "cwmp" ], @@ -3593,6 +3839,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.1", "protocols": [ "cwmp" ], @@ -3602,6 +3849,7 @@ "type": "string", "read": true, "write": true, + "version": "2.1", "protocols": [ "cwmp" ], @@ -3618,6 +3866,7 @@ "type": "string", "read": true, "write": true, + "version": "2.1", "protocols": [ "cwmp" ], @@ -3632,6 +3881,7 @@ "type": "string", "read": true, "write": true, + "version": "2.1", "protocols": [ "cwmp" ], @@ -3663,6 +3913,7 @@ }, "Device.ManagementServer.EmbeddedDevice.{i}.": { "type": "object", + "version": "2.3", "protocols": [ "cwmp" ], @@ -3676,6 +3927,7 @@ "type": "string", "read": true, "write": false, + "version": "2.3", "protocols": [ "cwmp" ], @@ -3690,6 +3942,7 @@ "type": "string", "read": true, "write": false, + "version": "2.3", "protocols": [ "cwmp" ], @@ -3704,6 +3957,7 @@ "type": "string", "read": true, "write": false, + "version": "2.3", "protocols": [ "cwmp" ], @@ -3713,6 +3967,7 @@ "type": "string", "read": true, "write": false, + "version": "2.3", "protocols": [ "cwmp" ], @@ -3724,6 +3979,7 @@ "type": "string", "read": true, "write": false, + "version": "2.3", "protocols": [ "cwmp" ], @@ -3738,6 +3994,7 @@ "type": "string", "read": true, "write": false, + "version": "2.3", "protocols": [ "cwmp" ], @@ -3753,6 +4010,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp" ], @@ -3762,6 +4020,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp" ], @@ -3779,6 +4038,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp" ], @@ -3790,6 +4050,7 @@ "type": "string", "read": true, "write": false, + "version": "2.3", "protocols": [ "cwmp" ], @@ -3805,6 +4066,7 @@ "type": "string", "read": true, "write": false, + "version": "2.3", "protocols": [ "cwmp" ], @@ -3819,6 +4081,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.3", "protocols": [ "cwmp" ], @@ -3827,6 +4090,7 @@ }, "Device.ManagementServer.VirtualDevice.{i}.": { "type": "object", + "version": "2.3", "protocols": [ "cwmp" ], @@ -3841,6 +4105,7 @@ "type": "string", "read": true, "write": false, + "version": "2.3", "protocols": [ "cwmp" ], @@ -3859,6 +4124,7 @@ "type": "string", "read": true, "write": false, + "version": "2.3", "protocols": [ "cwmp" ], @@ -3873,6 +4139,7 @@ "type": "string", "read": true, "write": false, + "version": "2.3", "protocols": [ "cwmp" ], @@ -3887,6 +4154,7 @@ "type": "string", "read": true, "write": false, + "version": "2.3", "protocols": [ "cwmp" ], @@ -3901,6 +4169,7 @@ "type": "string", "read": true, "write": false, + "version": "2.3", "protocols": [ "cwmp" ], @@ -3916,6 +4185,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp" ], @@ -3925,6 +4195,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp" ], @@ -3942,6 +4213,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp" ], @@ -3952,6 +4224,7 @@ }, "Device.ManagementServer.StandbyPolicy.": { "type": "object", + "version": "2.7", "protocols": [ "cwmp" ], @@ -3961,6 +4234,7 @@ "type": "int", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp" ], @@ -3976,6 +4250,7 @@ "type": "int", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp" ], @@ -3990,6 +4265,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp" ], @@ -3999,6 +4275,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp" ], @@ -4008,6 +4285,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp" ], @@ -4017,6 +4295,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp" ], @@ -4026,6 +4305,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp" ], @@ -4035,6 +4315,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp" ], @@ -4043,6 +4324,7 @@ }, "Device.ManagementServer.InformParameter.{i}.": { "type": "object", + "version": "2.8", "protocols": [ "cwmp" ], @@ -4056,6 +4338,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp" ], @@ -4065,6 +4348,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp" ], @@ -4079,6 +4363,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp" ], @@ -4093,6 +4378,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp" ], @@ -4103,6 +4389,7 @@ }, "Device.ManagementServer.HeartbeatPolicy.": { "type": "object", + "version": "2.12", "protocols": [ "cwmp" ], @@ -4112,6 +4399,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp" ], @@ -4121,6 +4409,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp" ], @@ -4136,6 +4425,7 @@ "type": "dateTime", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp" ], @@ -4145,6 +4435,7 @@ }, "Device.SoftwareModules.": { "type": "object", + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -4155,6 +4446,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -4165,6 +4457,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -4175,6 +4468,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -4183,6 +4477,8 @@ }, "InstallDU()": { "type": "command", + "async": true, + "version": "2.12", "protocols": [ "usp" ], @@ -4191,6 +4487,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -4205,6 +4502,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -4223,6 +4521,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -4237,6 +4536,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -4251,6 +4551,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -4265,6 +4566,7 @@ }, "Device.SoftwareModules.ExecEnv.{i}.": { "type": "object", + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -4279,6 +4581,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -4300,6 +4603,7 @@ "type": "string", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -4326,6 +4630,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.1", "protocols": [ "cwmp" ], @@ -4335,6 +4640,7 @@ "type": "string", "read": true, "write": true, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -4350,6 +4656,7 @@ "type": "string", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -4376,6 +4683,7 @@ "type": "string", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -4402,6 +4710,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -4417,6 +4726,7 @@ "type": "int", "read": true, "write": true, + "version": "2.1", "protocols": [ "cwmp" ], @@ -4432,6 +4742,7 @@ "type": "int", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -4448,6 +4759,7 @@ "type": "int", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -4464,6 +4776,7 @@ "type": "string", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -4490,6 +4803,7 @@ "type": "string", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -4516,6 +4830,7 @@ "type": "string", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -4526,6 +4841,7 @@ "type": "int", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -4553,6 +4869,7 @@ "type": "int", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -4580,6 +4897,7 @@ "type": "int", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -4607,6 +4925,7 @@ "type": "int", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -4634,6 +4953,7 @@ "type": "string", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -4646,6 +4966,7 @@ "type": "string", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -4656,6 +4977,8 @@ }, "SetRunLevel()": { "type": "command", + "async": false, + "version": "2.12", "protocols": [ "usp" ], @@ -4664,6 +4987,7 @@ "type": "int", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -4679,6 +5003,8 @@ }, "Reset()": { "type": "command", + "async": false, + "version": "2.12", "protocols": [ "usp" ] @@ -4686,6 +5012,7 @@ }, "Device.SoftwareModules.DeploymentUnit.{i}.": { "type": "object", + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -4702,6 +5029,7 @@ "type": "string", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -4728,6 +5056,7 @@ "type": "string", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -4754,6 +5083,7 @@ "type": "string", "read": true, "write": true, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -4769,6 +5099,7 @@ "type": "string", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -4795,6 +5126,7 @@ "type": "string", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -4812,6 +5144,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -4822,6 +5155,7 @@ "type": "string", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -4848,6 +5182,7 @@ "type": "string", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -4874,6 +5209,7 @@ "type": "string", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -4900,6 +5236,7 @@ "type": "string", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -4926,6 +5263,7 @@ "type": "string", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -4938,6 +5276,7 @@ "type": "string", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -4961,6 +5300,7 @@ "type": "string", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -4973,6 +5313,7 @@ "type": "string", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -4992,6 +5333,8 @@ }, "Update()": { "type": "command", + "async": true, + "version": "2.12", "protocols": [ "usp" ], @@ -5000,6 +5343,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -5025,6 +5369,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -5039,6 +5384,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -5053,6 +5399,8 @@ }, "Uninstall()": { "type": "command", + "async": true, + "version": "2.12", "protocols": [ "usp" ] @@ -5060,6 +5408,7 @@ }, "Device.SoftwareModules.ExecutionUnit.{i}.": { "type": "object", + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -5074,6 +5423,7 @@ "type": "string", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -5100,6 +5450,7 @@ "type": "string", "read": true, "write": true, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -5115,6 +5466,7 @@ "type": "string", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -5141,6 +5493,7 @@ "type": "string", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -5167,6 +5520,7 @@ "type": "string", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -5183,6 +5537,7 @@ "type": "string", "read": true, "write": true, + "version": "2.1", "protocols": [ "cwmp" ], @@ -5196,6 +5551,7 @@ "type": "string", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -5215,6 +5571,7 @@ "type": "string", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -5230,6 +5587,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -5240,6 +5598,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -5255,6 +5614,7 @@ "type": "string", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -5281,6 +5641,7 @@ "type": "string", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -5307,6 +5668,7 @@ "type": "string", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -5333,6 +5695,7 @@ "type": "int", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -5360,6 +5723,7 @@ "type": "int", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -5387,6 +5751,7 @@ "type": "string", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -5399,6 +5764,7 @@ "type": "string", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -5411,6 +5777,7 @@ "type": "string", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -5423,6 +5790,7 @@ "type": "string", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -5446,6 +5814,7 @@ "type": "string", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp" ], @@ -5457,6 +5826,7 @@ "type": "string", "read": true, "write": false, + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -5476,6 +5846,8 @@ }, "SetRequestedState()": { "type": "command", + "async": false, + "version": "2.12", "protocols": [ "usp" ], @@ -5484,6 +5856,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -5497,6 +5870,7 @@ }, "Device.SoftwareModules.ExecutionUnit.{i}.Extensions.": { "type": "object", + "version": "2.1", "protocols": [ "cwmp", "usp" @@ -5508,6 +5882,7 @@ }, "Device.ETSIM2M.": { "type": "object", + "version": "2.6", "protocols": [ "cwmp" ], @@ -5517,6 +5892,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp" ], @@ -5524,6 +5900,7 @@ }, "Device.ETSIM2M.SCL.{i}.": { "type": "object", + "version": "2.6", "protocols": [ "cwmp" ], @@ -5536,6 +5913,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp" ], @@ -5545,6 +5923,7 @@ "type": "string", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp" ], @@ -5559,6 +5938,7 @@ "type": "string", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp" ], @@ -5570,6 +5950,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp" ], @@ -5579,6 +5960,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp" ], @@ -5588,6 +5970,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp" ], @@ -5595,6 +5978,7 @@ }, "Device.ETSIM2M.SCL.{i}.Discovery.": { "type": "object", + "version": "2.6", "protocols": [ "cwmp" ], @@ -5604,6 +5988,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp" ], @@ -5613,6 +5998,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp" ], @@ -5621,6 +6007,7 @@ }, "Device.ETSIM2M.SCL.{i}.Reregistration.": { "type": "object", + "version": "2.6", "protocols": [ "cwmp" ], @@ -5630,6 +6017,7 @@ "type": "string", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp" ], @@ -5641,6 +6029,7 @@ "type": "string", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp" ], @@ -5652,6 +6041,7 @@ "type": "string", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp" ], @@ -5661,6 +6051,7 @@ "type": "int", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp" ], @@ -5671,6 +6062,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp" ], @@ -5678,6 +6070,7 @@ }, "Device.ETSIM2M.SCL.{i}.Reregistration.ActionStatus.": { "type": "object", + "version": "2.6", "protocols": [ "cwmp" ], @@ -5687,6 +6080,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp" ], @@ -5703,6 +6097,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp" ], @@ -5716,6 +6111,7 @@ }, "Device.ETSIM2M.SCL.{i}.SAFPolicySet.{i}.": { "type": "object", + "version": "2.6", "protocols": [ "cwmp" ], @@ -5728,6 +6124,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp" ], @@ -5737,6 +6134,7 @@ "type": "string", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp" ], @@ -5751,6 +6149,7 @@ "type": "string", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp" ], @@ -5762,6 +6161,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp" ], @@ -5769,6 +6169,7 @@ }, "Device.ETSIM2M.SCL.{i}.SAFPolicySet.{i}.ANPPolicy.{i}.": { "type": "object", + "version": "2.6", "protocols": [ "cwmp" ], @@ -5782,6 +6183,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp" ], @@ -5791,6 +6193,7 @@ "type": "string", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp" ], @@ -5805,6 +6208,7 @@ "type": "string", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp" ], @@ -5814,6 +6218,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp" ], @@ -5823,6 +6228,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp" ], @@ -5830,6 +6236,7 @@ }, "Device.ETSIM2M.SCL.{i}.SAFPolicySet.{i}.ANPPolicy.{i}.BlockPeriod.{i}.": { "type": "object", + "version": "2.6", "protocols": [ "cwmp" ], @@ -5843,6 +6250,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp" ], @@ -5852,6 +6260,7 @@ "type": "string", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp" ], @@ -5866,6 +6275,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp" ], @@ -5875,6 +6285,7 @@ "type": "int", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp" ], @@ -5884,6 +6295,7 @@ }, "Device.ETSIM2M.SCL.{i}.SAFPolicySet.{i}.ANPPolicy.{i}.RequestCategory.{i}.": { "type": "object", + "version": "2.6", "protocols": [ "cwmp" ], @@ -5897,6 +6309,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp" ], @@ -5906,6 +6319,7 @@ "type": "string", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp" ], @@ -5920,6 +6334,7 @@ "type": "string", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp" ], @@ -5929,6 +6344,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp" ], @@ -5936,6 +6352,7 @@ }, "Device.ETSIM2M.SCL.{i}.SAFPolicySet.{i}.ANPPolicy.{i}.RequestCategory.{i}.Schedule.{i}.": { "type": "object", + "version": "2.6", "protocols": [ "cwmp" ], @@ -5948,6 +6365,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp" ], @@ -5957,6 +6375,7 @@ "type": "string", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp" ], @@ -5971,6 +6390,7 @@ "type": "string", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp" ], @@ -5982,6 +6402,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp" ], @@ -5989,6 +6410,7 @@ }, "Device.ETSIM2M.SCL.{i}.SAFPolicySet.{i}.ANPPolicy.{i}.RequestCategory.{i}.Schedule.{i}.AbsTimeSpan.{i}.": { "type": "object", + "version": "2.6", "protocols": [ "cwmp" ], @@ -6001,6 +6423,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp" ], @@ -6010,6 +6433,7 @@ "type": "string", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp" ], @@ -6024,6 +6448,7 @@ "type": "dateTime", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp" ], @@ -6033,6 +6458,7 @@ "type": "dateTime", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp" ], @@ -6044,6 +6470,7 @@ }, "Device.ETSIM2M.SCL.{i}.SAFPolicySet.{i}.M2MSPPolicy.": { "type": "object", + "version": "2.6", "protocols": [ "cwmp" ], @@ -6053,6 +6480,7 @@ "type": "string", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp" ], @@ -6062,6 +6490,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp" ], @@ -6069,6 +6498,7 @@ }, "Device.ETSIM2M.SCL.{i}.SAFPolicySet.{i}.M2MSPPolicy.RequestCategory.{i}.": { "type": "object", + "version": "2.6", "protocols": [ "cwmp" ], @@ -6082,6 +6512,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp" ], @@ -6091,6 +6522,7 @@ "type": "string", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp" ], @@ -6105,6 +6537,7 @@ "type": "string", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp" ], @@ -6114,6 +6547,7 @@ "type": "int", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp" ], @@ -6129,6 +6563,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp" ], @@ -6138,6 +6573,7 @@ "type": "string", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp" ], @@ -6150,6 +6586,7 @@ "type": "string", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp" ], @@ -6162,6 +6599,7 @@ }, "Device.ETSIM2M.SCL.{i}.AreaNwkInstance.{i}.": { "type": "object", + "version": "2.6", "protocols": [ "cwmp" ], @@ -6174,6 +6612,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp" ], @@ -6183,6 +6622,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp" ], @@ -6192,6 +6632,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp" ], @@ -6203,6 +6644,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp" ], @@ -6210,6 +6652,7 @@ }, "Device.ETSIM2M.SCL.{i}.AreaNwkInstance.{i}.Property.{i}.": { "type": "object", + "version": "2.6", "protocols": [ "cwmp" ], @@ -6219,6 +6662,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp" ], @@ -6228,6 +6672,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp" ], @@ -6237,6 +6682,7 @@ }, "Device.ETSIM2M.SCL.{i}.AreaNwkDeviceInfoInstance.{i}.": { "type": "object", + "version": "2.6", "protocols": [ "cwmp" ], @@ -6246,6 +6692,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp" ], @@ -6255,6 +6702,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp" ], @@ -6266,6 +6714,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp" ], @@ -6277,6 +6726,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp" ], @@ -6288,6 +6738,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp" ], @@ -6298,6 +6749,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp" ], @@ -6308,6 +6760,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp" ], @@ -6321,6 +6774,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp" ], @@ -6330,6 +6784,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp" ], @@ -6337,6 +6792,7 @@ }, "Device.ETSIM2M.SCL.{i}.AreaNwkDeviceInfoInstance.{i}.Property.{i}.": { "type": "object", + "version": "2.6", "protocols": [ "cwmp" ], @@ -6346,6 +6802,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp" ], @@ -6355,6 +6812,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp" ], @@ -6366,6 +6824,7 @@ }, "Device.GatewayInfo.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp" ], @@ -6375,6 +6834,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -6393,6 +6853,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -6407,6 +6868,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -6420,6 +6882,7 @@ }, "Device.Time.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6430,6 +6893,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6440,6 +6904,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6457,6 +6922,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6472,6 +6938,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6487,6 +6954,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6502,6 +6970,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6517,6 +6986,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6532,6 +7002,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6542,6 +7013,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6571,6 +7043,7 @@ }, "Device.UserInterface.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6581,6 +7054,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -6591,6 +7065,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6601,6 +7076,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6611,6 +7087,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -6620,6 +7097,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6630,6 +7108,7 @@ "type": "dateTime", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6640,6 +7119,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6655,6 +7135,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6670,6 +7151,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6685,6 +7167,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6700,6 +7183,7 @@ "type": "base64", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6716,6 +7200,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6732,6 +7217,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6747,6 +7233,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6762,6 +7249,7 @@ "type": "hexBinary", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6778,6 +7266,7 @@ "type": "hexBinary", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6794,6 +7283,7 @@ "type": "hexBinary", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6810,6 +7300,7 @@ "type": "hexBinary", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6826,6 +7317,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6841,6 +7333,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6856,6 +7349,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6869,6 +7363,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6882,12 +7377,15 @@ }, "PasswordReset()": { "type": "command", + "async": false, + "version": "2.12", "protocols": [ "usp" ] }, "Device.UserInterface.RemoteAccess.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6898,6 +7396,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6908,6 +7407,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6923,6 +7423,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6939,6 +7440,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6948,6 +7450,7 @@ }, "Device.UserInterface.LocalDisplay.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6958,6 +7461,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6968,6 +7472,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6978,6 +7483,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -6989,6 +7495,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7000,6 +7507,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7011,6 +7519,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7022,6 +7531,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7033,6 +7543,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7043,6 +7554,7 @@ }, "Device.UserInterface.Messages.": { "type": "object", + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -7053,6 +7565,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -7063,6 +7576,7 @@ "type": "string", "read": true, "write": true, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -7078,6 +7592,7 @@ "type": "string", "read": true, "write": true, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -7093,6 +7608,7 @@ "type": "string", "read": true, "write": true, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -7103,6 +7619,7 @@ "type": "string", "read": true, "write": true, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -7122,6 +7639,7 @@ "type": "hexBinary", "read": true, "write": true, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -7138,6 +7656,7 @@ "type": "hexBinary", "read": true, "write": true, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -7154,6 +7673,7 @@ "type": "hexBinary", "read": true, "write": true, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -7170,6 +7690,7 @@ "type": "hexBinary", "read": true, "write": true, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -7186,6 +7707,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -7196,6 +7718,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -7206,6 +7729,7 @@ }, "Device.InterfaceStack.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7221,6 +7745,7 @@ "type": "string", "read": true, "write": true, + "version": "2.3", "protocols": [ "cwmp", "usp" @@ -7236,6 +7761,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7251,6 +7777,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7266,6 +7793,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7281,6 +7809,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7295,6 +7824,7 @@ }, "Device.DSL.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7305,6 +7835,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7315,6 +7846,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7325,6 +7857,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7333,6 +7866,7 @@ }, "Device.DSL.Line.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7347,6 +7881,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7368,6 +7903,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -7378,6 +7914,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7408,6 +7945,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7423,6 +7961,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7438,6 +7977,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7449,6 +7989,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7462,6 +8003,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7483,6 +8025,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7509,6 +8052,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7538,6 +8082,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7589,6 +8134,7 @@ "type": "hexBinary", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -7616,6 +8162,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7637,6 +8184,7 @@ "type": "hexBinary", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -7664,6 +8212,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7693,6 +8242,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7728,6 +8278,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7749,6 +8300,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7777,6 +8329,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -7804,6 +8357,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -7832,6 +8386,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -7855,6 +8410,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -7889,6 +8445,7 @@ "type": "int", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -7917,6 +8474,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -7944,6 +8502,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -7971,6 +8530,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -7981,6 +8541,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -7991,6 +8552,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -8002,6 +8564,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -8024,6 +8587,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8045,6 +8609,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8066,6 +8631,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8094,6 +8660,7 @@ "type": "base64", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8110,6 +8677,7 @@ "type": "base64", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8126,6 +8694,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8136,6 +8705,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8157,6 +8727,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8178,6 +8749,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8199,6 +8771,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8220,6 +8793,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8241,6 +8815,7 @@ "type": "base64", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8257,6 +8832,7 @@ "type": "base64", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8273,6 +8849,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8283,6 +8860,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8309,6 +8887,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8331,6 +8910,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8353,6 +8933,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8375,6 +8956,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8397,6 +8979,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8421,6 +9004,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8445,6 +9029,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8461,6 +9046,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8477,6 +9063,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8493,6 +9080,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8509,6 +9097,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8531,6 +9120,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8553,6 +9143,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8575,6 +9166,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8597,6 +9189,7 @@ "type": "hexBinary", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8624,6 +9217,7 @@ "type": "hexBinary", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8651,6 +9245,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8672,6 +9267,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8693,6 +9289,7 @@ "type": "hexBinary", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8720,6 +9317,7 @@ "type": "hexBinary", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8747,6 +9345,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8768,6 +9367,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8787,6 +9387,7 @@ }, "Device.DSL.Line.{i}.Stats.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8797,6 +9398,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8818,6 +9420,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8839,6 +9442,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8860,6 +9464,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8881,6 +9486,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8902,6 +9508,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8923,6 +9530,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8944,6 +9552,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8965,6 +9574,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -8987,6 +9597,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9009,6 +9620,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9031,6 +9643,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9053,6 +9666,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9073,6 +9687,7 @@ }, "Device.DSL.Line.{i}.Stats.Total.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9083,6 +9698,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9105,6 +9721,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9126,6 +9743,7 @@ }, "Device.DSL.Line.{i}.Stats.Showtime.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9136,6 +9754,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9158,6 +9777,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9179,6 +9799,7 @@ }, "Device.DSL.Line.{i}.Stats.LastShowtime.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9189,6 +9810,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9211,6 +9833,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9232,6 +9855,7 @@ }, "Device.DSL.Line.{i}.Stats.CurrentDay.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9242,6 +9866,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9264,6 +9889,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9285,6 +9911,7 @@ }, "Device.DSL.Line.{i}.Stats.QuarterHour.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9295,6 +9922,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9317,6 +9945,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9339,6 +9968,7 @@ }, "Device.DSL.Line.{i}.TestParams.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9349,6 +9979,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9359,6 +9990,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9369,6 +10001,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9382,6 +10015,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9395,6 +10029,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9405,6 +10040,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9415,6 +10051,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9425,6 +10062,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9435,6 +10073,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9448,6 +10087,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9461,6 +10101,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9471,6 +10112,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9481,6 +10123,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9491,6 +10134,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9501,6 +10145,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9514,6 +10159,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9527,6 +10173,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9537,6 +10184,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9547,6 +10195,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9560,6 +10209,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9573,6 +10223,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9586,6 +10237,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9598,6 +10250,7 @@ }, "Device.DSL.Line.{i}.DataGathering.": { "type": "object", + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -9608,6 +10261,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -9619,6 +10273,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -9630,6 +10285,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -9645,6 +10301,7 @@ }, "Device.DSL.Channel.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9659,6 +10316,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9680,6 +10338,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9710,6 +10369,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9725,6 +10385,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9740,6 +10401,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9751,6 +10413,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9764,6 +10427,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9794,6 +10458,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9821,6 +10486,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9847,6 +10513,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9868,6 +10535,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9889,6 +10557,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9911,6 +10580,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9932,6 +10602,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9953,6 +10624,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9975,6 +10647,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -9996,6 +10669,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10017,6 +10691,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10039,6 +10714,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10061,6 +10737,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -10083,6 +10760,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -10109,6 +10787,7 @@ }, "Device.DSL.Channel.{i}.Stats.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10119,6 +10798,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10140,6 +10820,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10161,6 +10842,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10182,6 +10864,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10203,6 +10886,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10224,6 +10908,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10245,6 +10930,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10266,6 +10952,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10287,6 +10974,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10309,6 +10997,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10331,6 +11020,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10353,6 +11043,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10375,6 +11066,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10395,6 +11087,7 @@ }, "Device.DSL.Channel.{i}.Stats.Total.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10405,6 +11098,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10426,6 +11120,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10447,6 +11142,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10468,6 +11164,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10489,6 +11186,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10510,6 +11208,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10530,6 +11229,7 @@ }, "Device.DSL.Channel.{i}.Stats.Showtime.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10540,6 +11240,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10561,6 +11262,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10582,6 +11284,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10603,6 +11306,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10624,6 +11328,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10645,6 +11350,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10665,6 +11371,7 @@ }, "Device.DSL.Channel.{i}.Stats.LastShowtime.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10675,6 +11382,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10696,6 +11404,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10717,6 +11426,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10738,6 +11448,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10759,6 +11470,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10780,6 +11492,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10800,6 +11513,7 @@ }, "Device.DSL.Channel.{i}.Stats.CurrentDay.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10810,6 +11524,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10831,6 +11546,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10852,6 +11568,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10873,6 +11590,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10894,6 +11612,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10915,6 +11634,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10935,6 +11655,7 @@ }, "Device.DSL.Channel.{i}.Stats.QuarterHour.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10945,6 +11666,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10966,6 +11688,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -10987,6 +11710,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11008,6 +11732,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11029,6 +11754,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11050,6 +11776,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11072,6 +11799,7 @@ }, "Device.DSL.BondingGroup.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11087,6 +11815,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11097,6 +11826,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11116,6 +11846,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11131,6 +11862,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11146,6 +11878,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11157,6 +11890,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11170,6 +11904,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11188,6 +11923,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11198,6 +11934,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11215,6 +11952,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11225,6 +11963,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11241,6 +11980,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11252,6 +11992,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11263,6 +12004,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11274,6 +12016,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11285,6 +12028,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11296,6 +12040,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11307,6 +12052,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11318,6 +12064,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11332,6 +12079,7 @@ }, "Device.DSL.BondingGroup.{i}.BondedChannel.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11346,6 +12094,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11361,6 +12110,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11374,6 +12124,7 @@ }, "Device.DSL.BondingGroup.{i}.BondedChannel.{i}.Ethernet.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11382,6 +12133,7 @@ "array": false, "Device.DSL.BondingGroup.{i}.BondedChannel.{i}.Ethernet.Stats.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11392,6 +12144,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11402,6 +12155,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11412,6 +12166,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11422,6 +12177,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11432,6 +12188,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11442,6 +12199,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11452,6 +12210,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11462,6 +12221,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11473,6 +12233,7 @@ }, "Device.DSL.BondingGroup.{i}.Stats.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11483,6 +12244,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11493,6 +12255,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11503,6 +12266,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11513,6 +12277,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11523,6 +12288,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11533,6 +12299,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11543,6 +12310,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11553,6 +12321,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11563,6 +12332,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11573,6 +12343,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11583,6 +12354,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11593,6 +12365,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11603,6 +12376,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11613,6 +12387,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11623,6 +12398,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11633,6 +12409,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11644,6 +12421,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11655,6 +12433,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11664,6 +12443,7 @@ }, "Device.DSL.BondingGroup.{i}.Stats.Total.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11674,6 +12454,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11692,6 +12473,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11703,6 +12485,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11714,6 +12497,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11724,6 +12508,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11734,6 +12519,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11745,6 +12531,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11756,6 +12543,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11766,6 +12554,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11777,6 +12566,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11788,6 +12578,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11798,6 +12589,7 @@ }, "Device.DSL.BondingGroup.{i}.Stats.CurrentDay.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11808,6 +12600,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11826,6 +12619,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11837,6 +12631,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11848,6 +12643,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11858,6 +12654,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11868,6 +12665,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11879,6 +12677,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11890,6 +12689,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11900,6 +12700,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11911,6 +12712,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11922,6 +12724,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11932,6 +12735,7 @@ }, "Device.DSL.BondingGroup.{i}.Stats.QuarterHour.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11942,6 +12746,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11960,6 +12765,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11971,6 +12777,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11982,6 +12789,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -11992,6 +12800,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12002,6 +12811,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12013,6 +12823,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12024,6 +12835,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12034,6 +12846,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12045,6 +12858,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12056,6 +12870,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12067,6 +12882,7 @@ }, "Device.DSL.BondingGroup.{i}.Ethernet.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12075,6 +12891,7 @@ "array": false, "Device.DSL.BondingGroup.{i}.Ethernet.Stats.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12085,6 +12902,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12095,6 +12913,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12105,6 +12924,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12115,6 +12935,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12125,6 +12946,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12135,6 +12957,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12145,6 +12968,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12155,6 +12979,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12165,6 +12990,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12175,6 +13001,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12185,6 +13012,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12195,6 +13023,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12205,6 +13034,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12215,6 +13045,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12225,6 +13056,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12235,6 +13067,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12246,6 +13079,7 @@ }, "Device.DSL.Diagnostics.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -12254,6 +13088,8 @@ "array": false, "ADSLLineTest()": { "type": "command", + "async": true, + "version": "2.12", "protocols": [ "usp" ], @@ -12262,6 +13098,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -12278,6 +13115,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -12294,6 +13132,7 @@ "type": "int", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -12303,6 +13142,7 @@ "type": "int", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -12312,6 +13152,7 @@ "type": "int", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -12321,6 +13162,7 @@ "type": "int", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -12330,6 +13172,7 @@ "type": "int", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -12339,6 +13182,7 @@ "type": "int", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -12348,6 +13192,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -12357,6 +13202,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -12366,6 +13212,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -12375,6 +13222,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -12384,6 +13232,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -12396,6 +13245,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -12408,6 +13258,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -12417,6 +13268,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -12426,6 +13278,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -12438,6 +13291,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -12450,6 +13304,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -12462,6 +13317,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -12474,6 +13330,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -12486,6 +13343,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -12498,6 +13356,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -12507,6 +13366,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -12516,6 +13376,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -12528,6 +13389,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -12540,6 +13402,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -12549,6 +13412,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -12558,6 +13422,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -12567,6 +13432,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -12576,6 +13442,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -12588,6 +13455,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -12600,6 +13468,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -12609,6 +13478,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -12618,6 +13488,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -12630,6 +13501,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -12642,6 +13514,8 @@ }, "SELTUER()": { "type": "command", + "async": true, + "version": "2.13", "protocols": [ "usp" ], @@ -12650,6 +13524,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -12664,6 +13539,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -12682,6 +13558,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -12696,6 +13573,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -12705,6 +13583,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -12720,6 +13599,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -12729,6 +13609,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -12749,6 +13630,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -12764,6 +13646,8 @@ }, "SELTQLN()": { "type": "command", + "async": true, + "version": "2.13", "protocols": [ "usp" ], @@ -12772,6 +13656,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -12786,6 +13671,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -12804,6 +13690,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -12818,6 +13705,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -12827,6 +13715,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -12839,6 +13728,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -12859,6 +13749,8 @@ }, "SELTP()": { "type": "command", + "async": true, + "version": "2.13", "protocols": [ "usp" ], @@ -12867,6 +13759,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -12881,6 +13774,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -12890,6 +13784,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -12905,6 +13800,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -12920,6 +13816,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -12938,6 +13835,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -12952,6 +13850,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -12968,6 +13867,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -12984,6 +13884,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -12996,6 +13897,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -13011,6 +13913,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -13031,6 +13934,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -13040,6 +13944,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -13056,6 +13961,7 @@ }, "Device.DSL.Diagnostics.ADSLLineTest.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp" ], @@ -13065,6 +13971,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -13081,6 +13988,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -13095,6 +14003,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -13104,6 +14013,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -13113,6 +14023,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -13122,6 +14033,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -13131,6 +14043,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -13140,6 +14053,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -13149,6 +14063,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -13158,6 +14073,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -13167,6 +14083,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -13176,6 +14093,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -13185,6 +14103,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -13197,6 +14116,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -13209,6 +14129,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -13218,6 +14139,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -13227,6 +14149,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -13239,6 +14162,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -13251,6 +14175,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -13263,6 +14188,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -13275,6 +14201,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -13287,6 +14214,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -13299,6 +14227,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -13308,6 +14237,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -13317,6 +14247,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -13329,6 +14260,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -13341,6 +14273,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -13350,6 +14283,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -13359,6 +14293,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -13368,6 +14303,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -13377,6 +14313,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -13389,6 +14326,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -13401,6 +14339,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -13410,6 +14349,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -13419,6 +14359,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -13431,6 +14372,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -13442,6 +14384,7 @@ }, "Device.DSL.Diagnostics.SELTUER.": { "type": "object", + "version": "2.13", "protocols": [ "cwmp" ], @@ -13451,6 +14394,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp" ], @@ -13467,6 +14411,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp" ], @@ -13481,6 +14426,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp" ], @@ -13497,6 +14443,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp" ], @@ -13506,6 +14453,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp" ], @@ -13521,6 +14469,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp" ], @@ -13530,6 +14479,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp" ], @@ -13550,6 +14500,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp" ], @@ -13564,6 +14515,7 @@ }, "Device.DSL.Diagnostics.SELTQLN.": { "type": "object", + "version": "2.13", "protocols": [ "cwmp" ], @@ -13573,6 +14525,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp" ], @@ -13589,6 +14542,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp" ], @@ -13603,6 +14557,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp" ], @@ -13619,6 +14574,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp" ], @@ -13628,6 +14584,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp" ], @@ -13640,6 +14597,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp" ], @@ -13659,6 +14617,7 @@ }, "Device.DSL.Diagnostics.SELTP.": { "type": "object", + "version": "2.13", "protocols": [ "cwmp" ], @@ -13668,6 +14627,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp" ], @@ -13684,6 +14644,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp" ], @@ -13698,6 +14659,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp" ], @@ -13707,6 +14669,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp" ], @@ -13722,6 +14685,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp" ], @@ -13737,6 +14701,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp" ], @@ -13753,6 +14718,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp" ], @@ -13769,6 +14735,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp" ], @@ -13785,6 +14752,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp" ], @@ -13797,6 +14765,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp" ], @@ -13812,6 +14781,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp" ], @@ -13832,6 +14802,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp" ], @@ -13841,6 +14812,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp" ], @@ -13858,6 +14830,7 @@ }, "Device.PacketCaptureDiagnostics.": { "type": "object", + "version": "2.13", "protocols": [ "cwmp" ], @@ -13867,6 +14840,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp" ], @@ -13883,6 +14857,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp" ], @@ -13892,6 +14867,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp" ], @@ -13906,6 +14882,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp" ], @@ -13919,6 +14896,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp" ], @@ -13934,6 +14912,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp" ], @@ -13943,6 +14922,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp" ], @@ -13952,6 +14932,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp" ], @@ -13966,6 +14947,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp" ], @@ -13980,6 +14962,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp" ], @@ -13994,6 +14977,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp" ], @@ -14006,6 +14990,7 @@ }, "Device.PacketCaptureDiagnostics.PacketCaptureResult.{i}.": { "type": "object", + "version": "2.13", "protocols": [ "cwmp" ], @@ -14015,6 +15000,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp" ], @@ -14029,6 +15015,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp" ], @@ -14038,6 +15025,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp" ], @@ -14047,6 +15035,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp" ], @@ -14056,6 +15045,7 @@ }, "Device.FAST.": { "type": "object", + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -14066,6 +15056,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -14074,6 +15065,7 @@ }, "Device.FAST.Line.{i}.": { "type": "object", + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -14088,6 +15080,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -14109,6 +15102,7 @@ "type": "string", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -14139,6 +15133,7 @@ "type": "string", "read": true, "write": true, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -14154,6 +15149,7 @@ "type": "string", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -14169,6 +15165,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -14180,6 +15177,7 @@ "type": "string", "read": true, "write": true, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -14193,6 +15191,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -14214,6 +15213,7 @@ "type": "string", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -14240,6 +15240,7 @@ "type": "string", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -14269,6 +15270,7 @@ "type": "string", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -14296,6 +15298,7 @@ "type": "string", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -14317,6 +15320,7 @@ "type": "string", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -14344,6 +15348,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -14371,6 +15376,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -14399,6 +15405,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -14415,6 +15422,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -14431,6 +15439,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -14459,6 +15468,7 @@ "type": "int", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -14485,6 +15495,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -14507,6 +15518,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -14529,6 +15541,7 @@ "type": "int", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -14551,6 +15564,7 @@ "type": "int", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -14573,6 +15587,7 @@ "type": "int", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -14595,6 +15610,7 @@ "type": "int", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -14617,6 +15633,7 @@ "type": "int", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -14639,6 +15656,7 @@ "type": "int", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -14661,6 +15679,7 @@ "type": "int", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -14683,6 +15702,7 @@ "type": "int", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -14705,6 +15725,7 @@ "type": "string", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -14718,6 +15739,7 @@ "type": "string", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -14731,6 +15753,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -14741,6 +15764,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -14751,6 +15775,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -14762,6 +15787,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -14773,6 +15799,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -14784,6 +15811,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -14795,6 +15823,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -14804,6 +15833,7 @@ }, "Device.FAST.Line.{i}.Stats.": { "type": "object", + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -14814,6 +15844,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -14835,6 +15866,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -14856,6 +15888,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -14877,6 +15910,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -14898,6 +15932,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -14919,6 +15954,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -14940,6 +15976,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -14961,6 +15998,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -14982,6 +16020,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -15004,6 +16043,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -15026,6 +16066,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -15048,6 +16089,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -15070,6 +16112,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -15090,6 +16133,7 @@ }, "Device.FAST.Line.{i}.Stats.Total.": { "type": "object", + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -15100,6 +16144,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -15122,6 +16167,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -15144,6 +16190,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -15166,6 +16213,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -15188,6 +16236,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -15210,6 +16259,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -15231,6 +16281,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -15252,6 +16303,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -15273,6 +16325,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -15294,6 +16347,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -15315,6 +16369,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -15336,6 +16391,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -15356,6 +16412,7 @@ }, "Device.FAST.Line.{i}.Stats.Showtime.": { "type": "object", + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -15366,6 +16423,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -15388,6 +16446,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -15410,6 +16469,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -15432,6 +16492,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -15454,6 +16515,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -15476,6 +16538,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -15497,6 +16560,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -15518,6 +16582,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -15539,6 +16604,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -15560,6 +16626,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -15581,6 +16648,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -15602,6 +16670,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -15622,6 +16691,7 @@ }, "Device.FAST.Line.{i}.Stats.LastShowtime.": { "type": "object", + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -15632,6 +16702,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -15654,6 +16725,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -15676,6 +16748,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -15698,6 +16771,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -15720,6 +16794,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -15742,6 +16817,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -15763,6 +16839,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -15784,6 +16861,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -15805,6 +16883,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -15826,6 +16905,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -15847,6 +16927,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -15868,6 +16949,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -15888,6 +16970,7 @@ }, "Device.FAST.Line.{i}.Stats.CurrentDay.": { "type": "object", + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -15898,6 +16981,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -15920,6 +17004,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -15942,6 +17027,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -15964,6 +17050,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -15986,6 +17073,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -16008,6 +17096,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -16029,6 +17118,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -16050,6 +17140,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -16071,6 +17162,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -16092,6 +17184,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -16113,6 +17206,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -16134,6 +17228,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -16154,6 +17249,7 @@ }, "Device.FAST.Line.{i}.Stats.QuarterHour.": { "type": "object", + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -16164,6 +17260,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -16186,6 +17283,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -16208,6 +17306,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -16230,6 +17329,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -16252,6 +17352,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -16274,6 +17375,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -16295,6 +17397,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -16316,6 +17419,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -16337,6 +17441,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -16358,6 +17463,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -16379,6 +17485,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -16400,6 +17507,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -16421,6 +17529,7 @@ }, "Device.FAST.Line.{i}.TestParams.": { "type": "object", + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -16431,6 +17540,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -16441,6 +17551,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -16451,6 +17562,7 @@ "type": "string", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -16464,6 +17576,7 @@ "type": "string", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -16477,6 +17590,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -16487,6 +17601,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -16497,6 +17612,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -16507,6 +17623,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -16517,6 +17634,7 @@ "type": "int", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -16527,6 +17645,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -16538,6 +17657,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -16549,6 +17669,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -16560,6 +17681,7 @@ }, "Device.Optical.": { "type": "object", + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -16570,6 +17692,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -16578,6 +17701,7 @@ }, "Device.Optical.Interface.{i}.": { "type": "object", + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -16592,6 +17716,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -16602,6 +17727,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -16621,6 +17747,7 @@ "type": "string", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -16636,6 +17763,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -16651,6 +17779,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -16662,6 +17791,7 @@ "type": "string", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -16675,6 +17805,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -16685,6 +17816,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -16695,6 +17827,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -16705,6 +17838,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -16715,6 +17849,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -16725,6 +17860,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -16735,6 +17871,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -16743,6 +17880,7 @@ }, "Device.Optical.Interface.{i}.Stats.": { "type": "object", + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -16753,6 +17891,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -16763,6 +17902,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -16773,6 +17913,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -16783,6 +17924,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -16793,6 +17935,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -16803,6 +17946,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -16813,6 +17957,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -16823,6 +17968,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -16834,6 +17980,7 @@ }, "Device.Cellular.": { "type": "object", + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -16844,6 +17991,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -16854,6 +18002,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -16868,6 +18017,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -16878,6 +18028,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -16886,6 +18037,7 @@ }, "Device.Cellular.Interface.{i}.": { "type": "object", + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -16900,6 +18052,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -16910,6 +18063,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -16929,6 +18083,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -16944,6 +18099,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -16959,6 +18115,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -16970,6 +18127,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -16983,6 +18141,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -16993,6 +18152,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -17012,6 +18172,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -17034,6 +18195,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -17044,6 +18206,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -17054,6 +18217,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -17071,6 +18235,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -17086,6 +18251,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -17101,6 +18267,7 @@ "type": "int", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -17112,6 +18279,7 @@ "type": "int", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -17123,6 +18291,7 @@ "type": "int", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -17134,6 +18303,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -17145,6 +18315,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -17154,6 +18325,7 @@ }, "Device.Cellular.Interface.{i}.USIM.": { "type": "object", + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -17164,6 +18336,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -17181,6 +18354,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -17200,6 +18374,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -17219,6 +18394,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -17238,6 +18414,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -17253,6 +18430,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -17267,6 +18445,7 @@ }, "Device.Cellular.Interface.{i}.Stats.": { "type": "object", + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -17277,6 +18456,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -17287,6 +18467,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -17297,6 +18478,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -17307,6 +18489,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -17317,6 +18500,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -17327,6 +18511,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -17337,6 +18522,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -17347,6 +18533,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -17357,6 +18544,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -17367,6 +18555,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -17377,6 +18566,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -17387,6 +18577,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -17397,6 +18588,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -17407,6 +18599,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -17417,6 +18610,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -17427,6 +18621,7 @@ }, "Device.Cellular.AccessPoint.{i}.": { "type": "object", + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -17442,6 +18637,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -17452,6 +18648,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -17467,6 +18664,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -17482,6 +18680,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -17497,6 +18696,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -17512,6 +18712,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -17527,6 +18728,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -17543,6 +18745,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -17553,6 +18756,7 @@ }, "Device.ATM.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -17563,6 +18767,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -17571,6 +18776,7 @@ }, "Device.ATM.Link.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -17595,6 +18801,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -17620,6 +18827,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -17645,6 +18853,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -17675,6 +18884,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -17705,6 +18915,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -17716,6 +18927,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -17729,6 +18941,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -17761,6 +18974,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -17771,6 +18985,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -17817,6 +19032,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -17846,6 +19062,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -17856,6 +19073,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -17872,6 +19090,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -17887,6 +19106,7 @@ }, "Device.ATM.Link.{i}.Stats.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -17897,6 +19117,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -17920,6 +19141,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -17943,6 +19165,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -17966,6 +19189,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -17989,6 +19213,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -17999,6 +19224,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18009,6 +19235,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18019,6 +19246,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18029,6 +19257,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18039,6 +19268,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18049,6 +19279,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18059,6 +19290,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18069,6 +19301,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18079,6 +19312,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18089,6 +19323,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18099,6 +19334,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18109,6 +19345,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18119,6 +19356,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18129,6 +19367,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18138,6 +19377,7 @@ }, "Device.ATM.Link.{i}.QoS.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18148,6 +19388,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18167,6 +19408,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18178,6 +19420,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18189,6 +19432,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18200,6 +19444,7 @@ }, "Device.ATM.Diagnostics.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18208,6 +19453,8 @@ "array": false, "F5Loopback()": { "type": "command", + "async": true, + "version": "2.12", "protocols": [ "usp" ], @@ -18216,6 +19463,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -18230,6 +19478,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -18244,6 +19493,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -18261,6 +19511,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -18277,6 +19528,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -18286,6 +19538,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -18295,6 +19548,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -18305,6 +19559,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -18315,6 +19570,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -18325,6 +19581,7 @@ }, "Device.ATM.Diagnostics.F5Loopback.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp" ], @@ -18334,6 +19591,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -18350,6 +19608,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -18364,6 +19623,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -18378,6 +19638,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -18393,6 +19654,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -18402,6 +19664,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -18411,6 +19674,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -18421,6 +19685,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -18431,6 +19696,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -18442,6 +19708,7 @@ }, "Device.PTM.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18452,6 +19719,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18460,6 +19728,7 @@ }, "Device.PTM.Link.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18484,6 +19753,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18509,6 +19779,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18534,6 +19805,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18564,6 +19836,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18594,6 +19867,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18605,6 +19879,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18618,6 +19893,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18635,6 +19911,7 @@ }, "Device.PTM.Link.{i}.Stats.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18645,6 +19922,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18668,6 +19946,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18691,6 +19970,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18714,6 +19994,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18737,6 +20018,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18747,6 +20029,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18757,6 +20040,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18767,6 +20051,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18777,6 +20062,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18787,6 +20073,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18797,6 +20084,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18807,6 +20095,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18817,6 +20106,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18827,6 +20117,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18837,6 +20128,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18848,6 +20140,7 @@ }, "Device.Ethernet.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18858,6 +20151,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -18868,6 +20162,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -18878,6 +20173,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18899,6 +20195,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18909,6 +20206,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18930,6 +20228,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -18940,6 +20239,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -18948,6 +20248,7 @@ }, "Device.Ethernet.Interface.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18972,6 +20273,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -18997,6 +20299,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19022,6 +20325,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19052,6 +20356,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19082,6 +20387,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19106,6 +20412,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19119,6 +20426,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19144,6 +20452,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19169,6 +20478,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19200,6 +20510,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -19224,6 +20535,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19254,6 +20566,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -19264,6 +20577,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -19287,6 +20601,7 @@ }, "Device.Ethernet.Interface.{i}.Stats.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19297,6 +20612,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19313,6 +20629,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19329,6 +20646,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19345,6 +20663,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19361,6 +20680,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19377,6 +20697,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19393,6 +20714,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19416,6 +20738,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19439,6 +20762,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19455,6 +20779,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19471,6 +20796,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19494,6 +20820,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19510,6 +20837,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19533,6 +20861,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19556,6 +20885,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19579,6 +20909,7 @@ }, "Device.Ethernet.Link.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19594,6 +20925,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19604,6 +20936,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19623,6 +20956,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19638,6 +20972,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19653,6 +20988,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19664,6 +21000,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19677,6 +21014,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19696,6 +21034,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19706,6 +21045,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -19714,6 +21054,7 @@ }, "Device.Ethernet.Link.{i}.Stats.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19724,6 +21065,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19734,6 +21076,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19744,6 +21087,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19754,6 +21098,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19764,6 +21109,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19774,6 +21120,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19784,6 +21131,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19794,6 +21142,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19804,6 +21153,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19814,6 +21164,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19824,6 +21175,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19834,6 +21186,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19844,6 +21197,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19854,6 +21208,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19864,6 +21219,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19874,6 +21230,7 @@ }, "Device.Ethernet.VLANTermination.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19898,6 +21255,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19908,6 +21266,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19927,6 +21286,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19957,6 +21317,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19972,6 +21333,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -19996,6 +21358,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -20009,6 +21372,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -20040,6 +21404,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -20063,6 +21428,7 @@ }, "Device.Ethernet.VLANTermination.{i}.Stats.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -20073,6 +21439,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -20089,6 +21456,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -20105,6 +21473,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -20121,6 +21490,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -20137,6 +21507,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -20153,6 +21524,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -20169,6 +21541,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -20179,6 +21552,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -20189,6 +21563,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -20205,6 +21580,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -20221,6 +21597,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -20231,6 +21608,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -20247,6 +21625,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -20257,6 +21636,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -20267,6 +21647,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -20277,6 +21658,7 @@ }, "Device.Ethernet.RMONStats.{i}.": { "type": "object", + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -20293,6 +21675,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -20318,6 +21701,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -20334,6 +21718,7 @@ "type": "string", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -20364,6 +21749,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -20394,6 +21780,7 @@ "type": "string", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -20404,6 +21791,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -20420,6 +21808,7 @@ "type": "string", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -20430,6 +21819,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -20440,6 +21830,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -20450,6 +21841,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -20474,6 +21866,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -20498,6 +21891,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -20522,6 +21916,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -20546,6 +21941,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -20570,6 +21966,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -20594,6 +21991,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -20618,6 +22016,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -20642,6 +22041,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -20666,6 +22066,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -20690,6 +22091,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -20714,6 +22116,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -20738,6 +22141,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -20761,6 +22165,7 @@ }, "Device.Ethernet.WoL.": { "type": "object", + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -20771,6 +22176,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp" ], @@ -20780,6 +22186,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp" ], @@ -20798,6 +22205,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp" ], @@ -20805,6 +22213,8 @@ }, "SendMagicPacket()": { "type": "command", + "async": true, + "version": "2.13", "protocols": [ "usp" ], @@ -20813,6 +22223,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -20831,6 +22242,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -20841,6 +22253,7 @@ }, "Device.Ethernet.LAG.{i}.": { "type": "object", + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -20856,6 +22269,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -20866,6 +22280,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -20885,6 +22300,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -20900,6 +22316,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -20915,6 +22332,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -20926,6 +22344,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -20939,6 +22358,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -20956,6 +22376,7 @@ }, "Device.Ethernet.LAG.{i}.Stats.": { "type": "object", + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -20966,6 +22387,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -20976,6 +22398,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -20986,6 +22409,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -20996,6 +22420,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -21006,6 +22431,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -21016,6 +22442,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -21026,6 +22453,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -21036,6 +22464,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -21046,6 +22475,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -21056,6 +22486,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -21066,6 +22497,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -21076,6 +22508,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -21086,6 +22519,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -21096,6 +22530,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -21106,6 +22541,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -21117,6 +22553,7 @@ }, "Device.USB.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21127,6 +22564,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21137,6 +22575,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21145,6 +22584,7 @@ }, "Device.USB.Interface.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21159,6 +22599,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21169,6 +22610,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21188,6 +22630,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21203,6 +22646,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21218,6 +22662,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21229,6 +22674,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21242,6 +22688,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21252,6 +22699,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21271,6 +22719,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21282,6 +22731,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21295,6 +22745,7 @@ }, "Device.USB.Interface.{i}.Stats.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21305,6 +22756,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21315,6 +22767,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21325,6 +22778,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21335,6 +22789,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21345,6 +22800,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21355,6 +22811,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21365,6 +22822,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21375,6 +22833,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21385,6 +22844,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21395,6 +22855,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21405,6 +22866,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21415,6 +22877,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21425,6 +22888,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21435,6 +22899,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21445,6 +22910,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21455,6 +22921,7 @@ }, "Device.USB.Port.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21469,6 +22936,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21484,6 +22952,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21499,6 +22968,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21514,6 +22984,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21529,6 +23000,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21546,6 +23018,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21562,6 +23035,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21576,6 +23050,7 @@ }, "Device.USB.USBHosts.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21586,6 +23061,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21594,6 +23070,7 @@ }, "Device.USB.USBHosts.Host.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21608,6 +23085,7 @@ "type": "string", "read": true, "write": true, + "version": "2.3", "protocols": [ "cwmp", "usp" @@ -21623,6 +23101,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21633,6 +23112,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21648,6 +23128,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21664,6 +23145,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -21673,6 +23155,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21683,6 +23166,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21698,6 +23182,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21706,12 +23191,15 @@ }, "Reset()": { "type": "command", + "async": false, + "version": "2.12", "protocols": [ "usp" ] }, "Device.USB.USBHosts.Host.{i}.Device.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21725,6 +23213,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21735,6 +23224,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21750,6 +23240,7 @@ "type": "hexBinary", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21765,6 +23256,7 @@ "type": "hexBinary", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21780,6 +23272,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21795,6 +23288,7 @@ "type": "hexBinary", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21810,6 +23304,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21825,6 +23320,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21840,6 +23336,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21855,6 +23352,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21870,6 +23368,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21885,6 +23384,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21900,6 +23400,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21910,6 +23411,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21926,6 +23428,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21936,6 +23439,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21946,6 +23450,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21956,6 +23461,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21966,6 +23472,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21974,6 +23481,7 @@ }, "Device.USB.USBHosts.Host.{i}.Device.{i}.Configuration.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21987,6 +23495,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -21997,6 +23506,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22005,6 +23515,7 @@ }, "Device.USB.USBHosts.Host.{i}.Device.{i}.Configuration.{i}.Interface.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22018,6 +23529,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22033,6 +23545,7 @@ "type": "hexBinary", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22048,6 +23561,7 @@ "type": "hexBinary", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22063,6 +23577,7 @@ "type": "hexBinary", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22082,6 +23597,7 @@ }, "Device.HPNA.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22092,6 +23608,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22100,6 +23617,7 @@ }, "Device.HPNA.Interface.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22114,6 +23632,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22124,6 +23643,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22143,6 +23663,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22158,6 +23679,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22173,6 +23695,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22184,6 +23707,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22197,6 +23721,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22207,6 +23732,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22226,6 +23752,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22241,6 +23768,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22251,6 +23779,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22261,6 +23790,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22271,6 +23801,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22282,6 +23813,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22293,6 +23825,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22310,6 +23843,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22326,6 +23860,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22338,6 +23873,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22356,6 +23892,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22366,6 +23903,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22377,6 +23915,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22388,6 +23927,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22398,6 +23938,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22408,6 +23949,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22419,6 +23961,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22430,6 +23973,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22445,6 +23989,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22453,6 +23998,7 @@ }, "Device.HPNA.Interface.{i}.Stats.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22463,6 +24009,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22473,6 +24020,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22483,6 +24031,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22493,6 +24042,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22503,6 +24053,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22513,6 +24064,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22523,6 +24075,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22533,6 +24086,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22543,6 +24097,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22553,6 +24108,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22563,6 +24119,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22573,6 +24130,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22583,6 +24141,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22593,6 +24152,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22603,6 +24163,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22612,6 +24173,7 @@ }, "Device.HPNA.Interface.{i}.QoS.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22622,6 +24184,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22630,6 +24193,7 @@ }, "Device.HPNA.Interface.{i}.QoS.FlowSpec.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22643,6 +24207,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22653,6 +24218,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22669,6 +24235,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22684,6 +24251,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22697,6 +24265,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22713,6 +24282,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22729,6 +24299,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22746,6 +24317,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22763,6 +24335,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22778,6 +24351,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22788,6 +24362,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22798,6 +24373,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22808,6 +24384,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22818,6 +24395,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22829,6 +24407,7 @@ }, "Device.HPNA.Interface.{i}.AssociatedDevice.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22842,6 +24421,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22861,6 +24441,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22871,6 +24452,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22881,6 +24463,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22891,6 +24474,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22902,6 +24486,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22913,6 +24498,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22923,6 +24509,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22933,6 +24520,7 @@ }, "Device.HPNA.Diagnostics.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -22941,6 +24529,8 @@ "array": false, "PHYThroughput()": { "type": "command", + "async": true, + "version": "2.12", "protocols": [ "usp" ], @@ -22949,6 +24539,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -22963,6 +24554,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -22972,6 +24564,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -22982,6 +24575,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -22997,6 +24591,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -23006,6 +24601,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -23015,6 +24611,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -23028,6 +24625,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -23045,6 +24643,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -23069,6 +24668,8 @@ }, "PerformanceMonitoring()": { "type": "command", + "async": true, + "version": "2.12", "protocols": [ "usp" ], @@ -23077,6 +24678,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -23091,6 +24693,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -23103,6 +24706,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -23118,6 +24722,7 @@ }, "Device.HPNA.Diagnostics.PHYThroughput.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp" ], @@ -23127,6 +24732,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23143,6 +24749,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23157,6 +24764,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23166,6 +24774,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23176,6 +24785,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23191,6 +24801,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23200,6 +24811,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23209,6 +24821,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23222,6 +24835,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23237,6 +24851,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23244,6 +24859,7 @@ }, "Device.HPNA.Diagnostics.PHYThroughput.Result.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp" ], @@ -23257,6 +24873,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23275,6 +24892,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23293,6 +24911,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23303,6 +24922,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23313,6 +24933,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23323,6 +24944,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23332,6 +24954,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23342,6 +24965,7 @@ }, "Device.HPNA.Diagnostics.PerformanceMonitoring.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp" ], @@ -23351,6 +24975,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23367,6 +24992,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23381,6 +25007,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23389,6 +25016,7 @@ }, "Device.HPNA.Diagnostics.PerformanceMonitoring.Nodes.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp" ], @@ -23398,6 +25026,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23407,6 +25036,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23416,6 +25046,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23423,6 +25054,7 @@ }, "Device.HPNA.Diagnostics.PerformanceMonitoring.Nodes.Node.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp" ], @@ -23435,6 +25067,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23453,6 +25086,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23462,6 +25096,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23471,6 +25106,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23480,6 +25116,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23489,6 +25126,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23498,6 +25136,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23507,6 +25146,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23516,6 +25156,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23525,6 +25166,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23534,6 +25176,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23543,6 +25186,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23552,6 +25196,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23561,6 +25206,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23570,6 +25216,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23579,6 +25226,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23588,6 +25236,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23597,6 +25246,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23606,6 +25256,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23615,6 +25266,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23624,6 +25276,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23633,6 +25286,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23642,6 +25296,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23651,6 +25306,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23660,6 +25316,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23669,6 +25326,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23678,6 +25336,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23694,6 +25353,7 @@ }, "Device.HPNA.Diagnostics.PerformanceMonitoring.Channels.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp" ], @@ -23703,6 +25363,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23712,6 +25373,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23719,6 +25381,7 @@ }, "Device.HPNA.Diagnostics.PerformanceMonitoring.Channels.Channel.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp" ], @@ -23732,6 +25395,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23750,6 +25414,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23768,6 +25433,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23786,6 +25452,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23804,6 +25471,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23814,6 +25482,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23824,6 +25493,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23834,6 +25504,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23843,6 +25514,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23852,6 +25524,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23861,6 +25534,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -23878,6 +25552,7 @@ }, "Device.MoCA.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -23888,6 +25563,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -23896,6 +25572,7 @@ }, "Device.MoCA.Interface.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -23910,6 +25587,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -23920,6 +25598,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -23939,6 +25618,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -23954,6 +25634,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -23969,6 +25650,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -23980,6 +25662,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -23993,6 +25676,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24003,6 +25687,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24022,6 +25707,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24037,6 +25723,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24048,6 +25735,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24059,6 +25747,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24070,6 +25759,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24088,6 +25778,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24106,6 +25797,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24116,6 +25808,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24126,6 +25819,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24136,6 +25830,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24146,6 +25841,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24156,6 +25852,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24166,6 +25863,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24176,6 +25874,7 @@ "type": "hexBinary", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24192,6 +25891,7 @@ "type": "hexBinary", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24208,6 +25908,7 @@ "type": "hexBinary", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24224,6 +25925,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24234,6 +25936,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24244,6 +25947,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24263,6 +25967,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24273,6 +25978,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24283,6 +25989,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24294,6 +26001,7 @@ "type": "hexBinary", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24310,6 +26018,7 @@ "type": "hexBinary", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24326,6 +26035,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24337,6 +26047,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24348,6 +26059,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24358,6 +26070,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24375,6 +26088,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24383,6 +26097,7 @@ }, "Device.MoCA.Interface.{i}.Stats.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24393,6 +26108,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24403,6 +26119,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24413,6 +26130,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24423,6 +26141,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24433,6 +26152,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24443,6 +26163,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24453,6 +26174,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24463,6 +26185,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24473,6 +26196,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24483,6 +26207,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24493,6 +26218,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24503,6 +26229,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24513,6 +26240,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24523,6 +26251,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24533,6 +26262,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24542,6 +26272,7 @@ }, "Device.MoCA.Interface.{i}.QoS.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24552,6 +26283,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24562,6 +26294,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24572,6 +26305,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24580,6 +26314,7 @@ }, "Device.MoCA.Interface.{i}.QoS.FlowStats.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24593,6 +26328,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24603,6 +26339,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24622,6 +26359,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24633,6 +26371,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24643,6 +26382,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24654,6 +26394,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24665,6 +26406,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24675,6 +26417,7 @@ }, "Device.MoCA.Interface.{i}.AssociatedDevice.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24688,6 +26431,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24707,6 +26451,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24717,6 +26462,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24727,6 +26473,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24745,6 +26492,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24756,6 +26504,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24767,6 +26516,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24778,6 +26528,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24789,6 +26540,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24800,6 +26552,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24811,6 +26564,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24821,6 +26575,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24831,6 +26586,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24841,6 +26597,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24851,6 +26608,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24868,6 +26626,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24879,6 +26638,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -24890,6 +26650,7 @@ }, "Device.Ghn.": { "type": "object", + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -24900,6 +26661,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -24908,6 +26670,7 @@ }, "Device.Ghn.Interface.{i}.": { "type": "object", + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -24922,6 +26685,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -24932,6 +26696,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -24951,6 +26716,7 @@ "type": "string", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -24966,6 +26732,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -24981,6 +26748,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -24992,6 +26760,7 @@ "type": "string", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -25005,6 +26774,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -25015,6 +26785,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -25034,6 +26805,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -25049,6 +26821,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -25064,6 +26837,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -25075,6 +26849,7 @@ "type": "string", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -25093,6 +26868,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -25108,6 +26884,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -25118,6 +26895,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -25128,6 +26906,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -25138,6 +26917,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -25149,6 +26929,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -25159,6 +26940,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -25169,6 +26951,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -25179,6 +26962,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -25189,6 +26973,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -25199,6 +26984,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -25209,6 +26995,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -25221,6 +27008,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -25231,6 +27019,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -25248,6 +27037,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -25259,6 +27049,7 @@ "type": "hexBinary", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -25274,6 +27065,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -25284,6 +27076,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -25294,6 +27087,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -25304,6 +27098,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -25314,6 +27109,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -25324,6 +27120,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -25334,6 +27131,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -25344,6 +27142,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -25358,6 +27157,7 @@ }, "Device.Ghn.Interface.{i}.Stats.": { "type": "object", + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -25368,6 +27168,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -25378,6 +27179,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -25388,6 +27190,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -25398,6 +27201,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -25408,6 +27212,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -25418,6 +27223,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -25428,6 +27234,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -25438,6 +27245,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -25448,6 +27256,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -25458,6 +27267,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -25468,6 +27278,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -25478,6 +27289,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -25488,6 +27300,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -25498,6 +27311,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -25508,6 +27322,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -25518,6 +27333,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -25528,6 +27344,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -25538,6 +27355,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -25548,6 +27366,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -25558,6 +27377,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -25568,6 +27388,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -25578,6 +27399,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -25588,6 +27410,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -25597,6 +27420,7 @@ }, "Device.Ghn.Interface.{i}.AssociatedDevice.{i}.": { "type": "object", + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -25610,6 +27434,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -25629,6 +27454,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -25639,6 +27465,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -25650,6 +27477,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -25661,6 +27489,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -25670,6 +27499,7 @@ }, "Device.Ghn.Interface.{i}.DMInfo.": { "type": "object", + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -25680,6 +27510,7 @@ "type": "hexBinary", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -25695,6 +27526,7 @@ "type": "hexBinary", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -25710,6 +27542,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -25720,6 +27553,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -25741,6 +27575,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -25751,6 +27586,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -25770,6 +27606,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -25787,6 +27624,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -25804,6 +27642,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -25814,6 +27653,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -25823,6 +27663,7 @@ }, "Device.Ghn.Interface.{i}.SCInfo.": { "type": "object", + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -25833,6 +27674,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -25849,6 +27691,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -25859,6 +27702,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -25874,6 +27718,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -25883,6 +27728,7 @@ }, "Device.Ghn.Interface.{i}.SMMaskedBand.{i}.": { "type": "object", + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -25896,6 +27742,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -25906,6 +27753,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -25916,6 +27764,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -25926,6 +27775,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -25936,6 +27786,7 @@ }, "Device.Ghn.Diagnostics.": { "type": "object", + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -25944,6 +27795,8 @@ "array": false, "PHYThroughput()": { "type": "command", + "async": true, + "version": "2.12", "protocols": [ "usp" ], @@ -25952,6 +27805,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -25961,6 +27815,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -25981,6 +27836,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -25995,6 +27851,8 @@ }, "PerformanceMonitoring()": { "type": "command", + "async": true, + "version": "2.12", "protocols": [ "usp" ], @@ -26003,6 +27861,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -26012,6 +27871,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -26030,6 +27890,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -26040,6 +27901,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -26089,6 +27951,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -26103,6 +27966,7 @@ }, "Device.Ghn.Diagnostics.PHYThroughput.": { "type": "object", + "version": "2.8", "protocols": [ "cwmp" ], @@ -26112,6 +27976,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp" ], @@ -26127,6 +27992,7 @@ }, "Device.Ghn.Diagnostics.PerformanceMonitoring.": { "type": "object", + "version": "2.8", "protocols": [ "cwmp" ], @@ -26136,6 +28002,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp" ], @@ -26152,6 +28019,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp" ], @@ -26161,6 +28029,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp" ], @@ -26179,6 +28048,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp" ], @@ -26189,6 +28059,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp" ], @@ -26234,6 +28105,7 @@ }, "Device.Ghn.Diagnostics.PerformanceMonitoring.Nodes.": { "type": "object", + "version": "2.8", "protocols": [ "cwmp" ], @@ -26243,6 +28115,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp" ], @@ -26252,6 +28125,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp" ], @@ -26261,6 +28135,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp" ], @@ -26268,6 +28143,7 @@ }, "Device.Ghn.Diagnostics.PerformanceMonitoring.Nodes.Node.{i}.": { "type": "object", + "version": "2.8", "protocols": [ "cwmp" ], @@ -26280,6 +28156,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp" ], @@ -26298,6 +28175,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp" ], @@ -26307,6 +28185,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp" ], @@ -26316,6 +28195,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp" ], @@ -26325,6 +28205,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp" ], @@ -26334,6 +28215,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp" ], @@ -26343,6 +28225,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp" ], @@ -26352,6 +28235,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp" ], @@ -26361,6 +28245,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp" ], @@ -26370,6 +28255,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp" ], @@ -26379,6 +28265,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp" ], @@ -26388,6 +28275,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp" ], @@ -26397,6 +28285,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp" ], @@ -26406,6 +28295,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp" ], @@ -26415,6 +28305,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp" ], @@ -26424,6 +28315,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp" ], @@ -26433,6 +28325,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp" ], @@ -26442,6 +28335,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp" ], @@ -26451,6 +28345,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp" ], @@ -26460,6 +28355,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp" ], @@ -26469,6 +28365,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp" ], @@ -26478,6 +28375,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp" ], @@ -26487,6 +28385,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp" ], @@ -26496,6 +28395,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp" ], @@ -26505,6 +28405,7 @@ }, "Device.Ghn.Diagnostics.PerformanceMonitoring.Channels.": { "type": "object", + "version": "2.8", "protocols": [ "cwmp" ], @@ -26514,6 +28415,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp" ], @@ -26523,6 +28425,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp" ], @@ -26530,6 +28433,7 @@ }, "Device.Ghn.Diagnostics.PerformanceMonitoring.Channels.Channel.{i}.": { "type": "object", + "version": "2.8", "protocols": [ "cwmp" ], @@ -26542,6 +28446,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp" ], @@ -26560,6 +28465,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp" ], @@ -26575,6 +28481,7 @@ }, "Device.HomePlug.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -26585,6 +28492,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -26593,6 +28501,7 @@ }, "Device.HomePlug.Interface.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -26607,6 +28516,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -26617,6 +28527,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -26636,6 +28547,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -26651,6 +28563,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -26666,6 +28579,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -26677,6 +28591,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -26690,6 +28605,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -26700,6 +28616,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -26719,6 +28636,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -26734,6 +28652,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -26749,6 +28668,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -26764,6 +28684,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -26774,6 +28695,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -26789,6 +28711,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -26802,6 +28725,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -26813,6 +28737,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -26821,6 +28746,7 @@ }, "Device.HomePlug.Interface.{i}.Stats.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -26831,6 +28757,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -26841,6 +28768,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -26851,6 +28779,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -26861,6 +28790,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -26871,6 +28801,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -26881,6 +28812,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -26891,6 +28823,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -26901,6 +28834,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -26911,6 +28845,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -26921,6 +28856,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -26931,6 +28867,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -26941,6 +28878,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -26951,6 +28889,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -26961,6 +28900,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -26971,6 +28911,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -26981,6 +28922,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -26991,6 +28933,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27001,6 +28944,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27011,6 +28955,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27021,6 +28966,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27030,6 +28976,7 @@ }, "Device.HomePlug.Interface.{i}.AssociatedDevice.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27043,6 +28990,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27062,6 +29010,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27073,6 +29022,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27084,6 +29034,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27100,6 +29051,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27111,6 +29063,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27135,6 +29088,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27146,6 +29100,7 @@ }, "Device.UPA.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27156,6 +29111,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27164,6 +29120,7 @@ }, "Device.UPA.Interface.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27178,6 +29135,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27188,6 +29146,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27207,6 +29166,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27222,6 +29182,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27237,6 +29198,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27248,6 +29210,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27261,6 +29224,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27271,6 +29235,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27290,6 +29255,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27305,6 +29271,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27316,6 +29283,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27330,6 +29298,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27345,6 +29314,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27367,6 +29337,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27382,6 +29353,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27392,6 +29364,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27402,6 +29375,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27413,6 +29387,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27423,6 +29398,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27433,6 +29409,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27443,6 +29420,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27451,6 +29429,7 @@ }, "Device.UPA.Interface.{i}.Stats.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27461,6 +29440,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27471,6 +29451,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27481,6 +29462,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27491,6 +29473,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27501,6 +29484,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27511,6 +29495,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27521,6 +29506,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27531,6 +29517,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27541,6 +29528,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27551,6 +29539,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27561,6 +29550,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27571,6 +29561,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27581,6 +29572,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27591,6 +29583,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27601,6 +29594,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27610,6 +29604,7 @@ }, "Device.UPA.Interface.{i}.AssociatedDevice.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27623,6 +29618,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27642,6 +29638,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27658,6 +29655,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27673,6 +29671,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27684,6 +29683,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27695,6 +29695,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27706,6 +29707,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27723,6 +29725,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27734,6 +29737,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27753,6 +29757,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27763,6 +29768,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27772,6 +29778,7 @@ }, "Device.UPA.Interface.{i}.ActiveNotch.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27785,6 +29792,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27795,6 +29803,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27810,6 +29819,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27821,6 +29831,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27832,6 +29843,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27842,6 +29854,7 @@ }, "Device.UPA.Interface.{i}.BridgeFor.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27856,6 +29869,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27871,6 +29885,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27890,6 +29905,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27906,6 +29922,7 @@ }, "Device.UPA.Diagnostics.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -27914,6 +29931,8 @@ "array": false, "InterfaceMeasurement()": { "type": "command", + "async": true, + "version": "2.12", "protocols": [ "usp" ], @@ -27922,6 +29941,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -27935,6 +29955,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -27949,6 +29970,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -27966,6 +29988,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -27981,6 +30004,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -27996,6 +30020,7 @@ "type": "int", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -28006,6 +30031,7 @@ }, "Device.UPA.Diagnostics.InterfaceMeasurement.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp" ], @@ -28015,6 +30041,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -28031,6 +30058,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -28044,6 +30072,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -28058,6 +30087,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -28073,6 +30103,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -28088,6 +30119,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -28099,6 +30131,7 @@ }, "Device.WiFi.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -28109,6 +30142,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -28130,6 +30164,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -28151,6 +30186,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -28172,6 +30208,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -28193,6 +30230,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -28203,6 +30241,7 @@ "type": "string", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -28218,6 +30257,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp" ], @@ -28225,6 +30265,8 @@ }, "NeighboringWiFiDiagnostic()": { "type": "command", + "async": true, + "version": "2.12", "protocols": [ "usp" ], @@ -28233,6 +30275,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -28247,12 +30290,15 @@ }, "Reset()": { "type": "command", + "async": false, + "version": "2.12", "protocols": [ "usp" ] }, "Device.WiFi.MultiAP.": { "type": "object", + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28263,6 +30309,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28271,6 +30318,7 @@ }, "Device.WiFi.MultiAP.SteeringSummaryStats.": { "type": "object", + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28281,6 +30329,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28291,6 +30340,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28301,6 +30351,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28311,6 +30362,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28321,6 +30373,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28331,6 +30384,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28341,6 +30395,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28351,6 +30406,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28360,6 +30416,7 @@ }, "Device.WiFi.MultiAP.APDevice.{i}.": { "type": "object", + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28373,6 +30430,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28392,6 +30450,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28402,6 +30461,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28421,6 +30481,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28436,6 +30497,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28451,6 +30513,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28466,6 +30529,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28476,6 +30540,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28486,6 +30551,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28506,6 +30572,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28525,6 +30592,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28535,6 +30603,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28545,6 +30614,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28561,6 +30631,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28577,6 +30648,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28587,6 +30659,7 @@ "type": "string", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -28600,6 +30673,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -28608,6 +30682,7 @@ }, "Device.WiFi.MultiAP.APDevice.{i}.Radio.{i}.": { "type": "object", + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28621,6 +30696,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28640,6 +30716,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28654,6 +30731,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28674,6 +30752,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28690,6 +30769,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28705,6 +30785,7 @@ "type": "string", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -28718,6 +30799,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28734,6 +30816,7 @@ "type": "int", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28754,6 +30837,7 @@ "type": "int", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28771,6 +30855,7 @@ "type": "int", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -28788,6 +30873,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28796,6 +30882,7 @@ }, "Device.WiFi.MultiAP.APDevice.{i}.Radio.{i}.AP.{i}.": { "type": "object", + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28809,6 +30896,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28828,6 +30916,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28838,6 +30927,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28848,6 +30938,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28858,6 +30949,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28868,6 +30960,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28876,6 +30969,7 @@ }, "Device.WiFi.MultiAP.APDevice.{i}.Radio.{i}.AP.{i}.AssociatedDevice.{i}.": { "type": "object", + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28889,6 +30983,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28908,6 +31003,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28926,6 +31022,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28936,6 +31033,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28946,6 +31044,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28957,6 +31056,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28968,6 +31068,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28984,6 +31085,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -28999,6 +31101,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29007,6 +31110,7 @@ }, "Device.WiFi.MultiAP.APDevice.{i}.Radio.{i}.AP.{i}.AssociatedDevice.{i}.Stats.": { "type": "object", + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29017,6 +31121,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29027,6 +31132,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29037,6 +31143,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29047,6 +31154,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29057,6 +31165,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29067,6 +31176,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29077,6 +31187,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29086,6 +31197,7 @@ }, "Device.WiFi.MultiAP.APDevice.{i}.Radio.{i}.AP.{i}.AssociatedDevice.{i}.SteeringSummaryStats.": { "type": "object", + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29096,6 +31208,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29106,6 +31219,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29116,6 +31230,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29126,6 +31241,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29136,6 +31252,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29146,6 +31263,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29156,6 +31274,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29166,6 +31285,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29176,6 +31296,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29186,6 +31307,7 @@ }, "Device.WiFi.MultiAP.APDevice.{i}.Radio.{i}.AP.{i}.AssociatedDevice.{i}.SteeringHistory.{i}.": { "type": "object", + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29201,6 +31323,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29211,6 +31334,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29221,6 +31345,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29237,6 +31362,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29252,6 +31378,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29262,6 +31389,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29277,46 +31405,45 @@ }, "Device.WiFi.DataElements.": { "type": "object", + "version": "2.13", "protocols": [ "cwmp", "usp" ], "access": false, "array": false, - "mapping": [ - { - "type": "ubus", - "ubus": { - "object": "wifi.dataelements.collector", - "method": "dump", - "args": {}, - "key": "data[0]" - } + "mapping": { + "type": "ubus", + "ubus": { + "object": "wifi.dataelements.collector", + "method": "dump", + "args": {}, + "key": "data[0]" } - ], + }, "Device.WiFi.DataElements.Network.": { "type": "object", + "version": "2.13", "protocols": [ "cwmp", "usp" ], "access": false, "array": false, - "mapping": [ - { - "type": "ubus", - "ubus": { - "object": "wifi.dataelements.collector", - "method": "dump", - "args": {}, - "key": "data[0].wfa-dataelements:Network" - } + "mapping": { + "type": "ubus", + "ubus": { + "object": "wifi.dataelements.collector", + "method": "dump", + "args": {}, + "key": "data[0].wfa-dataelements:Network" } - ], + }, "ID": { "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29338,6 +31465,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29359,6 +31487,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29380,6 +31509,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29399,6 +31529,7 @@ }, "Device.WiFi.DataElements.Network.Device.{i}.": { "type": "object", + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29412,6 +31543,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29442,6 +31574,7 @@ "type": "base64", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29458,6 +31591,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29480,6 +31614,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29499,6 +31634,7 @@ }, "Device.WiFi.DataElements.Network.Device.{i}.Radio.{i}.": { "type": "object", + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29508,21 +31644,20 @@ ], "access": false, "array": true, - "mapping": [ - { - "type": "ubus", - "ubus": { - "object": "wifi.dataelements.collector", - "method": "dump", - "args": {}, - "key": "data[0].wfa-dataelements:Network.DeviceList[@i-1].RadioList" - } + "mapping": { + "type": "ubus", + "ubus": { + "object": "wifi.dataelements.collector", + "method": "dump", + "args": {}, + "key": "data[0].wfa-dataelements:Network.DeviceList[@i-1].RadioList" } - ], + }, "ID": { "type": "base64", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29550,6 +31685,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29571,6 +31707,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29597,6 +31734,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29624,6 +31762,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29651,6 +31790,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29677,6 +31817,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29704,6 +31845,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29725,6 +31867,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29746,6 +31889,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29767,6 +31911,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29786,6 +31931,7 @@ }, "Device.WiFi.DataElements.Network.Device.{i}.Radio.{i}.BackhaulSta.": { "type": "object", + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29796,6 +31942,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29825,6 +31972,7 @@ }, "Device.WiFi.DataElements.Network.Device.{i}.Radio.{i}.Capabilities.": { "type": "object", + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29835,6 +31983,7 @@ "type": "base64", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29862,6 +32011,7 @@ "type": "base64", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29889,6 +32039,7 @@ "type": "base64", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29916,6 +32067,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29935,6 +32087,7 @@ }, "Device.WiFi.DataElements.Network.Device.{i}.Radio.{i}.Capabilities.CapableOperatingClassProfile.{i}.": { "type": "object", + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29944,21 +32097,20 @@ ], "access": false, "array": true, - "mapping": [ - { - "type": "ubus", - "ubus": { - "object": "wifi.dataelements.collector", - "method": "dump", - "args": {}, - "key": "data[0].wfa-dataelements:Network.DeviceList[@i-1].RadioList[@i-1].Capabilites.OperatingClasses" - } + "mapping": { + "type": "ubus", + "ubus": { + "object": "wifi.dataelements.collector", + "method": "dump", + "args": {}, + "key": "data[0].wfa-dataelements:Network.DeviceList[@i-1].RadioList[@i-1].Capabilites.OperatingClasses" } - ], + }, "Class": { "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -29985,6 +32137,7 @@ "type": "int", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -30013,6 +32166,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -30041,6 +32195,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -30062,6 +32217,7 @@ }, "Device.WiFi.DataElements.Network.Device.{i}.Radio.{i}.CurrentOperatingClassProfile.{i}.": { "type": "object", + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -30071,21 +32227,20 @@ ], "access": false, "array": true, - "mapping": [ - { - "type": "ubus", - "ubus": { - "object": "wifi.dataelements.collector", - "method": "dump", - "args": {}, - "key": "data[0].wfa-dataelements:Network.DeviceList[@i-1].RadioList[@i-1].CurrentOperatingClasses" - } + "mapping": { + "type": "ubus", + "ubus": { + "object": "wifi.dataelements.collector", + "method": "dump", + "args": {}, + "key": "data[0].wfa-dataelements:Network.DeviceList[@i-1].RadioList[@i-1].CurrentOperatingClasses" } - ], + }, "Class": { "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -30112,6 +32267,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -30138,6 +32294,7 @@ "type": "int", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -30166,6 +32323,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -30186,6 +32344,7 @@ }, "Device.WiFi.DataElements.Network.Device.{i}.Radio.{i}.BSS.{i}.": { "type": "object", + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -30195,21 +32354,20 @@ ], "access": false, "array": true, - "mapping": [ - { - "type": "ubus", - "ubus": { - "object": "wifi.dataelements.collector", - "method": "dump", - "args": {}, - "key": "data[0].wfa-dataelements:Network.DeviceList[@i-1].RadioList[@i-1].BSSList" - } + "mapping": { + "type": "ubus", + "ubus": { + "object": "wifi.dataelements.collector", + "method": "dump", + "args": {}, + "key": "data[0].wfa-dataelements:Network.DeviceList[@i-1].RadioList[@i-1].BSSList" } - ], + }, "BSSID": { "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -30240,6 +32398,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -30261,6 +32420,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -30282,6 +32442,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -30304,6 +32465,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -30325,6 +32487,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -30346,6 +32509,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -30367,6 +32531,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -30388,6 +32553,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -30409,6 +32575,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -30430,6 +32597,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -30451,6 +32619,7 @@ "type": "base64", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -30478,6 +32647,7 @@ "type": "base64", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -30505,6 +32675,7 @@ "type": "base64", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -30532,6 +32703,7 @@ "type": "base64", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -30559,6 +32731,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -30578,6 +32751,7 @@ }, "Device.WiFi.DataElements.Network.Device.{i}.Radio.{i}.BSS.{i}.STA.{i}.": { "type": "object", + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -30587,21 +32761,20 @@ ], "access": false, "array": true, - "mapping": [ - { - "type": "ubus", - "ubus": { - "object": "wifi.dataelements.collector", - "method": "dump", - "args": {}, - "key": "data[0].wfa-dataelements:Network.DeviceList[@i-1].RadioList[@i-1].BSSList[@i-1].STAList" - } + "mapping": { + "type": "ubus", + "ubus": { + "object": "wifi.dataelements.collector", + "method": "dump", + "args": {}, + "key": "data[0].wfa-dataelements:Network.DeviceList[@i-1].RadioList[@i-1].BSSList[@i-1].STAList" } - ], + }, "MACAddress": { "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -30632,6 +32805,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -30653,6 +32827,7 @@ "type": "base64", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -30680,6 +32855,7 @@ "type": "base64", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -30707,6 +32883,7 @@ "type": "base64", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -30734,6 +32911,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -30756,6 +32934,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -30778,6 +32957,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -30800,6 +32980,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -30822,6 +33003,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -30844,6 +33026,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -30866,6 +33049,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -30893,6 +33077,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -30915,6 +33100,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -30936,6 +33122,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -30957,6 +33144,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -30978,6 +33166,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -30999,6 +33188,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31020,6 +33210,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31041,6 +33232,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31051,6 +33243,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31074,6 +33267,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31095,6 +33289,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31114,6 +33309,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31129,6 +33325,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31150,27 +33347,27 @@ }, "Device.WiFi.DataElements.Network.Device.{i}.Radio.{i}.ScanResult.{i}.": { "type": "object", + "version": "2.13", "protocols": [ "cwmp", "usp" ], "access": false, "array": true, - "mapping": [ - { - "type": "ubus", - "ubus": { - "object": "wifi.dataelements.collector", - "method": "dump", - "args": {}, - "key": "data[0].wfa-dataelements:Network.DeviceList[@i-1].RadioList[@i-1].BSSList[@i-1].ScanResultList" - } + "mapping": { + "type": "ubus", + "ubus": { + "object": "wifi.dataelements.collector", + "method": "dump", + "args": {}, + "key": "data[0].wfa-dataelements:Network.DeviceList[@i-1].RadioList[@i-1].BSSList[@i-1].ScanResultList" } - ], + }, "TimeStamp": { "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31192,6 +33389,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31211,6 +33409,7 @@ }, "Device.WiFi.DataElements.Network.Device.{i}.Radio.{i}.ScanResult.{i}.OpClassScan.{i}.": { "type": "object", + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31220,21 +33419,20 @@ ], "access": false, "array": true, - "mapping": [ - { - "type": "ubus", - "ubus": { - "object": "wifi.dataelements.collector", - "method": "dump", - "args": {}, - "key": "data[0].wfa-dataelements:Network.DeviceList[@i-1].RadioList[@i-1].BSSList[@i-1].ScanResultList[@i-1].OpClassScanList" - } + "mapping": { + "type": "ubus", + "ubus": { + "object": "wifi.dataelements.collector", + "method": "dump", + "args": {}, + "key": "data[0].wfa-dataelements:Network.DeviceList[@i-1].RadioList[@i-1].BSSList[@i-1].ScanResultList[@i-1].OpClassScanList" } - ], + }, "OperatingClass": { "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31261,6 +33459,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31280,6 +33479,7 @@ }, "Device.WiFi.DataElements.Network.Device.{i}.Radio.{i}.ScanResult.{i}.OpClassScan.{i}.ChannelScan.{i}.": { "type": "object", + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31289,21 +33489,20 @@ ], "access": false, "array": true, - "mapping": [ - { - "type": "ubus", - "ubus": { - "object": "wifi.dataelements.collector", - "method": "dump", - "args": {}, - "key": "data[0].wfa-dataelements:Network.DeviceList[@i-1].RadioList[@i-1].BSSList[@i-1].ScanResultList[@i-1].OpClassScanList[@i-1].ChannelScanList" - } + "mapping": { + "type": "ubus", + "ubus": { + "object": "wifi.dataelements.collector", + "method": "dump", + "args": {}, + "key": "data[0].wfa-dataelements:Network.DeviceList[@i-1].RadioList[@i-1].BSSList[@i-1].ScanResultList[@i-1].OpClassScanList[@i-1].ChannelScanList" } - ], + }, "Channel": { "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31330,6 +33529,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31351,6 +33551,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31377,6 +33578,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31403,6 +33605,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31422,6 +33625,7 @@ }, "Device.WiFi.DataElements.Network.Device.{i}.Radio.{i}.ScanResult.{i}.OpClassScan.{i}.ChannelScan.{i}.NeighborBSS.{i}.": { "type": "object", + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31431,21 +33635,20 @@ ], "access": false, "array": true, - "mapping": [ - { - "type": "ubus", - "ubus": { - "object": "wifi.dataelements.collector", - "method": "dump", - "args": {}, - "key": "data[0].wfa-dataelements:Network.DeviceList[@i-1].RadioList[@i-1].BSSList[@i-1].ScanResultList[@i-1].OpClassScanList[@i-1].ChannelScanList[@i-1].NeighborList" - } + "mapping": { + "type": "ubus", + "ubus": { + "object": "wifi.dataelements.collector", + "method": "dump", + "args": {}, + "key": "data[0].wfa-dataelements:Network.DeviceList[@i-1].RadioList[@i-1].BSSList[@i-1].ScanResultList[@i-1].OpClassScanList[@i-1].ChannelScanList[@i-1].NeighborList" } - ], + }, "BSSID": { "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31476,6 +33679,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31497,6 +33701,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31524,6 +33729,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31545,6 +33751,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31571,6 +33778,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31594,6 +33802,7 @@ }, "Device.WiFi.DataElements.Network.Device.{i}.Radio.{i}.UnassociatedSTA.{i}.": { "type": "object", + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31603,21 +33812,20 @@ ], "access": false, "array": true, - "mapping": [ - { - "type": "ubus", - "ubus": { - "object": "wifi.dataelements.collector", - "method": "dump", - "args": {}, - "key": "data[0].wfa-dataelements:Network.DeviceList[@i-1].RadioList[@i-1].UnassociatedStaList" - } + "mapping": { + "type": "ubus", + "ubus": { + "object": "wifi.dataelements.collector", + "method": "dump", + "args": {}, + "key": "data[0].wfa-dataelements:Network.DeviceList[@i-1].RadioList[@i-1].UnassociatedStaList" } - ], + }, "MACAddress": { "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31648,6 +33856,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31677,6 +33886,7 @@ }, "Device.WiFi.DataElements.AssociationEvent.": { "type": "object", + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31687,6 +33897,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31695,6 +33906,7 @@ }, "Device.WiFi.DataElements.AssociationEvent.AssociationEventData.{i}.": { "type": "object", + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31705,6 +33917,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31724,6 +33937,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31743,6 +33957,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31753,6 +33968,7 @@ "type": "base64", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31769,6 +33985,7 @@ "type": "base64", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31785,6 +34002,7 @@ "type": "base64", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31801,6 +34019,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31811,6 +34030,7 @@ }, "Device.WiFi.DataElements.DisassociationEvent.": { "type": "object", + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31821,6 +34041,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31829,6 +34050,7 @@ }, "Device.WiFi.DataElements.DisassociationEvent.DisassociationEventData.{i}.": { "type": "object", + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31839,6 +34061,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31858,6 +34081,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31877,6 +34101,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31887,6 +34112,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31897,6 +34123,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31907,6 +34134,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31917,6 +34145,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31927,6 +34156,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31937,6 +34167,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31947,6 +34178,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31957,6 +34189,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -31968,6 +34201,7 @@ }, "Device.WiFi.Radio.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -31992,6 +34226,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -32017,6 +34252,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -32051,6 +34287,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -32081,6 +34318,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -32096,6 +34334,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -32107,6 +34346,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -32120,6 +34360,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -32130,6 +34371,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -32152,6 +34394,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -32179,6 +34422,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -32200,6 +34444,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -32231,6 +34476,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -32254,6 +34500,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -32278,6 +34525,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -32306,6 +34554,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -32337,6 +34586,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -32347,6 +34597,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -32372,6 +34623,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -32398,6 +34650,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -32409,6 +34662,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -32428,6 +34682,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -32443,6 +34698,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -32473,6 +34729,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -32488,6 +34745,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -32519,6 +34777,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -32544,6 +34803,7 @@ "type": "string", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -32572,6 +34832,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -32587,6 +34848,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -32608,6 +34870,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -32618,6 +34881,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -32628,6 +34892,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -32638,6 +34903,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -32648,6 +34914,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -32668,6 +34935,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -32688,6 +34956,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -32720,6 +34989,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -32730,6 +35000,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -32755,6 +35026,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -32789,6 +35061,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -32805,6 +35078,7 @@ "type": "hexBinary", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -32821,6 +35095,7 @@ "type": "hexBinary", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -32837,6 +35112,7 @@ "type": "hexBinary", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -32853,6 +35129,7 @@ "type": "hexBinary", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -32869,6 +35146,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -32895,6 +35173,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -32921,6 +35200,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -32931,6 +35211,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -32957,6 +35238,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -32982,6 +35264,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -32992,6 +35275,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -33022,6 +35306,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -33034,6 +35319,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -33046,6 +35332,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -33058,6 +35345,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -33066,6 +35354,7 @@ }, "Device.WiFi.Radio.{i}.Stats.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -33076,6 +35365,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -33086,6 +35376,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -33096,6 +35387,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -33106,6 +35398,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -33116,6 +35409,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -33126,6 +35420,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -33136,6 +35431,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -33146,6 +35442,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -33156,6 +35453,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -33166,6 +35464,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -33187,6 +35486,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -33208,6 +35508,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -33229,6 +35530,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -33250,6 +35552,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -33271,6 +35574,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -33292,6 +35596,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -33313,6 +35618,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -33334,6 +35640,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -33344,6 +35651,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -33365,6 +35673,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -33375,6 +35684,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -33385,6 +35695,7 @@ "type": "int", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -33396,6 +35707,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -33406,6 +35718,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -33416,6 +35729,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -33426,6 +35740,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -33436,6 +35751,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -33446,6 +35762,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -33456,6 +35773,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -33466,6 +35784,7 @@ }, "Device.WiFi.NeighboringWiFiDiagnostic.": { "type": "object", + "version": "2.7", "protocols": [ "cwmp" ], @@ -33475,6 +35794,7 @@ "type": "string", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp" ], @@ -33491,6 +35811,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp" ], @@ -33498,6 +35819,7 @@ }, "Device.WiFi.NeighboringWiFiDiagnostic.Result.{i}.": { "type": "object", + "version": "2.7", "protocols": [ "cwmp" ], @@ -33519,6 +35841,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp" ], @@ -33528,6 +35851,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp" ], @@ -33553,6 +35877,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp" ], @@ -33582,6 +35907,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp" ], @@ -33595,6 +35921,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp" ], @@ -33621,6 +35948,7 @@ "type": "int", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp" ], @@ -33648,6 +35976,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp" ], @@ -33670,6 +35999,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp" ], @@ -33685,6 +36015,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp" ], @@ -33709,6 +36040,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp" ], @@ -33728,6 +36060,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp" ], @@ -33739,6 +36072,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp" ], @@ -33755,6 +36089,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp" ], @@ -33765,6 +36100,7 @@ "type": "int", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp" ], @@ -33792,6 +36128,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp" ], @@ -33804,6 +36141,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp" ], @@ -33816,6 +36154,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp" ], @@ -33826,6 +36165,7 @@ }, "Device.WiFi.SSID.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -33851,6 +36191,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -33876,6 +36217,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -33910,6 +36252,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -33940,6 +36283,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -33955,6 +36299,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -33966,6 +36311,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -33979,6 +36325,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -34009,6 +36356,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -34034,6 +36382,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -34064,6 +36413,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -34074,6 +36424,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -34084,6 +36435,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -34094,6 +36446,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -34109,6 +36462,7 @@ }, "Device.WiFi.SSID.{i}.Stats.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -34119,6 +36473,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -34140,6 +36495,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -34161,6 +36517,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -34182,6 +36539,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -34203,6 +36561,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -34224,6 +36583,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -34245,6 +36605,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -34266,6 +36627,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -34287,6 +36649,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -34308,6 +36671,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -34329,6 +36693,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -34350,6 +36715,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -34371,6 +36737,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -34392,6 +36759,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -34413,6 +36781,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -34434,6 +36803,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -34455,6 +36825,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -34476,6 +36847,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -34497,6 +36869,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -34518,6 +36891,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -34539,6 +36913,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -34560,6 +36935,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -34570,6 +36946,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -34580,6 +36957,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -34590,6 +36968,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -34600,6 +36979,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -34610,6 +36990,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -34620,6 +37001,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -34630,6 +37012,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -34640,6 +37023,7 @@ }, "Device.WiFi.AccessPoint.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -34664,6 +37048,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -34689,6 +37074,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -34716,6 +37102,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -34746,6 +37133,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -34761,6 +37149,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -34771,6 +37160,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -34787,6 +37177,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -34797,6 +37188,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -34807,6 +37199,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -34832,6 +37225,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -34857,6 +37251,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -34867,6 +37262,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -34877,6 +37273,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -34902,6 +37299,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -34927,6 +37325,7 @@ "type": "string", "read": true, "write": true, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -34963,6 +37362,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -34988,6 +37388,7 @@ "type": "string", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -35000,6 +37401,7 @@ }, "Device.WiFi.AccessPoint.{i}.Security.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -35010,6 +37412,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -35036,6 +37439,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -35074,6 +37478,7 @@ "type": "string", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -35090,6 +37495,7 @@ "type": "hexBinary", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -35110,6 +37516,7 @@ "type": "hexBinary", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -35125,6 +37532,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -35141,6 +37549,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -35167,6 +37576,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -35192,6 +37602,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -35222,6 +37633,7 @@ "type": "string", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -35237,6 +37649,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -35262,6 +37675,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -35272,6 +37686,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -35282,6 +37697,7 @@ "type": "string", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -35292,6 +37708,7 @@ "type": "string", "read": true, "write": true, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -35322,6 +37739,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp" ], @@ -35329,6 +37747,8 @@ }, "Reset()": { "type": "command", + "async": false, + "version": "2.12", "protocols": [ "usp" ] @@ -35336,6 +37756,7 @@ }, "Device.WiFi.AccessPoint.{i}.WPS.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -35346,6 +37767,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -35371,6 +37793,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -35398,6 +37821,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -35410,6 +37834,7 @@ "type": "string", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -35442,6 +37867,7 @@ "type": "string", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -35452,6 +37878,7 @@ "type": "string", "read": true, "write": true, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -35484,6 +37911,7 @@ }, "Device.WiFi.AccessPoint.{i}.AssociatedDevice.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -35497,6 +37925,7 @@ "type": "string", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -35507,6 +37936,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -35524,6 +37954,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -35554,6 +37985,7 @@ "type": "string", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -35572,6 +38004,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -35582,6 +38015,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -35609,6 +38043,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -35636,6 +38071,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -35657,6 +38093,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -35685,6 +38122,7 @@ "type": "int", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -35713,6 +38151,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -35730,6 +38169,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -35738,6 +38178,7 @@ }, "Device.WiFi.AccessPoint.{i}.AssociatedDevice.{i}.Stats.": { "type": "object", + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -35748,6 +38189,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -35769,6 +38211,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -35790,6 +38233,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -35811,6 +38255,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -35832,6 +38277,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -35853,6 +38299,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -35863,6 +38310,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -35884,6 +38332,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -35894,6 +38343,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -35904,6 +38354,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -35914,6 +38365,7 @@ }, "Device.WiFi.AccessPoint.{i}.AC.{i}.": { "type": "object", + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -35927,6 +38379,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -35943,6 +38396,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -35958,6 +38412,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -35974,6 +38429,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -35991,6 +38447,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -36008,6 +38465,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -36025,6 +38483,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -36035,6 +38494,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -36047,6 +38507,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -36056,6 +38517,7 @@ }, "Device.WiFi.AccessPoint.{i}.AC.{i}.Stats.": { "type": "object", + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -36066,6 +38528,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -36076,6 +38539,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -36086,6 +38550,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -36096,6 +38561,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -36106,6 +38572,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -36116,6 +38583,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -36126,6 +38594,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -36136,6 +38605,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -36146,6 +38616,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -36156,6 +38627,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -36168,6 +38640,7 @@ }, "Device.WiFi.AccessPoint.{i}.Accounting.": { "type": "object", + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -36178,6 +38651,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -36188,6 +38662,7 @@ "type": "string", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -36218,6 +38693,7 @@ "type": "string", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -36233,6 +38709,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -36258,6 +38735,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -36268,6 +38746,7 @@ "type": "string", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -36293,6 +38772,7 @@ "type": "string", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -36303,6 +38783,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -36323,6 +38804,7 @@ }, "Device.WiFi.EndPoint.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -36347,6 +38829,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -36372,6 +38855,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -36403,6 +38887,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -36433,6 +38918,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -36448,6 +38934,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -36463,6 +38950,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -36471,6 +38959,7 @@ }, "Device.WiFi.EndPoint.{i}.Stats.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -36481,6 +38970,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -36498,6 +38988,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -36515,6 +39006,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -36532,6 +39024,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -36548,6 +39041,7 @@ }, "Device.WiFi.EndPoint.{i}.Security.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -36558,6 +39052,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -36583,6 +39078,7 @@ }, "Device.WiFi.EndPoint.{i}.Profile.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -36599,6 +39095,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -36609,6 +39106,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -36625,6 +39123,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -36640,6 +39139,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -36670,6 +39170,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -36680,6 +39181,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -36693,6 +39195,7 @@ }, "Device.WiFi.EndPoint.{i}.Profile.{i}.Security.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -36703,6 +39206,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -36728,6 +39232,7 @@ "type": "hexBinary", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -36748,6 +39253,7 @@ "type": "hexBinary", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -36763,6 +39269,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -36779,6 +39286,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -36804,6 +39312,7 @@ "type": "string", "read": true, "write": true, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -36834,6 +39343,7 @@ }, "Device.WiFi.EndPoint.{i}.WPS.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -36844,6 +39354,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -36869,6 +39380,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -36896,6 +39408,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -36908,6 +39421,7 @@ "type": "string", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -36939,6 +39453,7 @@ "type": "string", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -36949,6 +39464,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -36983,6 +39499,7 @@ }, "Device.WiFi.EndPoint.{i}.AC.{i}.": { "type": "object", + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -36996,6 +39513,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -37012,6 +39530,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -37027,6 +39546,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -37043,6 +39563,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -37060,6 +39581,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -37077,6 +39599,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -37094,6 +39617,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -37104,6 +39628,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -37116,6 +39641,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -37125,6 +39651,7 @@ }, "Device.WiFi.EndPoint.{i}.AC.{i}.Stats.": { "type": "object", + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -37135,6 +39662,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -37145,6 +39673,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -37155,6 +39684,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -37165,6 +39695,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -37175,6 +39706,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -37185,6 +39717,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -37195,6 +39728,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -37205,6 +39739,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -37215,6 +39750,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -37225,6 +39761,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -37239,6 +39776,7 @@ }, "Device.ZigBee.": { "type": "object", + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37249,6 +39787,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37259,6 +39798,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37267,6 +39807,7 @@ }, "Device.ZigBee.Interface.{i}.": { "type": "object", + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37282,6 +39823,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37292,6 +39834,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37311,6 +39854,7 @@ "type": "string", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37326,6 +39870,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37341,6 +39886,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37352,6 +39898,7 @@ "type": "string", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37365,6 +39912,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37384,6 +39932,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37403,6 +39952,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37418,6 +39968,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37426,6 +39977,7 @@ }, "Device.ZigBee.Interface.{i}.Stats.": { "type": "object", + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37436,6 +39988,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37446,6 +39999,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37456,6 +40010,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37466,6 +40021,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37476,6 +40032,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37486,6 +40043,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37496,6 +40054,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37506,6 +40065,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37516,6 +40076,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37526,6 +40087,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37536,6 +40098,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37546,6 +40109,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37556,6 +40120,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37566,6 +40131,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37576,6 +40142,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37585,6 +40152,7 @@ }, "Device.ZigBee.Interface.{i}.AssociatedDevice.{i}.": { "type": "object", + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37599,6 +40167,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37618,6 +40187,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37637,6 +40207,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37647,6 +40218,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37662,6 +40234,7 @@ }, "Device.ZigBee.ZDO.{i}.": { "type": "object", + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37676,6 +40249,7 @@ "type": "string", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37691,6 +40265,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37710,6 +40285,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37729,6 +40305,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37739,6 +40316,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37749,6 +40327,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37757,6 +40336,7 @@ }, "Device.ZigBee.ZDO.{i}.NodeDescriptor.": { "type": "object", + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37767,6 +40347,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37782,6 +40363,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37792,6 +40374,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37802,6 +40385,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37819,6 +40403,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37838,6 +40423,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37853,6 +40439,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37869,6 +40456,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37885,6 +40473,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37901,6 +40490,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37921,6 +40511,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37936,6 +40527,7 @@ }, "Device.ZigBee.ZDO.{i}.PowerDescriptor.": { "type": "object", + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37946,6 +40538,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37961,6 +40554,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37978,6 +40572,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -37993,6 +40588,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38008,6 +40604,7 @@ }, "Device.ZigBee.ZDO.{i}.UserDescriptor.": { "type": "object", + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38018,6 +40615,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38028,6 +40626,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38042,6 +40641,7 @@ }, "Device.ZigBee.ZDO.{i}.ComplexDescriptor.": { "type": "object", + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38052,6 +40652,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38062,6 +40663,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38072,6 +40674,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38082,6 +40685,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38092,6 +40696,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38102,6 +40707,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38112,6 +40718,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38127,6 +40734,7 @@ "type": "hexBinary", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38142,6 +40750,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38156,6 +40765,7 @@ }, "Device.ZigBee.ZDO.{i}.Security.": { "type": "object", + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38166,6 +40776,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38185,6 +40796,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38205,6 +40817,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38220,6 +40833,7 @@ }, "Device.ZigBee.ZDO.{i}.Network.": { "type": "object", + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38230,6 +40844,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38238,6 +40853,7 @@ }, "Device.ZigBee.ZDO.{i}.Network.Neighbor.{i}.": { "type": "object", + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38251,6 +40867,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38261,6 +40878,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38276,6 +40894,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38293,6 +40912,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38308,6 +40928,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38318,6 +40939,7 @@ }, "Device.ZigBee.ZDO.{i}.NodeManager.": { "type": "object", + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38328,6 +40950,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38336,6 +40959,7 @@ }, "Device.ZigBee.ZDO.{i}.NodeManager.RoutingTable.{i}.": { "type": "object", + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38349,6 +40973,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38367,6 +40992,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38386,6 +41012,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38403,6 +41030,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38413,6 +41041,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38423,6 +41052,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38433,6 +41063,7 @@ }, "Device.ZigBee.ZDO.{i}.Binding.{i}.": { "type": "object", + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38446,6 +41077,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38456,6 +41088,7 @@ "type": "string", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38471,6 +41104,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38486,6 +41120,7 @@ "type": "string", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38505,6 +41140,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38520,6 +41156,7 @@ "type": "string", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38534,6 +41171,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38549,6 +41187,7 @@ "type": "string", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38568,6 +41207,7 @@ "type": "string", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38586,6 +41226,7 @@ }, "Device.ZigBee.ZDO.{i}.Group.{i}.": { "type": "object", + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38600,6 +41241,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38610,6 +41252,7 @@ "type": "string", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38625,6 +41268,7 @@ "type": "string", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38644,6 +41288,7 @@ "type": "string", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38660,6 +41305,7 @@ }, "Device.ZigBee.ZDO.{i}.ApplicationEndpoint.{i}.": { "type": "object", + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38674,6 +41320,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38684,6 +41331,7 @@ "type": "string", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38699,6 +41347,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38712,6 +41361,7 @@ }, "Device.ZigBee.ZDO.{i}.ApplicationEndpoint.{i}.SimpleDescriptor.": { "type": "object", + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38722,6 +41372,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38737,6 +41388,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38752,6 +41404,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38767,6 +41420,7 @@ "type": "string", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38784,6 +41438,7 @@ "type": "string", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38802,6 +41457,7 @@ }, "Device.ZigBee.Discovery.": { "type": "object", + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38812,6 +41468,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38820,6 +41477,7 @@ }, "Device.ZigBee.Discovery.AreaNetwork.{i}.": { "type": "object", + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38834,6 +41492,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38844,6 +41503,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38854,6 +41514,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38871,6 +41532,7 @@ "type": "string", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38886,6 +41548,7 @@ "type": "string", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38901,6 +41564,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38916,6 +41580,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38934,6 +41599,7 @@ }, "Device.Bridging.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -38944,6 +41610,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -38954,6 +41621,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -38964,6 +41632,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -38974,6 +41643,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -38984,6 +41654,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -38994,6 +41665,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -39015,6 +41687,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39025,6 +41698,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39046,6 +41720,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39054,6 +41729,7 @@ }, "Device.Bridging.Bridge.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39077,6 +41753,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39100,6 +41777,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39128,6 +41806,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39158,6 +41837,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39173,6 +41853,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39183,6 +41864,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39193,6 +41875,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39201,6 +41884,7 @@ }, "Device.Bridging.Bridge.{i}.Port.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39215,6 +41899,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39225,6 +41910,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39244,6 +41930,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39259,6 +41946,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39274,6 +41962,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39298,6 +41987,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39311,6 +42001,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39321,6 +42012,7 @@ "type": "string", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -39338,6 +42030,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39354,6 +42047,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39376,6 +42070,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39394,6 +42089,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39410,6 +42106,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -39420,6 +42117,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39435,6 +42133,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39445,6 +42144,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -39455,6 +42155,7 @@ "type": "string", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -39477,6 +42178,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39485,6 +42187,7 @@ }, "Device.Bridging.Bridge.{i}.Port.{i}.Stats.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39495,6 +42198,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39511,6 +42215,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39521,6 +42226,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39537,6 +42243,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39553,6 +42260,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39569,6 +42277,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39585,6 +42294,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39595,6 +42305,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39605,6 +42316,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39621,6 +42333,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39637,6 +42350,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39647,6 +42361,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39663,6 +42378,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39673,6 +42389,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39683,6 +42400,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39692,6 +42410,7 @@ }, "Device.Bridging.Bridge.{i}.Port.{i}.PriorityCodePoint.": { "type": "object", + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -39702,6 +42421,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -39718,6 +42438,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -39728,6 +42449,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -39738,6 +42460,7 @@ "type": "string", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -39763,6 +42486,7 @@ "type": "string", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -39788,6 +42512,7 @@ }, "Device.Bridging.Bridge.{i}.VLAN.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39802,6 +42527,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39812,6 +42538,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39827,6 +42554,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39842,6 +42570,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39857,6 +42586,7 @@ }, "Device.Bridging.Bridge.{i}.VLANPort.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39872,6 +42602,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39882,6 +42613,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39897,6 +42629,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39912,6 +42645,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39927,6 +42661,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39937,6 +42672,7 @@ }, "Device.Bridging.Filter.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39950,6 +42686,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39960,6 +42697,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39975,6 +42713,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -39991,6 +42730,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -40006,6 +42746,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -40021,6 +42762,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -40036,6 +42778,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -40050,6 +42793,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -40066,6 +42810,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -40079,6 +42824,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -40089,6 +42835,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -40102,6 +42849,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -40112,6 +42860,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -40125,6 +42874,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -40135,6 +42885,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -40150,6 +42901,7 @@ "type": "hexBinary", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -40165,6 +42917,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -40175,6 +42928,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -40191,6 +42945,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -40206,6 +42961,7 @@ "type": "hexBinary", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -40221,6 +42977,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -40231,6 +42988,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -40247,6 +43005,7 @@ "type": "hexBinary", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -40262,6 +43021,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -40272,6 +43032,7 @@ "type": "hexBinary", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -40287,6 +43048,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -40297,6 +43059,7 @@ "type": "hexBinary", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -40312,6 +43075,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -40322,6 +43086,7 @@ "type": "hexBinary", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -40337,6 +43102,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -40347,6 +43113,7 @@ "type": "string", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -40362,6 +43129,7 @@ "type": "string", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -40377,6 +43145,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -40387,6 +43156,7 @@ "type": "string", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -40402,6 +43172,7 @@ "type": "string", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -40417,6 +43188,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -40427,6 +43199,7 @@ "type": "int", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -40443,6 +43216,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -40453,6 +43227,7 @@ "type": "int", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -40469,6 +43244,7 @@ "type": "int", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -40485,6 +43261,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -40495,6 +43272,7 @@ "type": "int", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -40511,6 +43289,7 @@ "type": "int", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -40527,6 +43306,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -40536,6 +43316,7 @@ }, "Device.Bridging.ProviderBridge.{i}.": { "type": "object", + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -40549,6 +43330,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -40559,6 +43341,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -40575,6 +43358,7 @@ "type": "string", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -40590,6 +43374,7 @@ "type": "string", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -40604,6 +43389,7 @@ "type": "string", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -40619,6 +43405,7 @@ "type": "string", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -40636,6 +43423,7 @@ }, "Device.PPP.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -40646,6 +43434,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -40656,6 +43445,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -40673,6 +43463,7 @@ }, "Device.PPP.Interface.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -40697,6 +43488,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -40720,6 +43512,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -40752,6 +43545,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -40782,6 +43576,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -40797,6 +43592,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -40821,6 +43617,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -40834,6 +43631,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -40843,6 +43641,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -40875,6 +43674,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -40910,6 +43710,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -40921,6 +43722,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -40932,6 +43734,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -40943,6 +43746,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -40973,6 +43777,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -41003,6 +43808,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -41017,6 +43823,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -41032,6 +43839,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -41047,6 +43855,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -41063,6 +43872,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -41079,6 +43889,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -41094,6 +43905,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -41105,6 +43917,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -41115,6 +43928,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -41125,6 +43939,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -41133,12 +43948,15 @@ }, "Reset()": { "type": "command", + "async": false, + "version": "2.12", "protocols": [ "usp" ] }, "Device.PPP.Interface.{i}.PPPoE.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -41149,6 +43967,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -41164,6 +43983,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -41194,6 +44014,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -41223,6 +44044,7 @@ }, "Device.PPP.Interface.{i}.IPCP.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -41233,6 +44055,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -41252,6 +44075,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -41271,6 +44095,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -41295,6 +44120,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -41305,6 +44131,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -41319,6 +44146,7 @@ }, "Device.PPP.Interface.{i}.IPv6CP.": { "type": "object", + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -41329,6 +44157,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -41344,6 +44173,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -41358,6 +44188,7 @@ }, "Device.PPP.Interface.{i}.Stats.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -41368,6 +44199,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -41384,6 +44216,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -41400,6 +44233,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -41416,6 +44250,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -41432,6 +44267,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -41448,6 +44284,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -41464,6 +44301,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -41474,6 +44312,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -41484,6 +44323,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -41500,6 +44340,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -41516,6 +44357,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -41526,6 +44368,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -41542,6 +44385,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -41552,6 +44396,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -41562,6 +44407,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -41571,6 +44417,7 @@ }, "Device.PPP.Interface.{i}.PPPoA.": { "type": "object", + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -41582,6 +44429,7 @@ }, "Device.IP.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -41592,6 +44440,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -41602,6 +44451,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -41612,6 +44462,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -41627,6 +44478,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -41637,6 +44489,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -41647,6 +44500,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -41662,6 +44516,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -41692,6 +44547,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -41702,6 +44558,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -41710,6 +44567,7 @@ }, "Device.IP.Interface.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -41734,6 +44592,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -41759,6 +44618,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -41784,6 +44644,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -41809,6 +44670,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -41834,6 +44696,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -41868,6 +44731,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -41898,6 +44762,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -41913,6 +44778,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -41937,6 +44803,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -41950,6 +44817,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -41965,6 +44833,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -41974,6 +44843,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -41996,6 +44866,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -42012,6 +44883,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -42022,6 +44894,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -42032,6 +44905,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -42042,6 +44916,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -42052,6 +44927,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -42062,6 +44938,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -42070,12 +44947,15 @@ }, "Reset()": { "type": "command", + "async": false, + "version": "2.12", "protocols": [ "usp" ] }, "Device.IP.Interface.{i}.IPv4Address.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -42091,6 +44971,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -42116,6 +44997,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -42147,6 +45029,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -42177,6 +45060,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -42211,6 +45095,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -42245,6 +45130,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -42276,6 +45162,7 @@ }, "Device.IP.Interface.{i}.Stats.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -42286,6 +45173,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -42302,6 +45190,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -42318,6 +45207,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -42334,6 +45224,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -42350,6 +45241,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -42366,6 +45258,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -42382,6 +45275,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -42392,6 +45286,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -42402,6 +45297,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -42418,6 +45314,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -42434,6 +45331,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -42444,6 +45342,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -42460,6 +45359,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -42470,6 +45370,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -42480,6 +45381,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -42489,6 +45391,7 @@ }, "Device.IP.Interface.{i}.TWAMPReflector.{i}.": { "type": "object", + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -42503,6 +45406,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -42513,6 +45417,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -42528,6 +45433,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -42543,6 +45449,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -42558,6 +45465,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -42574,6 +45482,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -42587,6 +45496,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -42599,6 +45509,7 @@ }, "Device.IP.Interface.{i}.IPv6Address.{i}.": { "type": "object", + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -42613,6 +45524,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -42638,6 +45550,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -42669,6 +45582,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -42689,6 +45603,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -42719,6 +45634,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -42749,6 +45665,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -42767,6 +45684,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -42777,6 +45695,7 @@ "type": "dateTime", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -42787,6 +45706,7 @@ "type": "dateTime", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -42797,6 +45717,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -42806,6 +45727,7 @@ }, "Device.IP.Interface.{i}.IPv6Prefix.{i}.": { "type": "object", + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -42820,6 +45742,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -42845,6 +45768,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -42875,6 +45799,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -42892,6 +45817,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -42922,6 +45848,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -42952,6 +45879,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -42970,6 +45898,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -42986,6 +45915,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -42996,6 +45926,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -43011,6 +45942,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -43021,6 +45953,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -43031,6 +45964,7 @@ "type": "dateTime", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -43041,6 +45975,7 @@ "type": "dateTime", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -43051,6 +45986,7 @@ }, "Device.IP.ActivePort.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -43067,6 +46003,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -43082,6 +46019,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -43098,6 +46036,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -43113,6 +46052,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -43129,6 +46069,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -43142,6 +46083,7 @@ }, "Device.IP.Diagnostics.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -43152,6 +46094,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -43162,6 +46105,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -43172,6 +46116,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -43182,6 +46127,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -43192,6 +46138,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -43202,6 +46149,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -43212,6 +46160,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -43222,6 +46171,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -43232,6 +46182,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -43242,6 +46193,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -43252,6 +46204,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -43262,6 +46215,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -43272,6 +46226,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -43280,6 +46235,8 @@ }, "IPPing()": { "type": "command", + "async": true, + "version": "2.12", "protocols": [ "usp" ], @@ -43288,6 +46245,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -43302,6 +46260,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -43316,6 +46275,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -43330,6 +46290,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -43344,6 +46305,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -43359,6 +46321,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -43374,6 +46337,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -43391,6 +46355,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -43409,6 +46374,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -43423,6 +46389,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -43432,6 +46399,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -43441,6 +46409,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -43451,6 +46420,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -43461,6 +46431,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -43471,6 +46442,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -43481,6 +46453,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -43491,6 +46464,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -43501,6 +46475,8 @@ }, "TraceRoute()": { "type": "command", + "async": true, + "version": "2.12", "protocols": [ "usp" ], @@ -43509,6 +46485,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -43523,6 +46500,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -43537,6 +46515,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -43551,6 +46530,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -43566,6 +46546,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -43581,6 +46562,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -43596,6 +46578,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -43611,6 +46594,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -43628,6 +46612,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -43647,6 +46632,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -43661,6 +46647,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -43673,6 +46660,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "usp" ], @@ -43688,6 +46676,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "usp" ], @@ -43702,6 +46691,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "usp" ], @@ -43714,6 +46704,8 @@ }, "DownloadDiagnostics()": { "type": "command", + "async": true, + "version": "2.12", "protocols": [ "usp" ], @@ -43722,6 +46714,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -43736,6 +46729,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -43750,6 +46744,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -43765,6 +46760,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -43780,6 +46776,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -43796,6 +46793,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -43812,6 +46810,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -43828,6 +46827,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -43842,6 +46842,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -43856,6 +46857,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -43867,6 +46869,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -43892,6 +46895,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -43906,6 +46910,7 @@ "type": "dateTime", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -43915,6 +46920,7 @@ "type": "dateTime", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -43924,6 +46930,7 @@ "type": "dateTime", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -43933,6 +46940,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -43943,6 +46951,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -43953,6 +46962,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -43963,6 +46973,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -43973,6 +46984,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -43983,6 +46995,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -43993,6 +47006,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -44003,6 +47017,7 @@ "type": "dateTime", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -44012,6 +47027,7 @@ "type": "dateTime", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -44023,6 +47039,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "usp" ], @@ -44038,6 +47055,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "usp" ], @@ -44052,6 +47070,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "usp" ], @@ -44064,6 +47083,8 @@ }, "UploadDiagnostics()": { "type": "command", + "async": true, + "version": "2.12", "protocols": [ "usp" ], @@ -44072,6 +47093,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -44086,6 +47108,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -44100,6 +47123,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -44115,6 +47139,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -44130,6 +47155,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -44139,6 +47165,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -44155,6 +47182,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -44171,6 +47199,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -44187,6 +47216,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -44201,6 +47231,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -44215,6 +47246,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -44226,6 +47258,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -44252,6 +47285,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -44266,6 +47300,7 @@ "type": "dateTime", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -44275,6 +47310,7 @@ "type": "dateTime", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -44284,6 +47320,7 @@ "type": "dateTime", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -44293,6 +47330,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -44303,6 +47341,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -44313,6 +47352,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -44323,6 +47363,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -44333,6 +47374,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -44343,6 +47385,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -44353,6 +47396,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -44363,6 +47407,7 @@ "type": "dateTime", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -44372,6 +47417,7 @@ "type": "dateTime", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -44383,6 +47429,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "usp" ], @@ -44395,6 +47442,8 @@ }, "UDPEchoDiagnostics()": { "type": "command", + "async": true, + "version": "2.12", "protocols": [ "usp" ], @@ -44403,6 +47452,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -44417,6 +47467,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -44431,6 +47482,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -44446,6 +47498,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -44460,6 +47513,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -44475,6 +47529,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -44491,6 +47546,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -44506,6 +47562,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -44522,6 +47579,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -44536,6 +47594,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -44547,6 +47606,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -44562,6 +47622,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -44576,6 +47637,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -44585,6 +47647,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -44594,6 +47657,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -44604,6 +47668,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -44614,6 +47679,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -44626,6 +47692,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "usp" ], @@ -44640,6 +47707,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "usp" ], @@ -44654,6 +47722,7 @@ "type": "string", "read": true, "write": false, + "version": "2.14", "protocols": [ "usp" ], @@ -44669,6 +47738,8 @@ }, "IPLayerCapacity()": { "type": "command", + "async": true, + "version": "2.14", "protocols": [ "usp" ], @@ -44677,6 +47748,7 @@ "type": "string", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -44691,6 +47763,7 @@ "type": "string", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -44704,6 +47777,7 @@ "type": "string", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -44718,6 +47792,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -44733,6 +47808,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -44742,6 +47818,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -44756,6 +47833,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -44771,6 +47849,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -44786,6 +47865,7 @@ "type": "string", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -44800,6 +47880,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -44816,6 +47897,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -44832,6 +47914,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -44847,6 +47930,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -44862,6 +47946,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -44881,6 +47966,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -44900,6 +47986,7 @@ "type": "string", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -44913,6 +48000,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -44922,6 +48010,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -44931,6 +48020,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -44947,6 +48037,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -44963,6 +48054,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -44978,6 +48070,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -44994,6 +48087,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -45010,6 +48104,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -45026,6 +48121,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -45042,6 +48138,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -45058,6 +48155,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -45074,6 +48172,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -45090,6 +48189,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -45106,6 +48206,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -45120,6 +48221,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -45134,6 +48236,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -45151,6 +48254,7 @@ "type": "string", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -45174,6 +48278,7 @@ "type": "dateTime", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -45183,6 +48288,7 @@ "type": "dateTime", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -45192,6 +48298,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -45202,6 +48309,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -45212,6 +48320,7 @@ "type": "decimal", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -45221,6 +48330,7 @@ "type": "dateTime", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -45230,6 +48340,7 @@ "type": "decimal", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -45239,6 +48350,7 @@ "type": "decimal", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -45248,6 +48360,7 @@ "type": "decimal", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -45257,6 +48370,7 @@ "type": "decimal", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -45266,6 +48380,7 @@ "type": "decimal", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -45275,6 +48390,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -45285,6 +48401,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -45295,6 +48412,8 @@ }, "ServerSelectionDiagnostics()": { "type": "command", + "async": true, + "version": "2.12", "protocols": [ "usp" ], @@ -45303,6 +48422,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -45317,6 +48437,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -45331,6 +48452,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -45344,6 +48466,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -45363,6 +48486,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -45377,6 +48501,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -45394,6 +48519,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -45409,6 +48535,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -45418,6 +48545,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -45428,6 +48556,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -45438,6 +48567,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -45448,6 +48578,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -45462,6 +48593,7 @@ }, "Device.IP.Diagnostics.IPPing.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp" ], @@ -45471,6 +48603,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -45487,6 +48620,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -45501,6 +48635,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp" ], @@ -45515,6 +48650,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -45529,6 +48665,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -45543,6 +48680,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -45558,6 +48696,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -45573,6 +48712,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -45588,6 +48728,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp" ], @@ -45602,6 +48743,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -45611,6 +48753,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -45620,6 +48763,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -45630,6 +48774,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -45640,6 +48785,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -45650,6 +48796,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp" ], @@ -45660,6 +48807,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp" ], @@ -45670,6 +48818,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp" ], @@ -45679,6 +48828,7 @@ }, "Device.IP.Diagnostics.TraceRoute.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp" ], @@ -45688,6 +48838,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -45704,6 +48855,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -45718,6 +48870,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp" ], @@ -45732,6 +48885,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -45746,6 +48900,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -45761,6 +48916,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -45776,6 +48932,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -45791,6 +48948,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -45806,6 +48964,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -45821,6 +48980,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp" ], @@ -45835,6 +48995,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -45845,6 +49006,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -45852,6 +49014,7 @@ }, "Device.IP.Diagnostics.TraceRoute.RouteHops.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp" ], @@ -45861,6 +49024,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -45875,6 +49039,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -45884,6 +49049,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -45893,6 +49059,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -45910,6 +49077,7 @@ }, "Device.IP.Diagnostics.DownloadDiagnostics.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp" ], @@ -45919,6 +49087,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -45935,6 +49104,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -45949,6 +49119,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -45963,6 +49134,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -45978,6 +49150,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -45992,6 +49165,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46006,6 +49180,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -46021,6 +49196,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -46036,6 +49212,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46052,6 +49229,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46068,6 +49246,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46084,6 +49263,7 @@ "type": "string", "read": true, "write": true, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46098,6 +49278,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46112,6 +49293,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46126,6 +49308,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -46135,6 +49318,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -46144,6 +49328,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -46153,6 +49338,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -46163,6 +49349,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -46173,6 +49360,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46183,6 +49371,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46193,6 +49382,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46203,6 +49393,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46213,6 +49404,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46223,6 +49415,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -46232,6 +49425,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -46241,6 +49435,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46250,6 +49445,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46259,6 +49455,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46266,6 +49463,7 @@ }, "Device.IP.Diagnostics.DownloadDiagnostics.PerConnectionResult.{i}.": { "type": "object", + "version": "2.9", "protocols": [ "cwmp" ], @@ -46275,6 +49473,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46284,6 +49483,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46293,6 +49493,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46302,6 +49503,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46312,6 +49514,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46322,6 +49525,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46332,6 +49536,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46341,6 +49546,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46349,6 +49555,7 @@ }, "Device.IP.Diagnostics.DownloadDiagnostics.IncrementalResult.{i}.": { "type": "object", + "version": "2.9", "protocols": [ "cwmp" ], @@ -46358,6 +49565,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46368,6 +49576,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46378,6 +49587,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46388,6 +49598,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46397,6 +49608,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46406,6 +49618,7 @@ }, "Device.IP.Diagnostics.UploadDiagnostics.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp" ], @@ -46415,6 +49628,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -46431,6 +49645,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -46445,6 +49660,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -46459,6 +49675,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -46474,6 +49691,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46488,6 +49706,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46502,6 +49721,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -46517,6 +49737,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -46532,6 +49753,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -46541,6 +49763,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46557,6 +49780,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46573,6 +49797,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46589,6 +49814,7 @@ "type": "string", "read": true, "write": true, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46603,6 +49829,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46617,6 +49844,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46631,6 +49859,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -46640,6 +49869,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -46649,6 +49879,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -46658,6 +49889,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46668,6 +49900,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46678,6 +49911,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -46688,6 +49922,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46698,6 +49933,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46708,6 +49944,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46718,6 +49955,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46728,6 +49966,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -46737,6 +49976,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -46746,6 +49986,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46755,6 +49996,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46764,6 +50006,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46771,6 +50014,7 @@ }, "Device.IP.Diagnostics.UploadDiagnostics.PerConnectionResult.{i}.": { "type": "object", + "version": "2.9", "protocols": [ "cwmp" ], @@ -46780,6 +50024,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46789,6 +50034,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46798,6 +50044,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46807,6 +50054,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46817,6 +50065,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46827,6 +50076,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46837,6 +50087,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46846,6 +50097,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46854,6 +50106,7 @@ }, "Device.IP.Diagnostics.UploadDiagnostics.IncrementalResult.{i}.": { "type": "object", + "version": "2.9", "protocols": [ "cwmp" ], @@ -46863,6 +50116,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46873,6 +50127,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46883,6 +50138,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46893,6 +50149,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46902,6 +50159,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -46911,6 +50169,7 @@ }, "Device.IP.Diagnostics.UDPEchoConfig.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -46921,6 +50180,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -46931,6 +50191,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -46946,6 +50207,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -46961,6 +50223,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -46971,6 +50234,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -46981,6 +50245,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -46991,6 +50256,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -47001,6 +50267,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -47011,6 +50278,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -47021,6 +50289,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -47031,6 +50300,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -47041,6 +50311,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -47050,6 +50321,7 @@ }, "Device.IP.Diagnostics.UDPEchoDiagnostics.": { "type": "object", + "version": "2.9", "protocols": [ "cwmp" ], @@ -47059,6 +50331,7 @@ "type": "string", "read": true, "write": true, + "version": "2.9", "protocols": [ "cwmp" ], @@ -47075,6 +50348,7 @@ "type": "string", "read": true, "write": true, + "version": "2.9", "protocols": [ "cwmp" ], @@ -47089,6 +50363,7 @@ "type": "string", "read": true, "write": true, + "version": "2.9", "protocols": [ "cwmp" ], @@ -47103,6 +50378,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.9", "protocols": [ "cwmp" ], @@ -47118,6 +50394,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.9", "protocols": [ "cwmp" ], @@ -47132,6 +50409,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.9", "protocols": [ "cwmp" ], @@ -47147,6 +50425,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.9", "protocols": [ "cwmp" ], @@ -47163,6 +50442,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.9", "protocols": [ "cwmp" ], @@ -47178,6 +50458,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.9", "protocols": [ "cwmp" ], @@ -47194,6 +50475,7 @@ "type": "string", "read": true, "write": true, + "version": "2.9", "protocols": [ "cwmp" ], @@ -47208,6 +50490,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -47222,6 +50505,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -47231,6 +50515,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -47240,6 +50525,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -47250,6 +50536,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -47260,6 +50547,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -47270,6 +50558,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.9", "protocols": [ "cwmp" ], @@ -47279,6 +50568,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -47288,6 +50578,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -47300,6 +50591,7 @@ }, "Device.IP.Diagnostics.UDPEchoDiagnostics.IndividualPacketResult.{i}.": { "type": "object", + "version": "2.9", "protocols": [ "cwmp" ], @@ -47309,6 +50601,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -47318,6 +50611,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -47327,6 +50621,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -47336,6 +50631,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -47345,6 +50641,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -47354,6 +50651,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -47364,6 +50662,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -47374,6 +50673,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -47383,6 +50683,7 @@ }, "Device.IP.Diagnostics.IPLayerCapacityMetrics.": { "type": "object", + "version": "2.14", "protocols": [ "cwmp" ], @@ -47392,6 +50693,7 @@ "type": "string", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp" ], @@ -47408,6 +50710,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp" ], @@ -47422,6 +50725,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp" ], @@ -47436,6 +50740,7 @@ "type": "string", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp" ], @@ -47453,6 +50758,7 @@ "type": "string", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp" ], @@ -47467,6 +50773,7 @@ "type": "string", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp" ], @@ -47480,6 +50787,7 @@ "type": "string", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp" ], @@ -47494,6 +50802,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp" ], @@ -47509,6 +50818,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp" ], @@ -47518,6 +50828,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp" ], @@ -47532,6 +50843,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp" ], @@ -47547,6 +50859,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp" ], @@ -47562,6 +50875,7 @@ "type": "string", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp" ], @@ -47576,6 +50890,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp" ], @@ -47592,6 +50907,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp" ], @@ -47608,6 +50924,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp" ], @@ -47623,6 +50940,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp" ], @@ -47638,6 +50956,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp" ], @@ -47657,6 +50976,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp" ], @@ -47676,6 +50996,7 @@ "type": "string", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp" ], @@ -47689,6 +51010,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp" ], @@ -47698,6 +51020,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp" ], @@ -47707,6 +51030,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp" ], @@ -47723,6 +51047,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp" ], @@ -47739,6 +51064,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp" ], @@ -47754,6 +51080,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp" ], @@ -47770,6 +51097,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp" ], @@ -47786,6 +51114,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp" ], @@ -47802,6 +51131,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp" ], @@ -47818,6 +51148,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp" ], @@ -47834,6 +51165,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp" ], @@ -47850,6 +51182,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp" ], @@ -47866,6 +51199,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp" ], @@ -47882,6 +51216,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp" ], @@ -47896,6 +51231,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp" ], @@ -47910,6 +51246,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp" ], @@ -47925,6 +51262,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp" ], @@ -47934,6 +51272,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp" ], @@ -47943,6 +51282,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp" ], @@ -47953,6 +51293,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp" ], @@ -47963,6 +51304,7 @@ "type": "decimal", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp" ], @@ -47972,6 +51314,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp" ], @@ -47981,6 +51324,7 @@ "type": "decimal", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp" ], @@ -47990,6 +51334,7 @@ "type": "decimal", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp" ], @@ -47999,6 +51344,7 @@ "type": "decimal", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp" ], @@ -48008,6 +51354,7 @@ "type": "decimal", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp" ], @@ -48017,6 +51364,7 @@ "type": "decimal", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp" ], @@ -48026,6 +51374,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp" ], @@ -48035,6 +51384,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp" ], @@ -48045,6 +51395,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp" ], @@ -48053,6 +51404,7 @@ }, "Device.IP.Diagnostics.IPLayerCapacityMetrics.IncrementalResult.{i}.": { "type": "object", + "version": "2.14", "protocols": [ "cwmp" ], @@ -48062,6 +51414,7 @@ "type": "decimal", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp" ], @@ -48071,6 +51424,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp" ], @@ -48080,6 +51434,7 @@ "type": "decimal", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp" ], @@ -48089,6 +51444,7 @@ "type": "decimal", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp" ], @@ -48098,6 +51454,7 @@ "type": "decimal", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp" ], @@ -48107,6 +51464,7 @@ "type": "decimal", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp" ], @@ -48116,6 +51474,7 @@ "type": "decimal", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp" ], @@ -48125,6 +51484,7 @@ }, "Device.IP.Diagnostics.ServerSelectionDiagnostics.": { "type": "object", + "version": "2.9", "protocols": [ "cwmp" ], @@ -48134,6 +51494,7 @@ "type": "string", "read": true, "write": true, + "version": "2.9", "protocols": [ "cwmp" ], @@ -48150,6 +51511,7 @@ "type": "string", "read": true, "write": true, + "version": "2.9", "protocols": [ "cwmp" ], @@ -48164,6 +51526,7 @@ "type": "string", "read": true, "write": true, + "version": "2.9", "protocols": [ "cwmp" ], @@ -48178,6 +51541,7 @@ "type": "string", "read": true, "write": true, + "version": "2.9", "protocols": [ "cwmp" ], @@ -48191,6 +51555,7 @@ "type": "string", "read": true, "write": true, + "version": "2.9", "protocols": [ "cwmp" ], @@ -48210,6 +51575,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.9", "protocols": [ "cwmp" ], @@ -48224,6 +51590,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.9", "protocols": [ "cwmp" ], @@ -48239,6 +51606,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -48248,6 +51616,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -48258,6 +51627,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -48268,6 +51638,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -48278,6 +51649,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp" ], @@ -48293,6 +51665,7 @@ }, "Device.LLDP.": { "type": "object", + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -48301,6 +51674,7 @@ "array": false, "Device.LLDP.Discovery.": { "type": "object", + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -48311,6 +51685,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -48319,6 +51694,7 @@ }, "Device.LLDP.Discovery.Device.{i}.": { "type": "object", + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -48333,6 +51709,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -48343,6 +51720,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -48358,6 +51736,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -48374,6 +51753,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -48392,6 +51772,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -48400,6 +51781,7 @@ }, "Device.LLDP.Discovery.Device.{i}.Port.{i}.": { "type": "object", + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -48414,6 +51796,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -48429,6 +51812,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -48445,6 +51829,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -48461,6 +51846,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -48476,6 +51862,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -48500,6 +51887,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -48508,6 +51896,7 @@ }, "Device.LLDP.Discovery.Device.{i}.Port.{i}.LinkInformation.": { "type": "object", + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -48518,6 +51907,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -48528,6 +51918,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -48552,6 +51943,7 @@ }, "Device.LLDP.Discovery.Device.{i}.DeviceInformation.": { "type": "object", + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -48562,6 +51954,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -48574,6 +51967,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -48594,6 +51988,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -48609,6 +52004,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -48624,6 +52020,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -48632,6 +52029,7 @@ }, "Device.LLDP.Discovery.Device.{i}.DeviceInformation.VendorSpecific.{i}.": { "type": "object", + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -48646,6 +52044,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -48665,6 +52064,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -48680,6 +52080,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -48698,6 +52099,7 @@ }, "Device.IPsec.": { "type": "object", + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -48708,6 +52110,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -48718,6 +52121,7 @@ "type": "string", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -48733,6 +52137,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -48743,6 +52148,7 @@ "type": "string", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -48773,6 +52179,7 @@ "type": "string", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -48811,6 +52218,7 @@ "type": "string", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -48833,6 +52241,7 @@ "type": "string", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -48862,6 +52271,7 @@ "type": "string", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -48893,6 +52303,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -48903,6 +52314,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -48913,6 +52325,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -48923,6 +52336,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -48933,6 +52347,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -48943,6 +52358,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -48951,6 +52367,7 @@ }, "Device.IPsec.Stats.": { "type": "object", + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -48961,6 +52378,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -48971,6 +52389,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -48981,6 +52400,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -48991,6 +52411,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49001,6 +52422,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49011,6 +52433,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49021,6 +52444,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49031,6 +52455,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49041,6 +52466,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49051,6 +52477,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49061,6 +52488,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49071,6 +52499,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49080,6 +52509,7 @@ }, "Device.IPsec.Filter.{i}.": { "type": "object", + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49093,6 +52523,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49103,6 +52534,7 @@ "type": "string", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49119,6 +52551,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49134,6 +52567,7 @@ "type": "string", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49149,6 +52583,7 @@ "type": "string", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49164,6 +52599,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49174,6 +52610,7 @@ "type": "string", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49189,6 +52626,7 @@ "type": "string", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49204,6 +52642,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49214,6 +52653,7 @@ "type": "string", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49229,6 +52669,7 @@ "type": "string", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49244,6 +52685,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49254,6 +52696,7 @@ "type": "int", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49270,6 +52713,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49280,6 +52724,7 @@ "type": "int", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49296,6 +52741,7 @@ "type": "int", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49312,6 +52758,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49322,6 +52769,7 @@ "type": "int", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49338,6 +52786,7 @@ "type": "int", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49354,6 +52803,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49364,6 +52814,7 @@ "type": "string", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49379,6 +52830,7 @@ "type": "string", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49388,6 +52840,7 @@ }, "Device.IPsec.Profile.{i}.": { "type": "object", + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49401,6 +52854,7 @@ "type": "string", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49416,6 +52870,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49426,6 +52881,7 @@ "type": "string", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49446,6 +52902,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49456,6 +52913,7 @@ "type": "string", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49470,6 +52928,7 @@ "type": "string", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49480,6 +52939,7 @@ "type": "string", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49492,6 +52952,7 @@ "type": "string", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49504,6 +52965,7 @@ "type": "string", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49516,6 +52978,7 @@ "type": "string", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49528,6 +52991,7 @@ "type": "string", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49540,6 +53004,7 @@ "type": "string", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49552,6 +53017,7 @@ "type": "string", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49564,6 +53030,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49575,6 +53042,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49586,6 +53054,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49596,6 +53065,7 @@ "type": "string", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49611,6 +53081,7 @@ "type": "int", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49627,6 +53098,7 @@ "type": "unsignedLong", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49638,6 +53110,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49649,6 +53122,7 @@ "type": "string", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49663,6 +53137,7 @@ "type": "unsignedLong", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49674,6 +53149,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49685,6 +53161,7 @@ "type": "string", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49699,6 +53176,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49707,6 +53185,7 @@ }, "Device.IPsec.Profile.{i}.SentCPAttr.{i}.": { "type": "object", + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49721,6 +53200,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49731,6 +53211,7 @@ "type": "string", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49746,6 +53227,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49762,6 +53244,7 @@ "type": "hexBinary", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49777,6 +53260,7 @@ }, "Device.IPsec.Tunnel.{i}.": { "type": "object", + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49792,6 +53276,7 @@ "type": "string", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49807,6 +53292,7 @@ "type": "string", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49817,6 +53303,7 @@ "type": "string", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49827,6 +53314,7 @@ "type": "string", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49837,6 +53325,7 @@ }, "Device.IPsec.Tunnel.{i}.Stats.": { "type": "object", + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49847,6 +53336,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49857,6 +53347,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49867,6 +53358,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49877,6 +53369,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49887,6 +53380,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49897,6 +53391,7 @@ }, "Device.IPsec.IKEv2SA.{i}.": { "type": "object", + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49910,6 +53405,7 @@ "type": "string", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49927,6 +53423,7 @@ "type": "string", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49942,6 +53439,7 @@ "type": "string", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49952,6 +53450,7 @@ "type": "string", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49967,6 +53466,7 @@ "type": "string", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49982,6 +53482,7 @@ "type": "string", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -49997,6 +53498,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -50008,6 +53510,7 @@ "type": "string", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -50023,6 +53526,7 @@ "type": "string", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -50038,6 +53542,7 @@ "type": "string", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -50053,6 +53558,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -50063,6 +53569,7 @@ "type": "string", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -50079,6 +53586,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -50089,6 +53597,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -50097,6 +53606,7 @@ }, "Device.IPsec.IKEv2SA.{i}.Stats.": { "type": "object", + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -50107,6 +53617,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -50117,6 +53628,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -50127,6 +53639,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -50137,6 +53650,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -50147,6 +53661,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -50157,6 +53672,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -50167,6 +53683,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -50177,6 +53694,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -50186,6 +53704,7 @@ }, "Device.IPsec.IKEv2SA.{i}.ReceivedCPAttr.{i}.": { "type": "object", + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -50196,6 +53715,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -50212,6 +53732,7 @@ "type": "hexBinary", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -50226,6 +53747,7 @@ }, "Device.IPsec.IKEv2SA.{i}.ChildSA.{i}.": { "type": "object", + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -50240,6 +53762,7 @@ "type": "string", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -50257,6 +53780,7 @@ "type": "string", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -50272,6 +53796,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -50282,6 +53807,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -50292,6 +53818,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -50300,6 +53827,7 @@ }, "Device.IPsec.IKEv2SA.{i}.ChildSA.{i}.Stats.": { "type": "object", + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -50310,6 +53838,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -50320,6 +53849,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -50330,6 +53860,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -50340,6 +53871,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -50350,6 +53882,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -50360,6 +53893,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -50370,6 +53904,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -50380,6 +53915,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -50390,6 +53926,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -50400,6 +53937,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -50412,6 +53950,7 @@ }, "Device.GRE.": { "type": "object", + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -50422,6 +53961,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -50432,6 +53972,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -50440,6 +53981,7 @@ }, "Device.GRE.Tunnel.{i}.": { "type": "object", + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -50453,6 +53995,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -50463,6 +54006,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -50478,6 +54022,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -50508,6 +54053,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -50528,6 +54074,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -50542,6 +54089,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -50553,6 +54101,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -50563,6 +54112,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -50577,6 +54127,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -50587,6 +54138,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -50602,6 +54154,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -50610,6 +54163,7 @@ }, "Device.GRE.Tunnel.{i}.Stats.": { "type": "object", + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -50620,6 +54174,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -50630,6 +54185,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -50640,6 +54196,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -50650,6 +54207,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -50660,6 +54218,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -50670,6 +54229,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -50680,6 +54240,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -50690,6 +54251,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -50699,6 +54261,7 @@ }, "Device.GRE.Tunnel.{i}.Interface.{i}.": { "type": "object", + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -50713,6 +54276,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -50723,6 +54287,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -50742,6 +54307,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -50772,6 +54338,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -50787,6 +54354,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -50798,6 +54366,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -50811,6 +54380,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -50821,6 +54391,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -50831,6 +54402,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -50846,6 +54418,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -50856,6 +54429,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -50864,6 +54438,7 @@ }, "Device.GRE.Tunnel.{i}.Interface.{i}.Stats.": { "type": "object", + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -50874,6 +54449,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -50884,6 +54460,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -50894,6 +54471,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -50904,6 +54482,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -50914,6 +54493,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -50924,6 +54504,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -50934,6 +54515,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -50944,6 +54526,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -50955,6 +54538,7 @@ }, "Device.GRE.Filter.{i}.": { "type": "object", + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -50968,6 +54552,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -50978,6 +54563,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -50994,6 +54580,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -51009,6 +54596,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -51024,6 +54612,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -51039,6 +54628,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -51049,6 +54639,7 @@ "type": "int", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -51064,6 +54655,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -51074,6 +54666,7 @@ "type": "int", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -51090,6 +54683,7 @@ }, "Device.L2TPv3.": { "type": "object", + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51100,6 +54694,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51110,6 +54705,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51118,6 +54714,7 @@ }, "Device.L2TPv3.Tunnel.{i}.": { "type": "object", + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51131,6 +54728,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51141,6 +54739,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51156,6 +54755,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51171,6 +54771,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51191,6 +54792,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51205,6 +54807,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51216,6 +54819,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51226,6 +54830,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51240,6 +54845,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51250,6 +54856,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51264,6 +54871,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51279,6 +54887,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51287,6 +54896,7 @@ }, "Device.L2TPv3.Tunnel.{i}.UDP.": { "type": "object", + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51297,6 +54907,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51312,6 +54923,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51327,6 +54939,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51336,6 +54949,7 @@ }, "Device.L2TPv3.Tunnel.{i}.Stats.": { "type": "object", + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51346,6 +54960,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51356,6 +54971,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51366,6 +54982,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51376,6 +54993,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51386,6 +55004,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51396,6 +55015,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51406,6 +55026,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51416,6 +55037,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51425,6 +55047,7 @@ }, "Device.L2TPv3.Tunnel.{i}.Interface.{i}.": { "type": "object", + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51439,6 +55062,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51449,6 +55073,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51468,6 +55093,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51483,6 +55109,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51498,6 +55125,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51509,6 +55137,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51522,6 +55151,7 @@ "type": "int", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51542,6 +55172,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51557,6 +55188,7 @@ "type": "unsignedLong", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51565,6 +55197,7 @@ }, "Device.L2TPv3.Tunnel.{i}.Interface.{i}.Stats.": { "type": "object", + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51575,6 +55208,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51585,6 +55219,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51595,6 +55230,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51605,6 +55241,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51615,6 +55252,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51625,6 +55263,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51635,6 +55274,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51645,6 +55285,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51656,6 +55297,7 @@ }, "Device.L2TPv3.Filter.{i}.": { "type": "object", + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51669,6 +55311,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51679,6 +55322,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51695,6 +55339,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51710,6 +55355,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51725,6 +55371,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51740,6 +55387,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51750,6 +55398,7 @@ "type": "int", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51765,6 +55414,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51775,6 +55425,7 @@ "type": "int", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51791,6 +55442,7 @@ }, "Device.VXLAN.": { "type": "object", + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51801,6 +55453,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51811,6 +55464,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51819,6 +55473,7 @@ }, "Device.VXLAN.Tunnel.{i}.": { "type": "object", + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51832,6 +55487,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51842,6 +55498,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51857,6 +55514,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51872,6 +55530,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51892,6 +55551,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51906,6 +55566,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51917,6 +55578,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51927,6 +55589,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51941,6 +55604,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51951,6 +55615,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51966,6 +55631,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51976,6 +55642,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -51991,6 +55658,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -52004,6 +55672,7 @@ }, "Device.VXLAN.Tunnel.{i}.Stats.": { "type": "object", + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -52014,6 +55683,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -52024,6 +55694,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -52034,6 +55705,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -52044,6 +55716,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -52054,6 +55727,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -52064,6 +55738,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -52074,6 +55749,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -52084,6 +55760,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -52093,6 +55770,7 @@ }, "Device.VXLAN.Tunnel.{i}.Interface.{i}.": { "type": "object", + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -52107,6 +55785,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -52117,6 +55796,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -52136,6 +55816,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -52151,6 +55832,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -52166,6 +55848,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -52177,6 +55860,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -52190,6 +55874,7 @@ "type": "int", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -52208,6 +55893,7 @@ }, "Device.VXLAN.Tunnel.{i}.Interface.{i}.Stats.": { "type": "object", + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -52218,6 +55904,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -52228,6 +55915,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -52238,6 +55926,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -52248,6 +55937,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -52258,6 +55948,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -52268,6 +55959,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -52278,6 +55970,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -52288,6 +55981,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -52299,6 +55993,7 @@ }, "Device.VXLAN.Filter.{i}.": { "type": "object", + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -52312,6 +56007,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -52322,6 +56018,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -52338,6 +56035,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -52353,6 +56051,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -52368,6 +56067,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -52383,6 +56083,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -52393,6 +56094,7 @@ "type": "int", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -52408,6 +56110,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -52418,6 +56121,7 @@ "type": "int", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -52434,6 +56138,7 @@ }, "Device.MAP.": { "type": "object", + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -52444,6 +56149,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -52454,6 +56160,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -52462,6 +56169,7 @@ }, "Device.MAP.Domain.{i}.": { "type": "object", + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -52477,6 +56185,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -52487,6 +56196,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -52503,6 +56213,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -52518,6 +56229,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -52532,6 +56244,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -52542,6 +56255,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -52552,6 +56266,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -52567,6 +56282,7 @@ "type": "int", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -52583,6 +56299,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -52600,6 +56317,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -52617,6 +56335,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -52633,6 +56352,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -52643,6 +56363,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -52651,6 +56372,7 @@ }, "Device.MAP.Domain.{i}.Rule.{i}.": { "type": "object", + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -52666,6 +56388,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -52676,6 +56399,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -52691,6 +56415,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -52706,6 +56431,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -52720,6 +56446,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -52735,6 +56462,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -52755,6 +56483,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -52772,6 +56501,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -52782,6 +56512,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -52799,6 +56530,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -52816,6 +56548,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -52831,6 +56564,7 @@ }, "Device.MAP.Domain.{i}.Interface.": { "type": "object", + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -52841,6 +56575,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -52851,6 +56586,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -52870,6 +56606,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -52885,6 +56622,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -52900,6 +56638,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -52911,6 +56650,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -52922,6 +56662,7 @@ }, "Device.MAP.Domain.{i}.Interface.Stats.": { "type": "object", + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -52932,6 +56673,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -52942,6 +56684,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -52952,6 +56695,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -52962,6 +56706,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -52972,6 +56717,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -52982,6 +56728,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -52992,6 +56739,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -53002,6 +56750,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -53012,6 +56761,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -53022,6 +56772,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -53032,6 +56783,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -53042,6 +56794,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -53052,6 +56805,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -53062,6 +56816,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -53072,6 +56827,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -53084,6 +56840,7 @@ }, "Device.CaptivePortal.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -53094,6 +56851,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -53104,6 +56862,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -53120,6 +56879,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -53133,6 +56893,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -53147,6 +56908,7 @@ }, "Device.Routing.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -53157,6 +56919,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -53165,6 +56928,7 @@ }, "Device.Routing.Router.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -53178,6 +56942,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -53188,6 +56953,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -53203,6 +56969,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -53218,6 +56985,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -53239,6 +57007,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -53258,6 +57027,7 @@ }, "Device.Routing.Router.{i}.IPv4Forwarding.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -53287,6 +57057,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -53297,6 +57068,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -53313,6 +57085,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -53328,6 +57101,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -53338,6 +57112,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -53372,6 +57147,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -53406,6 +57182,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -53421,6 +57198,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -53455,6 +57233,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -53470,6 +57249,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -53487,6 +57267,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -53516,6 +57297,7 @@ }, "Device.Routing.Router.{i}.IPv6Forwarding.{i}.": { "type": "object", + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -53544,6 +57326,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -53554,6 +57337,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -53570,6 +57354,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -53585,6 +57370,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -53615,6 +57401,7 @@ "type": "int", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -53630,6 +57417,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -53660,6 +57448,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -53675,6 +57464,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -53692,6 +57482,7 @@ "type": "int", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -53722,6 +57513,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -53732,6 +57524,7 @@ }, "Device.Routing.RIP.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -53742,6 +57535,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -53752,6 +57546,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -53767,6 +57562,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -53775,6 +57571,7 @@ }, "Device.Routing.RIP.InterfaceSetting.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -53789,6 +57586,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -53799,6 +57597,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -53815,6 +57614,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -53830,6 +57630,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -53845,6 +57646,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -53855,6 +57657,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -53865,6 +57668,7 @@ }, "Device.Routing.RouteInformation.": { "type": "object", + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -53875,6 +57679,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -53885,6 +57690,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -53893,6 +57699,7 @@ }, "Device.Routing.RouteInformation.InterfaceSetting.{i}.": { "type": "object", + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -53906,6 +57713,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -53921,6 +57729,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -53936,6 +57745,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -53951,6 +57761,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -53966,6 +57777,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -53981,6 +57793,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -53992,6 +57805,7 @@ }, "Device.NeighborDiscovery.": { "type": "object", + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54002,6 +57816,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54012,6 +57827,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54020,6 +57836,7 @@ }, "Device.NeighborDiscovery.InterfaceSetting.{i}.": { "type": "object", + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54034,6 +57851,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54044,6 +57862,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54060,6 +57879,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54075,6 +57895,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54085,6 +57906,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -54095,6 +57917,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54111,6 +57934,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54127,6 +57951,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54137,6 +57962,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54147,6 +57973,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54157,6 +57984,7 @@ }, "Device.RouterAdvertisement.": { "type": "object", + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54167,6 +57995,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54192,6 +58021,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54200,6 +58030,7 @@ }, "Device.RouterAdvertisement.InterfaceSetting.{i}.": { "type": "object", + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54224,6 +58055,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54249,6 +58081,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54280,6 +58113,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54295,6 +58129,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54320,6 +58155,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54335,6 +58171,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54350,6 +58187,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54382,6 +58220,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54414,6 +58253,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54445,6 +58285,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54470,6 +58311,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54495,6 +58337,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54520,6 +58363,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54550,6 +58394,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54560,6 +58405,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54585,6 +58431,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54616,6 +58463,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54642,6 +58490,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54672,6 +58521,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54680,6 +58530,7 @@ }, "Device.RouterAdvertisement.InterfaceSetting.{i}.Option.{i}.": { "type": "object", + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54694,6 +58545,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54704,6 +58556,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54719,6 +58572,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54735,6 +58589,7 @@ "type": "hexBinary", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54752,6 +58607,7 @@ }, "Device.IPv6rd.": { "type": "object", + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54762,6 +58618,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54772,6 +58629,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54780,6 +58638,7 @@ }, "Device.IPv6rd.InterfaceSetting.{i}.": { "type": "object", + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54793,6 +58652,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54803,6 +58663,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54818,6 +58679,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54833,6 +58695,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54857,6 +58720,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54867,6 +58731,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54882,6 +58747,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54899,6 +58765,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54914,6 +58781,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54929,6 +58797,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54944,6 +58813,7 @@ }, "Device.DSLite.": { "type": "object", + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54954,6 +58824,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54964,6 +58835,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54972,6 +58844,7 @@ }, "Device.DSLite.InterfaceSetting.{i}.": { "type": "object", + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54985,6 +58858,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -54995,6 +58869,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -55010,6 +58885,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -55025,6 +58901,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -55039,6 +58916,7 @@ "type": "string", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -55053,6 +58931,7 @@ "type": "string", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -55068,6 +58947,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -55083,6 +58963,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -55098,6 +58979,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -55112,6 +58994,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -55127,6 +59010,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -55142,6 +59026,7 @@ }, "Device.QoS.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55152,6 +59037,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55162,6 +59048,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55183,6 +59070,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55193,6 +59081,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55203,6 +59092,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55213,6 +59103,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55223,6 +59114,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55233,6 +59125,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55243,6 +59136,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55253,6 +59147,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55274,6 +59169,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55284,6 +59180,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55294,6 +59191,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55304,6 +59202,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55314,6 +59213,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55324,6 +59224,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55339,6 +59240,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55354,6 +59256,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55369,6 +59272,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55384,6 +59288,7 @@ "type": "int", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -55399,6 +59304,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55410,6 +59316,7 @@ }, "Device.QoS.Classification.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55433,6 +59340,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55443,6 +59351,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55459,6 +59368,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55474,6 +59384,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55489,6 +59400,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -55503,6 +59415,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55518,6 +59431,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55528,6 +59442,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55558,6 +59473,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55573,6 +59489,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55583,6 +59500,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55613,6 +59531,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55628,6 +59547,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55638,6 +59558,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55669,6 +59590,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55679,6 +59601,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55710,6 +59633,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55741,6 +59665,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55751,6 +59676,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55782,6 +59708,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55798,6 +59725,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55808,6 +59736,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55827,6 +59756,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55846,6 +59776,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55856,6 +59787,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55875,6 +59807,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55894,6 +59827,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55904,6 +59838,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55919,6 +59854,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55929,6 +59865,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55944,6 +59881,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55954,6 +59892,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55969,6 +59908,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55979,6 +59919,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -55994,6 +59935,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56004,6 +59946,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56019,6 +59962,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56029,6 +59973,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56044,6 +59989,7 @@ "type": "hexBinary", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -56059,6 +60005,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56069,6 +60016,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56085,6 +60033,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56100,6 +60049,7 @@ "type": "hexBinary", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -56115,6 +60065,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56125,6 +60076,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56141,6 +60093,7 @@ "type": "hexBinary", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56156,6 +60109,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56166,6 +60120,7 @@ "type": "hexBinary", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56181,6 +60136,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56191,6 +60147,7 @@ "type": "hexBinary", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56206,6 +60163,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56216,6 +60174,7 @@ "type": "hexBinary", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56231,6 +60190,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56241,6 +60201,7 @@ "type": "hexBinary", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56256,6 +60217,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56266,6 +60228,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56276,6 +60239,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56292,6 +60256,7 @@ "type": "hexBinary", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56307,6 +60272,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56317,6 +60283,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56327,6 +60294,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56343,6 +60311,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56353,6 +60322,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56363,6 +60333,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56373,6 +60344,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56383,6 +60355,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56393,6 +60366,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56409,6 +60383,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56419,6 +60394,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56449,6 +60425,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56464,6 +60441,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56474,6 +60452,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56489,6 +60468,7 @@ "type": "int", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -56504,6 +60484,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -56514,6 +60495,7 @@ "type": "int", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -56529,6 +60511,7 @@ "type": "int", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -56544,6 +60527,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -56554,6 +60538,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56569,6 +60554,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56579,6 +60565,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56594,6 +60581,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56604,6 +60592,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56619,6 +60608,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56634,6 +60624,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56648,6 +60639,7 @@ }, "Device.QoS.App.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56661,6 +60653,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56671,6 +60664,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56686,6 +60680,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56701,6 +60696,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56716,6 +60712,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56731,6 +60728,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56741,6 +60739,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56751,6 +60750,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56766,6 +60766,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56781,6 +60782,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56796,6 +60798,7 @@ "type": "int", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -56810,6 +60813,7 @@ }, "Device.QoS.Flow.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56823,6 +60827,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56833,6 +60838,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56848,6 +60854,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56863,6 +60870,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56878,6 +60886,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56893,6 +60902,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56908,6 +60918,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56923,6 +60934,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56933,6 +60945,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56943,6 +60956,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56958,6 +60972,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56973,6 +60988,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -56988,6 +61004,7 @@ "type": "int", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -57002,6 +61019,7 @@ }, "Device.QoS.Policer.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57015,6 +61033,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57025,6 +61044,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57040,6 +61060,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57055,6 +61076,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57066,6 +61088,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57076,6 +61099,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57086,6 +61110,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57097,6 +61122,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57107,6 +61133,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57117,6 +61144,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57134,6 +61162,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57151,6 +61180,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57168,6 +61198,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57185,6 +61216,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57195,6 +61227,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57205,6 +61238,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57215,6 +61249,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57225,6 +61260,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57235,6 +61271,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57245,6 +61282,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57255,6 +61293,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57264,6 +61303,7 @@ }, "Device.QoS.Queue.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57287,6 +61327,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57297,6 +61338,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57313,6 +61355,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57328,6 +61371,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57341,6 +61385,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57356,6 +61401,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57366,6 +61412,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57376,6 +61423,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57401,6 +61449,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57411,6 +61460,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57441,6 +61491,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57456,6 +61507,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57471,6 +61523,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57487,6 +61540,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57502,6 +61556,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57532,6 +61587,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57541,6 +61597,7 @@ }, "Device.QoS.QueueStats.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57556,6 +61613,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57566,6 +61624,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57581,6 +61640,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57596,6 +61656,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57611,6 +61672,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57626,6 +61688,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57636,6 +61699,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57646,6 +61710,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57656,6 +61721,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57666,6 +61732,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57676,6 +61743,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57692,6 +61760,7 @@ }, "Device.QoS.Shaper.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57706,6 +61775,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57716,6 +61786,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57732,6 +61803,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57747,6 +61819,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57762,6 +61835,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57777,6 +61851,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57787,6 +61862,7 @@ }, "Device.LANConfigSecurity.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57797,6 +61873,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57826,6 +61903,7 @@ }, "Device.Hosts.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57836,6 +61914,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57857,6 +61936,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -57865,6 +61945,7 @@ }, "Device.Hosts.Host.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57888,6 +61969,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57903,6 +61985,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57929,6 +62012,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57955,6 +62039,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -57971,6 +62056,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -57986,6 +62072,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -58002,6 +62089,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -58017,6 +62105,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -58032,6 +62121,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -58047,6 +62137,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -58078,6 +62169,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -58093,6 +62185,7 @@ "type": "hexBinary", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -58108,6 +62201,7 @@ "type": "hexBinary", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -58123,6 +62217,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -58149,6 +62244,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -58170,6 +62266,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -58191,6 +62288,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -58212,6 +62310,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -58231,6 +62330,7 @@ }, "Device.Hosts.Host.{i}.IPv4Address.{i}.": { "type": "object", + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -58253,6 +62353,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -58282,6 +62383,7 @@ }, "Device.Hosts.Host.{i}.IPv6Address.{i}.": { "type": "object", + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -58304,6 +62406,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -58329,6 +62432,7 @@ }, "Device.Hosts.Host.{i}.WANStats.": { "type": "object", + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -58339,6 +62443,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -58360,6 +62465,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -58381,6 +62487,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -58402,6 +62509,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -58423,6 +62531,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -58433,6 +62542,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -58443,6 +62553,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -58453,6 +62564,7 @@ }, "Device.Hosts.AccessControl.{i}.": { "type": "object", + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -58467,6 +62579,7 @@ "type": "string", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -58482,6 +62595,7 @@ "type": "string", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -58497,6 +62611,7 @@ "type": "string", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -58512,6 +62627,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -58522,6 +62638,7 @@ "type": "string", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -58536,6 +62653,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -58544,6 +62662,7 @@ }, "Device.Hosts.AccessControl.{i}.Schedule.{i}.": { "type": "object", + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -58557,6 +62676,7 @@ "type": "string", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -58572,6 +62692,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -58582,6 +62703,7 @@ "type": "string", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -58603,6 +62725,7 @@ "type": "string", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -58622,6 +62745,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -58639,6 +62763,7 @@ }, "Device.DNS.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -58649,6 +62774,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -58665,6 +62791,7 @@ }, "Device.DNS.Client.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -58675,6 +62802,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -58685,6 +62813,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -58700,6 +62829,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -58708,6 +62838,7 @@ }, "Device.DNS.Client.Server.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -58722,6 +62853,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -58732,6 +62864,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -58747,6 +62880,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -58762,6 +62896,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -58777,6 +62912,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -58792,6 +62928,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -58810,6 +62947,7 @@ }, "Device.DNS.Relay.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -58820,6 +62958,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -58830,6 +62969,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -58845,6 +62985,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -58853,6 +62994,7 @@ }, "Device.DNS.Relay.Forwarding.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -58867,6 +63009,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -58877,6 +63020,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -58892,6 +63036,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -58907,6 +63052,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -58922,6 +63068,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -58937,6 +63084,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -58955,6 +63103,7 @@ }, "Device.DNS.Diagnostics.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -58963,6 +63112,8 @@ "array": false, "NSLookupDiagnostics()": { "type": "command", + "async": true, + "version": "2.12", "protocols": [ "usp" ], @@ -58971,6 +63122,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -58985,6 +63137,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -58999,6 +63152,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -59013,6 +63167,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -59023,6 +63178,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -59034,6 +63190,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -59049,6 +63206,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -59058,6 +63216,7 @@ }, "Device.DNS.Diagnostics.NSLookupDiagnostics.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp" ], @@ -59067,6 +63226,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -59083,6 +63243,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -59097,6 +63258,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -59111,6 +63273,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -59125,6 +63288,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -59135,6 +63299,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -59144,6 +63309,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -59153,6 +63319,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -59160,6 +63327,7 @@ }, "Device.DNS.Diagnostics.NSLookupDiagnostics.Result.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp" ], @@ -59169,6 +63337,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -59185,6 +63354,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -59199,6 +63369,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -59213,6 +63384,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -59232,6 +63404,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -59246,6 +63419,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -59257,6 +63431,7 @@ }, "Device.DNS.SD.": { "type": "object", + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -59267,6 +63442,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -59277,6 +63453,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -59287,6 +63464,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -59297,6 +63475,7 @@ }, "Device.DNS.SD.Service.{i}.": { "type": "object", + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -59313,6 +63492,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -59328,6 +63508,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -59343,6 +63524,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -59357,6 +63539,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -59372,6 +63555,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -59387,6 +63571,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -59402,6 +63587,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -59417,6 +63603,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -59427,6 +63614,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -59445,6 +63633,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -59460,6 +63649,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -59475,6 +63665,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -59490,6 +63681,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -59498,6 +63690,7 @@ }, "Device.DNS.SD.Service.{i}.TextRecord.{i}.": { "type": "object", + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -59508,6 +63701,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -59523,6 +63717,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -59540,6 +63735,7 @@ }, "Device.NAT.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -59550,6 +63746,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -59571,6 +63768,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -59590,6 +63788,7 @@ }, "Device.NAT.InterfaceSetting.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -59614,6 +63813,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -59639,6 +63839,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -59672,6 +63873,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -59702,6 +63904,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -59717,6 +63920,7 @@ "type": "int", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -59733,6 +63937,7 @@ "type": "int", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -59748,6 +63953,7 @@ }, "Device.NAT.PortMapping.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -59774,6 +63980,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -59799,6 +64006,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -59830,6 +64038,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -59860,6 +64069,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -59875,6 +64085,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -59885,6 +64096,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -59911,6 +64123,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -59936,6 +64149,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -59967,6 +64181,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -59998,6 +64213,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -60029,6 +64245,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -60058,6 +64275,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -60088,6 +64306,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -60118,6 +64337,7 @@ }, "Device.PCP.": { "type": "object", + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60128,6 +64348,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60146,6 +64367,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60162,6 +64384,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60180,6 +64403,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60188,6 +64412,7 @@ }, "Device.PCP.Client.{i}.": { "type": "object", + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60202,6 +64427,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60212,6 +64438,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60227,6 +64454,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60237,6 +64465,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60252,6 +64481,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60262,6 +64492,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60272,6 +64503,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60282,6 +64514,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60292,6 +64525,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60307,6 +64541,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60317,6 +64552,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60325,6 +64561,7 @@ }, "Device.PCP.Client.{i}.PCPProxy.": { "type": "object", + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60335,6 +64572,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60345,6 +64583,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60361,6 +64600,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60375,6 +64615,7 @@ }, "Device.PCP.Client.{i}.UPnPIWF.": { "type": "object", + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60385,6 +64626,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60395,6 +64637,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60409,6 +64652,7 @@ }, "Device.PCP.Client.{i}.Server.{i}.": { "type": "object", + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60423,6 +64667,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60433,6 +64678,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60454,6 +64700,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60469,6 +64716,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60484,6 +64732,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60499,6 +64748,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60514,6 +64764,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60531,6 +64782,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60546,6 +64798,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60562,6 +64815,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60572,6 +64826,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60587,6 +64842,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60598,6 +64854,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60623,6 +64880,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60633,6 +64891,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60641,6 +64900,7 @@ }, "Device.PCP.Client.{i}.Server.{i}.InboundMapping.{i}.": { "type": "object", + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60657,6 +64917,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60667,6 +64928,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60683,6 +64945,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60699,6 +64962,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60714,6 +64978,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60730,6 +64995,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60741,6 +65007,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60756,6 +65023,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60772,6 +65040,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60788,6 +65057,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60804,6 +65074,7 @@ "type": "int", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60820,6 +65091,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60835,6 +65107,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60850,6 +65123,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60865,6 +65139,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60881,6 +65156,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60897,6 +65173,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60905,6 +65182,7 @@ }, "Device.PCP.Client.{i}.Server.{i}.InboundMapping.{i}.Filter.{i}.": { "type": "object", + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60918,6 +65196,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60933,6 +65212,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60948,6 +65228,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60964,6 +65245,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60980,6 +65262,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -60996,6 +65279,7 @@ }, "Device.PCP.Client.{i}.Server.{i}.OutboundMapping.{i}.": { "type": "object", + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -61014,6 +65298,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -61024,6 +65309,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -61040,6 +65326,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -61056,6 +65343,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -61071,6 +65359,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -61087,6 +65376,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -61098,6 +65388,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -61113,6 +65404,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -61129,6 +65421,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -61144,6 +65437,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -61160,6 +65454,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -61176,6 +65471,7 @@ "type": "int", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -61192,6 +65488,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -61207,6 +65504,7 @@ "type": "string", "read": true, "write": true, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -61222,6 +65520,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -61237,6 +65536,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -61255,6 +65555,7 @@ }, "Device.DHCPv4.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -61265,6 +65566,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -61273,6 +65575,7 @@ }, "Device.DHCPv4.Client.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -61297,6 +65600,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -61322,6 +65626,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -61337,6 +65642,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -61352,6 +65658,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -61383,6 +65690,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -61414,6 +65722,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -61423,6 +65732,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -61442,6 +65752,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -61461,6 +65772,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -61496,6 +65808,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -61531,6 +65844,7 @@ "type": "int", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -61560,6 +65874,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -61579,6 +65894,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -61589,6 +65905,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -61604,6 +65921,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -61629,6 +65947,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -61652,12 +65971,15 @@ }, "Renew()": { "type": "command", + "async": false, + "version": "2.12", "protocols": [ "usp" ] }, "Device.DHCPv4.Client.{i}.SentOption.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -61672,6 +65994,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -61682,6 +66005,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -61697,6 +66021,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -61713,6 +66038,7 @@ "type": "hexBinary", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -61728,6 +66054,7 @@ }, "Device.DHCPv4.Client.{i}.ReqOption.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -61742,6 +66069,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -61752,6 +66080,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -61767,6 +66096,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -61782,6 +66112,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -61798,6 +66129,7 @@ "type": "hexBinary", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -61814,6 +66146,7 @@ }, "Device.DHCPv4.Server.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -61824,6 +66157,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -61849,6 +66183,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -61857,6 +66192,7 @@ }, "Device.DHCPv4.Server.Pool.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -61880,6 +66216,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -61905,6 +66242,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -61936,6 +66274,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -61966,6 +66305,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -61981,6 +66321,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -61996,6 +66337,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -62011,6 +66353,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -62021,6 +66364,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -62037,6 +66381,7 @@ "type": "hexBinary", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -62052,6 +66397,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -62062,6 +66408,7 @@ "type": "hexBinary", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -62077,6 +66424,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -62087,6 +66435,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -62106,6 +66455,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -62125,6 +66475,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -62135,6 +66486,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -62150,6 +66502,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -62184,6 +66537,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -62218,6 +66572,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -62242,6 +66597,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -62276,6 +66632,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -62313,6 +66670,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -62328,6 +66686,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -62352,6 +66711,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -62383,6 +66743,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -62404,6 +66765,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -62414,6 +66776,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -62422,6 +66785,7 @@ }, "Device.DHCPv4.Server.Pool.{i}.StaticAddress.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -62446,6 +66810,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -62471,6 +66836,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -62501,6 +66867,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -62535,6 +66902,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -62568,6 +66936,7 @@ }, "Device.DHCPv4.Server.Pool.{i}.Option.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -62582,6 +66951,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -62592,6 +66962,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -62607,6 +66978,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -62623,6 +66995,7 @@ "type": "hexBinary", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -62638,6 +67011,7 @@ }, "Device.DHCPv4.Server.Pool.{i}.Client.{i}.": { "type": "object", + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -62652,6 +67026,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -62667,6 +67042,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -62686,6 +67062,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -62696,6 +67073,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -62706,6 +67084,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -62714,6 +67093,7 @@ }, "Device.DHCPv4.Server.Pool.{i}.Client.{i}.IPv4Address.{i}.": { "type": "object", + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -62727,6 +67107,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -62746,6 +67127,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -62755,6 +67137,7 @@ }, "Device.DHCPv4.Server.Pool.{i}.Client.{i}.Option.{i}.": { "type": "object", + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -62765,6 +67148,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -62781,6 +67165,7 @@ "type": "hexBinary", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -62799,6 +67184,7 @@ }, "Device.DHCPv4.Relay.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -62809,6 +67195,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -62819,6 +67206,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -62834,6 +67222,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -62842,6 +67231,7 @@ }, "Device.DHCPv4.Relay.Forwarding.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -62865,6 +67255,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -62890,6 +67281,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -62921,6 +67313,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -62936,6 +67329,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -62951,6 +67345,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -62966,6 +67361,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -62996,6 +67392,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -63006,6 +67403,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -63022,6 +67420,7 @@ "type": "hexBinary", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -63037,6 +67436,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -63047,6 +67447,7 @@ "type": "hexBinary", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -63077,6 +67478,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -63087,6 +67489,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -63121,6 +67524,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -63155,6 +67559,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -63165,6 +67570,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -63175,6 +67581,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -63195,6 +67602,7 @@ }, "Device.DHCPv6.": { "type": "object", + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -63205,6 +67613,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -63213,6 +67622,7 @@ }, "Device.DHCPv6.Client.{i}.": { "type": "object", + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -63237,6 +67647,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -63262,6 +67673,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -63277,6 +67689,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -63292,6 +67705,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -63323,6 +67737,7 @@ "type": "hexBinary", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -63351,6 +67766,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -63376,6 +67792,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -63401,6 +67818,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -63411,6 +67829,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp" ], @@ -63420,6 +67839,7 @@ "type": "int", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -63436,6 +67856,7 @@ "type": "int", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -63452,6 +67873,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -63464,6 +67886,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -63491,6 +67914,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -63501,6 +67925,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -63511,6 +67936,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -63519,12 +67945,15 @@ }, "Renew()": { "type": "command", + "async": false, + "version": "2.12", "protocols": [ "usp" ] }, "Device.DHCPv6.Client.{i}.Server.{i}.": { "type": "object", + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -63538,6 +67967,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -63553,6 +67983,7 @@ "type": "hexBinary", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -63568,6 +67999,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -63577,6 +68009,7 @@ }, "Device.DHCPv6.Client.{i}.SentOption.{i}.": { "type": "object", + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -63591,6 +68024,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -63601,6 +68035,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -63616,6 +68051,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -63632,6 +68068,7 @@ "type": "hexBinary", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -63647,6 +68084,7 @@ }, "Device.DHCPv6.Client.{i}.ReceivedOption.{i}.": { "type": "object", + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -63657,6 +68095,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -63673,6 +68112,7 @@ "type": "hexBinary", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -63689,6 +68129,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -63699,6 +68140,7 @@ }, "Device.DHCPv6.Server.": { "type": "object", + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -63709,6 +68151,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -63719,6 +68162,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -63727,6 +68171,7 @@ }, "Device.DHCPv6.Server.Pool.{i}.": { "type": "object", + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -63751,6 +68196,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -63776,6 +68222,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -63807,6 +68254,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -63837,6 +68285,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -63852,6 +68301,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -63867,6 +68317,7 @@ "type": "hexBinary", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -63882,6 +68333,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -63892,6 +68344,7 @@ "type": "hexBinary", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -63922,6 +68375,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -63932,6 +68386,7 @@ "type": "hexBinary", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -63962,6 +68417,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -63972,6 +68428,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -63987,6 +68444,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -64002,6 +68460,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -64012,6 +68471,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -64022,6 +68482,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -64037,6 +68498,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -64052,6 +68514,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -64062,6 +68525,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -64077,6 +68541,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -64092,6 +68557,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -64107,6 +68573,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -64117,6 +68584,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -64125,6 +68593,7 @@ }, "Device.DHCPv6.Server.Pool.{i}.Client.{i}.": { "type": "object", + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -64139,6 +68608,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -64154,6 +68624,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -64169,6 +68640,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -64179,6 +68651,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -64189,6 +68662,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -64199,6 +68673,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -64207,6 +68682,7 @@ }, "Device.DHCPv6.Server.Pool.{i}.Client.{i}.IPv6Address.{i}.": { "type": "object", + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -64220,6 +68696,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -64235,6 +68712,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -64245,6 +68723,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -64254,6 +68733,7 @@ }, "Device.DHCPv6.Server.Pool.{i}.Client.{i}.IPv6Prefix.{i}.": { "type": "object", + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -64267,6 +68747,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -64282,6 +68763,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -64292,6 +68774,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -64301,6 +68784,7 @@ }, "Device.DHCPv6.Server.Pool.{i}.Client.{i}.Option.{i}.": { "type": "object", + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -64311,6 +68795,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -64327,6 +68812,7 @@ "type": "hexBinary", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -64343,6 +68829,7 @@ }, "Device.DHCPv6.Server.Pool.{i}.Option.{i}.": { "type": "object", + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -64357,6 +68844,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -64367,6 +68855,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -64382,6 +68871,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -64398,6 +68888,7 @@ "type": "hexBinary", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -64414,6 +68905,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -64431,6 +68923,7 @@ }, "Device.IEEE8021x.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -64441,6 +68934,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -64449,6 +68943,7 @@ }, "Device.IEEE8021x.Supplicant.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -64463,6 +68958,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -64473,6 +68969,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -64489,6 +68986,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -64504,6 +69002,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -64519,6 +69018,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -64540,6 +69040,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -64555,6 +69056,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -64571,6 +69073,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -64587,6 +69090,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -64603,6 +69107,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -64614,6 +69119,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -64630,6 +69136,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -64644,6 +69151,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -64658,6 +69166,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -64667,6 +69176,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -64674,18 +69184,23 @@ }, "Reset()": { "type": "command", + "async": false, + "version": "2.12", "protocols": [ "usp" ] }, "Disconnect()": { "type": "command", + "async": false, + "version": "2.12", "protocols": [ "usp" ] }, "Device.IEEE8021x.Supplicant.{i}.Stats.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -64696,6 +69211,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -64706,6 +69222,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -64716,6 +69233,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -64726,6 +69244,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -64736,6 +69255,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -64746,6 +69266,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -64756,6 +69277,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -64766,6 +69288,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -64776,6 +69299,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -64786,6 +69310,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -64796,6 +69321,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -64806,6 +69332,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -64824,6 +69351,7 @@ }, "Device.IEEE8021x.Supplicant.{i}.EAPMD5.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -64834,6 +69362,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -64844,6 +69373,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -64858,6 +69388,7 @@ }, "Device.IEEE8021x.Supplicant.{i}.EAPTLS.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -64868,6 +69399,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -64878,6 +69410,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -64889,6 +69422,7 @@ }, "Device.Users.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -64899,6 +69433,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -64918,6 +69453,7 @@ }, "Device.Users.User.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -64942,6 +69478,7 @@ "type": "string", "read": true, "write": true, + "version": "2.3", "protocols": [ "cwmp", "usp" @@ -64972,6 +69509,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -64997,6 +69535,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65022,6 +69561,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65037,6 +69577,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65067,6 +69608,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65097,6 +69639,7 @@ }, "Device.SmartCardReaders.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65107,6 +69650,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65115,6 +69659,7 @@ }, "Device.SmartCardReaders.SmartCardReader.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65129,6 +69674,7 @@ "type": "string", "read": true, "write": true, + "version": "2.3", "protocols": [ "cwmp", "usp" @@ -65144,6 +69690,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65154,6 +69701,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65169,6 +69717,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65184,6 +69733,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -65193,6 +69743,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65203,6 +69754,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65213,6 +69765,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65221,12 +69774,15 @@ }, "Reset()": { "type": "command", + "async": false, + "version": "2.12", "protocols": [ "usp" ] }, "Device.SmartCardReaders.SmartCardReader.{i}.SmartCard.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65237,6 +69793,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65252,6 +69809,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65267,6 +69825,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65284,6 +69843,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65299,6 +69859,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65315,6 +69876,7 @@ }, "Device.UPnP.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65323,6 +69885,7 @@ "array": false, "Device.UPnP.Device.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65333,6 +69896,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65358,6 +69922,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65368,6 +69933,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65378,6 +69944,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65388,6 +69955,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65398,6 +69966,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65408,6 +69977,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65418,6 +69988,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65428,6 +69999,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65438,6 +70010,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65446,6 +70019,7 @@ }, "Device.UPnP.Device.Capabilities.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65456,6 +70030,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65466,6 +70041,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65476,6 +70052,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65486,6 +70063,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65496,6 +70074,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65506,6 +70085,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65516,6 +70096,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65526,6 +70107,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65536,6 +70118,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65546,6 +70129,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65556,6 +70140,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65566,6 +70151,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65576,6 +70162,7 @@ }, "Device.UPnP.Discovery.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65586,6 +70173,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65596,6 +70184,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65606,6 +70195,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65614,6 +70204,7 @@ }, "Device.UPnP.Discovery.RootDevice.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65627,6 +70218,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65642,6 +70234,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65671,6 +70264,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65697,6 +70291,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65708,6 +70303,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65734,6 +70330,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65749,6 +70346,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65767,6 +70365,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -65776,6 +70375,7 @@ }, "Device.UPnP.Discovery.Device.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65789,6 +70389,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65804,6 +70405,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65833,6 +70435,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65859,6 +70462,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65870,6 +70474,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65896,6 +70501,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65911,6 +70517,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65929,6 +70536,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -65938,6 +70546,7 @@ }, "Device.UPnP.Discovery.Service.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65951,6 +70560,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65966,6 +70576,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -65992,6 +70603,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -66003,6 +70615,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -66029,6 +70642,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -66044,6 +70658,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -66062,6 +70677,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -66072,6 +70688,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -66087,6 +70704,7 @@ }, "Device.UPnP.Description.": { "type": "object", + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -66097,6 +70715,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -66107,6 +70726,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -66117,6 +70737,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -66125,6 +70746,7 @@ }, "Device.UPnP.Description.DeviceDescription.{i}.": { "type": "object", + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -66138,6 +70760,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -66164,6 +70787,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -66182,6 +70806,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -66199,6 +70824,7 @@ }, "Device.UPnP.Description.DeviceInstance.{i}.": { "type": "object", + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -66212,6 +70838,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -66242,6 +70869,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -66257,6 +70885,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -66272,6 +70901,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -66298,6 +70928,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -66324,6 +70955,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -66336,6 +70968,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -66362,6 +70995,7 @@ "type": "string", "read": true, "write": false, + "version": "2.8", "protocols": [ "cwmp", "usp" @@ -66382,6 +71016,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -66408,6 +71043,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -66434,6 +71070,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -66460,6 +71097,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -66486,6 +71124,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -66512,6 +71151,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -66538,6 +71178,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -66564,6 +71205,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -66589,6 +71231,7 @@ }, "Device.UPnP.Description.ServiceInstance.{i}.": { "type": "object", + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -66603,6 +71246,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -66618,6 +71262,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -66644,6 +71289,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -66659,6 +71305,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -66685,6 +71332,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -66711,6 +71359,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -66737,6 +71386,7 @@ "type": "string", "read": true, "write": false, + "version": "2.6", "protocols": [ "cwmp", "usp" @@ -66764,6 +71414,7 @@ }, "Device.DLNA.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -66772,6 +71423,7 @@ "array": false, "Device.DLNA.Capabilities.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -66782,6 +71434,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -66795,6 +71448,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -66808,6 +71462,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -66821,6 +71476,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -66834,6 +71490,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -66847,6 +71504,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -66860,6 +71518,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -66873,6 +71532,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -66886,6 +71546,7 @@ }, "Device.SelfTestDiagnostics.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp" ], @@ -66895,6 +71556,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -66911,6 +71573,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp" ], @@ -66924,6 +71587,7 @@ }, "Device.Firewall.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -66934,6 +71598,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -66944,6 +71609,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -66960,6 +71626,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -66970,6 +71637,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -66984,6 +71652,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -66999,6 +71668,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -67009,6 +71679,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67019,6 +71690,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67027,6 +71699,7 @@ }, "Device.Firewall.Level.{i}.": { "type": "object", + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67041,6 +71714,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67056,6 +71730,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67071,6 +71746,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67086,6 +71762,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67101,6 +71778,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67111,6 +71789,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67121,6 +71800,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67136,6 +71816,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67145,6 +71826,7 @@ }, "Device.Firewall.Chain.{i}.": { "type": "object", + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67159,6 +71841,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67169,6 +71852,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67184,6 +71868,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67199,6 +71884,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67217,6 +71903,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67236,6 +71923,7 @@ }, "Device.Firewall.Chain.{i}.Rule.{i}.": { "type": "object", + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67259,6 +71947,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67284,6 +71973,7 @@ "type": "string", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67315,6 +72005,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67330,6 +72021,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67360,6 +72052,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67390,6 +72083,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67422,6 +72116,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67432,6 +72127,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67457,6 +72153,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67467,6 +72164,7 @@ "type": "dateTime", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67492,6 +72190,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67507,6 +72206,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67517,6 +72217,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67527,6 +72228,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67542,6 +72244,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67552,6 +72255,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67562,6 +72266,7 @@ "type": "int", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67593,6 +72298,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67608,6 +72314,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67638,6 +72345,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67648,6 +72356,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67663,6 +72372,7 @@ "type": "string", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67693,6 +72403,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67703,6 +72414,7 @@ "type": "int", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67734,6 +72446,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67744,6 +72457,7 @@ "type": "int", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67775,6 +72489,7 @@ "type": "int", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67806,6 +72521,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67816,6 +72532,7 @@ "type": "int", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67847,6 +72564,7 @@ "type": "int", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67878,6 +72596,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67888,6 +72607,7 @@ "type": "int", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67904,6 +72624,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.2", "protocols": [ "cwmp", "usp" @@ -67915,6 +72636,7 @@ }, "Device.PeriodicStatistics.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -67925,6 +72647,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -67936,6 +72659,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -67946,6 +72670,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -67954,6 +72679,7 @@ }, "Device.PeriodicStatistics.SampleSet.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -67968,6 +72694,7 @@ "type": "string", "read": true, "write": true, + "version": "2.3", "protocols": [ "cwmp", "usp" @@ -67983,6 +72710,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -67993,6 +72721,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -68008,6 +72737,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -68023,6 +72753,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -68039,6 +72770,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -68054,6 +72786,7 @@ "type": "dateTime", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -68064,6 +72797,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -68074,6 +72808,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp" ], @@ -68083,6 +72818,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -68093,6 +72829,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -68103,6 +72840,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -68116,6 +72854,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -68124,12 +72863,15 @@ }, "ForceSample()": { "type": "command", + "async": false, + "version": "2.12", "protocols": [ "usp" ] }, "Device.PeriodicStatistics.SampleSet.{i}.Parameter.{i}.": { "type": "object", + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -68144,6 +72886,7 @@ "type": "string", "read": true, "write": true, + "version": "2.3", "protocols": [ "cwmp", "usp" @@ -68159,6 +72902,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -68169,6 +72913,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -68184,6 +72929,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -68198,6 +72944,7 @@ "type": "string", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -68214,6 +72961,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -68224,6 +72972,7 @@ "type": "int", "read": true, "write": true, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -68234,6 +72983,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -68247,6 +72997,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -68264,6 +73015,7 @@ "type": "string", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -68276,6 +73028,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.0", "protocols": [ "cwmp", "usp" @@ -68287,6 +73040,7 @@ }, "Device.FaultMgmt.": { "type": "object", + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68297,6 +73051,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68307,6 +73062,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68317,6 +73073,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68327,6 +73084,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68337,6 +73095,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68347,6 +73106,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68355,6 +73115,7 @@ }, "Device.FaultMgmt.SupportedAlarm.{i}.": { "type": "object", + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68371,6 +73132,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68386,6 +73148,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68401,6 +73164,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68416,6 +73180,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68436,6 +73201,7 @@ "type": "string", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68451,6 +73217,7 @@ }, "Device.FaultMgmt.CurrentAlarm.{i}.": { "type": "object", + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68467,6 +73234,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68482,6 +73250,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68492,6 +73261,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68502,6 +73272,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68517,6 +73288,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68532,6 +73304,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68547,6 +73320,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68562,6 +73336,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68579,6 +73354,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68594,6 +73370,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68608,6 +73385,7 @@ }, "Device.FaultMgmt.HistoryEvent.{i}.": { "type": "object", + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68622,6 +73400,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68632,6 +73411,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68647,6 +73427,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68662,6 +73443,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68677,6 +73459,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68692,6 +73475,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68707,6 +73491,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68722,6 +73507,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68740,6 +73526,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68755,6 +73542,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68769,6 +73557,7 @@ }, "Device.FaultMgmt.ExpeditedEvent.{i}.": { "type": "object", + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68782,6 +73571,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68792,6 +73582,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68807,6 +73598,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68822,6 +73614,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68837,6 +73630,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68852,6 +73646,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68867,6 +73662,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68882,6 +73678,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68900,6 +73697,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68915,6 +73713,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68929,6 +73728,7 @@ }, "Device.FaultMgmt.QueuedEvent.{i}.": { "type": "object", + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68942,6 +73742,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68952,6 +73753,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68967,6 +73769,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68982,6 +73785,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -68997,6 +73801,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69012,6 +73817,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69027,6 +73833,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69042,6 +73849,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69060,6 +73868,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69075,6 +73884,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69090,6 +73900,7 @@ }, "Device.Security.": { "type": "object", + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69100,6 +73911,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69108,6 +73920,7 @@ }, "Device.Security.Certificate.{i}.": { "type": "object", + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69122,6 +73935,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69132,6 +73946,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69142,6 +73957,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69157,6 +73973,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69172,6 +73989,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69182,6 +74000,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69192,6 +74011,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69207,6 +74027,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69220,6 +74041,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69235,6 +74057,7 @@ }, "Device.FAP.": { "type": "object", + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69243,6 +74066,7 @@ "array": false, "Device.FAP.GPS.": { "type": "object", + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69253,6 +74077,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69263,6 +74088,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69273,6 +74099,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69284,6 +74111,7 @@ "type": "dateTime", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69294,6 +74122,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69304,6 +74133,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69315,6 +74145,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69332,6 +74163,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69347,6 +74179,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69357,6 +74190,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69367,6 +74201,7 @@ "type": "int", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69383,6 +74218,7 @@ "type": "int", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69399,6 +74235,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69409,6 +74246,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp" ], @@ -69416,12 +74254,15 @@ }, "GPSReset()": { "type": "command", + "async": false, + "version": "2.12", "protocols": [ "usp" ] }, "Device.FAP.GPS.ContinuousGPSStatus.": { "type": "object", + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69432,6 +74273,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69442,6 +74284,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69452,6 +74295,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69462,6 +74306,7 @@ "type": "int", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69478,6 +74323,7 @@ "type": "int", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69494,6 +74340,7 @@ "type": "int", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69511,6 +74358,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69521,6 +74369,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69532,6 +74381,7 @@ "type": "int", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69548,6 +74398,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69558,6 +74409,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69575,6 +74427,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69590,6 +74443,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69604,6 +74458,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69620,6 +74475,7 @@ }, "Device.FAP.GPS.AGPSServerConfig.": { "type": "object", + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69630,6 +74486,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69640,6 +74497,7 @@ "type": "string", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69655,6 +74513,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69670,6 +74529,7 @@ "type": "string", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69685,6 +74545,7 @@ "type": "string", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69700,6 +74561,7 @@ "type": "int", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69716,6 +74578,7 @@ "type": "int", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69732,6 +74595,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69742,6 +74606,7 @@ }, "Device.FAP.PerfMgmt.": { "type": "object", + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69752,6 +74617,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69760,6 +74626,7 @@ }, "Device.FAP.PerfMgmt.Config.{i}.": { "type": "object", + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69776,6 +74643,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69786,6 +74654,7 @@ "type": "string", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69801,6 +74670,7 @@ "type": "string", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69816,6 +74686,7 @@ "type": "string", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69831,6 +74702,7 @@ "type": "string", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69846,6 +74718,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69862,6 +74735,7 @@ "type": "dateTime", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69872,6 +74746,7 @@ }, "Device.FAP.ApplicationPlatform.": { "type": "object", + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69882,6 +74757,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69897,6 +74773,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69907,6 +74784,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69923,6 +74801,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69933,6 +74812,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69941,6 +74821,7 @@ }, "Device.FAP.ApplicationPlatform.Capabilities.": { "type": "object", + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69951,6 +74832,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69961,6 +74843,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69971,6 +74854,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69981,6 +74865,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -69991,6 +74876,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70001,6 +74887,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70011,6 +74898,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70021,6 +74909,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70031,6 +74920,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70041,6 +74931,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70058,6 +74949,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70077,6 +74969,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70094,6 +74987,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70110,6 +75004,7 @@ }, "Device.FAP.ApplicationPlatform.Control.": { "type": "object", + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70120,6 +75015,7 @@ "type": "string", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70135,6 +75031,7 @@ "type": "string", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70148,6 +75045,7 @@ }, "Device.FAP.ApplicationPlatform.Control.FemtoAwareness.": { "type": "object", + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70158,6 +75056,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70168,6 +75067,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70178,6 +75078,7 @@ "type": "string", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70192,6 +75093,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70208,6 +75110,7 @@ "type": "string", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70223,6 +75126,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70233,6 +75137,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70243,6 +75148,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70252,6 +75158,7 @@ }, "Device.FAP.ApplicationPlatform.Control.SMS.": { "type": "object", + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70262,6 +75169,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70272,6 +75180,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70282,6 +75191,7 @@ "type": "string", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70296,6 +75206,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70312,6 +75223,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70329,6 +75241,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70339,6 +75252,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70348,6 +75262,7 @@ }, "Device.FAP.ApplicationPlatform.Control.MMS.": { "type": "object", + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70358,6 +75273,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70368,6 +75284,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70378,6 +75295,7 @@ "type": "string", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70392,6 +75310,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70408,6 +75327,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70425,6 +75345,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70435,6 +75356,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70444,6 +75366,7 @@ }, "Device.FAP.ApplicationPlatform.Control.TerminalLocation.": { "type": "object", + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70454,6 +75377,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70464,6 +75388,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70474,6 +75399,7 @@ "type": "string", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70488,6 +75414,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70504,6 +75431,7 @@ "type": "string", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70518,6 +75446,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70528,6 +75457,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70538,6 +75468,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70555,6 +75486,7 @@ }, "Device.FAP.ApplicationPlatform.Monitoring.": { "type": "object", + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70565,6 +75497,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70575,6 +75508,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70586,6 +75520,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70596,6 +75531,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70604,6 +75540,7 @@ }, "Device.FAP.ApplicationPlatform.Monitoring.FemtoAwareness.": { "type": "object", + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70614,6 +75551,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70624,6 +75562,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70640,6 +75579,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70655,6 +75595,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70671,6 +75612,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70681,6 +75623,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70690,6 +75633,7 @@ }, "Device.FAP.ApplicationPlatform.Monitoring.SMS.": { "type": "object", + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70700,6 +75644,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70710,6 +75655,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70726,6 +75672,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70741,6 +75688,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70757,6 +75705,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70767,6 +75716,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70776,6 +75726,7 @@ }, "Device.FAP.ApplicationPlatform.Monitoring.MMS.": { "type": "object", + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70786,6 +75737,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70796,6 +75748,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70812,6 +75765,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70827,6 +75781,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70843,6 +75798,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70853,6 +75809,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70862,6 +75819,7 @@ }, "Device.FAP.ApplicationPlatform.Monitoring.TerminalLocation.": { "type": "object", + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70872,6 +75830,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70882,6 +75841,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70898,6 +75858,7 @@ "type": "string", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70913,6 +75874,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70929,6 +75891,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70939,6 +75902,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.4", "protocols": [ "cwmp", "usp" @@ -70951,6 +75915,7 @@ }, "Device.BulkData.": { "type": "object", + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -70961,6 +75926,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -70986,6 +75952,7 @@ "type": "string", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -71016,6 +75983,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -71027,6 +75995,7 @@ "type": "string", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -71045,6 +76014,7 @@ "type": "string", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -71063,6 +76033,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -71073,6 +76044,7 @@ "type": "int", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -71088,6 +76060,7 @@ "type": "int", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -71103,6 +76076,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -71122,6 +76096,7 @@ }, "Device.BulkData.Profile.{i}.": { "type": "object", + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -71145,6 +76120,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -71170,6 +76146,7 @@ "type": "string", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -71200,6 +76177,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -71230,6 +76208,7 @@ "type": "int", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -71260,6 +76239,7 @@ "type": "string", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -71285,6 +76265,7 @@ "type": "string", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -71310,6 +76291,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -71341,6 +76323,7 @@ "type": "dateTime", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -71366,6 +76349,7 @@ "type": "string", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -71381,6 +76365,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -71397,6 +76382,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -71417,6 +76403,7 @@ "type": "string", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -71432,6 +76419,7 @@ "type": "string", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -71447,6 +76435,7 @@ "type": "string", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -71462,6 +76451,7 @@ "type": "string", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -71477,6 +76467,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -71502,6 +76493,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "usp" ], @@ -71509,6 +76501,7 @@ }, "Device.BulkData.Profile.{i}.Parameter.{i}.": { "type": "object", + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -71529,6 +76522,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -71559,6 +76553,7 @@ "type": "string", "read": true, "write": true, + "version": "2.5", "protocols": [ "cwmp", "usp" @@ -71588,6 +76583,7 @@ }, "Device.BulkData.Profile.{i}.CSVEncoding.": { "type": "object", + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -71598,6 +76594,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -71623,6 +76620,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -71648,6 +76646,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -71673,6 +76672,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -71702,6 +76702,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -71731,6 +76732,7 @@ }, "Device.BulkData.Profile.{i}.JSONEncoding.": { "type": "object", + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -71741,6 +76743,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -71770,6 +76773,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -71799,6 +76803,7 @@ }, "Device.BulkData.Profile.{i}.HTTP.": { "type": "object", + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -71809,6 +76814,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -71839,6 +76845,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -71869,6 +76876,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -71899,6 +76907,7 @@ "type": "string", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -71916,6 +76925,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -71941,6 +76951,7 @@ "type": "string", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -71957,6 +76968,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -71982,6 +76994,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -72007,6 +77020,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -72032,6 +77046,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -72063,6 +77078,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -72094,6 +77110,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -72119,6 +77136,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -72142,6 +77160,7 @@ }, "Device.BulkData.Profile.{i}.HTTP.RequestURIParameter.{i}.": { "type": "object", + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -72162,6 +77181,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -72192,6 +77212,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -72224,6 +77245,7 @@ }, "Device.XMPP.": { "type": "object", + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -72234,6 +77256,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -72255,6 +77278,7 @@ "type": "string", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -72271,6 +77295,7 @@ }, "Device.XMPP.Connection.{i}.": { "type": "object", + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -72297,6 +77322,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -72322,6 +77348,7 @@ "type": "string", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -72352,6 +77379,7 @@ "type": "string", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -72382,6 +77410,7 @@ "type": "string", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -72412,6 +77441,7 @@ "type": "string", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -72442,6 +77472,7 @@ "type": "string", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -72472,6 +77503,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -72482,6 +77514,7 @@ "type": "string", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -72518,6 +77551,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -72528,6 +77562,7 @@ "type": "string", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -72553,6 +77588,7 @@ "type": "long", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -72584,6 +77620,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -72609,6 +77646,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -72641,6 +77679,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -72672,6 +77711,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -72703,6 +77743,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -72728,6 +77769,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -72738,6 +77780,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -72746,6 +77789,7 @@ }, "Device.XMPP.Connection.{i}.Server.{i}.": { "type": "object", + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -72761,6 +77805,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -72786,6 +77831,7 @@ "type": "string", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -72816,6 +77862,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -72832,6 +77879,7 @@ "type": "long", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -72848,6 +77896,7 @@ "type": "string", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -72878,6 +77927,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -72908,6 +77958,7 @@ }, "Device.XMPP.Connection.{i}.Stats.": { "type": "object", + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -72918,6 +77969,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -72928,6 +77980,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -72938,6 +77991,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -72948,6 +78002,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.7", "protocols": [ "cwmp", "usp" @@ -72959,6 +78014,7 @@ }, "Device.IEEE1905.": { "type": "object", + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -72969,6 +78025,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -72992,6 +78049,7 @@ }, "Device.IEEE1905.AL.": { "type": "object", + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -73002,6 +78060,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -73032,6 +78091,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -73065,6 +78125,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -73076,6 +78137,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -73089,6 +78151,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -73118,6 +78181,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -73137,6 +78201,7 @@ }, "Device.IEEE1905.AL.Interface.{i}.": { "type": "object", + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -73159,6 +78224,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -73189,6 +78255,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -73219,6 +78286,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -73230,6 +78298,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -73243,6 +78312,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -73258,6 +78328,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -73295,6 +78366,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -73325,6 +78397,7 @@ "type": "hexBinary", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -73352,6 +78425,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -73378,6 +78452,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -73388,6 +78463,7 @@ "type": "string", "read": true, "write": true, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -73415,6 +78491,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -73436,6 +78513,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -73455,6 +78533,7 @@ }, "Device.IEEE1905.AL.Interface.{i}.VendorProperties.{i}.": { "type": "object", + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -73474,6 +78553,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -73504,6 +78584,7 @@ "type": "hexBinary", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -73529,6 +78610,7 @@ }, "Device.IEEE1905.AL.Interface.{i}.Link.{i}.": { "type": "object", + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -73552,6 +78634,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -73582,6 +78665,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -73612,6 +78696,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -73649,6 +78734,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -73679,6 +78765,7 @@ "type": "hexBinary", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -73706,6 +78793,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -73730,6 +78818,7 @@ }, "Device.IEEE1905.AL.Interface.{i}.Link.{i}.Metric.": { "type": "object", + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -73740,6 +78829,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -73761,6 +78851,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -73782,6 +78873,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -73803,6 +78895,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -73824,6 +78917,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -73845,6 +78939,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -73867,6 +78962,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -73884,6 +78980,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -73906,6 +79003,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -73935,6 +79033,7 @@ }, "Device.IEEE1905.AL.ForwardingTable.": { "type": "object", + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -73945,6 +79044,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -73970,6 +79070,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -73989,6 +79090,7 @@ }, "Device.IEEE1905.AL.ForwardingTable.ForwardingRule.{i}.": { "type": "object", + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -74009,6 +79111,7 @@ "type": "string", "read": true, "write": true, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -74041,6 +79144,7 @@ "type": "string", "read": true, "write": true, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -74075,6 +79179,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -74100,6 +79205,7 @@ "type": "string", "read": true, "write": true, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -74134,6 +79240,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -74159,6 +79266,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -74184,6 +79292,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -74209,6 +79318,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -74240,6 +79350,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -74265,6 +79376,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -74296,6 +79408,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -74321,6 +79434,7 @@ }, "Device.IEEE1905.AL.NetworkTopology.": { "type": "object", + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -74331,6 +79445,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -74352,6 +79467,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -74378,6 +79494,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -74404,6 +79521,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -74430,6 +79548,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -74451,6 +79570,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -74470,6 +79590,7 @@ }, "Device.IEEE1905.AL.NetworkTopology.ChangeLog.{i}.": { "type": "object", + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -74480,6 +79601,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -74490,6 +79612,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -74504,6 +79627,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -74523,6 +79647,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -74542,6 +79667,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -74556,6 +79682,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -74574,6 +79701,7 @@ }, "Device.IEEE1905.AL.NetworkTopology.IEEE1905Device.{i}.": { "type": "object", + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -74596,6 +79724,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -74626,6 +79755,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -74651,6 +79781,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -74669,6 +79800,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -74695,6 +79827,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -74721,6 +79854,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -74747,6 +79881,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -74773,6 +79908,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -74783,6 +79919,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -74804,6 +79941,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -74825,6 +79963,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -74846,6 +79985,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -74867,6 +80007,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -74888,6 +80029,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -74909,6 +80051,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -74930,6 +80073,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -74949,6 +80093,7 @@ }, "Device.IEEE1905.AL.NetworkTopology.IEEE1905Device.{i}.IPv4Address.{i}.": { "type": "object", + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -74972,6 +80117,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -75002,6 +80148,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -75032,6 +80179,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -75059,6 +80207,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -75084,6 +80233,7 @@ }, "Device.IEEE1905.AL.NetworkTopology.IEEE1905Device.{i}.IPv6Address.{i}.": { "type": "object", + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -75107,6 +80257,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -75137,6 +80288,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -75163,6 +80315,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -75191,6 +80344,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -75216,6 +80370,7 @@ }, "Device.IEEE1905.AL.NetworkTopology.IEEE1905Device.{i}.VendorProperties.{i}.": { "type": "object", + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -75235,6 +80390,7 @@ "type": "hexBinary", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -75251,6 +80407,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -75281,6 +80438,7 @@ "type": "hexBinary", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -75307,6 +80465,7 @@ }, "Device.IEEE1905.AL.NetworkTopology.IEEE1905Device.{i}.Interface.{i}.": { "type": "object", + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -75329,6 +80488,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -75359,6 +80519,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -75396,6 +80557,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -75423,6 +80585,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -75453,6 +80616,7 @@ "type": "hexBinary", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -75480,6 +80644,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -75506,6 +80671,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -75536,6 +80702,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -75565,6 +80732,7 @@ "type": "hexBinary", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -75592,6 +80760,7 @@ "type": "hexBinary", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -75619,6 +80788,7 @@ "type": "hexBinary", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -75645,6 +80815,7 @@ }, "Device.IEEE1905.AL.NetworkTopology.IEEE1905Device.{i}.NonIEEE1905Neighbor.{i}.": { "type": "object", + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -75668,6 +80839,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -75694,6 +80866,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -75723,6 +80896,7 @@ }, "Device.IEEE1905.AL.NetworkTopology.IEEE1905Device.{i}.L2Neighbor.{i}.": { "type": "object", + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -75737,6 +80911,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -75752,6 +80927,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -75771,6 +80947,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -75792,6 +80969,7 @@ }, "Device.IEEE1905.AL.NetworkTopology.IEEE1905Device.{i}.IEEE1905Neighbor.{i}.": { "type": "object", + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -75815,6 +80993,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -75841,6 +81020,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -75871,6 +81051,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -75890,6 +81071,7 @@ }, "Device.IEEE1905.AL.NetworkTopology.IEEE1905Device.{i}.IEEE1905Neighbor.{i}.Metric.{i}.": { "type": "object", + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -75912,6 +81094,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -75942,6 +81125,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -75963,6 +81147,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -75984,6 +81169,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -76005,6 +81191,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -76026,6 +81213,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -76047,6 +81235,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -76069,6 +81258,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -76097,6 +81287,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -76119,6 +81310,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -76147,6 +81339,7 @@ }, "Device.IEEE1905.AL.NetworkTopology.IEEE1905Device.{i}.BridgingTuple.{i}.": { "type": "object", + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -76166,6 +81359,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -76195,6 +81389,7 @@ }, "Device.IEEE1905.AL.Security.": { "type": "object", + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -76205,6 +81400,7 @@ "type": "string", "read": true, "write": true, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -76238,6 +81434,7 @@ "type": "string", "read": true, "write": true, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -76262,6 +81459,7 @@ }, "Device.IEEE1905.AL.NetworkingRegistrar.": { "type": "object", + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -76272,6 +81470,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -76305,6 +81504,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -76338,6 +81538,7 @@ "type": "string", "read": true, "write": false, + "version": "2.9", "protocols": [ "cwmp", "usp" @@ -76372,6 +81573,7 @@ }, "Device.MQTT.": { "type": "object", + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -76382,6 +81584,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -76392,6 +81595,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -76400,6 +81604,7 @@ }, "Device.MQTT.Capabilities.": { "type": "object", + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -76410,6 +81615,7 @@ "type": "string", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -76427,6 +81633,7 @@ "type": "string", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -76444,6 +81651,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -76454,6 +81662,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -76464,6 +81673,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -76473,6 +81683,7 @@ }, "Device.MQTT.Client.{i}.": { "type": "object", + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -76487,6 +81698,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -76502,6 +81714,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -76517,6 +81730,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -76527,6 +81741,7 @@ "type": "string", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -76545,6 +81760,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -76555,6 +81771,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -76565,6 +81782,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -76580,6 +81798,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -76596,6 +81815,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -76606,6 +81826,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -76616,6 +81837,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -76626,6 +81848,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -76636,6 +81859,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -76652,6 +81876,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -76662,6 +81887,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -76678,6 +81904,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp" ], @@ -76687,6 +81914,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -76698,6 +81926,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -76708,6 +81937,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -76719,6 +81949,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -76734,6 +81965,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -76744,6 +81976,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -76754,6 +81987,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -76770,6 +82004,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -76786,6 +82021,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -76797,6 +82033,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -76808,6 +82045,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -76823,6 +82061,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -76838,6 +82077,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -76853,6 +82093,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -76868,6 +82109,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -76883,6 +82125,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -76898,6 +82141,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -76909,6 +82153,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -76925,6 +82170,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -76941,6 +82187,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -76957,6 +82204,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -76973,6 +82221,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -76988,6 +82237,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -76998,6 +82248,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -77006,12 +82257,15 @@ }, "ForceReconnect()": { "type": "command", + "async": false, + "version": "2.12", "protocols": [ "usp" ] }, "Device.MQTT.Client.{i}.Subscription.{i}.": { "type": "object", + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77026,6 +82280,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77041,6 +82296,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77051,6 +82307,7 @@ "type": "string", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77068,6 +82325,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77083,6 +82341,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77098,6 +82357,7 @@ }, "Device.MQTT.Client.{i}.UserProperty.{i}.": { "type": "object", + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -77112,6 +82372,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -77127,6 +82388,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -77137,6 +82399,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -77152,6 +82415,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -77167,6 +82431,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -77191,6 +82456,7 @@ }, "Device.MQTT.Client.{i}.Stats.": { "type": "object", + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77201,6 +82467,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77211,6 +82478,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77221,6 +82489,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77231,6 +82500,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77241,6 +82511,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77251,6 +82522,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77261,6 +82533,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77271,6 +82544,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77281,6 +82555,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77291,6 +82566,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77301,6 +82577,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77311,6 +82588,7 @@ }, "Device.MQTT.Broker.{i}.": { "type": "object", + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77325,6 +82603,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77340,6 +82619,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77355,6 +82635,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77365,6 +82646,7 @@ "type": "string", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77381,6 +82663,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77397,6 +82680,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77412,6 +82696,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77427,6 +82712,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77442,6 +82728,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77450,6 +82737,7 @@ }, "Device.MQTT.Broker.{i}.Bridge.{i}.": { "type": "object", + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77464,6 +82752,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77479,6 +82768,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77494,6 +82784,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77504,6 +82795,7 @@ "type": "string", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77523,6 +82815,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77533,6 +82826,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77543,6 +82837,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77553,6 +82848,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.13", "protocols": [ "cwmp", "usp" @@ -77563,6 +82859,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77579,6 +82876,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp" ], @@ -77588,6 +82886,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77604,6 +82903,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77619,6 +82919,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77634,6 +82935,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77650,6 +82952,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77666,6 +82969,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77681,6 +82985,7 @@ "type": "string", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77691,6 +82996,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77701,6 +83007,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77709,12 +83016,15 @@ }, "ForceReconnect()": { "type": "command", + "async": false, + "version": "2.12", "protocols": [ "usp" ] }, "Device.MQTT.Broker.{i}.Bridge.{i}.Server.{i}.": { "type": "object", + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77730,6 +83040,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77740,6 +83051,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77755,6 +83067,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77771,6 +83084,7 @@ "type": "long", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77787,6 +83101,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77802,6 +83117,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77817,6 +83133,7 @@ }, "Device.MQTT.Broker.{i}.Bridge.{i}.Subscription.{i}.": { "type": "object", + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77832,6 +83149,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77847,6 +83165,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77857,6 +83176,7 @@ "type": "string", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77872,6 +83192,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77887,6 +83208,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77902,6 +83224,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77918,6 +83241,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77933,6 +83257,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77948,6 +83273,7 @@ }, "Device.MQTT.Broker.{i}.Stats.": { "type": "object", + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77958,6 +83284,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77968,6 +83295,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77978,6 +83306,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77988,6 +83317,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -77998,6 +83328,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -78008,6 +83339,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -78018,6 +83350,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -78028,6 +83361,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -78038,6 +83372,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -78048,6 +83383,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -78059,6 +83395,7 @@ }, "Device.DynamicDNS.": { "type": "object", + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -78069,6 +83406,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -78079,6 +83417,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -78089,6 +83428,7 @@ "type": "string", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -78100,6 +83440,7 @@ }, "Device.DynamicDNS.Client.{i}.": { "type": "object", + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -78125,6 +83466,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -78150,6 +83492,7 @@ "type": "string", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -78183,6 +83526,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -78213,6 +83557,7 @@ "type": "string", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -78232,6 +83577,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -78262,6 +83608,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -78292,6 +83639,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -78322,6 +83670,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -78352,6 +83701,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -78360,6 +83710,7 @@ }, "Device.DynamicDNS.Client.{i}.Hostname.{i}.": { "type": "object", + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -78373,6 +83724,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -78398,6 +83750,7 @@ "type": "string", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -78430,6 +83783,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -78460,6 +83814,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -78470,6 +83825,7 @@ }, "Device.DynamicDNS.Server.{i}.": { "type": "object", + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -78494,6 +83850,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -78524,6 +83881,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -78539,6 +83897,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -78554,6 +83913,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -78584,6 +83944,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -78614,6 +83975,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -78645,6 +84007,7 @@ "type": "string", "read": true, "write": false, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -78661,6 +84024,7 @@ "type": "string", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -78686,6 +84050,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -78712,6 +84077,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -78738,6 +84104,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.10", "protocols": [ "cwmp", "usp" @@ -78763,6 +84130,7 @@ }, "Device.LEDs.": { "type": "object", + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -78773,6 +84141,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -78781,6 +84150,7 @@ }, "Device.LEDs.LED.{i}.": { "type": "object", + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -78795,6 +84165,7 @@ "type": "string", "read": true, "write": true, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -78810,6 +84181,7 @@ "type": "string", "read": true, "write": true, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -78820,6 +84192,7 @@ "type": "string", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -78836,6 +84209,7 @@ "type": "string", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -78846,6 +84220,7 @@ "type": "int", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -78861,6 +84236,7 @@ "type": "string", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -78879,6 +84255,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -78889,6 +84266,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -78899,6 +84277,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -78907,6 +84286,7 @@ }, "Device.LEDs.LED.{i}.CycleElement.{i}.": { "type": "object", + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -78921,6 +84301,7 @@ "type": "string", "read": true, "write": true, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -78936,6 +84317,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -78946,6 +84328,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -78961,6 +84344,7 @@ "type": "hexBinary", "read": true, "write": true, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -78977,6 +84361,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -78988,6 +84373,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -78998,6 +84384,7 @@ }, "Device.LEDs.LED.{i}.CurrentCycleElement.": { "type": "object", + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -79008,6 +84395,7 @@ "type": "string", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -79018,6 +84406,7 @@ "type": "hexBinary", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -79034,6 +84423,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.11", "protocols": [ "cwmp", "usp" @@ -79046,6 +84436,7 @@ }, "Device.BASAPM.": { "type": "object", + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79056,6 +84447,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79064,6 +84456,7 @@ }, "Device.BASAPM.MeasurementEndpoint.{i}.": { "type": "object", + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79078,6 +84471,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79093,6 +84487,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79103,6 +84498,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79113,6 +84509,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79127,6 +84524,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79142,6 +84540,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79157,6 +84556,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79165,6 +84565,7 @@ }, "Device.BASAPM.MeasurementEndpoint.{i}.ISPDevice.": { "type": "object", + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79175,6 +84576,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79195,6 +84597,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79204,6 +84607,7 @@ }, "Device.BASAPM.MeasurementEndpoint.{i}.CustomerDevice.": { "type": "object", + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79214,6 +84618,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79229,6 +84634,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79245,6 +84651,7 @@ }, "Device.LMAP.": { "type": "object", + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79255,6 +84662,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79265,6 +84673,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79275,6 +84684,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79283,6 +84693,7 @@ }, "Device.LMAP.MeasurementAgent.{i}.": { "type": "object", + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79297,6 +84708,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79312,6 +84724,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79322,6 +84735,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79332,6 +84746,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79342,6 +84757,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79354,6 +84770,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79373,6 +84790,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79388,6 +84806,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79403,6 +84822,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79413,6 +84833,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79423,6 +84844,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79433,6 +84855,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79443,6 +84866,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79453,6 +84877,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79463,6 +84888,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79473,6 +84899,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79483,6 +84910,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79493,6 +84921,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79503,6 +84932,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79511,6 +84941,7 @@ }, "Device.LMAP.MeasurementAgent.{i}.TaskCapability.{i}.": { "type": "object", + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79524,6 +84955,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79539,6 +84971,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79554,6 +84987,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79562,6 +84996,7 @@ }, "Device.LMAP.MeasurementAgent.{i}.TaskCapability.{i}.Registry.{i}.": { "type": "object", + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79575,6 +85010,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79585,6 +85021,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79602,6 +85039,7 @@ }, "Device.LMAP.MeasurementAgent.{i}.Controller.": { "type": "object", + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79612,6 +85050,7 @@ "type": "int", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79628,6 +85067,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79640,6 +85080,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79652,6 +85093,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79663,6 +85105,7 @@ }, "Device.LMAP.MeasurementAgent.{i}.Schedule.{i}.": { "type": "object", + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79677,6 +85120,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79687,6 +85131,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79702,6 +85147,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79717,6 +85163,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79733,6 +85180,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79743,6 +85191,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79753,6 +85202,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79764,6 +85214,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79776,6 +85227,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79788,6 +85240,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79803,6 +85256,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79813,6 +85267,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79824,6 +85279,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79832,6 +85288,7 @@ }, "Device.LMAP.MeasurementAgent.{i}.Schedule.{i}.Stats.": { "type": "object", + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79842,6 +85299,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79852,6 +85310,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79862,6 +85321,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79872,6 +85332,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79881,6 +85342,7 @@ }, "Device.LMAP.MeasurementAgent.{i}.Schedule.{i}.Action.{i}.": { "type": "object", + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79894,6 +85356,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79904,6 +85367,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79919,6 +85383,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79935,6 +85400,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79945,6 +85411,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79955,6 +85422,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79967,6 +85435,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79979,6 +85448,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -79991,6 +85461,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80002,6 +85473,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80012,6 +85484,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80022,6 +85495,7 @@ "type": "int", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80032,6 +85506,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80042,6 +85517,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80052,6 +85528,7 @@ "type": "int", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80062,6 +85539,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80072,6 +85550,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80080,6 +85559,7 @@ }, "Device.LMAP.MeasurementAgent.{i}.Schedule.{i}.Action.{i}.Stats.": { "type": "object", + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80090,6 +85570,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80100,6 +85581,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80110,6 +85592,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80120,6 +85603,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80129,6 +85613,7 @@ }, "Device.LMAP.MeasurementAgent.{i}.Schedule.{i}.Action.{i}.Option.{i}.": { "type": "object", + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80143,6 +85628,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80153,6 +85639,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80168,6 +85655,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80178,6 +85666,7 @@ "type": "int", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80188,6 +85677,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80199,6 +85689,7 @@ }, "Device.LMAP.MeasurementAgent.{i}.Task.{i}.": { "type": "object", + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80213,6 +85704,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80223,6 +85715,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80238,6 +85731,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80253,6 +85747,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80265,6 +85760,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80275,6 +85771,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80283,6 +85780,7 @@ }, "Device.LMAP.MeasurementAgent.{i}.Task.{i}.Registry.{i}.": { "type": "object", + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80297,6 +85795,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80307,6 +85806,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80322,6 +85822,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80332,6 +85833,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80348,6 +85850,7 @@ }, "Device.LMAP.MeasurementAgent.{i}.Task.{i}.Option.{i}.": { "type": "object", + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80362,6 +85865,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80372,6 +85876,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80387,6 +85892,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80397,6 +85903,7 @@ "type": "int", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80407,6 +85914,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80417,6 +85925,7 @@ }, "Device.LMAP.MeasurementAgent.{i}.CommunicationChannel.{i}.": { "type": "object", + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80431,6 +85940,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80441,6 +85951,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80456,6 +85967,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80471,6 +85983,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80481,6 +85994,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80491,6 +86005,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80506,6 +86021,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80516,6 +86032,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80525,6 +86042,7 @@ }, "Device.LMAP.MeasurementAgent.{i}.Instruction.{i}.": { "type": "object", + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80538,6 +86056,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80548,6 +86067,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80563,6 +86083,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80573,6 +86094,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80585,6 +86107,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80597,6 +86120,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80609,6 +86133,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80617,6 +86142,7 @@ }, "Device.LMAP.MeasurementAgent.{i}.Instruction.{i}.MeasurementSuppression.{i}.": { "type": "object", + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80631,6 +86157,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80641,6 +86168,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80656,6 +86184,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80671,6 +86200,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80686,6 +86216,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80696,6 +86227,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80706,6 +86238,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80716,6 +86249,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80729,6 +86263,7 @@ }, "Device.LMAP.Report.{i}.": { "type": "object", + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80739,6 +86274,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80749,6 +86285,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80768,6 +86305,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80778,6 +86316,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80793,6 +86332,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80801,6 +86341,7 @@ }, "Device.LMAP.Report.{i}.Result.{i}.": { "type": "object", + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80816,6 +86357,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80831,6 +86373,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80846,6 +86389,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80861,6 +86405,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80871,6 +86416,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80881,6 +86427,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80891,6 +86438,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80904,6 +86452,7 @@ "type": "int", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80914,6 +86463,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80926,6 +86476,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80936,6 +86487,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80946,6 +86498,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80954,6 +86507,7 @@ }, "Device.LMAP.Report.{i}.Result.{i}.Option.{i}.": { "type": "object", + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80967,6 +86521,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80977,6 +86532,7 @@ "type": "int", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80987,6 +86543,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -80996,6 +86553,7 @@ }, "Device.LMAP.Report.{i}.Result.{i}.Conflict.{i}.": { "type": "object", + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -81011,6 +86569,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -81026,6 +86585,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -81041,6 +86601,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -81055,6 +86616,7 @@ }, "Device.LMAP.Report.{i}.Result.{i}.ReportTable.{i}.": { "type": "object", + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -81065,6 +86627,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -81077,6 +86640,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -81087,6 +86651,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -81095,6 +86660,7 @@ }, "Device.LMAP.Report.{i}.Result.{i}.ReportTable.{i}.ResultRow.{i}.": { "type": "object", + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -81105,6 +86671,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -81116,6 +86683,7 @@ }, "Device.LMAP.Report.{i}.Result.{i}.ReportTable.{i}.Registry.{i}.": { "type": "object", + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -81129,6 +86697,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -81139,6 +86708,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -81158,6 +86728,7 @@ }, "Device.LMAP.Event.{i}.": { "type": "object", + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -81172,6 +86743,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -81182,6 +86754,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -81197,6 +86770,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -81212,6 +86786,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -81231,6 +86806,7 @@ "type": "int", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -81242,6 +86818,7 @@ "type": "int", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -81251,6 +86828,7 @@ }, "Device.LMAP.Event.{i}.PeriodicTimer.": { "type": "object", + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -81261,6 +86839,7 @@ "type": "dateTime", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -81271,6 +86850,7 @@ "type": "dateTime", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -81281,6 +86861,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -81291,6 +86872,7 @@ }, "Device.LMAP.Event.{i}.CalendarTimer.": { "type": "object", + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -81301,6 +86883,7 @@ "type": "dateTime", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -81311,6 +86894,7 @@ "type": "dateTime", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -81321,6 +86905,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -81331,6 +86916,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -81341,6 +86927,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -81351,6 +86938,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -81361,6 +86949,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -81371,6 +86960,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -81381,6 +86971,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -81391,6 +86982,7 @@ "type": "int", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -81407,6 +86999,7 @@ }, "Device.LMAP.Event.{i}.OneOff.": { "type": "object", + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -81417,6 +87010,7 @@ "type": "dateTime", "read": true, "write": true, + "version": "2.12", "protocols": [ "cwmp", "usp" @@ -81428,6 +87022,7 @@ }, "Device.WWC.": { "type": "object", + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -81438,6 +87033,7 @@ "type": "string", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -81455,6 +87051,7 @@ "type": "string", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -81472,6 +87069,7 @@ "type": "string", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -81487,6 +87085,7 @@ "type": "string", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -81502,6 +87101,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -81512,6 +87112,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -81520,6 +87121,7 @@ }, "Device.WWC.AccessNetwork.{i}.": { "type": "object", + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -81534,6 +87136,7 @@ "type": "string", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -81549,6 +87152,7 @@ "type": "string", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -81564,6 +87168,7 @@ "type": "string", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -81579,6 +87184,7 @@ "type": "string", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -81595,6 +87201,7 @@ "type": "string", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -81611,6 +87218,7 @@ "type": "string", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -81626,6 +87234,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -81634,6 +87243,7 @@ }, "Device.WWC.AccessNetwork.{i}.GUTI.": { "type": "object", + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -81644,6 +87254,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -81654,6 +87265,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -81664,6 +87276,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -81674,6 +87287,7 @@ }, "Device.WWC.URSP.{i}.": { "type": "object", + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -81688,6 +87302,7 @@ "type": "string", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -81703,6 +87318,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -81719,6 +87335,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -81727,6 +87344,7 @@ }, "Device.WWC.URSP.{i}.TrafficDescriptor.{i}.": { "type": "object", + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -81740,6 +87358,7 @@ "type": "string", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -81755,6 +87374,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -81765,6 +87385,7 @@ "type": "string", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -81780,6 +87401,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -81788,6 +87410,7 @@ }, "Device.WWC.URSP.{i}.TrafficDescriptor.{i}.RouteSelectionDescriptor.{i}.": { "type": "object", + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -81802,6 +87425,7 @@ "type": "string", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -81817,6 +87441,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -81833,6 +87458,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -81849,6 +87475,7 @@ "type": "string", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -81864,6 +87491,7 @@ "type": "string", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -81880,6 +87508,7 @@ "type": "string", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -81892,6 +87521,7 @@ }, "Device.WWC.URSP.{i}.TrafficDescriptor.{i}.RouteSelectionDescriptor.{i}.NetworkSlice.": { "type": "object", + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -81902,6 +87532,7 @@ "type": "string", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -81918,6 +87549,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -81931,6 +87563,7 @@ }, "Device.PDU.": { "type": "object", + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -81941,6 +87574,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -81949,6 +87583,7 @@ }, "Device.PDU.Session.{i}.": { "type": "object", + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -81963,6 +87598,7 @@ "type": "string", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -81978,6 +87614,7 @@ "type": "string", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -81993,6 +87630,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82009,6 +87647,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82025,6 +87664,7 @@ "type": "string", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82041,6 +87681,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82057,6 +87698,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82068,6 +87710,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82079,6 +87722,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82089,6 +87733,7 @@ "type": "string", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82108,6 +87753,7 @@ "type": "string", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82118,6 +87764,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82129,6 +87776,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82139,6 +87787,7 @@ "type": "string", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82154,6 +87803,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82164,6 +87814,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82172,6 +87823,7 @@ }, "Device.PDU.Session.{i}.PCO.": { "type": "object", + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82182,6 +87834,7 @@ "type": "string", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82197,6 +87850,7 @@ "type": "string", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82212,6 +87866,7 @@ "type": "string", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82231,6 +87886,7 @@ "type": "string", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82245,6 +87901,7 @@ }, "Device.PDU.Session.{i}.NetworkSlice.": { "type": "object", + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82255,6 +87912,7 @@ "type": "string", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82271,6 +87929,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82280,6 +87939,7 @@ }, "Device.PDU.Session.{i}.QoSRule.{i}.": { "type": "object", + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82294,6 +87954,7 @@ "type": "string", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82309,6 +87970,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82325,6 +87987,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82341,6 +88004,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82351,6 +88015,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82367,6 +88032,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82377,6 +88043,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82385,6 +88052,7 @@ }, "Device.PDU.Session.{i}.QoSRule.{i}.Filter.{i}.": { "type": "object", + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82398,6 +88066,7 @@ "type": "string", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82413,6 +88082,7 @@ "type": "string", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82428,6 +88098,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82438,6 +88109,7 @@ "type": "string", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82453,6 +88125,7 @@ }, "Device.PDU.Session.{i}.QoSFlow.{i}.": { "type": "object", + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82467,6 +88140,7 @@ "type": "string", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82482,6 +88156,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82498,6 +88173,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82514,6 +88190,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82525,6 +88202,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82536,6 +88214,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82547,6 +88226,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82558,6 +88238,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82569,6 +88250,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82580,6 +88262,7 @@ }, "Device.FWE.": { "type": "object", + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82590,6 +88273,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82598,6 +88282,7 @@ }, "Device.FWE.Link.{i}.": { "type": "object", + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82612,6 +88297,7 @@ "type": "string", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82631,6 +88317,7 @@ "type": "string", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82646,6 +88333,7 @@ "type": "string", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82661,6 +88349,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82672,6 +88361,7 @@ "type": "string", "read": true, "write": true, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82683,6 +88373,7 @@ }, "Device.FWE.Link.{i}.Stats.": { "type": "object", + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82693,6 +88384,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82704,6 +88396,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82715,6 +88408,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82725,6 +88419,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82735,6 +88430,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82745,6 +88441,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82755,6 +88452,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82765,6 +88463,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82775,6 +88474,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82785,6 +88485,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82795,6 +88496,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82805,6 +88507,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82815,6 +88518,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82825,6 +88529,7 @@ "type": "unsignedLong", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82835,6 +88540,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.14", "protocols": [ "cwmp", "usp" @@ -82846,6 +88552,7 @@ }, "Device.LocalAgent.": { "type": "object", + "version": "2.12", "protocols": [ "usp" ], @@ -82855,6 +88562,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "usp" ], @@ -82864,6 +88572,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "usp" ], @@ -82878,6 +88587,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "usp" ], @@ -82886,6 +88596,8 @@ }, "AddCertificate()": { "type": "command", + "async": false, + "version": "2.12", "protocols": [ "usp" ], @@ -82894,6 +88606,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -82908,6 +88621,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -82924,6 +88638,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "usp" ], @@ -82944,6 +88659,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "usp" ], @@ -82962,6 +88678,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "usp" ], @@ -82980,6 +88697,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -82991,6 +88709,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -83006,6 +88725,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "usp" ], @@ -83015,6 +88735,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "usp" ], @@ -83024,6 +88745,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "usp" ], @@ -83033,6 +88755,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "usp" ], @@ -83042,6 +88765,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "usp" ], @@ -83051,6 +88775,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "usp" ], @@ -83058,6 +88783,7 @@ }, "Device.LocalAgent.MTP.{i}.": { "type": "object", + "version": "2.12", "protocols": [ "usp" ], @@ -83070,6 +88796,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -83084,6 +88811,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -83093,6 +88821,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "usp" ], @@ -83107,6 +88836,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -83116,6 +88846,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -83123,6 +88854,7 @@ }, "Device.LocalAgent.MTP.{i}.CoAP.": { "type": "object", + "version": "2.12", "protocols": [ "usp" ], @@ -83132,6 +88864,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -83143,6 +88876,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -83158,6 +88892,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -83167,6 +88902,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.12", "protocols": [ "usp" ], @@ -83176,6 +88912,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -83184,6 +88921,7 @@ }, "Device.LocalAgent.MTP.{i}.STOMP.": { "type": "object", + "version": "2.12", "protocols": [ "usp" ], @@ -83193,6 +88931,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -83202,6 +88941,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -83211,6 +88951,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "usp" ], @@ -83219,6 +88960,7 @@ }, "Device.LocalAgent.MTP.{i}.WebSocket.": { "type": "object", + "version": "2.12", "protocols": [ "usp" ], @@ -83228,6 +88970,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -83239,6 +88982,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -83254,6 +88998,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -83263,6 +89008,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -83271,6 +89017,7 @@ }, "Device.LocalAgent.MTP.{i}.MQTT.": { "type": "object", + "version": "2.13", "protocols": [ "usp" ], @@ -83280,6 +89027,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -83289,6 +89037,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -83303,6 +89052,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "usp" ], @@ -83317,6 +89067,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -83332,6 +89083,7 @@ }, "Device.LocalAgent.Threshold.{i}.": { "type": "object", + "version": "2.13", "protocols": [ "usp" ], @@ -83344,6 +89096,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -83358,6 +89111,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -83367,6 +89121,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -83380,6 +89135,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -83389,6 +89145,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -83398,6 +89155,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -83407,6 +89165,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -83415,6 +89174,7 @@ }, "Device.LocalAgent.Controller.{i}.": { "type": "object", + "version": "2.12", "protocols": [ "usp" ], @@ -83428,6 +89188,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -83442,6 +89203,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -83451,6 +89213,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -83465,6 +89228,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -83479,6 +89243,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -83488,6 +89253,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -83499,6 +89265,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "usp" ], @@ -83510,6 +89277,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -83519,6 +89287,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -83534,6 +89303,7 @@ "type": "dateTime", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -83543,6 +89313,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -83559,6 +89330,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -83572,6 +89344,8 @@ }, "ScheduleTimer()": { "type": "command", + "async": false, + "version": "2.12", "protocols": [ "usp" ], @@ -83580,6 +89354,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -83595,6 +89370,8 @@ }, "AddMyCertificate()": { "type": "command", + "async": false, + "version": "2.12", "protocols": [ "usp" ], @@ -83603,6 +89380,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -83617,6 +89395,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -83631,6 +89410,8 @@ }, "SendOnBoardRequest()": { "type": "command", + "async": false, + "version": "2.12", "protocols": [ "usp" ] @@ -83639,6 +89420,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "usp" ], @@ -83648,6 +89430,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "usp" ], @@ -83655,6 +89438,7 @@ }, "Device.LocalAgent.Controller.{i}.MTP.{i}.": { "type": "object", + "version": "2.12", "protocols": [ "usp" ], @@ -83668,6 +89452,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -83682,6 +89467,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -83691,6 +89477,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -83698,6 +89485,7 @@ }, "Device.LocalAgent.Controller.{i}.MTP.{i}.CoAP.": { "type": "object", + "version": "2.12", "protocols": [ "usp" ], @@ -83707,6 +89495,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -83721,6 +89510,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -83736,6 +89526,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -83745,6 +89536,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -83753,6 +89545,7 @@ }, "Device.LocalAgent.Controller.{i}.MTP.{i}.STOMP.": { "type": "object", + "version": "2.12", "protocols": [ "usp" ], @@ -83762,6 +89555,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -83771,6 +89565,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -83779,6 +89574,7 @@ }, "Device.LocalAgent.Controller.{i}.MTP.{i}.WebSocket.": { "type": "object", + "version": "2.12", "protocols": [ "usp" ], @@ -83788,6 +89584,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -83802,6 +89599,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -83817,6 +89615,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -83826,6 +89625,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.12", "protocols": [ "usp" ], @@ -83835,6 +89635,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -83844,6 +89645,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -83859,6 +89661,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "usp" ], @@ -83868,6 +89671,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -83884,6 +89688,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -83897,6 +89702,8 @@ }, "Reset()": { "type": "command", + "async": true, + "version": "2.12", "protocols": [ "usp" ] @@ -83904,6 +89711,7 @@ }, "Device.LocalAgent.Controller.{i}.MTP.{i}.MQTT.": { "type": "object", + "version": "2.13", "protocols": [ "usp" ], @@ -83913,6 +89721,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -83922,6 +89731,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -83936,6 +89746,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -83945,6 +89756,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -83954,6 +89766,7 @@ }, "Device.LocalAgent.Controller.{i}.TransferCompletePolicy.": { "type": "object", + "version": "2.12", "protocols": [ "usp" ], @@ -83963,6 +89776,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -83976,6 +89790,7 @@ }, "Device.LocalAgent.Controller.{i}.BootParameter.{i}.": { "type": "object", + "version": "2.12", "protocols": [ "usp" ], @@ -83989,6 +89804,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84003,6 +89819,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84012,6 +89829,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84025,6 +89843,7 @@ }, "Device.LocalAgent.Controller.{i}.E2ESession.": { "type": "object", + "version": "2.12", "protocols": [ "usp" ], @@ -84034,6 +89853,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84043,6 +89863,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "usp" ], @@ -84057,6 +89878,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84072,6 +89894,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84088,6 +89911,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84103,6 +89927,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "usp" ], @@ -84112,6 +89937,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84131,6 +89957,7 @@ "type": "int", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84146,6 +89973,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84157,6 +89985,8 @@ }, "Reset()": { "type": "command", + "async": true, + "version": "2.12", "protocols": [ "usp" ] @@ -84165,6 +89995,7 @@ }, "Device.LocalAgent.Subscription.{i}.": { "type": "object", + "version": "2.12", "protocols": [ "usp" ], @@ -84179,6 +90010,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84193,6 +90025,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84202,6 +90035,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "usp" ], @@ -84211,6 +90045,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84226,6 +90061,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.12", "protocols": [ "usp" ], @@ -84235,6 +90071,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84251,6 +90088,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -84267,6 +90105,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84276,6 +90115,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84286,6 +90126,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84295,6 +90136,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84304,6 +90146,7 @@ }, "Device.LocalAgent.Request.{i}.": { "type": "object", + "version": "2.12", "protocols": [ "usp" ], @@ -84319,6 +90162,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84333,6 +90177,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "usp" ], @@ -84342,6 +90187,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "usp" ], @@ -84351,6 +90197,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "usp" ], @@ -84360,6 +90207,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "usp" ], @@ -84375,6 +90223,8 @@ }, "Cancel()": { "type": "command", + "async": false, + "version": "2.12", "protocols": [ "usp" ] @@ -84382,6 +90232,7 @@ }, "Device.LocalAgent.Certificate.{i}.": { "type": "object", + "version": "2.12", "protocols": [ "usp" ], @@ -84396,6 +90247,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84410,6 +90262,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84419,6 +90272,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "usp" ], @@ -84433,6 +90287,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "usp" ], @@ -84445,12 +90300,16 @@ }, "Delete()": { "type": "command", + "async": false, + "version": "2.12", "protocols": [ "usp" ] }, "GetFingerprint()": { "type": "command", + "async": false, + "version": "2.12", "protocols": [ "usp" ], @@ -84459,6 +90318,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84477,6 +90337,7 @@ "type": "hexBinary", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84492,6 +90353,7 @@ }, "Device.LocalAgent.ControllerTrust.": { "type": "object", + "version": "2.12", "protocols": [ "usp" ], @@ -84501,6 +90363,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84515,6 +90378,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84524,6 +90388,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84533,6 +90398,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84541,6 +90407,8 @@ }, "RequestChallenge()": { "type": "command", + "async": false, + "version": "2.12", "protocols": [ "usp" ], @@ -84549,6 +90417,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84558,6 +90427,7 @@ "type": "int", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84575,6 +90445,7 @@ "type": "base64", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84584,6 +90455,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84593,6 +90465,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84602,6 +90475,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84611,6 +90485,8 @@ }, "ChallengeResponse()": { "type": "command", + "async": false, + "version": "2.12", "protocols": [ "usp" ], @@ -84619,6 +90495,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84628,6 +90505,7 @@ "type": "base64", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84639,6 +90517,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "usp" ], @@ -84648,6 +90527,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "usp" ], @@ -84657,6 +90537,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "usp" ], @@ -84664,6 +90545,7 @@ }, "Device.LocalAgent.ControllerTrust.Role.{i}.": { "type": "object", + "version": "2.12", "protocols": [ "usp" ], @@ -84677,6 +90559,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84691,6 +90574,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84700,6 +90584,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84709,6 +90594,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "usp" ], @@ -84716,6 +90602,7 @@ }, "Device.LocalAgent.ControllerTrust.Role.{i}.Permission.{i}.": { "type": "object", + "version": "2.12", "protocols": [ "usp" ], @@ -84729,6 +90616,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84743,6 +90631,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84752,6 +90641,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84761,6 +90651,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84772,6 +90663,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84787,6 +90679,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84802,6 +90695,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84817,6 +90711,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84832,6 +90727,7 @@ }, "Device.LocalAgent.ControllerTrust.Credential.{i}.": { "type": "object", + "version": "2.12", "protocols": [ "usp" ], @@ -84845,6 +90741,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84859,6 +90756,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84868,6 +90766,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84879,6 +90778,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84888,6 +90788,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84901,6 +90802,7 @@ }, "Device.LocalAgent.ControllerTrust.Challenge.{i}.": { "type": "object", + "version": "2.12", "protocols": [ "usp" ], @@ -84913,6 +90815,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84927,6 +90830,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84936,6 +90840,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84947,6 +90852,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84956,6 +90862,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84968,6 +90875,7 @@ "type": "base64", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84977,6 +90885,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84990,6 +90899,7 @@ "type": "base64", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -84999,6 +90909,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -85013,6 +90924,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -85022,6 +90934,7 @@ "type": "int", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -85038,6 +90951,7 @@ }, "Device.STOMP.": { "type": "object", + "version": "2.12", "protocols": [ "usp" ], @@ -85047,6 +90961,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.12", "protocols": [ "usp" ], @@ -85054,6 +90969,7 @@ }, "Device.STOMP.Connection.{i}.": { "type": "object", + "version": "2.12", "protocols": [ "usp" ], @@ -85069,6 +90985,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -85083,6 +91000,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -85092,6 +91010,7 @@ "type": "string", "read": true, "write": false, + "version": "2.12", "protocols": [ "usp" ], @@ -85111,6 +91030,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.12", "protocols": [ "usp" ], @@ -85120,6 +91040,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -85134,6 +91055,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -85149,6 +91071,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -85163,6 +91086,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -85177,6 +91101,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -85191,6 +91116,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -85200,6 +91126,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -85210,6 +91137,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -85220,6 +91148,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -85236,6 +91165,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -85251,6 +91181,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -85266,6 +91197,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.12", "protocols": [ "usp" ], @@ -85275,6 +91207,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.14", "protocols": [ "usp" ], @@ -85284,6 +91217,7 @@ }, "Device.Standby.": { "type": "object", + "version": "2.12", "protocols": [ "usp" ], @@ -85293,6 +91227,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.12", "protocols": [ "usp" ], @@ -85302,6 +91237,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.12", "protocols": [ "usp" ], @@ -85310,6 +91246,7 @@ }, "Device.ProxiedDevice.{i}.": { "type": "object", + "version": "2.12", "protocols": [ "usp" ], @@ -85322,6 +91259,7 @@ "type": "string", "read": true, "write": true, + "version": "2.12", "protocols": [ "usp" ], @@ -85336,6 +91274,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "usp" ], @@ -85345,6 +91284,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "usp" ], @@ -85359,6 +91299,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -85373,6 +91314,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.13", "protocols": [ "usp" ], @@ -85382,6 +91324,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.13", "protocols": [ "usp" ], @@ -85391,6 +91334,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "usp" ], @@ -85400,6 +91344,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "usp" ], @@ -85414,6 +91359,7 @@ "type": "unsignedInt", "read": true, "write": false, + "version": "2.13", "protocols": [ "usp" ], @@ -85421,6 +91367,7 @@ }, "Device.ProxiedDevice.{i}.Node.{i}.": { "type": "object", + "version": "2.13", "protocols": [ "usp" ], @@ -85433,6 +91380,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -85447,6 +91395,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "usp" ], @@ -85456,6 +91405,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "usp" ], @@ -85470,6 +91420,7 @@ }, "Device.IoTCapability.{i}.": { "type": "object", + "version": "2.13", "protocols": [ "usp" ], @@ -85483,6 +91434,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -85497,6 +91449,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -85511,6 +91464,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "usp" ], @@ -85527,6 +91481,7 @@ }, "Device.IoTCapability.{i}.BinaryControl.": { "type": "object", + "version": "2.13", "protocols": [ "usp" ], @@ -85536,6 +91491,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "usp" ], @@ -85549,6 +91505,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "usp" ], @@ -85563,6 +91520,7 @@ "type": "boolean", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -85570,6 +91528,8 @@ }, "Toggle()": { "type": "command", + "async": true, + "version": "2.13", "protocols": [ "usp" ] @@ -85577,6 +91537,7 @@ }, "Device.IoTCapability.{i}.LevelControl.": { "type": "object", + "version": "2.13", "protocols": [ "usp" ], @@ -85586,6 +91547,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "usp" ], @@ -85595,6 +91557,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "usp" ], @@ -85609,6 +91572,7 @@ "type": "decimal", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -85618,6 +91582,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "usp" ], @@ -85627,6 +91592,7 @@ "type": "decimal", "read": true, "write": false, + "version": "2.13", "protocols": [ "usp" ], @@ -85636,6 +91602,7 @@ "type": "decimal", "read": true, "write": false, + "version": "2.13", "protocols": [ "usp" ], @@ -85645,6 +91612,7 @@ "type": "decimal", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -85652,12 +91620,16 @@ }, "StepUp()": { "type": "command", + "async": true, + "version": "2.13", "protocols": [ "usp" ] }, "StepDown()": { "type": "command", + "async": true, + "version": "2.13", "protocols": [ "usp" ] @@ -85665,6 +91637,7 @@ }, "Device.IoTCapability.{i}.EnumControl.": { "type": "object", + "version": "2.13", "protocols": [ "usp" ], @@ -85674,6 +91647,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "usp" ], @@ -85683,6 +91657,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "usp" ], @@ -85697,6 +91672,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -85706,6 +91682,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "usp" ], @@ -85720,12 +91697,16 @@ }, "StepUp()": { "type": "command", + "async": true, + "version": "2.13", "protocols": [ "usp" ] }, "StepDown()": { "type": "command", + "async": true, + "version": "2.13", "protocols": [ "usp" ] @@ -85733,6 +91714,7 @@ }, "Device.IoTCapability.{i}.BinarySensor.": { "type": "object", + "version": "2.13", "protocols": [ "usp" ], @@ -85742,6 +91724,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "usp" ], @@ -85760,6 +91743,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "usp" ], @@ -85774,6 +91758,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.13", "protocols": [ "usp" ], @@ -85783,6 +91768,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.13", "protocols": [ "usp" ], @@ -85792,6 +91778,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -85806,6 +91793,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -85816,6 +91804,7 @@ "type": "unsignedInt", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -85825,6 +91814,7 @@ }, "Device.IoTCapability.{i}.LevelSensor.": { "type": "object", + "version": "2.13", "protocols": [ "usp" ], @@ -85834,6 +91824,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "usp" ], @@ -85843,6 +91834,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "usp" ], @@ -85857,6 +91849,7 @@ "type": "decimal", "read": true, "write": false, + "version": "2.13", "protocols": [ "usp" ], @@ -85866,6 +91859,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.13", "protocols": [ "usp" ], @@ -85875,6 +91869,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "usp" ], @@ -85884,6 +91879,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.13", "protocols": [ "usp" ], @@ -85893,6 +91889,7 @@ "type": "decimal", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -85902,6 +91899,7 @@ "type": "boolean", "read": true, "write": false, + "version": "2.13", "protocols": [ "usp" ], @@ -85911,6 +91909,7 @@ "type": "decimal", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -85919,6 +91918,7 @@ }, "Device.IoTCapability.{i}.MultiLevelSensor.": { "type": "object", + "version": "2.13", "protocols": [ "usp" ], @@ -85928,6 +91928,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "usp" ], @@ -85941,6 +91942,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "usp" ], @@ -85955,6 +91957,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "usp" ], @@ -85969,6 +91972,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "usp" ], @@ -85983,6 +91987,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.13", "protocols": [ "usp" ], @@ -85992,6 +91997,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "usp" ], @@ -86000,6 +92006,7 @@ }, "Device.IoTCapability.{i}.EnumSensor.": { "type": "object", + "version": "2.13", "protocols": [ "usp" ], @@ -86009,6 +92016,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "usp" ], @@ -86018,6 +92026,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "usp" ], @@ -86032,6 +92041,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "usp" ], @@ -86041,6 +92051,7 @@ "type": "dateTime", "read": true, "write": false, + "version": "2.13", "protocols": [ "usp" ], @@ -86050,6 +92061,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "usp" ], @@ -86066,6 +92078,7 @@ }, "Device.Node.{i}.": { "type": "object", + "version": "2.13", "protocols": [ "usp" ], @@ -86078,6 +92091,7 @@ "type": "string", "read": true, "write": true, + "version": "2.13", "protocols": [ "usp" ], @@ -86092,6 +92106,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "usp" ], @@ -86101,6 +92116,7 @@ "type": "string", "read": true, "write": false, + "version": "2.13", "protocols": [ "usp" ], diff --git a/gitlab-ci/shared.sh b/gitlab-ci/shared.sh index 5af3a6d8..a648a7b3 100755 --- a/gitlab-ci/shared.sh +++ b/gitlab-ci/shared.sh @@ -21,6 +21,17 @@ function exec_cmd() fi } +function exec_cmd_verbose() +{ + echo "executing $@" + $@ + + if [ $? -ne 0 ]; then + echo "Failed to execute $@" + exit 1 + fi +} + function install_libbbf() { COV_CFLAGS='-fprofile-arcs -ftest-coverage' diff --git a/gitlab-ci/tools-test.sh b/gitlab-ci/tools-test.sh new file mode 100755 index 00000000..df0800da --- /dev/null +++ b/gitlab-ci/tools-test.sh @@ -0,0 +1,78 @@ +#!/bin/bash + +echo "Verification of BBF Tools" +pwd +source ./gitlab-ci/shared.sh + +# install required packages +exec_cmd apt update +exec_cmd apt install -y python3-pip +exec_cmd apt install -y libxml2-utils +exec_cmd pip3 install jsonschema +exec_cmd pip3 install xlwt +exec_cmd pip3 install pylint + +echo "Validating PEP8 syntax on tools" +exec_cmd_verbose pylint -d R,C,W0603 tools/*.py + +echo "********* Validate JSON Plugin *********" + +echo "Validate BBF TR-181 JSON Plugin" +./test/tools/validate_json_plugin.py dmtree/json/tr181.json +check_ret $? + +echo "Validate BBF TR-104 JSON Plugin" +./test/tools/validate_json_plugin.py dmtree/json/tr104.json +check_ret $? + +echo "Validate BBF TR-135 JSON Plugin" +./test/tools/validate_json_plugin.py dmtree/json/tr135.json +check_ret $? + +echo "Validate X_IOPSYS_EU_Dropbear JSON Plugin" +./test/tools/validate_json_plugin.py test/files/etc/bbfdm/json/X_IOPSYS_EU_Dropbear.json +check_ret $? + +echo "Validate UserInterface JSON Plugin" +./test/tools/validate_json_plugin.py test/files/etc/bbfdm/json/UserInterface.json +check_ret $? + +echo "Validate TR-181 JSON Plugin afetr generating from XML" +json_path=$(./tools/convert_dm_xml_to_json.py test/tools/tr-181-2-14-1-cwmp-full.xml test/tools/tr-181-2-14-1-usp-full.xml Device.) +./test/tools/validate_json_plugin.py $json_path +check_ret $? + +echo "Validate TR-104 JSON Plugin after generating from XML" +json_path=$(./tools/convert_dm_xml_to_json.py test/tools/tr-104-2-0-2-cwmp-full.xml test/tools/tr-104-2-0-2-usp-full.xml Device.Services.VoiceService.) +./test/tools/validate_json_plugin.py $json_path +check_ret $? + +echo "Validate TR-135 JSON Plugin after generating from XML" +json_path=$(./tools/convert_dm_xml_to_json.py test/tools/tr-135-1-4-1-cwmp-full.xml test/tools/tr-135-1-4-1-usp-full.xml Device.Services.STBService.) +./test/tools/validate_json_plugin.py $json_path +check_ret $? + + +echo "********* Validate XML File *********" + +cd tools +./generate_dm.py tools_input.json +check_ret $? + +echo "Check if the required tools are generated" +[ ! -f "out/datamodel.xls" ] && echo "Excel file doesn't exist" && exit 1 +[ ! -f "out/datamodel_hdm.xml" ] && echo "XML file with HDM format doesn't exist" && exit 1 +[ ! -f "out/datamodel_default.xml" ] && echo "XML file with BBF format doesn't exist" && exit 1 + +cd .. + +xmllint --schema test/tools/cwmp-datamodel-1-8.xsd tools/out/datamodel_default.xml --noout +#check_ret $? ## Need to be reviewed to remove all duplicate key-sequence + +echo "********* Validate C File *********" + +## TODO + +date +%s > timestamp.log + +echo "Tools Test :: PASS" diff --git a/test/tools/cwmp-datamodel-1-8.xsd b/test/tools/cwmp-datamodel-1-8.xsd new file mode 100644 index 00000000..086e4907 --- /dev/null +++ b/test/tools/cwmp-datamodel-1-8.xsd @@ -0,0 +1,1983 @@ + + + + + + + + + + + + +]> + + + + + + Abbreviation item ID; SHOULD uniquely identify this item across all instance documents. + + + + + + Parameter active notify support. + + + + + + + + + + + Built-in or derived type name. + + + + + + Type of argument parameter default. + + + + + Default if argument parameter isn't supported. + + + + + + + Bibliographic reference ID; SHOULD uniquely identify this reference across all instance documents. +For BBF DM Instances, the bibliographic reference ID rules specified in A.2.4 MUST be used. For example, to reference TR-106 Issue 1 Amendment 2, the value of this attribute would be TR-106a2. + + + + + + Built-in type name. +The type hierarchy is as for XML Schema, with "any" and "base64" mapping to the "anySimpleType" and "base64Binary" XML Schema types respectively. + + + + + + + + + + + + + + + + + + + Command name (maximum length 256); the same as xs:NCName except that dots are not permitted and it's terminated with a "()". This name MUST in addition follow the vendor-specific parameter name requirements of section 3.3. + A command name SHOULD NOT start with an underscore or include any hyphens. + In BBF standards, a command name MUST NOT start with an underscore or include any hyphens. + + + + + + + + + Component name; the same as xs:NCName except that dots are not permitted. +A component which has a name beginning with an underscore is internal and cannot be imported by another DM Instance. +In BBF standards, a component name MUST NOT include any hyphens. + + + + + + + + Data type name; the same as xs:NCName except that cannot start with lower-case letter (to avoid conflict with built-in data type names) and dots are not permitted. +A data type which has a name beginning with an underscore is internal and cannot be imported by another DM Instance. +In BBF standards, a data type name MUST NOT include any hyphens. + + + + + + + + Description action. + + + + + + + + + + + Event name (maximum length 256); the same as xs:NCName except that dots are not permitted and it's terminated with a "!". This name MUST in addition follow the vendor-specific parameter name requirements of section 3.3. + An event name SHOULD NOT start with an underscore or include any hyphens. + In BBF standards, an event name MUST NOT start with an underscore or include any hyphens. + + + + + + + + + Glossary item ID; SHOULD uniquely identify this item across all instance documents. + + + + + + Nested list escaping requirements. See section 3.2.3. + + + + + MUST escape inner comma separators. + + + + + MAY escape inner comma separators; MAY use bracketed nested list syntax. + + + + + MUST use bracketed nested list syntax. + + + + + + + Positive integer or "unbounded". + + + + + + + + + + + + Model name, including major and minor versions. The name part is the same as xs:NCName except that dots are not permitted. +A model which has a name beginning with an underscore is internal and cannot be imported by another DM Instance. +In BBF standards, a model name MUST NOT include any hyphens. + + + + + + + + List of model names. + + + + + + Indicates whether an object is mountable or a mount point. Mountable objects MUST be top-level children of the Root Object (other objects are not permitted to be mounted). + + + + + + + + + + Object name (maximum length 256). Each component is the same as xs:NCName except that dots are not permitted. This name MUST in addition follow the vendor-specific object name requirements of section 3.3. +An object name component SHOULD NOT start with an underscore or include any hyphens. +In BBF standards, an object name component MUST NOT start with an underscore or include any hyphens. + + + + + + + + + Object path that cannot contain "{i}" placeholders and that therefore references a single object. The path MUST follow the requirements of A.2.3.4 (its scope will typically be specified via an attribute of type PathScope). + + + + + + + + Object path that can contain "{i}" placeholders and that can therefore references multiple objects. The path MUST follow the requirements of A.2.3.4 (its scope will typically be specified via an attribute of type PathScope). + + + + + + + + List of object paths, each of which can contain "{i}" placeholders. + + + + + + Opaque ID. + + + + + + + + Type of model parameter default. + + + + + Default from standard, e.g. RFC. Also applies on object creation. + + + + + Default on object creation. + + + + + Informational default that is likely after a reset or if no other value is available. + + + + + + + Parameter name (maximum length 256); the same as xs:NCName except that dots are not permitted. This name MUST in addition follow the vendor-specific parameter name requirements of section 3.3. +A parameter name SHOULD NOT start with an underscore or include any hyphens. +In BBF standards, a parameter name MUST NOT start with an underscore or include any hyphens. + + + + + + + + + Parameter path that cannot contain "{i}" placeholders and that therefore references a single parameter. The path MUST follow the requirements of A.2.3.4 (its scope will typically be specified via an attribute of type PathScope). + + + + + + + + Object / parameter path name scope (A.2.3.4). + + + + + + + + + + Profile name, including version. The name part is the same as xs:NCName except that dots are not permitted. +A profile name SHOULD NOT start with an underscore or include any hyphens. +In BBF standards, a profile name MUST NOT start with an underscore or include any hyphens. + + + + + + + + List of profile names. + + + + + + Object access (within profile). + + + + + + + + + + + + Read-write access. + + + + + + + + + + Parameter access options. + + + + + + + + + + + Reference type (A.2.3.6). + + + + + + + + + Item status (applies to most types of item). + + + + + + + + + + + Base string (can't have leading or trailing whitespace). + + + + + + + + + + + (Reference) target type (used in path references). + + + + + + + + + + + + + Relative parameter path name that cannot contain "{i}" placeholders and that therefore represents a valid uniqueKey parameter name. + + + + + + + + Units string. + + + + + + + + Universally Unique IDentifier (see RFC 4122). + + + + + + + + Version (major.minor) or (major.minor.patch) in which this item was first defined. + + + + + + + + + + + + If true, the parameter MUST be present. + + + + + + + + + MUST be specified for a table in which the Controller can create entries and which has one or more uniqueKey elements that define functional keys. + + + + + MUST be specified for a table with a variable number of entries, i.e. for which maxEntries is greater than minEntries ("unbounded" is regarded as being greater than all values). + + + + + + + + All built-in data types. + + + + + + + + + Length is that of the actual string, not the base64-encoded string. See A.2.3.3. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Length is that of the actual string, not the hexBinary-encoded string. See A.2.3.3. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + All facets. + + + + + Size facets, taken together, define the valid size ranges, e.g. (0:0) and (6:6) mean that the size has to be 0 or 6. +The size facet MUST NOT be specified for non-string data types, i.e. data types that are not derived from base64, hexBinary or string. + + + + + InstanceRef facets specify how a parameter can reference an object instance (table row) via its instance number. +The instanceRef facet MUST NOT be specified for data types that are not derived from int or unsignedInt. + + + + + PathRef facets specify how a parameter can reference a parameter or object via its path name. +The pathRef facet MUST NOT be specified for data types that are not derived from string. + + + + + Decimal range facets, taken together, define the valid value ranges, e.g. [-1:-1] and [2.6:63.7] mean that the value has to be -1 or between 2.6:63.7 inclusive (it cannot be 0). +The decimal range facet MUST NOT be specified for non-decimal data types, i.e. data types that are not derived from decimal types. + + + + + Range facets taken together, define the valid value ranges with an optional step value, e.g. [-1:-1] and [1:4094] mean that the value has to be -1 or 1:4094 (it cannot be 0), [2:1024 step 2] mean all even values between 2 and 1024 inclusive. +The range facet MUST NOT be specified for non-numeric data types, i.e. data types that are not derived from one of the integer types. + + + + + Enumeration facets, taken together, define the valid values, e.g. "a" and "b" mean that the value has to be a or b. +The enumeration facet MUST NOT be specified for data types that are not derived from string. +Derived types MAY add additional enumeration values. See A.2.5. + + + + + EnumerationRef facets allow a parameter's valid values to be obtained from another parameter. +The enumerationRef facet MUST NOT be specified for data types that are not derived from string. + + + + + Pattern attributes, taken together, define valid patterns, e.g. "" and "[0-9A-Fa-f]{6}" means that the value has to be empty or a 6 digit hex string. +The pattern facet MUST NOT be specified for data types that are not derived from string. +Pattern syntax is the same as for XML Schema regular expressions. See https://www.w3.org/TR/xmlschema-2/#regexs. + + + + + Multiple units facets MUST NOT be specified. +The units facet MUST NOT be specified for data types that are not numeric, i.e. data types that are not derived from one of the integer types. + + + + + + + + Abbreviations definition. + + + + + + + + + The description of the item. + + + + + + + Uniquely identifies the item (this is checked by schema validation). Can be referenced from descriptions by using the {{abbref}} template. See A.2.2.4. + + + + + + + + + + Argument parameter default facet. + + + + + + + Value MUST be valid for the data type. + + + + + + + + Argument parameter syntax specification. + + + + + + + + + + + + Base facet (access, status and optional attributes). + + + + + + + + + + + Base Parameter definition and reference. + + + + + + + MUST be unique within the parent object (this is checked by schema validation). +MUST be present if and only if defining a new parameter. + + + + + MUST be present if and only if modifying an existing parameter. + + + + + + + + + + Base Object definition and reference. + + + + + + MUST NOT be present if the object is not a table (see maxEntries). +The parameters referenced by each unique key element MUST constitute a unique key. +All of the referenced parameters MUST be single-valued (i.e. not list-valued). +For a non-functional key, or if the table has no enableParameter, the uniqueness requirement always applies. +For a functional key, and if the table has an enableParameter, the uniqueness requirement applies only to enabled table entries. + + + + + + + + + + + + Indicates whether this is a functional (true) or non-functional (false) key. + + + + + + + + + + + + MUST be unique within the component or model (this is checked by schema validation). +MUST be present if and only if defining a new object. +If the object is a table (see maxEntries), the final part of the name MUST be "{i}.". + + + + + MUST be present if and only if modifying an existing object. + + + + + minEntries MUST be less than or equal to maxEntries (all values are regarded as being less than "unbounded"). + + + + + minEntries and maxEntries indicate whether the object is a table: +* minEntries=0, maxEntries=1 : single-instance object which might not be allowed to exist, e.g. because only one of it and another object can exist at the same time +* minEntries=1, maxEntries=1 : single-instance object that is always allowed to exist +* all other cases : object is a table + + + + + + + + MUST be present and specified for all single-instance objects which are part of a union and point to the same parameter specifying the name of the object which is currently in use, i.e. only one object which is part of a union can exist at the same time. + + + + + + + Base facet (status attribute). + + + + + + + + + + + + Base parameter syntax specification (omits defaults). + + + + + + For lists, the TR-069 parameter is always a string and the data type specification applies to individual list items, not to the parameter value. + See section 3.2 for comma-separated list formatting rules. + + + + + + + Direct use of built-in data type, possibly modified via use of facets. + + + + + Use of named data type, possibly modified via use of facets. + + + + + + + + + + + + + + + If true, MUST always read back as the null value for the parameter's base data type (A.2.3.5). + + + + + If true, setting this parameter triggers an Agent action. Such a parameter is not part of the device configuration and MUST always read back as the null value for the parameter's base data type (A.2.3.5). + + + + + + + Bibliography definition. + + + + + + + + + Bibliography reference definition. + + + + + Name by which the referenced document is usually known, e.g. TR-069, RFC 2863. + + + + + + Organization that published the referenced document, e.g. BBF, IEEE, IETF. + + + + + Document category, e.g. TR (BBF), RFC (IETF). + + + + + Publication date. + + + + + + + + + + Uniquely identifies the reference (this is checked by schema validation). Can be referenced from descriptions by using the {{bibref}} template. See A.2.2.4. + + + + + + + Command Arguments (input or output) definition and reference. + + + + + + + + + + + + + + + Command Object definition and reference. + + + + + + + + + + + + Command Parameter definition and reference. + + + + + + + + + + + + + + Component definition. + + + + + + + + + + + + + + + + + + + + + + + MUST be unique within the document, including imported components (this is checked by schema validation). + + + + + + + + + + Component Object definition and reference. + + + + + + + + + + + + + + + + + + + Component Parameter definition and reference. + + + + + + + + + + Component reference. + + + + Name of component to be referenced (included). + + + + + If specified, is relative path between point of reference (inclusion) and the component's items. If not specified, behavior is as if an empty relative path was specified. + + + + + + + Parameter data type definition. + + + + + + + + + + Facets MUST NOT be specified if the base attribute is omitted. + + + + + A built-in data type element MUST NOT be specified if the base attribute is present. +See tns:AllFacets for notes and requirements on individual facets. + + + + + + + + MUST be unique within the document, including imported data types (this is checked by schema validation). +Cannot begin with a lower-case letter, in order to avoid confusion with built-in data types. + + + + + MUST be present if and only if deriving from a non-built-in data type. See A.2.3.1. + + + + + + + + + + Parameter data type reference or anonymous restriction / extension. + + + + + + + + If specified, content MUST be empty. + + + + + If specified, content MUST NOT be empty. + + + + + + + Description: free text which MAY contain a limited amount of mediawiki-like markup as specified in A.2.2. For example, use "*" at the start of a line to indicate a bulleted list. +To avoid confusion, the description SHOULD NOT contain tab characters. + + + + + + This MUST be specified when the description modifies that of a previously defined item. +Specify "prefix" to prefix to the previous description, "append" to append to the previous description, or "replace" to replace the previous description. + + + + + + + + + DescriptionTemplate: free text with a length up to 256 characters, which can be added in multiple descriptions and MAY contain a limited amount of mediawiki-like markup as +specified in A.2.2 (same restrictions as tns:Description type + + + + + + + + + + Enumeration facet. + + + + + + + + + + + Enumeration reference facet. + + + + + + MUST reference a list-valued parameter. + + + + + Specifies the point in the naming hierarchy relative to which targetParam applies (A.2.3.4). + + + + + Specifies the value that indicates that none of the values of the referenced parameter currently apply. + + + + + + + + Event Object definition and reference. + + + + + + + + + + + + Event Parameter definition and reference. + + + + + + + + + + + + + + Glossary definition. + + + + + + + + + The description of the item. + + + + + + + Uniquely identifies the item (this is checked by schema validation). Can be referenced from descriptions by using the {{gloref}} template. See A.2.2.4. + + + + + + + + + + Import data types, components and models (Root and Service Objects) from external documents. All such items MUST be imported (this is checked by schema validation). +The optional ref attribute MAY be used in order to avoid name conflicts between imported and locally-defined items. + + + + + + + + + If omitted, data type is known by the same name in both this and the referenced document. + + + + + + + + + + If omitted, component is known by the same name in both this and the referenced document. + + + + + + + + + + If omitted, model is known by the same name in both this and the referenced document. + + + + + + + + + + MUST be used to locate the DM Instance (A.2.1). + + + + + If specified, processing tools MUST regard a mismatch between this and the external document's spec attribute as an error. + + + + + + + Instance number reference facet. + + + + + + Specifies the type of reference (A.2.3.6). + + + + + MUST reference a multi-instance object (table) (A.2.3.4). + + + + + Specifies the point in the naming hierarchy relative to which targetParent applies (A.2.3.4). + + + + + + + + List facet. + + + + + + + + This specifies the size of the TR-069 list-valued parameter, not of the individual list items. + + + + + + + + + + + + + Model (Root or Service Object) definition and reference. + + + + + + + + + + + + + + + + + + + + + MUST be unique within the document, including imported models (this is checked by schema validation). + + + + + MUST be present if and only if extending an existing model. See A.2.10. + + + + + + + + + + + Model Command definition and reference. + + + + + + + + + + MUST be unique within the component, model or object (this is checked by schema validation). +MUST be present if and only if defining a new command. + + + + + MUST be present if and only if modifying an existing command. + + + + + + + + + + + Model parameter default facet. + + + + + + + Value MUST be valid for the data type. + + + + + + + + Model Event definition and reference. + + + + + + + + + + + + + MUST be unique within the component, model or object (this is checked by schema validation). +MUST be present if and only if defining a new event. + + + + + MUST be present if and only if modifying an existing event. + + + + + + + + + + Model Object definition and reference. See A.2.8.1 for details of how tables are represented. + + + + + + + + + + + + + + + + + + + Model Parameter definition and reference. + + + + + + + + + + + + + + + + Model parameter syntax specification. + + + + + + + + + + + + Path name reference facet. + + + + + + Specifies the type of reference (A.2.3.6). + + + + + If the list is non-empty, this parameter MUST only reference immediate children of matching objects (A.2.3.4). + + + + + Specifies the point in the naming hierarchy relative to which targetParent applies (A.2.3.4). + + + + + Specifies the type of item that can be referenced. + + + + + Specifies the valid data types for a referenced parameter. + + + + + + + + Pattern facet (pattern syntax is as in XML Schema). + + + + + + + + + + Profile definition and reference. + + + + + If the extends attribute is insufficient to express general profile requirements, any additional requirements MUST be specified here. + + + + + + + + + + + MUST be unique within the model (this is checked by schema validation). +MUST be present if and only if defining a new profile. + + + + + MUST specify base if modifying an existing profile or if the profile version is greater than 1. + + + + + MUST specify extends if the profile extends other profile(s). + + + + + MUST specify minVersion if the profile is defined in a Component. + + + + + + + + + + Profile command definition. + + + + + Any additional requirements MUST be specified here. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Profile event definition. + + + + + Any additional requirements MUST be specified here. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Profile object definition. + + + + + If the requirement attribute is insufficient to express the requirement, any additional requirements MUST be specified here and MAY override the attribute. + + + + + + + If no argument requirements are listed, this is the same as if just the mandatory arguments were listed. + If any argument requirements are given then all the mandatory arguments MUST be listed, and additional arguments MAY be listed. + + + + + If no argument requirements are listed, this is the same as if just the mandatory arguments were listed. + If any argument requirements are given then all the mandatory arguments MUST be listed, and additional arguments MAY be listed. + + + + + + + + + + + + + Profile parameter definition. + + + + + If the requirement attribute is insufficient to express the requirement, any additional requirements MUST be specified here and MAY override the attribute. + + + + + + + + + + + + Decimal range facet. + + + + + + + + + + + + + + + + + + Integer range facet with optional step. + + + + + + + + + + + + Size facet. + + + + + + + + + + + Units facet. + + + + + + + + + + + CWMP Data Model Definition XML Schema (DM Schema) instance documents can contain any or all of the following: +* Data type definitions +* Root Object definitions (including profiles) +* Service Object definitions (including profiles) +* Component definitions +* Vendor extension definitions +BBF standard DM Schema instance documents MUST use UTF-8 encoding and their character set MUST be restricted to printable characters in the Basic Latin Unicode block, i.e. to characters whose decimal ASCII representations are in the (inclusive) ranges 9-10 and 32-126. + + + + + + Top-level description. + + + + + Imported data types, components and models (Root and Service Objects). + + + + + Top-level data type definitions. + + + + + + + + + + + + + Glossary items. + + + + + Abbreviation items. + + + + + Bibliographic references. + + + + + Templates used in descriptions. + + + + + + + + + + Component definitions. + + + + + + + + + + + + + + + + + Model (Root and Service Object) definitions. + + + + + + + + + + + + + + + + + + + + URI of the associated specification document, e.g. the BBF Technical Report. This URI SHOULD uniquely identify the specification. More than one DM Schema instance document MAY reference the same specification. +Where the specification is a BBF document, the URI naming rules specified in A.2.1.1 MUST be used. For example, to reference TR-106 Issue 1 Amendment 2, the value of this attribute would be urn:broadband-forum-org:tr-106-1-2-0. + + + + + + + + + + File name (omitting directory name) of this document. +Where the specification is a BBF document, the file naming rules specified in A.2.1.1 MUST be used. For example, for the data model defined in TR-106 Issue 1 Amendment 2, the value of this attribute would be tr-106-1-2-0.xml. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/test/tools/tr-104-2-0-2-cwmp-full.xml b/test/tools/tr-104-2-0-2-cwmp-full.xml new file mode 100644 index 00000000..236ac66b --- /dev/null +++ b/test/tools/tr-104-2-0-2-cwmp-full.xml @@ -0,0 +1,11904 @@ + + + + + + {{docname|VoiceService:2.0 for CWMP}} + {{appdate|January 2020}} + {{trname|tr-104-2-0-0}} + March 2014: {{xmlref|tr-104-2-0-0|Original}} + * Original + September 2019: {{xmlref|tr-104-2-0-1-cwmp|Corrigendum 1}} + * Added USP support (split XML into common, CWMP and USP files) + January 2020: {{xmlref|tr-104-2-0-2-cwmp|Corrigendum 2}} + * Clarified meaning of SessionID and added new SIPSessionID + + + + A non-volatile handle used to reference this instance. + '''This is intended only for use in protocol-independent "common" definitions, and MUST NOT be used in protocol-specific definitions.''' + + + + + + + + A non-volatile handle used to reference this instance. Alias provides a mechanism for an ACS to label this instance for future reference. + If the CPE supports the Alias-based Addressing feature as defined in {{bibref|TR-069|3.6.1}} and described in {{bibref|TR-069|Appendix II}}, the following mandatory constraints MUST be enforced: + * Its value MUST NOT be empty. + * Its value MUST start with a letter. + * If its value is not assigned by the ACS, it MUST start with a "cpe-" prefix. + * The CPE MUST NOT change the parameter value. + + + + + + A non-volatile unique key used to reference this instance. Alias provides a mechanism for a Controller to label this instance for future reference. + The following mandatory constraints MUST be enforced: + * The value MUST NOT be empty. + * The value MUST start with a letter. + * If the value is not assigned by the Controller at creation time, the Agent MUST assign a value with an "cpe-" prefix. + The value MUST NOT change once it's been assigned. + + + + + + The value is measured in ''dBm/1000'', i.e. the value divided by 1000 is dB relative to 1 mW. For example, -12345 means -12.345 dBm, 0 means 0 dBm (1 mW) and 12345 means 12.345 dBm. + + + + + + + Indicates the availability of diagnostics data. Enumeration of: + {{enum}} + If the ACS sets the value of this parameter to {{enum|Requested}}, the CPE MUST initiate the corresponding diagnostic test. When writing, the only allowed values are {{enum|Requested}} and {{enum|Canceled}}. To ensure the use of the proper test parameters (the writable parameters in this object), the test parameters MUST be set, and any errors or inconsistencies in the test parameters MUST be detected, either prior to or at the same time as (in the same SetParameterValues) setting this parameter to {{enum|Requested}}. + When requested, the CPE SHOULD wait until after completion of the communication session with the ACS before starting the diagnostic test. + When the test is completed, the value of this parameter MUST be either {{enum|Complete}} (if the test completed successfully), or one of the ''Error'' values listed above. + If the value of this parameter is anything other than {{enum|Complete}}, the values of the results parameters for this test are indeterminate. + When the diagnostic initiated by the ACS is completed (successfully or not), but not if it is canceled for any reason, the CPE MUST establish a new connection to the ACS to allow the ACS to view the results, indicating the Event code ''8 DIAGNOSTICS COMPLETE'' in the Inform message. + After the diagnostic is complete, the value of all result parameters (all read-only parameters in this object) MUST be retained by the CPE until either this diagnostic is run again, or the CPE reboots. After a reboot, if the CPE has not retained the result parameters from the most recent test, it MUST set the value of this parameter to {{enum|None}}. + Modifying any of the writable parameters in this object except for this one MUST result in the value of this parameter being set to {{enum|None}}. + While the test is in progress, modifying any of the writable parameters in this object except for this one MUST result in the test being terminated and the value of this parameter being set to {{enum|None}}. + While the test is in progress, setting this parameter to {{enum|Requested}} (and possibly modifying other writable parameters in this object) MUST result in the test being terminated and then restarted using the current values of the test parameters. + While the test is in progress, setting this parameter to {{enum|Canceled}} MUST result in the test being canceled and the value of this parameter being set to {{enum|None}}. If the CPE does not support the {{enum|Canceled}} value, it MUST return a SPV error with "Invalid Parameter value" (9007) to the ACS instead. + + + + + + + + + + + + The IEEE EUI 64-bit identifier as defined in {{bibref|IEEE_EUI64}}. The IEEE defined 64-bit extended unique identifier (EUI-64) is a concatenation of: + * The 24-bit (OUI-24) or 36-bit (OUI-36) company_id value assigned by the IEEE Registration Authority (IEEE-RA), and + * The extension identifier (40 bits for OUI-24 or 28 bits for OUI-36) assigned by the organization with that company_id assignment. + + + + + + + + + + IP address, i.e. IPv4 address (or IPv4 subnet mask) or IPv6 address. + All IPv4 addresses and subnet masks MUST be represented as strings in IPv4 dotted-decimal notation. Here are some examples of valid IPv4 address textual representations: + * 216.52.29.100 + * 192.168.1.254 + All IPv6 addresses MUST be represented using any of the 3 standard textual representations defined in {{bibref|RFC4291}} Sections 2.2.1, 2.2.2 and 2.2.3. Both lower-case and upper-case letters can be used, but use of lower-case letters is RECOMMENDED. Here are some examples of valid IPv6 address textual representations: + * 1080:0:0:800:ba98:3210:11aa:12dd + * 1080::800:ba98:3210:11aa:12dd + * 0:0:0:0:0:0:13.1.68.3 + IPv6 addresses MUST NOT include zone identifiers. Zone identifiers are discussed in {{bibref|RFC4007|Section 6}}. + Unspecified or inapplicable addresses (or IPv4 subnet masks) MUST be represented as empty strings unless otherwise specified by the parameter definition. + + + + + + + + IPv4 address (or subnet mask). + Can be any IPv4 address that is permitted by the ''IPAddress'' data type. + + + + + + + + IPv6 address. + Can be any IPv6 address that is permitted by the ''IPAddress'' data type. + + + + + + IPv4 or IPv6 routing prefix in Classless Inter-Domain Routing (CIDR) notation {{bibref|RFC4632}}. This is specified as an IP address followed by an appended "/n" suffix, where ''n'' (the prefix size) is an integer in the range 0-32 (for IPv4) or 0-128 (for IPv6) that indicates the number of (leftmost) '1' bits of the routing prefix. + * IPv4 example: 192.168.1.0/24 + * IPv6 example: 2001:edff:fe6a:f76::/64 + If the IP address part is unspecified or inapplicable, it MUST be {{empty}} unless otherwise specified by the parameter definition. In this case the IP prefix will be of the form "/n". + If the entire IP prefix is unspecified or inapplicable, it MUST be {{empty}} unless otherwise specified by the parameter definition. + + + + + + + + IPv4 address prefix. + Can be any IPv4 prefix that is permitted by the ''IPPrefix'' data type. + + + + + + + + + IPv6 address prefix. + Can be any IPv6 prefix that is permitted by the ''IPPrefix'' data type. + + + + + + A JSON Object as defined in {{bibref|RFC7159|Section 4}}. + + + + + + + All MAC addresses are represented as strings of 12 hexadecimal digits (digits 0-9, letters A-F or a-f) displayed as six pairs of digits separated by colons. Unspecified or inapplicable MAC addresses MUST be represented as empty strings unless otherwise specified by the parameter definition. + + + + + + + + + + A 32-bit statistics parameter, e.g. a byte counter. + This data type SHOULD NOT be used for statistics parameters whose values might become greater than the maximum value that can be represented as an ''unsignedInt'' (i.e. 0xffffffff, referred to below as ''maxval''). ''StatsCounter64'' SHOULD be used for such parameters. + The value ''maxval'' indicates that no data is available for this parameter. In the unlikely event that the actual value of the statistic is ''maxval'', the CPE SHOULD return ''maxval - 1''. + The actual value of the statistic might be greater than ''maxval''. Such values SHOULD wrap around through zero. + The term ''packet'' is to be interpreted as the transmission unit appropriate to the protocol layer in question, e.g. an IP packet or an Ethernet frame. + + + + + + + A 64-bit statistics parameter, e.g. a byte counter. + This data type SHOULD be used for all statistics parameters whose values might become greater than the maximum value that can be represented as an ''unsignedInt''. + The maximum value that can be represented as an ''unsignedLong'' (i.e. 0xffffffffffffffff) indicates that no data is available for this parameter. + The term ''packet'' is to be interpreted as the transmission unit appropriate to the protocol layer in question, e.g. an IP packet or an Ethernet frame. + + + + + + + Universally Unique Identifier. See {{bibref|RFC4122}}. + + + + + + + + + Uniform Resource Identifier. See {{bibref|RFC3986}}. + + + + + + + + Uniform Resource Name. See {{bibref|RFC3986}} (URI) and {{bibref|RFC8141}} (''urn'' URI scheme). + + + + + + + Uniform Resource Locator. See {{bibref|RFC3986}} (URI), {{bibref|IANA-uri-schemes}}, and individual URI scheme RFCs such as {{bibref|RFC7252}} (''coap'', ''coaps'') and {{bibref|RFC7230}} (''http'', ''https''). + + + + + + The ZigBee 16-bit network address (NWK) as defined in {{bibref|ZigBee2007}}. The address is assigned to a device by the network layer and used by the network layer for routing messages between devices. + + + + + + + + + + A non-volatile handle used to reference this instance. Alias provides a mechanism for an ACS to label this instance for future reference. + If the CPE supports the Alias-based Addressing feature as defined in {{bibref|TR-069|3.6.1}} and described in {{bibref|TR-069|Appendix II}}, the following mandatory constraints MUST be enforced: + * Its value MUST NOT be empty. + * Its value MUST start with a letter. + * If its value is not assigned by the ACS, it MUST start with a "cpe-" prefix. + * The CPE MUST NOT change the parameter value. + + + + + + 3GPP TS 24.229 + IP Multimedia Call Control Protocol based on Session Initiation Protocol (SIP) and Session Description Protocol (SDP); Stage 3 + 3GPP CT WG1 + Technical specification + https://www.3gpp.org/ftp/Specs/html-info/24229.htm + + + IEEE Std 802.1D-2004 + Media Access Control (MAC) Bridges + IEEE + 2004 + https://standards.ieee.org/getieee802/download/802.1D-2004.pdf + + + IEEE Std 802.1Q-2005 + Virtual Bridged Local Area Networks + IEEE + 2006 + https://standards.ieee.org/getieee802/download/802.1Q-2005.pdf + + + ETSI EN 300 444 + Digital Enhanced Cordless Telecommunications (DECT); Generic Access Profile (GAP) + ETSI + Standard + https://www.etsi.org/deliver/etsi_en/300400_300499/300444/02.04.01_60/en_300444v020401p.pdf + + + ETSI EN 300 175-05 + Digital Enhanced Cordless Telecommunications (DECT); Common Interface (CI); Part 5: Network (NWK) layer + ETSI + Standard + https://www.etsi.org/deliver/etsi_en/300100_300199/30017505/02.05.01_60/en_30017505v020501p.pdf + + + ETSI EN 300 175-6 + Digital Enhanced Cordless Telecommunications (DECT); Common Interface (CI); Part 6: Identities and addressing + ETSI + Standard + https://www.etsi.org/deliver/etsi_en/300100_300199/30017506/02.05.01_60/en_30017506v020501p.pdf + + + ETSI 300 175-7 + Digital Enhanced Cordless Telecommunications (DECT); Common Interface (CI); Part 7: Security features + ETSI + Standard + https://www.etsi.org/deliver/etsi_en/300100_300199/30017507/02.05.01_60/en_30017507v020501p.pdf + + + ETSI 300 175-8 + Digital Enhanced Cordless Telecommunications (DECT); Common Interface (CI); Part 8: Speech and audio coding and transmission + ETSI + Standard + https://www.etsi.org/deliver/etsi_en/300100_300199/30017508/02.05.01_60/en_30017508v020501p.pdf + + + ETSI ES 201 970 + Access and Terminals (AT); Public Switched Telephone Network (PSTN); Harmonized specification of physical and electrical characteristics at a 2-wire analogue presented Network Termination Point (NTP) + ETSI + Standard + https://www.etsi.org/deliver/etsi_es/201900_201999/201970/01.01.01_60/es_201970v010101p.pdf + + + ETSI ES 203 021 + Access and Terminals (AT); Harmonized basic attachment requirements for Terminals for connection to analogue interfaces of the Telephone Networks + ETSI + Standard + https://www.etsi.org/WebSite/Technologies/analogueline.aspx + + + ETSI TR 101 183 + Public Switched Telephone Network (PSTN); Analogue ringing signals + ETSI + Technical Report + https://www.etsi.org/deliver/etsi_tr/101100_101199/101183/01.01.01_60/tr_101183v010101p.pdf + + + ETSI TS 102 527-1 + Digital Enhanced Cordless Telecommunications (DECT); New Generation DECT; Part 1: Wideband speech + ETSI + Technical Specification + https://www.etsi.org/deliver/etsi_ts/102500_102599/10252701/01.03.01_60/ts_10252701v010301p.pdf + + + ETSI TS 102 527-3 + Digital Enhanced Cordless Telecommunications (DECT); New Generation DECT; Part 3: Extended wideband speech services + ETSI + Technical Specification + https://www.etsi.org/deliver/etsi_ts/102500_102599/10252703/01.05.01_60/ts_10252703v010501p.pdf + + + ETSI TS 102 527-4 + Digital Enhanced Cordless Telecommunications (DECT); New Generation DECT; Part 4: Light Data Services; Software Update Over The Air (SUOTA), content downloading and HTTP based applications + ETSI + Technical Specification + https://www.etsi.org/deliver/etsi_ts/102500_102599/10252704/01.01.01_60/ts_10252704v010101p.pdf + + + ETSI TS 102 527-5 + Digital Enhanced Cordless Telecommunications (DECT); New Generation DECT; Part 5: Additional feature set nr. 1 for extended wideband speech services + ETSI + Technical Specification + https://www.etsi.org/deliver/etsi_ts/102500_102599/10252705/01.01.01_60/ts_10252705v010101p.pdf + + + ETSI TS 181 019 + Telecommunications and Internet converged Services and Protocols for Advanced Networking (TISPAN) + ETSI + Standard + https://www.etsi.org/deliver/etsi_ts/181000_181099/181019/02.00.00_60/ts_181019v020000p.pdf + + + H.323 + Packet-based multimedia communications systems + ITU-T + H series + https://www.itu.int/rec/T-REC-H.323-200912-I + + + H.235.1 + H.323 security framework: Baseline security profile + ITU-T + H series + https://www.itu.int/rec/T-REC-H.235.1 + + + I.251.1 + Number identification supplementary services : Direct-dialling-In + ITU-T + I series + https://www.itu.int/rec/T-REC-I.251.1 + + + I.251.2 + Number identification supplementary services : Multiple Subscriber Number + ITU-T + I series + https://www.itu.int/rec/T-REC-I.251.2 + + + I.251.7 + Number identification supplementary services : Malicious call Identification + ITU-T + I series + https://www.itu.int/rec/T-REC-I.251.7 + + + I.252.7 + Call offering supplementary services : Explicit call transfer + ITU-T + I series + https://www.itu.int/rec/T-REC-I.252.7 + + + I.256.2a + Charging supplementary services : Advice of charge: charging information at call set-up time (AOC-S) + ITU-T + I series + https://www.itu.int/rec/T-REC-I.256.2a + + + I.256.2c + Charging supplementary services : Advice of charge: charging information at the end of the call (AOC-E) + ITU-T + I series + https://www.itu.int/rec/T-REC-I.256.2c + + + I.256.2b + Charging supplementary services : Advice of charge: charging information during the call (AOC-D) + ITU-T + I series + https://www.itu.int/rec/T-REC-I.256.2b + + + IANA SIP Event packages and Event-template packages Registry + Session Initiation Protocol (SIP) Event Types Namespace + IANA + https://www.iana.org/assignments/sip-events/sip-events.xhtml#sip-events-2 + + + IANA SIP Methods Registry + Session Initiation Protocol (SIP) Parameters : Methods and Response Codes + IANA + https://www.iana.org/assignments/sip-parameters/sip-parameters.xhtml#sip-parameters-6 + + + ISO 3166-1 + Codes for the representation of names of countries and their subdivisions - Part 1: Country codes + ISO + 2006 + https://www.iso.org/iso/country_codes.htm + + + Q.931 + ISDN user-network interface layer 3 specification for basic call control. + ITU-T + Q series + https://www.itu.int/rec/T-REC-Q.931 + + + RFC 2198 + RTP Payload for Redundant Audio Data + IETF + RFC + https://tools.ietf.org/html/rfc2198 + + + RFC 2782 + A DNS RR for specifying the location of services (DNS SRV) + IETF + RFC + 2000 + https://tools.ietf.org/html/rfc2782 + + + RFC 3261 + SIP: Session Initiation Protocol + IETF + RFC + June 2002 + https://tools.ietf.org/html/rfc3261 + + + RFC 3435 + Media Gateway Control Protocol (MGCP) Version 1.0 + IETF + RFC + https://tools.ietf.org/html/rfc3435 + + + RFC 3550 + RTP: A Transport Protocol for Real-Time Applications + IETF + RFC + July 2003 + https://tools.ietf.org/html/rfc3550 + + + RFC 3611 + RTP Control Protocol Extended Reports (RTCP XR) + IETF + RFC + https://tools.ietf.org/html/rfc3611 + + + RFC 4733 + RTP Payload for DTMF Digits, Telephony Tones and Telephony Signals + IETF + RFC + https://tools.ietf.org/html/rfc4733 + + + RFC 6140 + Registration for Multiple Phone Numbers in the Session Initiation Protocol (SIP) + IETF + RFC + https://tools.ietf.org/html/rfc6140 + + + Simple Object Access Protocol (SOAP) 1.1 + W3C + https://www.w3.org/TR/2000/NOTE-SOAP-20000508 + + + T.38 + Procedures for real-time Group 3 facsimile communication over IP networks. + ITU-T + T series + https://www.itu.int/rec/T-REC-T.38-201009-I + + + TR-069 Amendment 4 + CPE WAN Management Protocol + Broadband Forum + Technical Report + July 2011 + https://www.broadband-forum.org/technical/download/TR-069_Amendment-4.pdf + + + TR-104 Issue 2 + Provisioning Parameters for VoIP CPE + Broadband Forum + Technical Report + March 2014 + https://www.broadband-forum.org/technical/download/TR-104_Issue-2.pdf + + + TR-106 Amendment 8 + Data Model Template for CWMP Endpoints and USP Agents + Broadband Forum + Technical Report + May 2018 + https://www.broadband-forum.org/technical/download/TR-106.pdf + + + TR-106 Amendment 2 + Data Model Template for TR-069-Enabled Devices + Broadband Forum + Technical Report + November 2008 + https://www.broadband-forum.org/technical/download/TR-106_Amendment-2.pdf + + + TR-106 Amendment 7 + Data Model Template for TR-069-Enabled Devices + Broadband Forum + Technical Report + September 2013 + https://www.broadband-forum.org/technical/download/TR-106_Amendment-7.pdf + + + TR-106 Amendment 8 + Data Model Template for CWMP Endpoints and USP Agents + Broadband Forum + Technical Report + May 2018 + https://www.broadband-forum.org/technical/download/TR-106_Amendment-8.pdf + + + Y.1540 + IP packet transfer and availability performance parameters + ITU-T + Y series + https://www.itu.int/rec/T-REC-Y.1540 + + + + + + {{numentries}} + + + + + + + + The top-level object for CPE with voice capabilities. + + + + + + + {{datatype|expand}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + The value MUST be less than or equal to {{param|.Capabilities.MaxCallLogCount}}. + + + + + + + + {{numentries}} + + + + + + + + + The overall capabilities of the VoIP CPE. + + + + Maximum total number of {{object|.CallControl.Line}} objects supported. + A value of -1 indicates no specific limit on the number of lines. + + + + + + + + + + Maximum total number of {{object|.CallControl.Extension}} objects supported. + A value of -1 indicates no specific limit on the number of extensions. + + + + + + + + + + Maximum total number of {{object|.CallLog}} objects supported. + A value of -1 indicates no specific limit on the number of call logs. + + + + + + + + + + Maximum number of voice sessions supported for any given {{object|.CallControl.Line}} object. A value greater than one indicates support for CPE-provided conference calling. + A value of -1 indicates no specific limit on the number of voice sessions per line. + + + + + + + + + + Maximum number of voice sessions supported for any given {{object|.CallControl.Extension}} object. A value greater than one indicates support for CPE-provided conference calling. + A value of -1 indicates no specific limit on the number of voice sessions per extension. + + + + + + + + + + Maximum total number of voice sessions supported across all {{object|.CallControl.Line}} objects. (This might differ from {{param|MaxLineCount}} if each line can support more than one session for CPE-provided conference calling. This value MAY be less than the product of {{param|MaxLineCount}} and {{param|MaxSessionsPerLine}}.) + A value of -1 indicates no specific limit on the number of voice sessions. + + + + + + + + + + {{list}} Each item is a supported network connection mode. {{pattern}} + Most entries MAY be appended with a version indicator in the form "/X.Y". For example: + "SIP/2.0" + The list MAY include vendor-specific modes, which MUST be in the format defined in {{bibref|TR-106}}. For example: + "X_EXAMPLE-COM_MyMode" + + + + + + + + + + + + + + + + + + {{list}} Each item is a supported user connection mode. {{pattern}} + Most entries MAY be appended with a version indicator in the form "/X.Y". For example: + "SIP/2.0" + The list MAY include vendor-specific modes, which MUST be in the format defined in {{bibref|TR-106}}. For example: + "X_EXAMPLE-COM_MyMode" + + + + + + + + + + + + + + + + + {{list}} Each item is a supported tone file format. The specified file formats are raw codec data files, using one of the codecs listed below. {{enum}} + The list MAY include vendor-specific -specific extensions, which MUST use the format defined in {{bibref|TR-106}}. + Example: + "G.711MuLaw, MP3, X_EXAMPLE-COM_MyFileFormat" + If the CPE does not support tone files, this parameter MUST be {{empty}}. + + + + + + + + + + + + + + + + {{list}} Each item is a supported ring file format. {{enum}} + The list MAY include vendor-specific-specific extensions, which MUST use the format defined in {{bibref|TR-106}}. + Example: + "MIDI, AMR, X_EXAMPLE-COM_MyFileFormat" + If the CPE does not support ring files, this parameter MUST be {{empty}}. + + + + + + + + MMF + + + + + RTTTL or RTX + + + + + + + + + + + The facility actions supported by this VoiceService. {{enum}} + The list MAY include vendor-specific Facility Actions, which MUST use the format defined in {{bibref|TR-106}}. + Facility Actions are referenced in the VoiceService data model in the objects {{object|.CallControl.NumberingPlan.{i}.PrefixInfo.{i}.}} and {{object|.Terminal.{i}.ButtonMap.Button.{i}.}}. + + + + + + + Register an "Abbreviated Address" and corresponding destination. + Abbreviated Addressing permits a user to define short numbers (within a particular range) to represent commonly used destinations. + + + + + Remove an "Abbreviated Address". + + + + + Interrogate the status of an "Abbreviated Address". + + + + + Make this call an anonymous call. + + + + + Activation of Call Completion to Busy Subscriber. + Call completion to Busy Subscriber is a facility that permits the user to request an automatic call back when a currently busy destination becomes available. + + + + + Deactivation of Call Completion to Busy Subscriber. + + + + + Interrogation of the Call Completion to Busy Subscriber status and destination. + + + + + Activation of Call Completion on No Reply. + Call completion on no reply is a facility that permits the user to request an automatic call back when activity (eg a phone call is made) is detected from a destination from which there is currently no reply. + + + + + Deactivation of Call Completion on No Reply. + + + + + Interrogation of the Call Completion on No Reply status and destination. + + + + + Register the destination for Call Forwarding on Busy. + Set the parameter {{param|.CallControl.CallingFeatures.Set.{i}.CallForwardOnBusyNumber}} of this extension. + If Call Forwarding on Busy is activated, the call will be forwarded to the specified destination if the extension is "busy". + + + + + Activate Call Forwarding on Busy to the registered destination. + + + + + Deactivate Call Forwarding on Busy to the registered destination. + + + + + Erase the registered Call Forwarding on Busy Destination. + + + + + Interrogate the registered Call Forwarding on Busy Destination. + + + + + Register the destination for Call Forwarding on No Reply. + Set the parameter {{param|.CallControl.CallingFeatures.Set.{i}.CallForwardOnNoAnswerNumber}} of this extension. + If Call Forwarding on No Reply is activated, the call will be forwarded to the specified destination if the extension does not reply before the time expires. + + + + + Activate Call Forwarding on No Reply to the registered destination. + + + + + Deactivate Call Forwarding on No Reply to the registered destination. + + + + + Erase the registered Call Forwarding on No Reply Destination. + + + + + Interrogate the registered Call Forwarding on No Reply Destination. + + + + + Set the parameter {{param|.CallControl.CallingFeatures.Set.{i}.CallForwardOnNoAnswerRingTimeout}} of this extension. + + + + + Activate Call Forwarding Timed. This facility permits the user to forward calls to particular destinations depending on the time of day : cf. table {{object|.CallControl.CallingFeatures.Set.{i}.CFT.{i}.}} + + + + + Deactivate Call Forwarding Timed. + + + + + Interrogate the status of Call Forwarding Timed. + + + + + Register the destination for Call Forwarding Unconditional. + Set the parameter {{param|.CallControl.CallingFeatures.Set.{i}.CallForwardUnconditionalNumber}} of this extension. + If Call Forwarding on Busy is activated, the call will be forwarded to the specified destination if the extension is "busy". + + + + + Activate Call Forwarding Unconditional to the registered destination. + + + + + Deactivate Call Forwarding Unconditional to the registered destination. + + + + + Erase the registered Call Forwarding Unconditional Destination. + + + + + Interrogate the registered Call Forwarding Unconditional Destination. + + + + + Activate Calling Line Identification Restriction (i.e. your calling number will be restricted). + Set the parameter {{param|.CallControl.CallingFeatures.Set.{i}.AnonymousCallEnable}} to {{true}}. + + + + + Deactivate Calling Line Identification Restriction. + + + + + Interrogate the Calling Line Identification status. + + + + + Invoke Carrier Prefix. The prefix is prepended to the destination number. The facility argument will reference the Carrier Prefix + + + + + Activate Call Waiting. + Set the parameter {{param|.CallControl.CallingFeatures.Set.{i}.CallWaitingEnable}} to {{true}}. + + + + + Deactivate Call Waiting + + + + + Used for answering a waiting call or switching between calls. + + + + + Activate Do Not Disturb on the extension. + Set the parameter {{param|.CallControl.CallingFeatures.Set.{i}.DoNotDisturbEnable}} of this extension. + Selective Ringing is a facility that permits the user to specify the generation of different ring tones depending on the calling number. + + + + + Deactivate Do Not Desturb. + + + + + Interrogate the status of Do Not Disturb. + + + + + Invoke an extension. The extension referenced in the facility argument will be used as destination instead of the line defined in {{object|.CallControl.OutgoingMap.{i}.}} + + + + + Invoke a line. The line referenced in the facility argument will be used for an outgoing call instead of the line defined in {{object|.CallControl.OutgoingMap.{i}.}}. + + + + + Invoke a mailbox. The interactive menu to listen and manipulate voicemail messages will be invoked. + + + + + Activate Outgoing Call Barring. + Outgoing call barring is a facility that permits the user to bar calls to certain destinations—usually depending on the cost of a call. + + + + + Deactivate Outgoing Call Barring. + + + + + Interrogate Outgoing Call Barring. + + + + + Switch the call to a PSTN line. + + + + + Set the password used for controlling access to the Facility Actions. + + + + + Activate Selective Call Forwarding. This facility permits the user to forward calls to different destinations depending on the calling number : cf. table {{object|.CallControl.CallingFeatures.Set.{i}.SCF.{i}.}} + + + + + Deactivate Selective Call Forwarding. + + + + + Interrogate the status of Selective Call Forwarding. + + + + + Activate Selective Call Rejection. This facility permits the user to selectively reject calls depending on the calling number : cf. table {{object|.CallControl.CallingFeatures.Set.{i}.SCREJ.{i}.}} + + + + + Deactivate Selective Call Rejection. + + + + + Interrogate the status of Selective Call Rejection. + + + + + Activate Selective Ringing. + Selective Ringing is a facility that permits the user to specify the generation of different ring tones depending on the calling number. + + + + + Deactivate Selective Ringing. + + + + + Interrogate the status of Selective Ringing. + + + + + + + + {{numentries}} + + + + + + + + + SIP-specific capabilities (as defined in {{bibref|RFC3261}}). + + + + + SIP client capabilities. + + + + {{list}} Each item is a supported SIP extension method among the methods listed in the IANA SIP parameters registry (see {{bibref|IANA_SIP_Methods}}). SIP extension methods MUST be in the form of the method name in upper case. + The list MAY include vendor-specific extensions, which MUST use the format defined in {{bibref|TR-106}}. + Examples: + : "REFER" + : "INFO" + : "X_EXAMPLE-COM_MyExt" + + + + + + + + + {{list}} Each item is a supported URI scheme beyond the URI schemes REQUIRED by the SIP specification ({{bibref|RFC3261}}). Each URI scheme is given by the URI prefix, without the colon separator. Example: + "tel, fax" + + + + + + + + + {{list}} Each item is a supported event package among the event packages listed in the IANA registry for SIP Event Type Namespace (see {{bibref|IANA_Event_Packages}}). + The list MAY include vendor-specific event packages, which MUST use the format defined in {{bibref|TR-106}}. + Examples: + : "call-completion" + : "presence" + : "X_EXAMPLE-COM_MyEvtPkg" + + + + + + + + + {{list}} Each item is a supported authentication protocol for TLS transport. {{enum}} + The list MAY include vendor-specific protocols, which MUST use the format defined in {{bibref|TR-106}}. + + + + + + + + + + + + + + + {{list}} Each item represents a supported TLS authentication key size. + + + + + + + + + {{list}} Each item is a supported encryption protocol for TLS transport. {{enum}} + The list MAY include vendor-specific protocols, which MUST use the format defined in {{bibref|TR-106}}. + + + + + + + + + + + + + + + + + {{list}} Each item is a supported TLS encryption key size. + + + + + + + + + {{list}} Each item is a supported key exchange protocol for TLS transport. {{enum}} + The list MAY include vendor-specific protocols, which MUST use the format defined in {{bibref|TR-106}}. + + + + + + + + + + + + + + + + + SIP registrar capabilities. + + + + {{list}} Each item is a supported SIP extension method among the methods listed in the IANA SIP parameters registry (see {{bibref|IANA_SIP_Methods}}). SIP extension methods MUST be in the form of the method name in upper case. + The list MAY include vendor-specific extensions, which MUST use the format defined in {{bibref|TR-106}}. + Examples: + : "REFER" + : "INFO" + : "X_EXAMPLE-COM_MyExt" + + + + + + + + + {{list}} Each item is a supported URI scheme beyond the URI schemes REQUIRED by the SIP specification. Each URI scheme is given by the URI prefix, without the colon separator. Example: + "tel, fax" + + + + + + + + + {{list}} Each item is a supported event package among the event packages listed in the IANA registry for SIP Event Type Namespace (see {{bibref|IANA_Event_Packages}}). + The list MAY include vendor-specific event packages, which MUST use the format defined in {{bibref|TR-106}}. + Examples: + : "call-completion" + : "presence" + : "X_EXAMPLE-COM_MyEvtPkg" + + + + + + + + + {{list}} Each item is a supported authentication protocol for TLS transport. {{enum}} + The list MAY include vendor-specific protocols, which MUST use the format defined in {{bibref|TR-106}}. + + + + + + + + + + + + + + + {{list}} Each item represents a supported TLS authentication key size. + + + + + + + + + {{list}} Each item is a supported encryption protocol for TLS transport. {{enum}} + The list MAY include vendor-specific protocols, which MUST use the format defined in {{bibref|TR-106}}. + + + + + + + + + + + + + + + + + {{list}} Each item is a supported TLS encryption key size. + + + + + + + + + {{list}} Each item is a supported key exchange protocol for TLS transport. {{enum}} + The list MAY include vendor-specific protocols, which MUST use the format defined in {{bibref|TR-106}}. + + + + + + + + + + + + + + + + + MGCP-specific capabilities (as defined in {{bibref|RFC3435}}). + + + + {{list}} Each item is a supported optional MGCP package. MGCP packages are listed using the uppercase package abbreviation. + The list MAY include vendor-specific extensions, which MUST use the format defined in {{bibref|TR-106}}. + Examples: + : "BP" + : "X_EXAMPLE-COM_MyExt" + + + + + + + + + + H.323-specific capabilities (as defined in {{bibref|H.323}}). + + + + Support for H.323 fast start. If {{true}} indicates support for fast start. + + + + + + + + {{list}} Each item is a supported authentication method. {{enum}} + The list MAY include vendor-specific protocols, which MUST use the format defined in {{bibref|TR-106a7}}. + + + + + + + Diffie-Hellman + + + + + password with symmetric encryption + + + + + password with hashing + + + + + certificate with signature + + + + + IPsec based connection + + + + + TLS + + + + + + + + + The overall ISDN capabilities of external ports of the CPE. + + + + The external ISDN ports support {{bibref|I.251.2}} Number identification supplementary services: Multiple Subscriber Number + + + + + + + + The external ISDN ports support {{bibref|I.251.1}} Number identification supplementary services: Direct-dialling-In + + + + + + + + The external ISDN ports support {{bibref|I.251.7}} Number identification supplementary services: Malicious call Identification + + + + + + + + The external ISDN ports support Message Waiting Indication (MWI) + + + + + + + + The external ISDN ports support one or more of the followings AOC-services: + {{bibref|I.256.2a}} Charging supplementary services: Advice of charge: charging information at call set-up time (AOC-S) + {{bibref|I.256.2b}} Charging supplementary services: Advice of charge: charging information during the call (AOC-D) + {{bibref|I.256.2c}} Charging supplementary services: Advice of charge: charging information at the end of the call (AOC-E) + + + + + + + + The external ISDN ports support {{bibref|I.252.7}} Call offering supplementary services: + Explicit call transfer (ECT) + + + + + + + + + The overall POTS capabilities of external ports of the CPE. + + + + The supported supported dial type. + + + + + + Supports Tone dialling + + + + + Supports Pulse dialling + + + + + Supports Tone and Pulse dialling + + + + + + + + The external POTS ports support Calling Line identification (CLIP). + + + + + + + + The external POTS ports support transmittal of a charging pulse according to TR1 TR 110. + + + + + + + + + Table to describe the set of supported codecs. + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Identifier of the type of codec. {{enum}} + The parameter MAY instead be a vendor-specific codec, which MUST be in the format defined in {{bibref|TR-106}}. For example: + "X_EXAMPLE-COM_MyCodec" + + + + + + + RFC4040 + + + + + + + + + + + + + + + + + + + RFC3389 + + + + + + + + + + + + + Bit rate, specified in {{units}}. The value MUST be among the values appropriate for the specified codec. + + + + + + + + + + {{list}} Each item is a supported packetization period, in milliseconds, or a continuous range of packetization periods. Ranges are indicated as a hyphen-separated pair of unsigned integers. Examples: + : "20" indicates a single discrete value. + : "10, 20, 30" indicates a set of discrete values. + : "5-40" indicates a continuous inclusive range. + : "5-10, 20, 30" indicates a continuous range in addition to a set of discrete values. + A range MUST only be indicated if all values within the range are supported. + + + + + + + + + + + If {{true}} indicates support for silence suppression for this codec. + + + + + + + + + Specific capabilities concerning quality indicators. + + + + Comma-separated list of supported models for evaluation of VoIP Quality Indicator. {{empty}} indicates that CPE does not support evaluation of this indicator. + The entry MAY include vendor-specific models, which MUST be in the format defined in {{bibref|TR-106}}. + For example: “P.564,G.107,X_EXAMPLE-COM_MyModel” + + + + + + + + Specifies the maximum number of QI values which can be reported for a session. If this parameter is empty there is no specified maximum limit. + If possible this limit SHOULD be large enough to handle at least 10 to 15 minutes of call time, which would typically mean 60 to 90 quality values for commonly used quality models. + + + + + + + + + + Maximum number of worst QI values which the CPE is able to store and report. A value of 0 indicates no specific maximum number of worst QI values. + + + + + + + + + + + The list of IP ports on the CPE WAN and LAN interfaces that will not be allocated by the ACS and therefore are available to be allocated by the CPE. The CPE can dynamically allocate ports from this range for things like signaling listening ports or local RTP ports. + + + + Range of ports reserved for use by the CPE on any WAN interface. {{list}} Each range consists of a ''Start'' part consisting of 1 to n digits (string representation) followed by an OPTIONAL ''End'' part consisting of 1 to n digits prefixed by a "-" symbol. + Example: + : 12345-12350,23580 + + + + + + + + + Range of ports reserved for use by the CPE on any LAN interfaces. {{list}} Each range consists of a ''Start'' part consisting of 1 to n digits (string representation) followed by an OPTIONAL ''End'' part consisting of 1 to n digits prefixed by a "-" symbol. + Example: + : 12345-12350,23580 + + + + + + + + + + This object models ISDN physical interfaces (BRI and PRI) supporting {{bibref|Q.931}} based signalling. + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + ISDN BRI physical interfaces table (a voice physical interface as described in {{bibref|TR-104i2|Section 4.1}}). + + + + + + + + + + Enables or disables this ISDN BRI interface. + + + + + + + + Indicates the status of this physical interface. + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the interface as assigned by the CPE. + + + + + + + + + + Reference to the {{object|.Tone.EventProfile}} to use with this interface. If this parameter is {{empty}}, the value of {{param|.Tone.DefautEventProfile}} is used instead. + + + + + + + + + + + Specify the type of application that uses the interface. + + + + + + + + + + + + Specifies the protocol variant used for the interface. {{enum}} + The list MAY include vendor-specific protocols, which MUST use the format defined in {{bibref|TR-106}}. + + + + + + ETSI defined Euro ISDN (DSS1) + + + + + National ISDN-1 (Bellcore) + + + + + National ISDN-2 (Bellcore)) + + + + + AT&T ISDN + + + + + Japanese NTT ISDN + + + + + French VN3 ISDN + + + + + French VN4 ISDN + + + + + + + + + Protocol emulation for the interface. + + + + + + + + + + + If {{true}}, avoid the disconnection of the ISDN layer 2 when the ISDN terminal or the ISDN network disconnects the layer 2 (in static TEI mode); it will be maintained established. + + + + + + + + Maintain the ISDN layer 1 up; it is useful for clocking and management. + + + + + + + + Avoid the disconnection of the ISDN layer 1 or 2 up when there is no call in progress in dynamic TEI mode. + + + + + + + + TEI management mode. It MUST be set to {{enum|Dynamic}} for ISDN phones or connection to an ISDN network and {{enum|Static}} for PBX. + + + + + + + + + + + TEI value in static mode. + + + + + + + + + + Enable or disable the lifeline bypass on the BRI S0 voice module. If the interface is used by the VoIP gateway, the bypass is enabled if the CPE is not registered on registration server. + + + + + + + + To enable (disable) the power source one (PS1) on the BRI interfaces. + + + + + + + + Maximum number of simultaneous B channels. + + + + + + + + + + {{list|reserved B-channels which can be used only for outbound calls}} + + + + + + + + + + + {{list|reserved B-channels which can be used only for inbound calls}} + + + + + + + + + + + {{list|reserved B-channels which can be used bidirectional}} + + + + + + + + + + + + ISDN PRI physical interfaces table (a voice physical interface as described in {{bibref|TR-104i2|Section 4.1}}). + + + + + + + + + + Enables or disables this ISDN PRI interface. + + + + + + + + Indicates the status of this physical interface. + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the interface as assigned by the CPE. + + + + + + + + + + Reference to the {{object|.Tone.EventProfile}} to use with this interface. If this parameter is {{empty}}, the value of {{param|.Tone.DefautEventProfile}} is used instead. + + + + + + + + + + + Specify the type of application that uses the interface. + + + + + + + + + + + + Specifies the protocol variant used for the interface. {{enum}} + The list MAY include vendor-specific protocols, which MUST use the format defined in {{bibref|TR-106}}. + + + + + + ETSI defined Euro ISDN (DSS1, E-DSS1) + + + + + National ISDN-1 (Bellcore) + + + + + National ISDN-2 (Bellcore)) + + + + + AT&T 4ESS ISDN + + + + + AT&T 5ESS ISDN + + + + + Japanese INS-NET1500 ISDN + + + + + + + + + Specify the protocol emulation for this interface. + + + + + + + + + + + If {{true}}, avoid the disconnection of the ISDN layer 2 when the ISDN terminal or the ISDN network disconnects the layer 2 (in static TEI mode); it will be maintained established. + + + + + + + + Specify the physical line coding to be used. + + + + + + + + + + + + Specify the framing type. + + + + + + no framing. Only used for CES / unstructured mode + + + + + double frame, no CRC4. For E1 only + + + + + multiframe (CRC4). For E1 only + + + + + extended multiframe (CRC4). For E1 only + + + + + super-frame. For T1 only + + + + + extended super frame. For T1 only + + + + + used to find automatically ISDN PRI framing by trying all possible detections. This behavior can be set when the configuration of remote + + + + + + + + {{enum}} + + + + + + + + + + + Maximum number of simultaneous B channels. + + + + + + + + + + {{list|reserved B-channels which can be used only for outbound calls}} + + + + + + + + + + + {{list|reserved B-channels which can be used only for inbound calls}} + + + + + + + + + + + {{list|reserved B-channels which can be used bidirectional}} + + + + + + + + + + + Determines the role of the CPE for the purpose of clock synchronisation on this interface. + + + + + + + + + + + + This object models analogue lines. Both FXO and FXS are handled. + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + The geographic region associated to POTS (MUST be an alpha-2 (two-character alphabetic) country code as specified by {{bibref|ISO3166-1}}). This MAY be used by the CPE to customize localization settings. + If {{empty}}, indicates that the region is unspecified and the CPE SHOULD use default localization settings. + + + + + + + + + + + FXO physical interfaces table (a voice physical interface as described in {{bibref|TR-104i2|Section 4.1}}). + Each entry in the table models an analogue physical interface as defined by {{bibref|ETSI_ES_203_021}} + + + + + + + + + + Enables or disables this FXO interface. + + + + + + + + Indicates the status of this physical interface. + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the interface as assigned by the CPE. + + + + + + + + + + Reference to the {{object|.Tone.EventProfile}} to use with this interface. If this parameter is {{empty}}, the value of {{param|.Tone.DefautEventProfile}} is used instead. + + + + + + + + + + + Enables the second step dialing mode. + If {{false}}, incoming dialed digits are processed through the voice routing table. + If {{true}}, the FXO port goes directly to the off-hook state and works as a FXS port for the dialing reception (a dial-tone is transmitted). The received digits are processed through the routing table until a match is found. If a match is found, the call is routed to the appropriate subscriber. + + + + + + + + + Specifies the time in {{units}} between off-hook and the transmission of the first digit for FXO interface. + + + + + + + + + + + Defines the timeout in {{units}} for incoming call on this FXO port: after receiving a ringing signal, the call is disconnected if no ringing signal is received anymore during this time. + + + + + + + + + + + Defines the number of pulses for ringing signal detection on FXO port. + + + + + + + + + + Specify the minimum duration in {{units}} of the "on-hook" state between two successive calls. + + + + + + + + + + + Signaling mode used for line seizure by the CPE. + + + + + + + + + + + + The time interval in {{units}} between dialing DTMF digits to PSTN. See also {{bibref|ETSI_ES_203_021}} + + + + + + + + + + + Enables the detection of CallerId for incoming calls. See also {{bibref|ETSI_ES_203_021}}. + + + + + + + + Determines if this physical interface is plugged. + + + + + + + + + FXO port tests. + + + + {{datatype|expand}} + + + + + + + + + + + + + + + + Indicates which test to perform. {{enum}} + The parameter MAY instead indicate a vendor-specific test, which MUST use the format defined in {{bibref|TR-106}}. For example: "X_EXAMPLE-COM_MyTest" + + + + + + Tests for the presence of loop feed current; for a ''ground start'' line, also tests for polarity, to detect reversal of Tip and Ring + + + + + Closes the loop and checks for the presence of a dial tone. + + + + + + + + Result of the selected test. {{enum}} + The parameter MAY instead indicate a vendor-specific result, which MUST use the format defined in {{bibref|TR-106}}. For example: "X_EXAMPLE-COM_MyResult" + + + + + + + + + + + + FXS physical interfaces table (a voice physical interface as described in {{bibref|TR-104i2|Section 4.1}}). + Each entry in the table models an analogue physical interface as defined by {{bibref|ETSI_ES_201_970}} + + + + + + + + + + Enables or disables this FXS interface. + + + + + + + + Indicates the status of this physical interface. + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the interface as assigned by the CPE. + + + + + + + + + + Reference to the {{object|.Tone.EventProfile}} to use with this interface. If this parameter is {{empty}}, the value of {{param|.Tone.DefautEventProfile}} is used instead. + + + + + + + + + + + Indicates the support for pass-through of fax data of this interface. {{enum}} + + + + + + Prevents the CPE from switching to a fax pass-through mode. + + + + + Allows the CPE to automatically detect fax data to determine whether or not to switch to a fax pass-through mode. + + + + + Forces the CPE to switch to a fax pass-through mode regardless of whether fax signaling is detected. + + + + + + + + Indicates the support for pass-through of modem data of this interface. {{enum}} + + + + + + Prevents the CPE from switching to a modem pass-through mode. + + + + + Allows the CPE to automatically detect modem data to determine whether or not to switch to a modem pass-through mode. + + + + + Forces the CPE to switch to a modem pass-through mode regardless of whether modem signaling is detected. + + + + + + + + Dial type used on the line. + + + + + + Set the dial type to Tone dialling + + + + + Set the dial type to Pulse dialling + + + + + + + + Whether the Calling Line identification (CLIP) is enabled. + + + + + + + + Whether a charging pulse is transmitted on the line. + + + + + + + + Indicates whether a terminal is plugged on this physical interface. + + + + + + + + Defines the terminal type plugged on this interface to determine the correct signaling to be used to contact the terminal. + + + + + + + + + + + + + + Parameters related to voice processing (analogue/digital conversion) capabilities. + + + + Gain in {{units}} to apply to the transmitted voice signal prior to encoding. This gain is a modifier of the default transmit-gain, which is unspecified. + + + + + + + + + + Gain in {{units}} to apply to the received voice signal after decoding. This gain is a modifier of the default receive-gain, which is unspecified. + + + + + + + + + + Enable or disable echo cancellation for this line. + + + + + + + + Indication of whether or not echo cancellation is currently in use for this line. + + + + + + + + Tail length in {{units}} of the echo canceller associated with this line (whether or not it is currently in use). + + + + + + + + + + + FXS port tests. + + + + {{datatype|expand}} + + + + + + + + + + + + + + + + Indicates which GR-909 test to perform. + + + + + + Hazard Potential test is failed if the TIP-GND or RING-GND AC voltage is greater than 50 volts rms or DC voltage is greater than 135 volts + + + + + Foreign Voltage test is failed if the TIP-GND or RING-GND AC voltage is greater than 10 volts or the TIP-GND or RING-GND DC voltage is greater than 6 volts + + + + + Resistive Faults test is failed if a TIP-RING, TIP-GND or RING-GND on-hook DC resistance less than 150 k? + + + + + Off-hook test is based upon criteria that permit the system to discriminate between a resistive fault and a receiver-off-hook condition. For example, a failure condition could be based on a non-linearity in the TIP-RING DC resistance of greater than 15% when measured at two different voltage levels + + + + + Ringer Equivalence Number test is failed when the equivalent ringer count across TIP and RING is less than 0.175 REN or greater than 5 REN + + + + + + + + Result of the selected test. + + + + + + + + + + + + This object contains the ring sequences configured for analogue lines. + + + + {{numentries}} + + + + + + + + + Table of events for which a ring pattern is defined. The table is pre-populated with the complete list of events for which the CPE supports definition of ring patterns. + + + + + + + + + + {{datatype|expand}} + + + + + + + + The event for which the ring pattern is to apply. {{enum}} + The parameter MAY instead indicate a vendor-specific event name, which MUST use the format defined in {{bibref|TR-106}}. + + + + + + + + + + + Used when the FXS is being alerted as part of a call to an {{object|.CallControl.Group.{i}}} + + + + + + + + {{list}} The values represent an alternating pattern of times (in {{units}}) when the ringer is ON or OFF. + Example: "1000,5000" + See also {{bibref|ETSI_TR_101_183}}. + + + + + + + + + + + + This object models DECT bases and portables. + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + DECT base table (a voice physical interface as described in {{bibref|TR-104i2|Section 4.1}}). + + + + + + + + + + + + + Enables or disables this base. + + + + + + + + Indicates the status of this base. + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the interface as assigned by the CPE. + + + + + + + + + + Reference to the {{object|.Tone.EventProfile}} to use with this interface. If this parameter is {{empty}}, the value of {{param|.Tone.DefautEventProfile}} is used instead. + + + + + + + + + + + The highest DECT protocol version supported by the base. + + + + + + see {{bibref|ETSI_EN_300_444}} + + + + + see {{bibref|ETSI_TS_102_527-1}} + + + + + see {{bibref|ETSI_TS_102_527-3}} + + + + + see {{bibref|ETSI_TS_102_527-5}} + + + + + see {{bibref|ETSI_TS_102_527-4}} + + + + + + + + + The Radio Fixed Part Identity which uniquely identifies the Base. The RFPI is a 40 bits number stored in a hexbinary string. The format of the number is class-dependant and is defined in {{bibref|ETSI_EN_300_175-6|sections 5.1 to 5.5}}. + + + + + + + + + + The maximum number of Portable Parts (PP) supported by the DECT base of the CPE. + + + + + + + + The PIN is an hexbinary string of 32 bits, as defined in {{bibref|ETSI_TS_102_527-3}}. + + + + + + If {{true}}, the DECT system supports the REP feature, as defined in {{bibref|ETSI_EN_300_175-8}}. + + + + + + + + Enable or disable NEMO (No Emission Mode as defined in {{bibref|ETSI_TS_102_527-3}}) operation of the base. Note: NEMO operations can be successfully enabled only if all PPs registered to the CPE support the NEMO operations. + + + + + + + + Enables the subscription mode of the DECT base. If {{true}}, the ''subscription window'' is open, otherwise it is closed. When the ''subscription window'' is open, a DECT portable part can be subscribed / registered to the DECT base. When written as {{true}}, it forces the device to open the ''subscription window''. When the ''subscription window'' timeslot expires, the value MUST be changed back to {{false}}. + If the CPE user can open the ''subscription window'' with a specific command (i.e. via DECT base GUI or pushing a button), the parameter MUST report the correct status ({{true}}, while the window is opened). + + + + + + + + Enable or disable ciphering for the calls on the DECT domain. + + + + + + + + Algorithm used in the encryption process defined in {{bibref|ETSI_EN_300_175-7}}. + + + + + + DECT Standard Cipher + + + + + DECT Standard Cipher #2 + + + + + CCM Authenticated Encryption Algorithm + + + + + + + + This parameter is used to control the sending RF power as per the required range within the customer premises. + When set to 'Reduced', the CPE SHALL undertake measures to reduce the transmission RF power. + + + + + + + + + + + Firmware version of the base as defined in {{bibref|ETSI_TS_102_527-3}} + + + + + + + + + + EEPROM version of the base as defined in {{bibref|ETSI_TS_102_527-3}} + + + + + + + + + + Hardware version of the base as defined in {{bibref|ETSI_TS_102_527-3}} + + + + + + + + + + + This object is associated with statistics collected from the DECT domain of the CPE. The collected statistics are common for all call scenarios. + The CPE MUST reset the DECT base's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the base becomes operationally down due to a previous administrative down (i.e. the base's {{param|#.Status}} parameter transitions to a down state after the base is disabled) or when the base becomes administratively up (i.e. the base's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). + + + + The count of all successful handovers. + + + + + + + + The count of all failed handovers. + + + + + + + + The count of all bad A-field packets. + + + + + + + + The count of all bad B-field packets. + + + + + + + + The count of all synchronization failures during all calls. + + + + + + + + + DECT portable table. + + + + + + + + + + Enables or disables this DECT portable. + + + + + + + + Indicates the status of this DECT portable. + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + {{list}} {{reference}} + The CPE SHOULD use the first enabled item in the list among those supported by the portable. + + + + + + + + + + + The current registration status of the DECT portable. + + + + + + + + + + + The International Portable User Identity which uniquely identifies the current user of the portable. + The IPUI is composed of the Portable User Type (PUT), of 4 bits, followed by the Portable User Number (PUN) whose size and format depend on PUT (see {{bibref|ETSI_EN_300_175-6|Section 6.2}}). + The hexbinary string is encoded exactly as it is defined in {{bibref|ETSI_EN_300_175-5|section 7.7.30}}) : + * Bits from position 0 to 3 represent the PUT (as defined in {{bibref|ETSI_EN_300_175-6|section 7.3}}). + * Bits from position 4 to {{param|IPUILength}}-1 represent the PUN. + * Unused bits after position {{param|IPUILength}}-1 are set to 0. + Examples : + : - Type N (PUT + IPEI) : + :: - PUT = 0000 (4 bits) = 0 (hexadecimal) + :: - IPEI = 0000 0000 0000 1100 0000 0000 0000 1000 1001 (36 bits) = 00 0C 00 08 9 (hexadecimal) + :: - IPUILength = 4 + 36 = 40 (bits) + :: - IPUI = 00 00 C0 00 89 (40 bits; multiple of 8 so no bits are ignored) + : - Type O (PUT + binary-coded number) : + :: - PUT = 0001 (4 bits) = 1 (hexadecimal) + :: - Number (decimal) = 4546812123 + :: - Number (binary) = 1000 0111 1000 0001 0110 1100 0110 1101 1 (33 bits) + :: - Number (hexadecimal) = 87 81 6C 6D 8 (33 bits; last three bits are ignored) + :: - IPUILength = 4 + 33 = 37 (bits) + :: - IPUI = 18 78 16 C6 D8 (37 bits; last 3 bits are ignored) + : - Type Q (PUT + BCD number) : + :: - PUT = 0011 (4 bits) = 3 (hexadecimal) + :: - Number (decimal) = 4546812123 + :: - Number (BCD) = 0100 0101 0100 0110 1000 0001 0010 0001 0010 0011 (40 bits) + :: - IPUILength = 4 + 40 = 44 (bits) + :: - IPUI = 34 54 68 12 12 30 (40 bits; last 4 bits are ignored) + + + + + + + + + + The length of {{param|IPUI}}, in {{units}}. + + + + + + + + + + The International Portable Equipment Identity which is globally unique and identifies the portable. + The IPEI is composed of the Equipment Manufacturer's Code (EMC), of 16 bits, followed by the Portable equipment Serial Number (PSN) of 20 bits (see {{bibref|ETSI_EN_300_175-6|Section 10}}). + The hexbinary string is encoded as follows : + * Bits from position 0 to 15 represent the EMC. + * Bits from position 16 to 35 represent the PSN. + * The last four bits are unused and are set to 0. + + + + + + + + + + The Portable Access Rights Key of this portable. + The PARK is composed of the Access Rights Class (ARC) of 3 bits and the Access Rights Details (ARD) whose size and format depend on the ARC (see {{bibref|ETSI_EN_300_175-6|Sections 6.1.1 to 6.1.5}}). + The hexbinary string is encoded as follows : + * Bits from position 0 to 2 represent the ARC (as defined in {{bibref|ETSI_EN_300_175-6|section 7.2}}). + * For class A : + ** Bits from position 3 to 35 represent the ARD. + ** The last four bits are unused and are set to 0. + * For other classes : + ** Bits from position 3 to 31 represent the ARD. + + + + + + + + + + Refers to the {{object|#.Base}} where this portable part is attached to. + + + + + + + + + + + {{list}} Protocols used for connection. + + + + + + + + + + + + + + + + The date and time in which the DECT portable has been subscribed with the base. + If NTP or equivalent is not available, this parameter, if present, SHOULD be set to the Unknown Time value. + + + + + + + + This parameter MAY be used by the ACS to control the registration status of the portable. + + + + + + the CPE unregisters the portable from the base, but retains the instance in the list. This is a temporary detachment procedure. + + + + + the CPE unregisters the portable from the base and removes the instance from the list of registered portables. It is possible for the portable to register again in the future. + + + + + + + + Indicates the Hardware Version of a DECT portable. Corresponds to the portable HW Version identifier parameter, as defined in {{bibref|ETSI_TS_102_527-4}}. + + + + + + + + + + Indicates the Software Version used by a DECT portable. Maps with the portable SW Version identifier parameter, as defined in {{bibref|ETSI_TS_102_527-4}}. + + + + + + + + + + This parameter indicates support for SUOTA (Software Update Over The Air). + + + + + + + + Indicates the last successful SW update of the DECT portable. This is based on the reception of a FACILITY message (being part of the HS version indication procedure) from the portable containing another value of SW version than the current value in this table. This new SW version is then updated in this table. + + + + + + + + The name of the operator that will be displayed on the portable, if it supports this feature. + + + + + + + + + + + This object is dedicated to SIP as defined in {{bibref|RFC3261}}. It models SIP networks, clients, proxies and registrars. + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + SIP client table (a Client as described in {{bibref|TR-104i2|Section 4.2}}). Each SIP client maintains its identity-to-location (i.e., RegisterURI-to-ContactURI) binding for SIP signaling exchanged between the client and the network. + For CPE use cases where {{object|.CallControl}} is used to map network-facing to user-facing objects, the relationship between the SIP client object and its associated {{object|.CallControl.Line}} object(s) is determined by the {{param|RegisterMode}} parameter, as follows: + : - In case of RFC3261-style explicit registration of SIP AoRs, only a single line shall be associated with each SIP client. + : - In case of RFC6140 or IMS/TISPAN-style registration, multiple lines can be associated with each SIP client. The set of lines associated with a SIP client constitute an 'identity set'. In this case, registering the single SIP client implicitly registers the identities of all associated lines. + : - In the case where the client does not register with the network ({{param|RegisterMode}} is {{enum|STATIC|RegisterMode}}), multiple lines can be associated with each SIP client. + + + + + + + Enable or disable this client. + + + + + + + + + If {{true}}, when {{param|Enable}} is set to {{false}} in-progress sessions remain intact, but no new sessions are allowed. When all sessions are terminated, the {{object}} is disabled. + + + + + + + + Indicates the status of this client. Unless noted otherwise, the status values apply to both registering and non-registering clients. + + + + + + The client is operational and has established connectivity with the network; i.e. the client is currently registered (for clients that register) or the periodic ping test indicates network connectivity (for clients that don't register) + + + + + Transitional state where the client has been enabled and is waiting an external event to transition to the next state (i.e. IP connectivity, DNS resolution...) + + + + + The client is in the process of registering with the network. This state applies only to clients that register + + + + + The client is in the process of deregistering over the network. This state applies only to clients that register + + + + + The client is enabled, but is non-operational due a configuration error + + + + + A network error occurred + + + + + An error occurred during registration. This state applies only to clients that register. + + + + + This state indicates that the client has been disabled and is waiting for active session(s) to terminate before transitioning to the disabled state. + + + + + The client is disabled + + + + + + + + + {{datatype|expand}} + + + + + + + + Mechanism via which this instance was assigned. {{enum}} + + + + + + Automatically generated, for example by a ESBC that auto-creates client objects + + + + + For example, present in the factory default configuration, created by the ACS, or created by some other management entity (e.g. via a GUI). + + + + + + + + + The registration procedures to apply. For {{param}} values other than {{enum|STATIC}}, the SIP {{object|#}} conveys its RegisterURI-to-ContactURI binding to the network using the SIP registration procedure. For the {{param}} value of {{enum|STATIC}}, the SIP client RegisterURI-to-ContactURI binding is conveyed to the network via some out-of-band mechanism not defined by this data model. + This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + The client registers with the network using the registration procedures defined in {{bibref|RFC3261}} + + + + + The client does not register with the network + + + + + The client registers with the network using the registration procedures defined in {{bibref|RFC6140}} + + + + + The client registers with the network using the registration procedures defined in {{bibref|3GPP_TS_24.229|section 5.1.1.2}} + + + + + + + + Username used to authenticate the connection to the server. + This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + + + + Password used to authenticate the connection to the server. + This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + SIP network with which this SIP client is associated. + {{reference}} + This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + + + + Limit on the number of simultaneous voice sessions across this client. This MUST be less than or equal to {{param|.Capabilities.MaxSessionCount}}. + A value of zero indicates no explicit limit on the number of sessions. + + + + + + + + + The SIP URI that represents the identity of this SIP client. For {{param|RegisterMode}} values where the SIP client registers with the network, this SIP URI is placed in the From and To headers in the REGISTER request. + This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + + + + When {{true}} and using a {{object|.Trunk}}, the SIP URIs built from the directory numbers in {{param|.Trunk.{i}.DDIRange}} SHOULD use E.164 format, using the "user=phone" URI parameter, according to {{bibref|RFC3261|section 19.1.6}}. + + + + + + + + + Enable or disable the use of T.38. + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + Active registrations for this SIP account. + + + + + + + Enable or disable this {{object}}. + + + + + + + + + Indicates the status of this {{object}}. + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Mechanism via which this {{object}} was assigned. {{enum}} + + + + + + Automatically generated, for example by a ESBC that auto-creates {{object}} objects. + + + + + For example, present in the factory default configuration, created by the ACS, or created by some other management entity (e.g. via a GUI). + + + + + + + + + This is the IP address where the {{object|#}} is listening for SIP requests from the service provider network. This IP address value is populated in the host portion of the {{param|ContactURI}} parameter. + This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + This is the port where the {{object|#}} is listening for SIP requests from the service provider network. This IP port value is populated in the port portion of the {{param|ContactURI}} parameter. + This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + + + The current Contact URI of the {{object|#}}. + If SIP registration procedures are being used, as determined by the {{param|#.RegisterMode}} parameter, then this parameter is populated in the Contact header field of the REGISTER request. + This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + + + + Time when this registration will expire. This parameter is valid only when SIP registration procedures are being used, as determined by the {{param|#.RegisterMode}} parameter. + If this registration never expires, this parameter SHOULD be set to the Unknown Time value. + + + + + + + + The interval in {{units}} between sending a periodic ping request toward the network (i.e. a SIP OPTIONS ping). The CPE performs the periodic ping request to verify connectivity with the network when SIP registration procedures are not used (i.e. when the SIP client {{param|#.RegisterMode}} is {{enum|STATIC|#.RegisterMode}}). A value of '0' indicates that the CPE should not perform the periodic ping request. + + + + + + + + + + + This is the User-Agent field reported in the SIP header of the REGISTER message. + + + + + + + + + + + Table of SIP events automatically populated by the CPE with each of the SIP event subscriptions in {{object|.SIP.Network.{i}.EventSubscribe.{i}.}}. This table allows specification of the authentication credentials needed for each event subscription. + + + + + + + + + + Enables or disables this entry. + + + + + + + + + {{datatype|expand}} + + + + + + + + SIP event name corresponding to the value given in {{object|.SIP.Network.{i}.EventSubscribe.{i}.}}. + + + + + + + + + + Username used to authenticate the connection to the event notify server. + + + + + + + + + + + Password used to authenticate the connection to the event notify server. + + + + + + + This object models a SIP network (a network as described in {{bibref|TR-104i2|Section 4.2}}). SIP networks are used by SIP {{object|#.Client}} objects so that common parameters do not have to be provisioned multiple times. + + + + + + + Enable or disable this {{object}}. Starts the DNS resolving when enabled. + + + + + + + + + If {{true}}, when {{param|Enable}} is set to {{false}} in-progress sessions remain intact, but no new sessions are allowed. When all sessions are terminated, the {{object}} is disabled. + + + + + + + + Indicates the status of this network. + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Host name or IP address of the SIP proxy server. + If not {{empty}}, all SIP signaling traffic MUST be sent to the host indicated by this parameter and the port indicated by {{param|ProxyServerPort}} unless {{param|OutboundProxy}} is not {{empty}} or a different route was discovered during normal SIP routing operations. + Regardless of which host the traffic gets sent to ({{param}} or {{param|OutboundProxy}}), the value of this parameter (unless {{empty}}) MUST be used to derive the URI placed into the SIP Route header field of all requests originated by this end-point, unless a different proxy host was discovered dynamically during normal SIP routing operations. + + + + + + + + + + + Destination port to be used in connecting to the SIP proxy server. + + + + + + + + + + + Transport protocol to be used in connecting to the SIP proxy server. + + + + + + + + + + + + + + Host name or IP address of the SIP registrar server. + If this parameter is {{empty}}, the CPE MUST obtain all of the registrar server configuration information, including host name or IP address, port, and transport protocol, from the values in {{param|ProxyServer}}, {{param|ProxyServerPort}}, and {{param|ProxyServerTransport}}. + + + + + + + + + + + Destination port to be used in connecting to the SIP registrar server. + If {{param|RegistrarServer}} is empty the CPE MUST obtain all of the registrar server configuration information, including host name or IP address, port, and transport protocol, from the values in {{param|ProxyServer}}, {{param|ProxyServerPort}}, and {{param|ProxyServerTransport}}. + + + + + + + + + + + Transport protocol to be used in connecting to the registrar server. {{enum}} + If {{param|RegistrarServer}} is empty the CPE MUST obtain all of the registrar server configuration information, including host name or IP address, port, and transport protocol, from the values in {{param|ProxyServer}}, {{param|ProxyServerPort}}, and {{param|ProxyServerTransport}}. + + + + + + + + + + + + + + If non-empty this {{param}} is used by the devices in a DNS SRV request to provide FQDNs {{object|FQDNServer.{i}.}} for SIP Server connections. + {{bibref|RFC2782}} ''Clients ask for a specific service/protocol for a specific domain (the word domain is used here in the strict RFC 1034 sense), and get back the names of any available servers.'' + + + + + + + + + + + Domain used by {{object|#.Client}} objects that reference this {{object}} instance. + + + + + + + + + + + IP address used to reach the {{param|ChosenDomain}}. + + + + + + + + Port used to reach the {{param|ChosenDomain}}. + + + + + + + + + + CPE domain string. If {{empty}}, the CPE SHOULD use its IP address as the domain. + + + + + + + + + + + Port used for incoming call control signaling. + + + + + + + + + + + Transport protocol to be used for incoming call control signaling. + + + + + + + + + + + + + + The Fully Qualified Domain Name (FQDN) or IP Address of the outbound proxy. If the value is not {{empty}}, the SIP endpoint MUST send all SIP traffic (requests and responses) to the host indicated by this parameter and the port indicated by {{param|OutboundProxyPort}}. This MUST be done regardless of the routes discovered using normal SIP operations, including use of Route headers initialized from Service-Route and Record-Route headers previously received. {{param}} is NOT used to generate the URI placed into the Route header of any requests. + When {{param}} is assigned, the name is looked up (resolved) and the corresponding address is set in {{param|OutboundProxyResolvedAddress}}. + + + + + + + + + + + The IP address of the outbound proxy. + This parameter can be assigned statically (e.g. present in the factory default configuration or set by the ACS via {{param|OutboundProxy}}) or assigned dynamically (via DHCP). + When {{param|OutboundProxy}} is assigned, the name is looked up (resolved) and the corresponding address is set in {{param}}. + + + + + + + + Indicates whether it is the static configuration or the DHCP configuration that is actually used for {{param|OutboundProxyResolvedAddress}}. + + + + + + + + + + + Destination port to be used in connecting to the outbound proxy. This parameter MUST be ignored unless the value of {{param|OutboundProxy}} is non-empty. + + + + + + + + + + + Enable or disable use of STUN to allow operation through NAT. Note: enabling STUN is to be interpreted as enabling the use of STUN for discovery, not use as a keep-alive mechanism. + + + + + + + + + Domain name or IP address of the STUN server. + + + + + + + + + + + For bandwidth-based admission control, a session can proceed only if there is {{param}} {{units}} of upstream bandwidth left available for non-voice traffic. This parameter is appropriate only in implementations in which the actual bandwidth can be known, such as a VoIP device embedded in a DSL B-NT. + + + + + + + + + + + For bandwidth-based admission control, a session can proceed only if there is {{param}} {{units}} of downstream bandwidth left available for non-voice traffic. This parameter is appropriate only in implementations in which the actual bandwidth can be known, such as a VoIP device embedded in a DSL B-NT. + + + + + + + + + + + Text string to be used in the Organization header. + + + + + + + + + + + Duration, in {{units}}, after which the user agent needs to register again. + + + + + + + + + + + Realm for authentication with the specified values of {{param|#.Client.{i}.AuthUserName}} and {{param|#.Client.{i}.AuthPassword}}. + + + + + + + + Value of SIP timer T1, in {{units}}, as defined in {{bibref|RFC3261}}. + + + + + + + + + + + Value of SIP timer T2, in {{units}}, as defined in {{bibref|RFC3261}}. + + + + + + + + + + + Value of SIP timer T4, in {{units}}, as defined in {{bibref|RFC3261}}. + + + + + + + + + + + Value of SIP timer A, in {{units}}, as defined in {{bibref|RFC3261}}. + + + + + + + + + + + Value of SIP timer B, in {{units}}, as defined in {{bibref|RFC3261}}. + + + + + + + + + + + Value of SIP timer C, in {{units}}, as defined in {{bibref|RFC3261}}. + + + + + + + + + + + Value of SIP timer D, in {{units}}, as defined in {{bibref|RFC3261}}. + + + + + + + + + + + Value of SIP timer E, in {{units}}, as defined in {{bibref|RFC3261}}. + + + + + + + + + + + Value of SIP timer F, in {{units}}, as defined in {{bibref|RFC3261}}. + + + + + + + + + + + Value of SIP timer G, in {{units}}, as defined in {{bibref|RFC3261}}. + + + + + + + + + + + Value of SIP timer H, in {{units}}, as defined in {{bibref|RFC3261}}. + + + + + + + + + + + Value of SIP timer I, in {{units}}, as defined in {{bibref|RFC3261}}. + + + + + + + + + + + Value of SIP timer J, in {{units}}, as defined in {{bibref|RFC3261}}. + + + + + + + + + + + Value of SIP timer K, in {{units}}, as defined in {{bibref|RFC3261}}. + + + + + + + + + + + Invite request Expires header value, in {{units}}. + + + + + + + + + + + Re-invite request Expires header value, in {{units}}. + + + + + + + + + + + Register request Expires header value, in {{units}}. + + + + + + + + + + + Register retry interval, in {{units}}. + + + + + + + + + + + Applicable inbound authentication method, if any. + + + + + + + when selected, {{param|InboundAuthUsername}} and {{param|InboundAuthPassword}} MUST be specified. + + + + + only accept incoming SIP requests from IP addresses associated with {{param|ProxyServer}} + + + + + + + + + If inbound authentication is used, the username credentials. + + + + + + + + + + + If inbound authentication is used, the password credentials. + + + + + + When {{true}}, in the SDP included in an OK response to an Invite, the first listed codec MUST be the highest priority codec among those offered in the Invite, based on the priorities specified in {{param|CodecList}}. The list of codecs in the SDP MAY also include other lower priority codecs. + When {{false}}, there is no specific requirement for choosing the codecs listed in the SDP included in an OK response. + + + + + + + + + Diffserv code point to be used for outgoing SIP signaling packets. + + + + + + + + + + + VLAN ID (as defined in {{bibref|802.1Q-2005}}) to be used for outgoing SIP signaling packets for this network. A value of -1 indicates the default value is to be used. + If either {{param}} or {{param|EthernetPriorityMark}} are greater than zero, then the outgoing frames MUST be tagged. Otherwise, the outgoing frames MAY be tagged or untagged. + + + + + + + + + + + Ethernet priority code (as defined in {{bibref|802.1Q-2005}}) to be used for outgoing SIP signaling packets for this network. A value of -1 indicates the default value is to be used. + If either {{param|VLANIDMark}} or {{param}} are greater than zero, then the outgoing frames MUST be tagged. Otherwise, the outgoing frames MAY be tagged or untagged. + + + + + + + + + + + URI of the network conference bridge for the multiway conference call service. + + + + + + + + + + In case of a 401 (Unauthorized) or a 407 (Proxy Authentication Required) response to a REGISTER request, the CPE shall send REGISTER using credentials. If the second response is a new 401 (Unauthorized) or a 407 (Proxy Authentication Required) with stale=false or no stale value, the CPE shall re-init registration cycle after expiration of this timer (in {{units}}). If stale=true, the CPE shall send REGISTER using credentials. + + + + + + + + + + If {{true}}, no retry after a 401 (Unauthorized) or a 407 (Proxy Authentication Required) response to a REGISTER until power cycle or credentials have been changed. + + + + + + + + In case of no response to a REGISTER request, the CPE shall retry according to retransmission algorithm defined in {{bibref|RFC3261}}, then wait for expiration of this timer (in {{units}}). + In case of other response, the CPE shall wait for expiration of this timer before sending a new REGISTER request. + + + + + + + + + + When starting a MWI subscription, on response of a SUBSCRIBE request : in case of no response or other response than 200 or 423, the CPE shall retry according to retransmission algorithm defined in {{bibref|RFC3261}}, then wait for expiration of this timer (in {{units}}) before sending a new SUBSCRIBE request. + + + + + + + + + + The number of registration timeouts when trying to register the server. + + + + + + + + VoIP profile to use with this {{object}}. + {{reference}} + + + + + + + + + + + {{list}} {{reference}} + The CPE SHOULD use the first enabled item in the list among those supported by the remote endpoint and consistent with the available bandwidth. + + + + + + + + + + + Limit on the number of simultaneous voice sessions across all {{object|.SIP.Client}} referencing this {{object}}. This MUST be less than or equal to {{param|.Capabilities.MaxSessionCount}}. + A value of zero indicates no explicit limit on the number of sessions. + + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + + + Table of Fully Qualified Domain Names for this {{object|#}} instance in order to connect to the SIP server as described in {{bibref|RFC2782}}. + + + + + + + + + + Enables or disables this FQDN server. + + + + + + + + + {{datatype|expand}} + + + + + + + + Mechanism via which the FQDN server was assigned. + + + + + + Automatically generated, for example by a CPE that utilizes DNS SRV record requests + + + + + For example, present in the factory default configuration, created by the ACS, or created by some other management entity (e.g. via a GUI) + + + + + + + + + The domain name of the target host. This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + + + A server selection mechanism. The weight field specifies a relative weight for entries with the same priority. + Larger weights SHOULD be given a proportionately higher probability of being selected. This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + + + + The priority of this target host. A client MUST attempt to contact the target host with the lowest-numbered priority it can reach; + target hosts with the same priority SHOULD be tried in an order defined by the weight field. This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + + + + The port on this target host of this service. + + + + + + + + + + {{list|the IP Addresses that the FQDN resolves to}} + The order in which the addresses appear in the list MAY imply priority. This parameter MAY be modified by the ACS only if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + + + Table to specify the SIP events to which the CPE MUST subscribe. + + + + + + + + + + Enables or disables this entry. + + + + + + + + + {{datatype|expand}} + + + + + + + + SIP event name to appear in the EVENT header of the SIP SUBSCRIBE request. + + + + + + + + + + + Host name or IP address of the event notify server. + + + + + + + + + + + Destination port to be used in connecting to the event notifier. + + + + + + + + + + + Transport protocol to be used in connecting to the event notifier. + + + + + + + + + + + + + + Subscription refresh timer, in {{units}}. + + + + + + + + + + + Each entry in this table specifies the tone and message to be provided to the user for a particular SIP response received (normally 4xx and 5xx). + + + + + + + + + + {{datatype|expand}} + + + + + + + + The SIP response code number. + + + + + + + + + + Enables or disables this entry. + + + + + + + + + The message to be provided on the screen or display of the VoIP device when the SIP response is received. + If this parameter is not {{empty}}, display of this text preempts the value of {{param|.Tone.Description.{i}.ToneText}} associated with {{param|Tone}}. If this parameter is {{empty}}, the value of {{param|.Tone.Description.{i}.ToneText}} associated with {{param|Tone}}, if any, is displayed instead. + This parameter is applicable only for VoIP devices capable of text display. + + + + + + + + + + + The tone to be played to the user when the SIP response is received. + {{reference}} + {{empty}} indicates no tone is to be played for this event. + + + + + + + + + + + + Global SIP parameters used by the CPE when acting as proxy for SIP user agents. + + + + + + + + + + + Enable or disable the proxy. + + + + + + + + + Indicates the status of this proxy. + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Mechanism via which the IP address was assigned. {{enum}} + + + + + + Automatically generated, for example by a ESBC that auto-creates {{object}} objects + + + + + For example, present in the factory default configuration, created by the ACS, or created by some other management entity (e.g. via a GUI). + + + + + + + + + The IP address the proxy listens on. + This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + The port the proxy listens on. + + + + + + + + + + Built by the CPE using {{param|ProxyIPAddress}} and {{param|ProxyPort}}. + + + + + + + + + + VoIP profile to use with this proxy. + {{reference}} + + + + + + + + + + + + Global SIP parameters used by the CPE when acting as registrar server for externally connected SIP user agents. This object also contains the global SIP parameters used by the CPE when it acts as static identity-to-location binding database for externally connected SIP user agents that don't register (i.e. static-mode SIP-PBX). + + + + + + + + + + + Enable or disable the registrar. + + + + + + + + + If {{true}}, when {{param|Enable}} is set to {{false}} in-progress sessions remain intact, but no new sessions are allowed. When all sessions are terminated, the {{object}} is disabled. + + + + + + + + Indicates the status of this registrar. + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Mechanism via which the IP address was assigned. {{enum}} + + + + + + Automatically generated, for example by a ESBC that auto-creates {{object}} objects + + + + + For example, present in the factory default configuration, created by the ACS, or created by some other management entity (e.g. via a GUI) + + + + + + + + + The IP address the registrar listens on for incoming SIP requests from an externally connected SIP user agent. + This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + The port the registrar listens on. + + + + + + + + + + The minimum register expire time in {{units}}. This parameter is valid only for SIP user agents that support registration. + + + + + + + + + + The interval in {{units}} between sending a periodic ping request (e.g., a SIP OPTIONS ping) to externally connected SIP user agents. The CPE performs the periodic ping request to verify connectivity with externally connected devices that do not support SIP registration procedures (i.e. a static-mode SIP-PBX). A value of 0 indicates that the CPE should not perform the periodic ping request. + + + + + + + + + + + Text string to be used in the Organization header. + + + + + + + + + + + Realm for authentication with the specified values of {{param|Account.{i}.AuthUserName}} and {{param|Account.{i}.AuthPassword}}. + + + + + + + + VoIP profile to use with this registrar. + {{reference}} + + + + + + + + + + + Built by the CPE using {{param|RegistrarIPAddress}} and {{param|RegistrarPort}}. + + + + + + + + + + {{numentries}} + + + + + + + + + SIP account table. + + + + + + + + + + Enables or disables this account, or places it into a quiescent state. {{enum}} + In the {{enum|Quiescent}} state, in-progress sessions remain intact, but no new sessions are allowed. If this parameter is set to {{enum|Quiescent}} in a CPE that does not support the {{enum|Quiescent}} state, it MUST treat it the same as the {{enum|Disable}} state (and indicate {{enum|Disabled|Status}} in {{param|Status}}). + + + + + + + + + + + + + If {{true}}, when {{param|Enable}} is set to {{false}} in-progress sessions remain intact, but no new sessions are allowed. When all sessions are terminated, the {{object}} is disabled. + + + + + + + + Indicates the status of this account. Unless noted otherwise, the {{param}} values apply to both registering and non-registering external SIP user agents. + + + + + + The {{object}} is operational and has established connectivity with the external SIP user agent; i.e. the external device is currently registered (for SIP user agents that register) or the periodic ping test indicates connectivity with the external device (for SIP user agents that don't register + + + + + Transitional state where the {{object}} has been enabled and is waiting for an external event to transition to the next state (i.e. IP connectivity, DNS resolution, reception of SIP REGISTER request from external SIP user agent...) + + + + + The external SIP user agent is in the process of registering with the CPE. This state applies only to SIP user agents that register + + + + + The external SIP user agent is in the process of deregistering with the CPE. This state applies only to SIP user agents that register + + + + + The {{object}} is enabled, but is non-operational due a configuration error + + + + + A network error occurred + + + + + An error occurred during registration. This state applies only to Accounts serving SIP user agents that register + + + + + This state indicates that the {{object}} has been disabled and is waiting for active session(s) to terminate before transitioning to the disabled state + + + + + The {{object}} is disabled + + + + + + + + + {{datatype|expand}} + + + + + + + + Mechanism via which the {{object}} was created. {{enum}} + + + + + + Automatically generated, for example by a ESBC that auto-creates {{object}} objects + + + + + For example, present in the factory default configuration, created by the ACS, or created by some other management entity (e.g. via a GUI) + + + + + + + + + Indicates the call status for this account. + + + + + + + + + + + + + + + Username used to authenticate the connection to the registrar server. + This parameter can only be modified if {{param|Origin}} is Static. + + + + + + + + + + + Password used to authenticate the connection to the registrar server. + This parameter can only be modified if {{param|Origin}} is Static. + + + + + + The current registration status of the externally connected SIP user agent. This parameter is valid only for SIP user agents that support registration. + + + + + + + + + + + The URI (AoR) of the externally connected SIP user agent. For SIP user agents that register, this is the URI that is contained in the To header field of the incoming REGISTER request. + This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + + + The domain name used when the SIP user agent has registered itself. + This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + + + {{list}} {{reference}} + The CPE SHOULD use the first enabled item in the list among those supported by the remote endpoint and consistent with the available bandwidth. + + + + + + + + + + + Voice profile to use with this {{object}}. + {{reference}} + + + + + + + + + + + {{numentries}} + + + + + + + + + Active registrations for this SIP account. + + + + + + + Enable or disable this entry. + + + + + + + + + Indicates the status of this entry. + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Mechanism via which the {{object}} was assigned. {{enum}} + + + + + + Automatically generated, for example by a ESBC that auto-creates {{object}} objects. + + + + + For example, present in the factory default configuration, created by the ACS, or created by some other management entity (e.g. via a GUI). + + + + + + + + + IP Address of the externally connected SIP user agent. This is the IP address contained in the {{param|ContactURI}} parameter. + This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + The port of the externally connected SIP user agent. This is the port contained in the {{param|ContactURI}} parameter. + This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + + + This is the SIP signaling address of the externally connected SIP user agent. If the SIP user agent registers, then {{param}} is the Contact URI contained in the Contact header field of the REGISTER request received from the SIP user agent. If the SIP user agent does not register, then the {{param}} is provisioned by the ACS. + This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + + + Time when this registration will expire. This parameter is valid only for external SIP user agents that register. + If this registration never expires, this parameter SHOULD be set to the Unknown Time value. + + + + + + + + This parameter defines the User-Agent header that will be used by the SIP messages send by this user agent. Implementers SHOULD make the User-Agent header field a configurable option. + + + + + + + + + + + This object is dedicated to MGCP as defined in {{bibref|RFC3435}}. It models MGCP clients and networks. + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + MGCP client table (a client as described in {{bibref|TR-104i2|Section 4.2}}). Each MGCP client maintains a registration for the MGCP identities of the associated line with the {{object|#.Network}}. + + + + + + + Enable or disable this client. + + + + + + + + + If {{true}}, when {{param|Enable}} is set to {{false}} in-progress sessions remain intact, but no new sessions are allowed. When all sessions are terminated, the {{object}} is disabled. + + + + + + + + Indicates the status of this client. + + + + + + The client is operational and has established connectivity with the network + + + + + Transitional state where the client has been enabled and is waiting an external event to transition to the next state (i.e. IP connectivity, DNS resolution...) + + + + + The client is in the process of registering with the network + + + + + The client is in the process of deregistering over the network + + + + + The client is enabled, but is non-operational due a configuration error + + + + + A network error occurred + + + + + An error occurred during registration + + + + + This state indicates that the client has been disabled and is waiting for active session(s) to terminate before transitioning to the disabled state + + + + + The client is disabled + + + + + + + + + {{datatype|expand}} + + + + + + + + Register mode. + + + + + + + + + + + + Port listening for incoming call control signaling. + + + + + + + + + + + CPE domain string. If {{empty}}, the CPE SHOULD use its IP address. + + + + + + + + + + + User string used in accessing the call agent. + + + + + + + + + + + MGCP network with which this MGCP client is associated. + {{reference}} + + + + + + + + + + + Limit on the number of simultaneous voice sessions across this {{object}}. This MUST be less than or equal to {{param|.Capabilities.MaxSessionCount}}. + A value of zero indicates no explicit limit on the number of sessions. + + + + + + + + + + This object models a MGCP network (a network as described in {{bibref|TR-104i2|Section 4.2}}). + + + + + + + Enable or disable the {{object}}. Starts the DNS resolving when enabled. + + + + + + + + + If {{true}}, when {{param|Enable}} is set to {{false}} in-progress sessions remain intact, but no new sessions are allowed. When all sessions are terminated, the {{object}} is disabled. + + + + + + + + Indicates the status of this {{object}}. + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Host name or IP address of the main MGCP call agent. + + + + + + + + + + + Destination port to be used in connecting with the main MGCP call agent. + + + + + + + + + + + Host name or IP address of the backup MGCP call agent. + + + + + + + + + + + Destination port to be used in connecting with the backup MGCP call agent. + + + + + + + + + + + Message retransfer interval, in {{units}}. + + + + + + + + + + + + Max number of message retransfers. + + + + + + + + + + + Diffserv code point to be used for outgoing MGCP signaling packets. + + + + + + + + + + VLAN ID (as defined in {{bibref|802.1Q-2005}}) to be used for outgoing MGCP signaling packets for this network. A value of -1 indicates the default value is to be used. + If either {{param}} or {{param|EthernetPriorityMark}} are greater than zero, then the outgoing frames MUST be tagged. Otherwise, the outgoing frames MAY be tagged or untagged. + + + + + + + + + + + Ethernet priority code (as defined in {{bibref|802.1D-2004}}) to be used for outgoing MGCP signaling packets for this network. A value of -1 indicates the default value is to be used. + If either {{param|VLANIDMark}} or {{param}} are greater than zero, then the outgoing frames MUST be tagged. Otherwise, the outgoing frames MAY be tagged or untagged. + + + + + + + + + + + Indicates whether or not piggyback events are allowed to the MGCP call agent. + + + + + + + + Indicates whether or not to send RSIP immediately on restart. + + + + + + + + Enable or disable use of STUN to allow operation through NAT. Note: enabling STUN is to be interpreted as enabling the use of STUN for discovery, not use as a keep-alive mechanism. + + + + + + + + + Domain name or IP address of the STUN server. + + + + + + + + + + + For bandwidth-based admission control, a session can proceed only if there is {{param}} {{units}} of upstream bandwidth left available for non-voice traffic. This parameter is appropriate only in implementations in which the actual bandwidth can be known, such as a VoIP device embedded in a DSL B-NT. + + + + + + + + + + + For bandwidth-based admission control, a session can proceed only if there is {{param}} {{units}} of downstream bandwidth left available for non-voice traffic. This parameter is appropriate only in implementations in which the actual bandwidth can be known, such as a VoIP device embedded in a DSL B-NT. + + + + + + + + + + + Limit on the number of simultaneous voice sessions across all {{object|.MGCP.Client.}} referencing this {{object}}. This MUST be less than or equal to {{param|.Capabilities.MaxSessionCount}}. + A value of zero indicates no explicit limit on the number of sessions. + + + + + + + + + VoIP profile to use with this network. + {{reference}} + + + + + + + + + + + {{list}} {{reference}} + The CPE SHOULD use the first enabled item in the list among those supported by the remote endpoint and consistent with the available bandwidth. + + + + + + + + + + + + This object is dedicated to H.323 as defined in {{bibref|H.323}}. It models H.323 clients and networks. + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + H.323 client table (a client as described in {{bibref|TR-104i2|Section 4.2}}). Each H.323 client maintains a registration for the H.323 identities of the associated line with the {{object|#.Network}}. + + + + + + + Enable or disable this client. + + + + + + + + + If {{true}}, when {{param|Enable}} is set to {{false}} in-progress sessions remain intact, but no new sessions are allowed. When all sessions are terminated, the {{object}} is disabled. + + + + + + + + Indicates the status of this client. + + + + + + The client is operational and has established connectivity with the network + + + + + Transitional state where the client has been enabled and is waiting an external event to transition to the next state (i.e. IP connectivity, DNS resolution...) + + + + + The client is in the process of registering with the network + + + + + The client is in the process of deregistering over the network + + + + + The client is enabled, but is non-operational due a configuration error + + + + + A network error occurred + + + + + An error occurred during registration + + + + + This state indicates that the client has been disabled and is waiting for active session(s) to terminate before transitioning to the disabled state + + + + + The client is disabled + + + + + + + + + {{datatype|expand}} + + + + + + + + Enables or disables usage of H.235 security baseline security profile as defined in {{bibref|H.235.1}}. + + + + + + + + + Password to be used when H.235 is enabled. + + + + + + In ITU-T based H.235 authentication, the sendersID is the ID of the gateway as received from the Gatekeeper. As long as the endpointID is not received from the Gatekeeper, the sendersID will be applied as configured here. The generalID is the GatekeeperID. + + + + + + + + + H.323 network with which this H.323 client is associated. + {{reference}} + + + + + + + + + + + The H.323 ID assigned to the client. + + + + + + + + + + + Limit on the number of simultaneous voice sessions across this {{object}}. This MUST be less than or equal to {{param|.Capabilities.MaxSessionCount}}. + A value of zero indicates no explicit limit on the number of sessions. + + + + + + + + + + This object models a H.323 network (a network as described in {{bibref|TR-104i2|Section 4.2}}). + + + + + + + Enable or disable this {{object}}. Starts the DNS resolving when enabled. + + + + + + + + + If {{true}}, when {{param|Enable}} is set to {{false}} in-progress sessions remain intact, but no new sessions are allowed. When all sessions are terminated, the {{object}} is disabled. + + + + + + + + Indicates the status of this network. + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Host name or IP address of H.323 Gatekeeper. + + + + + + + + + Destination port to be used in connecting to the H.323 Gatekeeper. + + + + + + + + + Gatekeeper ID. + + + + + + + + + Defines the TimeToLive specification in the registration with the Gatekeeper in {{units}}. + + + + + + + + + + + Diffserv code point to be used for outgoing H.323 signaling packets. + + + + + + + + + + + VLAN ID (as defined in {{bibref|802.1Q-2005}}) to be used for outgoing H.323 signaling packets for this network. A value of -1 indicates the default value is to be used. + If either {{param}} or {{param|EthernetPriorityMark}} is greater than zero, then the outgoing frames MUST be tagged. Otherwise, the outgoing frames MAY be tagged or untagged. + + + + + + + + + + + Ethernet priority code (as defined in {{bibref|802.1D-2004}}) to be used for outgoing H.323 signaling packets for this network. A value of -1 indicates the default value is to be used. + If either {{param|VLANIDMark}} or {{param}} is greater than zero, then the outgoing frames MUST be tagged. Otherwise, the outgoing frames MAY be tagged or untagged. + + + + + + + + + + + Enable or disable use of STUN to allow operation through NAT. Note: enabling STUN is to be interpreted as enabling the use of STUN for discovery, not use as a keep-alive mechanism. + + + + + + + + + Domain name or IP address of the STUN server. + + + + + + + + + + + For bandwidth-based admission control, a session can proceed only if there is {{param}} {{units}} of upstream bandwidth left available for non-voice traffic. This parameter is appropriate only in implementations in which the actual bandwidth can be known, such as a VoIP device embedded in a DSL B-NT. + + + + + + + + + + + For bandwidth-based admission control, a session can proceed only if there is {{param}} {{units}} of downstream bandwidth left available for non-voice traffic. This parameter is appropriate only in implementations in which the actual bandwidth can be known, such as a VoIP device embedded in a DSL B-NT. + + + + + + + + + + + Limit on the number of simultaneous voice sessions across all {{object|.H323.Client.}} referencing this {{object}}. This MUST be less than or equal to {{param|.Capabilities.MaxSessionCount}}. + A value of zero indicates no explicit limit on the number of sessions. + + + + + + + + + VoIP profile to use with this network. + {{reference}} + + + + + + + + + + + {{list}} {{reference}} + The CPE SHOULD use the first enabled item in the list among those supported by the remote endpoint and consistent with the available bandwidth. + + + + + + + + + + + + Trunk table. + The {{object}} holds all parameters a CPE needs to set up a trunk connection with an NGN, as defined in {{bibref|ETSI_TS_181_019}}. + + + + + + + Enables or disables this trunk. + + + + + + + + + If {{true}}, when {{param|Enable}} is set to {{false}} in-progress sessions remain intact, but no new sessions are allowed. When all sessions are terminated, the {{object}} is disabled. + + + + + + + + Indicates the status of this trunk. + + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Mechanism via which the {{object}} was assigned. {{enum}} + + + + + + Automatically generated, for example by a ESBC that auto-creates {{object}} objects. + + + + + For example, present in the factory default configuration, created by the ACS, or created by some other management entity (e.g. via a GUI). + + + + + + + + + Name of the trunk. + + + + + + + + + + {{list}} Each range consists of a ''Start'' part consisting of 1 to n digits (string representation) followed by an OPTIONAL ''End'' part consisting of 1 to n digits prefixed by a "-" symbol. + Examples: + :0123456789 + :0123456700-0123456720 + Each time this value is changed, the table of Lines managed by the {{object|.Trunk}} is automatically adapted and each value of the {{param}} MUST be represented in corresponding {{param|.CallControl.Line.{i}.DirectoryNumber}} parameter. + If this trunk has a {{object|.SIP.Client.}} provider and {{param|.SIP.Client.{i}.E164Format}} is set to {{true}}, full E.164 numbers with country code (but without "+" prefix) MUST be used. + This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + + When {{true}}, a {{object|.CallControl.Line.{i}.}} instance SHOULD be created automatically for each identity within the ranges specified by {{param|DDIRange}}. + + + + + + + + Defines the maximum number of simultaneous communication channels handled by this trunk. A channel is used to convey an information signal, for example a digital bit stream, from one or several senders to one or several receivers. + + + + + + + + Maximal number of simultaneous communication channels in outbound direction supported across this trunk. The maximum number cannot exceed {{param|MaxChannels}} - {{param|MaxInboundChannelCount}}. A value n>0 means, that there are no more than n channels allowed, which are used by outbound calls. A value of -1 means that there are no restrictions in this direction. + + + + + + + + + + + Maximal number of simultaneous communication channels in inbound direction supported across this trunk. The maximum number cannot exceed {{param|MaxChannels}} - {{param|MaxOutboundChannelCount}}. A value n>0 means, that there are no more than n channels allowed, which are used by inbound calls. A value of -1 means that there are no restrictions in this direction. + + + + + + + + + + + The {{param}} option controls which end of an inbound call leg will have priority over the negotiation of codecs. + + + + + + + + + + + SIP client or ISDN interface associated with the identities represented by this trunk. + {{reference}} + This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + + + + + Call control and call routing parameters. This object is a control plane application for the VoiceService that provides numbers or names based routing, local PBX functionalities and advanced telephony features. + It is mutually exclusive with the {{object|.Interwork}} table which is used in case of switching capabilities. + + + + Maximum number of {{object|Line.{i}.}} in {{object}}. + This value cannot be greater than {{param|.Capabilities.MaxLineCount}}. + + + + + + + + Maximum number of {{object|Extension.{i}.}} in {{object}}. + This value cannot be greater than {{param|.Capabilities.MaxExtensionCount}}. + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + Voice line table. + Support for adding and removing lines is conditional on whether the CPE supports more than one line in total as indicated by {{param|.Capabilities.MaxLineCount}}. + + + + + + + + + + Enable or disable this line. + + + + + + + + + If {{true}}, when {{param|Enable}} is set to {{false}} in-progress sessions remain intact, but no new sessions are allowed. When all sessions are terminated, the {{object}} is disabled. + + + + + + + + Indicates the status of this line. + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Indicates the call status for this line. + + + + + + + + + + + + + + + Mechanism via which the {{object}} instance was created. + + + + + + explicitly created by the ACS or some other management entity, e.g. via a GUI + + + + + created by the CPE according to the {{param|.Trunk.{i}.DDIRange}} setting of the associated {{object|.Trunk.{i}.}} in {{param|Provider}} + + + + + + + + Directory number associated with this line. + + + + + + + + + + + Provider for the line. The value MUST be the path name of a row in one of the following tables: + {{reference}} + + + + + + + + + + + Set of calling features to apply to this line. + {{reference}} + + + + + + + + + + + + Statistics for this {{object|#}} instance. + The CPE MUST reset the line's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the line becomes operationally down due to a previous administrative down (i.e. the line's {{param|#.Status}} parameter transitions to a down state after the line is disabled) or when the line becomes administratively up (i.e. the line's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). + + + + + Statistics for incoming calls. + + + + Total number of received calls to the line. + + + + + + + + Total number of calls that successfully completed call setup signaling. + + + + + + + + Total number of calls that failed to successfully complete call setup signaling. + + + + + + + + Total calls that were successfully connected, but dropped unexpectedly while in progress without explicit user termination. + + + + + + + + Cumulative call duration in {{units}}. + + + + + + + + + + + Statistics for outgoing calls. + + + + Total number of outgoing calls attempted from the line. + + + + + + + + Total number of calls that successfully completed call setup signaling. + + + + + + + + Total number of calls that failed to successfully complete call setup signaling. + + + + + + + + Total calls that were successfully connected, but dropped unexpectedly while in progress without explicit user termination. + + + + + + + + Cumulative call duration in {{units}}. + + + + + + + + + + + RTP statistic parameters. + + + + Total number of RTP packets received. + + + + + + + + Total number of RTP packets sent. + + + + + + + + Total number of RTP packets that have been lost. + + + + + + + + Total number of bytes sent. + + + + + + + + Total number of bytes received. + + + + + + + + + DSP statistic parameters. + + + + Total number of times the receive jitter buffer has overrun. + + + + + + + + Total number of times the receive jitter buffer has underrun. + + + + + + + + + Extension table containing the local numbers and names. + Support for adding and removing extensions is conditional on whether the CPE supports more than one line in total as indicated by {{param|.Capabilities.MaxExtensionCount}}. + + + + + + + + + + Enable or disable this extension. + + + + + + + + + If {{true}}, when {{param|Enable}} is set to {{false}} in-progress sessions remain intact, but no new sessions are allowed. When all sessions are terminated, the {{object}} is disabled. + + + + + + + + Indicates the status of this extension. + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Indicates the call status for this extension. + + + + + + + + + + + + + + + Mechanism via which the {{object}} object was assigned. {{enum}} + + + + + + Automatically generated, for example by a ESBC that auto-creates {{object}} objects + + + + + For example, present in the factory default configuration, created by the ACS, or created by some other management entity (e.g. via a GUI). + + + + + + + + + The name of this extension. + This name will also be used for CallerIdName functionality and for displaying on screen of handset, etc... + + + + + + + + + + The number assigned to this extension for internal calls. + + + + + + + + + + + Provider for the extension. The value MUST be the path name of a row in one of the following tables: + {{reference}} + + + + + + + + + + + Numbering plan to be used for outgoing calls. + {{reference}} + + + + + + + + + + + Set of calling features to apply to this extension. + {{reference}} + + + + + + + + + + + Status of endpoint managed call waiting, if supported. {{enum}} + This parameter SHOULD NOT be present if the CPE does not support endpoint managed call waiting. + + + + + + + + + + + + + + Status of endpoint managed conference calling, if supported. {{enum}} + This parameter SHOULD NOT be present if the CPE does not support endpoint managed conference calling. + + + + + + + + + + + + + + + Number of active sessions on this extension. + : 0 indicates no call is in progress. + : 1 indicates a single call is in progress. + : Higher values indicate a conference call is in progress. + This parameter SHOULD NOT be present if the CPE does not support endpoint managed conference calling. + + + + + + + + Voice mail to use when the {{object}} is not responding. + {{reference}} + + + + + + + + + + + + Statistics for this extension. + The CPE MUST reset the extension's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the extension becomes operationally down due to a previous administrative down (i.e. the extension's {{param|#.Status}} parameter transitions to a down state after the extension is disabled) or when the extension becomes administratively up (i.e. the extension's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). + + + + + Statistics for incoming calls. + + + + Total number of received calls to the extension. + + + + + + + + Total number of calls that successfully completed call setup signaling. + + + + + + + + Total number of calls that failed to successfully complete call setup signaling. + + + + + + + + Total calls that were successfully connected, but dropped unexpectedly while in progress without explicit user termination. + + + + + + + + Cumulative call duration in {{units}}. + + + + + + + + + + + Statistics for outgoing calls. + + + + Total number of outgoing calls attempted from the extension. + + + + + + + + Total number of calls that successfully completed call setup signaling. + + + + + + + + Total number of calls that failed to successfully complete call setup signaling. + + + + + + + + Total calls that were successfully connected, but dropped unexpectedly while in progress without explicit user termination. + + + + + + + + Cumulative call duration in {{units}}. + + + + + + + + + + + RTP statistic parameters. + + + + Total number of RTP packets received. + + + + + + + + Total number of RTP packets sent. + + + + + + + + Total number of RTP packets that have been lost. + + + + + + + + Total number of bytes sent. + + + + + + + + Total number of bytes received. + + + + + + + + + DSP statistic parameters. + + + + Total number of times the receive jitter buffer has overrun. + + + + + + + + Total number of times the receive jitter buffer has underrun. + + + + + + + + + This object models an extension as a group of extensions. + + + + + + + {{datatype|expand}} + + + + + + + + {{list}} If this parameter is null the group is treated as a group that contains all extensions. + {{reference}} + + + + + + + + + + + Defines the way of ringing for the extensions in this group. {{enum}} + + + + + + all extensions ring together + + + + + extensions ring one by one in the order defined in {{param|Extensions}}. If the ringing extension doesn’t answer after {{param|RingTimeout}}, the next extension in the list is tried + + + + + as Hierarchical, but the list is not reset between incoming calls + + + + + + + + The time (in {{units}}) to wait for extension reply before trying the next extension. + Only applicable if {{param|RingType}} = {{enum|Hierarchical|RingType}} or {{enum|Cyclic|RingType}}. + + + + + + + + + + + Voice mail configuration related to a particular extension. + + + + + + + Enables or disables this entry. + + + + + + + + + {{datatype|expand}} + + + + + + + + This limits the number of messages in a voicemail folder. + + + + + + + + Defines the maximum amount of time in {{units}} of an incoming message. Use this when there are many users and disk space is limited. A value of 0 means there will be no maximum time limit enforced. + + + + + + + + + + Minimal size in {{units}} of the voicemail box. + + + + + + + + + + SMTP server FQDN or IP Address used for voicemail notifications. + + + + + + + + + + SMTP server port for voicemail notifications. + + + + + + + + + + + SMTP user name. + + + + + + + + + + SMTP password. + + + + + + + + + + Type of authentication used to connect to the SMTP server. + + + + + + + + + + + + + + Sender's email address. + + + + + + + + + + + The {{object}} is a table that is used to control which extensions ring when an incoming call is received. + The map approach separates the call routing aspects from the configuration of the lines and extensions. It support PBX concepts such as DDI (one extension per line) and groups (parallel dialing if extensions have same priority and hunting when extensions have different priority). + + + + + + + + + + + Enables or disables this entry. + + + + + + + + + {{datatype|expand}} + + + + + + + + {{object|#.Line}} used by the call. + {{reference}} + + + + + + + + + + + {{object|#.Extension}} that rings on incoming call. + {{reference}} + + + + + + + + + + + Indicates the order in which extensions ring. + First all extensions with the lowest order value will ring. + When all these extensions have rejected the call or did not reply, the next order value will be attempted. + + + + + + + + + + + The time in {{units}} the extension will ring before it is considered that there was no reply. + + + + + + + + + + + The {{object}} is a table that is used to control which line is used when an extension makes a call. + + + + + + + + + + + Enables or disables this entry. + + + + + + + + + {{datatype|expand}} + + + + + + + + Public number to be presented outgoing calls, instead of the effective extension number. + + + + + + + + + + {{object|#.Extension}} which makes the outgoing call. + {{reference}} + + + + + + + + + + + Identifies the {{object|#.Line}} to be used for outgoing calls. + When applicable in the signaling protocol the DirectoryNumber will be used as source number for this call. + Note: The Line to be used for an outgoing call can be overridden by the {{object|#.NumberingPlan}}. + {{reference}} + + + + + + + + + + + The order in which using the lines is attempted. This is used to implement a backup mechanism. + If the first line is not available, using the next one will be attempted. + + + + + + + + + + + + Information related the numbering plan. + {{object}} is applicable only if the device supports a dialing mechanism for which a number plan is needed (for example, some devices with an explicit Dial button do not need to be aware of the dialing plan) and if the device does not already support a numbering plan mechanism for this call control (e.g., in-band via MGCP). + + + + + + + {{datatype|expand}} + + + + + + + + This is the minimum number of digits to be collected before an outgoing request (e.g., a SIP INVITE) can be initiated. + If ''End of Dialing'' (as defined in {{param|InterDigitTimerStd}}) occurs before the minimum number of digits has been reached then the number will be considered incomplete and no request will be initiated. + In practice, searching {{object|.CallControl.NumberingPlan.{i}.PrefixInfo.{i}.}} commences only once {{param}} digits has been received. + + + + + + + + + + + When this number of digits has been collected, an outgoing request (e.g., a SIP INVITE) MUST be initiated. Any additional dialed digits will be ignored. This parameter is only used in the case that no match in {{object|.CallControl.NumberingPlan.{i}.PrefixInfo.{i}.}} has been found. + + + + + + + + + + + This timer is the maximum allowable time (expressed in {{units}}) between the dialing of digits. This timer is restarted every time a digit is dialed. Expiration of this timer indicates ''End of Dialing''. + + + + + + + + + + + + This timer is the maximum allowable time (expressed in {{units}}) between the dialing of digits once the minimum number of digits defined on a prefix based has been reached. + This timer is only applicable to "open numbering", where the exact number of digits for a prefix is not known. + + + + + + + + + + + + Digit that can be used by the subscriber to indicate that dialing has completed. + + + + + + + + + + + The tone that tells the user when the number dialed is determined to be invalid. + {{reference}} + + + + + + + + + + + This is the maximum number of instances of {{object|.CallControl.NumberingPlan.{i}.PrefixInfo.{i}.}} that can be supported. + + + + + + + + Indicates the number of instances of {{object|.CallControl.NumberingPlan.{i}.PrefixInfo.{i}.}}. + + + + + + + + + Each entry in this table contains information related to an individual prefix in the NumberingPlan. + It is anticipated that once the minimum number of digits has been received, the VoIP device will search this prefix list every time a new digit is received. If no new entry is found, then the object that was previously found will be used instead. + If supported, {{param|.CallControl.NumberingPlan.{i}.PrefixInfoMaxEntries}} and {{param|.CallControl.NumberingPlan.{i}.PrefixInfoNumberOfEntries}} MUST be present. + The defaults given for this object apply only to explicit creation of an instance of this object and not to automatic creation of instances of this object due to creation of a parent object. + + + + + + + {{datatype|expand}} + + + + + + + + Enables or disables this entry. + + + + + + + + + This is a string representation of a range of prefixes. Each prefix consists of a ''From'' part consisting of 1 to n digits (string representation) followed by an OPTIONAL ''To'' part consisting of exactly one digit prefixed by a "-" symbol. + All characters in the "From" and "To" parts of the prefix range MUST be "0-9", "*" or "#". + A further constraint is that the "To" digit MUST always be numerically greater than the last digit of the "From" part. + Examples: + : 02 + : 031-5 + : 032 + : 0325 + : *#34 + : #22 + + + + + + + + + + + This is the minimum number of allowable digits for the prefix range. Once the minimum number of digits has been reached, {{param|#.InterDigitTimerOpen}} will be used instead of {{param|#.InterDigitTimerStd}}. + If the minimum number of digits has been reached and the inter-digit timer expires, an outgoing request is initiated. + + + + + + + + + + + This is the maximum number of allowable digits for the prefix range. Once the number of digits received reaches this value an outgoing request is initiated. + + + + + + + + + + + If this parameter has a non-zero value, the specified number of digits will be removed from the internal digit buffer (which contains the dialed digits) from the position specified by {{param|PosOfDigitsToRemove}}. + Subsequently a search of {{object}} for a matching prefix using the modified number is performed. Note that this parameter does not have any impact on the number sent in the outgoing request: it is used only for searching within the Numbering Plan. + This parameter has no effect if it is set to 0. + This parameter is provided to handle Carrier override and other codes used as prefix to standard numbers and to ensure that the correct ''End of Dialing'' can be specified without significant data duplication. + + + + + + + + + + + This parameter is used in conjunction with {{param|NumberOfDigitsToRemove}}. It specifies the position within the internal digit buffer from which the digits are to be removed. + + + + + + + + + + + The tone to be played by the VoIP device when the user has dialed exactly the same digits as defined in the prefix. The VoIP device will cease playing the tone once an additional digit has been dialed. + {{reference}} + + + + + + + + + + + This is a string representing a Facility Action implemented by the VoIP device. + The parameter MAY instead indicate a vendor-specific Facility Action, which MUST use the format defined in {{bibref|TR-106}}. + When {{empty}} or the value is an unrecognized string (i.e. a Facility Action not supported by the CPE) normal outgoing requests are made. + + + + + + + + + + + + Optional argument associated with {{param|FacilityAction}}. The interpretation of the argument is dependent on a specific value of {{param|FacilityAction}}. {{reference}} + + + + + + + + + + + + + This object models the calling features that can be apply on {{object|.CallControl.Line}} or {{object|.CallControl.Extension}}. + + + + {{numentries}} + + + + + + + + + This object models a set of calling features that can be applied in {{object|.CallControl.Line.}} or {{object|.CallControl.Extension.}} objects. + + + + + + + {{datatype|expand}} + + + + + + + + Enable or disable the transmission of caller ID information on incoming calls (CLIP). + + + + + + + + Enable or disable the transmission of caller ID name information on incoming calls (CNIP). + + + + + + + + Enables or disables call waiting in the Endpoint. + This parameter SHOULD NOT be present if the CPE does not support Endpoint managed call waiting. + + + + + + + + Enables or disables unconditional call forwarding by the endpoint. + This parameter SHOULD NOT be present if the CPE does not support Endpoint based call forwarding. + + + + + + + + Directory number to which all incoming calls to this line are forwarded when {{param|CallForwardUnconditionalEnable}} is {{true}}. + This parameter SHOULD NOT be present if the CPE does not support Endpoint based call forwarding + + + + + + + + + + Enables or disables call forwarding-on-busy by the Endpoint. + This parameter SHOULD NOT be present if the CPE does not support Endpoint based call forwarding. + + + + + + + + Directory number to which all incoming calls to this line are forwarded when {{param|CallForwardOnBusyEnable}} is {{true}} and the line is busy. + This parameter SHOULD NOT be present if the CPE does not support Endpoint based call forwarding. + + + + + + + + + + Delay in {{units}} before considering there is no answer for call forwarding-on-busy. + This parameter SHOULD NOT be present if the CPE does not support Endpoint based call forwarding. + + + + + + + + + + Enables or disables call forwarding-on-no-answer by the Endpoint. + This parameter SHOULD NOT be present if the CPE does not support Endpoint based call forwarding. + + + + + + + + Directory number to which all incoming calls to this line are forwarded when {{param|CallForwardOnNoAnswerEnable}} is {{true}} and there is no local answer. + This parameter SHOULD NOT be present if the CPE does not support Endpoint based call forwarding. + + + + + + + + + + Delay in {{units}} before considering there is no answer for call forwarding-on-no-answer. + This parameter SHOULD NOT be present if the CPE does not support Endpoint based call forwarding. + + + + + + + + + + Enables or disables call transfer by the Endpoint. + This parameter SHOULD NOT be present if the CPE does not support Endpoint based call transfer. + + + + + + + + Enables or disables Message Waiting Indication by the Endpoint. + This parameter SHOULD NOT be present if the CPE does not support MWI. + + + + + + + + Enables or disables Visual Message Waiting Indication. + + + + + + + + Indicates the number of messages which are currently waiting on this line as known by the CPE. + This parameter SHOULD NOT be present if the CPE does not support MWI. + + + + + + + + Enable or disable Anonymous Call Block capability in the endpoint (ACR). + This parameter SHOULD NOT be present if the CPE does not support endpoint based Anonymous Call Block capability. + + + + + + + + Enable or disable Anonymous Call capability in the endpoint (CLIR). + This parameter SHOULD NOT be present if the CPE does not support endpoint based Anonymous Call capability. + + + + + + + + Enable or disable Do Not Disturb capability in the Endpoint. When enabled, all calls are forwarded to voice mail. + This parameter SHOULD NOT be present if the CPE does not support Endpoint based Do Not Disturb capability. + + + + + + + + Enable or disable Repeat Dial capability in the Endpoint. + This parameter SHOULD NOT be present if the CPE does not support Endpoint based Repeat Dial capability. + + + + + + + + Enable or disable Voice Mail capability in the Endpoint. + This parameter SHOULD NOT be present if the CPE does not support Endpoint based Voice Mail capability. + + + + + + + + Enable or disable Call Interception capability in the Endpoint. + + + + + + + + Enable or disable automatic recall on busy (Completion of Calls to Busy Subscriber) capability in the Endpoint. + + + + + + + + Enable or disable successive forwarding (Inhibition of Incoming Forwarded Calls) from the Endpoint. + + + + + + + + Allow or block any internal forward to the Endpoint. + + + + + + + + Enable or disable secret identity of this Endpoint in case it initiates (on an external incoming call) a forward to another internal phone Endpoint. + If enabled, only the remote ''caller party'' can be identified (if not anonymous), not this intermediate ''via'' phone extension. + + + + + + + + Enable or disable FollowMe capability in the Endpoint. + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + This object defines a Call Forwarding Timed (CFT) that permit the user to forward calls to particular destinations depending on the time of day. + Note: a bad configuration (e.g. timeslots overlapping) could cause unexpected behavior. + + + + + + + Whether this schedule is currently enabled. + + + + + + + + {{datatype|expand}} + + + + + + + + Day where the schedule active. + + + + + + + + + + + + + For all days schedule + + + + + + + + Start time of the schedule in the form : hh:mm. + + + + + + + + + + End time of the schedule in the form : hh:mm. + + + + + + + + + + Number to forward the call to. + + + + + + + + + + + This object defines a Selective Call Forwarding (SCF) that permit the user to forward calls to different destinations depending on the calling number. + + + + + + + + + + Enables or disables this Selective Call Forward. + + + + + + + + + {{datatype|expand}} + + + + + + + + Calling number concerned by the forward. + The CPE SHOULD perform an exact match with this string without any attempts at number normalization. + + + + + + + + + + Number to forward the call to. + + + + + + + + + + + This object defines a Selective Call Rejection (SCREJ) that permit the user to selectively reject calls depending on the calling number. + + + + + + + + + + Enables or disables this Selective Call Rejection. + + + + + + + + + {{datatype|expand}} + + + + + + + + Calling number concerned by the reject. + The CPE SHOULD perform an exact match with this string without any attempts at number normalization. + + + + + + + + + + + This object defines the FollowMe destinations mapping definition, in the provided sequence order. + + + + + + + + + + + Enables or disables this FollowMe sequence item. + + + + + + + + + {{datatype|expand}} + + + + + + + + Delay in {{units}} before next FollowMe sequence item applies. + + + + + + + + + + Directory number to which all incoming calls to this line are forwarded to after {{param|Delay}}, when {{param|#.FollowMeEnable}} is {{true}}. In this case, {{param|#.CallForwardOnNoAnswerNumber}} is not used. + + + + + + + + + + For a given {{param|Number}}, defines the order of this item in the FollowMe sequence. + + + + + + + + + Voice to mail specific attributes. Applies only if {{param|#.VoiceMailEnable}} is set to {{true}}. + + + + Enable or disable voice mail notification. + + + + + + + + Defines the maximum amount of time in {{units}} of an incoming message. Use this when there are many users and disk space is limited. A value of 0 means there will be no maximum time limit enforced. + + + + + + + + + + Indicates if the message is sent as an attachment in voice mail notification. + + + + + + + + Whether the voice to mail message is kept on the CPE after sending the mail. Applicable only if {{param|Attach}} is {{true}}. + + + + + + + + E-mail for voice to mail notification messages. + + + + + + + + + Each entry in this table configures Inter-Working Function switching features. + It is mutually exclusive with the {{object|.CallControl}} object which is used in case of PBX or Endpoint capabilities. + + + + + + + Enable or disable this {{object}} instance. + + + + + + + + + If {{true}}, when {{param|Enable}} is set to {{false}} in-progress sessions remain intact, but no new sessions are allowed. When all sessions are terminated, the {{object}} is disabled. + + + + + + + + Indicates the status of this {{object}} instance. + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Indicates the operational status of the {{object}} connections when {{param|Status}} is {{enum|Up|Status}}. {{enum}} + + + + + + Indicates the {{object}} is operational. + + + + + Indicates the {{object}} is not operational. + + + + + Indicates the {{object}} has lost connection to all of the Network servers. + + + + + + + + + Human-readable string identifying the reason or explanation for the current {{param|OperationalStatus}}. + + + + + + + + + + This parameter indicates whether or not the CPE supports a registration procedure that conveys its signaling IP address:port to the network. This parameter also indicates whether the network-facing Client object and its parameters are statically provisioned by the ACS or dynamically created by the CPE. {{enum}} + + + + + + The CPE does not register toward the service provider network. The ACS creates the Client object and statically provisions the Client parameters, including the signaling address + + + + + The CPE registers toward the service provider network. The ACS creates the Client object and statically provisions its parameters, excluding the signaling address which is dynamically assigned by the CPE + + + + + The CPE registers toward the service provider network. The CPE creates the Client object and dynamically assigns its signaling address + + + + + The CPE registers toward the service provider network. The ACS creates the Client object and statically provisions the Client parameters, including the signaling address + + + + + + + + This parameter indicates whether or not an externally connected user device supports a registration procedure to convey its signaling address to the CPE. This parameter also indicates whether the user-facing objects and parameters that contain the external user device signaling address are statically provisioned by the ACS or dynamically learned by the CPE. {{enum}} + + + + + + The external user device does not register with the CPE. The ACS creates the object containing the signaling address of the externally connected user device and statically configures the signaling address of the user device + + + + + The externally connected user device registers with the CPE. The ACS creates the object that contains the signaling address of the external user device. The CPE sets the signaling address learned when the user device registers + + + + + The externally connected user device registers with the CPE. The CPE dynamically creates the object that contains the signaling address of the external user device and sets the signaling address learned when the user device registers + + + + + + + + This attribute indicates whether or not the CPE performs E.164 routing of incoming requests received from the service provider network when the target Endpoint is a PBX. + + + + + + + + This parameter indicates how the CPE treats authentication challenges received from the service provider network. This parameter only has meaning when the CPE supports an externally connected user device (e.g., the CPE is acting as a gateway between the user device and the network). {{enum}} + + + + + + The CPE transparently passes authentication challenges and challenge responses between the service provider network and the external user device + + + + + The CPE responds to authentication challenges received from the service provider network on behalf of the externally connected user device. The CPE does not send authentication challenges to the externally connected user device + + + + + The CPE responds to authentication challenges received from the service provider network on behalf of the externally connected user device. In addition, the CPE generates authentication challenges toward the externally connected user device + + + + + + + + The network IP Address of the CPE. The CPE MUST resolve this when the {{object|.Interwork.{i}.}} object is created. + Note: In case of multiple network IP addresses, the choice is left to the CPE. + + + + + + + + URI of the Interworking Rule Set for this {{object}} instance. + + + + + + + + + + The duration in {{units}} of the interval for which the CPE SHOULD send request to refresh the Interworking Rule Set. + A value of '0' indicates that this feature is disabled. + + + + + + + + + + An absolute time reference in UTC to determine when the CPE will send a request to refresh the Interworking Rule Set. Each refresh request MUST occur at this reference time plus or minus an integer multiple of the {{param|InterworkingRuleSetInterval}}. + {{param}} is used only to set the ''phase'' of refresh requests. The actual value of {{param}} can be arbitrarily far into the past or future. + For example, if {{param|InterworkingRuleSetInterval}} is 86400 (a day) and if {{param}} is set to UTC midnight on some day (in the past, present, or future) then the refresh requests will occur every day at UTC midnight. These MUST begin on the very next midnight, even if {{param}} refers to a day in the future. + The Unknown Time value defined in {{bibref|TR-106a2|section 3.2}} indicates that no particular time reference is specified. That is, the CPE MAY locally choose the time reference, and needs only to adhere to the specified {{param|InterworkingRuleSetInterval}}. + If absolute time is not available to the CPE, its behavior MUST be the same as if the {{param}} parameter was set to the Unknown Time value. + + + + + + + + URI of the Firewall Rule Set for this {{object}} instance. + + + + + + + + + + The duration in {{units}} of the interval for which the CPE SHOULD send request to refresh the Firewall Rule Set. + A value of '0' indicates that this feature is disabled. + + + + + + + + + + An absolute time reference in UTC to determine when the CPE will send a request to refresh the Firewall Rule Set. Each refresh request MUST occur at this reference time plus or minus an integer multiple of the {{param|FirewallRuleSetInterval}}. + {{param}} is used only to set the ''phase'' of refresh requests. The actual value of {{param}} can be arbitrarily far into the past or future. + For example, if {{param|FirewallRuleSetInterval}} is 86400 (a day) and if {{param}} is set to UTC midnight on some day (in the past, present, or future) then the refresh requests will occur every day at UTC midnight. These MUST begin on the very next midnight, even if {{param}} refers to a day in the future. + The Unknown Time value defined in {{bibref|TR-106a2|section 3.2}} indicates that no particular time reference is specified. That is, the CPE MAY locally choose the time reference, and needs only to adhere to the specified {{param|FirewallRuleSetInterval}}. + If absolute time is not available to the CPE, its behavior MUST be the same as if the {{param}} parameter was set to the Unknown Time value. + + + + + + + + Human-readable string identifying the name or explanation for this {{object}}. + + + + + + + + + + Reference to the {{object|.SIP.Proxy}} associated with this {{object}}. {{reference}} + + + + + + + + + + + {{list}} {{reference}} + List of available Networks for routing calls. + + + + + + + + + + + This parameter is MUST contain the {{object|.SIP.Client}} for all {{object|.Trunk}} objects referenced in the {{object|Map}} table when {{param|E164Mode}} = {{true}}. + + + + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + Each table entry references a row in the {{object|.SIP.Registrar}} table to identify the User IP address and listening port for the Device and the Network to route calls to. + + + + + + + + + + Enable ({{true}}) or disable ({{false}}) {{object}}. + + + + + + + + + {{datatype|expand}} + + + + + + + + The {{object|.SIP.Registrar}} to use with this {{object|#}}. The value of {{param}} MUST be unique over all {{object|.Interwork.{i}.}}. + {{reference}} + + + + + + + + + + + If not null this provides the appropriate {{object|.SIP.Network}} to route calls from this User server to. + {{reference}} + + + + + + + + + + + + For interworking use cases such as SIP-ISDN PBX plug and ESBC : mapping instance between a Network interface and a User extension. + + + + + + + Enable ({{true}}) or disable ({{false}}) this connection mapping. + + + + + + + + + Indicates the status of this connection mapping. {{enum}} + + + + + + indicates the {{object}} is valid + + + + + indicates the {{object}} is valid but either the Network or User connection is not operational + + + + + + + + + {{datatype|expand}} + + + + + + + + Human-readable string identifying the reason or explanation of the current mapping {{param|Status}}. + + + + + + + + + + The last time the Status was updated. + + + + + + + + Mechanism via which this connection mapping was assigned. {{enum}} + + + + + + Automatically generated, for example by a ESBC that auto-creates User and Network connections + + + + + For example, present in the factory default configuration, created by the ACS, or created by some other management entity (e.g. via a GUI). + + + + + + + + + {{reference}}. This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + + + + {{reference}}. This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + + + + Digit map controlling digit collection on a User interface. The string defines the criteria to be met as digits are collected before an outgoing request (e.g., a SIP INVITE) can be initiated. + The syntax of this parameter is exactly the syntax used by MGCP as defined in {{bibref|RFC3435|Section 2.1.5}}. + This parameter is applicable only if the User interface supports per digit dialing and the Network interface supports en-bloc dialing only. + + + + + + + + + + + Enables use of {{param|DigitMap}}. + + + + + + + + + Indicates the priority for this combination of Network-to-User mapping, where 1 is the highest priority. Where the priority differs between entries in this table, the CPE SHOULD use the highest priority (lowest numbered) entry. Where the priorities are equal among multiple entries, the CPE MAY apply a local criterion for choosing among them. + + + + + + + + + + + This table contains a list of calls. An entry is similar to a CDR (Call Detail Record) as used in PBX or on mobile phones. + An entry is created each time a call is terminated. If the number of {{object|.CallLog}} exceeds {{param|.Capabilities.MaxCallLogCount}}, the CPE SHOULD remove the oldest {{object|.CallLog}} object on basis of {{param|Start}} parameter. + + + + + + + {{datatype|expand}} + + + + + + + + Number of the party originating the call. + + + + + + + + + + Number of destination party of the call. + + + + + + + + + + Party originating the call. + {{reference}} + {{object|.Trunk}}, {{object|.SIP.Registrar.{i}.Account}} and {{object|.SIP.Client}} objects SHOULD be referenced only when {{object|.Interwork}} is in use. + + + + + + + + + + + Destination party of the call. + {{reference}} + {{object|.Trunk}}, {{object|.SIP.Registrar.{i}.Account}} and {{object|.SIP.Client}} objects SHOULD be only referenced only when {{object|.Interwork}} is in use. + + + + + + + + + + + The phone number of the remote party after the dial plan has been processed. + + + + + + + + + + The {{object|.CallControl.Line}} used to process the call. + {{reference}} + When {{object|.Interwork}} is in use, this parameter is {{empty}}. + + + + + + + + + + + {{list}} {{reference}} + For an incoming call multiple {{object|.CallControl.Extension}} objects can be involved till one user answers the call. + When {{object|.Interwork}} is in use, this parameter is {{empty}}. + + + + + + + + + + + Direction of the call. + + + + + + + + + + + Start of the call. + + + + + + + + Length of the call in {{units}}. + + + + + + + + + + The call termination cause. + The parameter MAY instead indicate a vendor-specific cause, which MUST use the format defined in {{bibref|TR-106}}. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Indicates the number of entries in {{object|.CallLog.{i}.Session.{i}.}}. Sessions are the equivalent of RTP streams in VoIP calls : a call can have more than one session in sequence when codec changes happen during a call. In multimedia calls, multiple sessions in parallel are possible. + + + + + + + + {{numentries}} + + + + + + + + + This table contains signaling performance statistics for each protocol involved in the call. + + + + + + + Protocol for which this signaling performance statistics are available. + + + + + + + + + + + The time between the instant a system receives a call attempt and the instant of invitation of ringing at the call receiver end instrument in {{units}}. + + + + + + + + + + The time in {{units}} between : + :- the instant a system has received information that the called party is connected + :- the instant the first media packet goes out the CPE + The value could be negative if a media packet is sent before the connection establishment. + + + + + + + + + + The time in {{units}} between : + :- the instant a system has received information that the called party is connected + :- the instant the first media packet goes into the CPE + The value could be negative if a media packet arrives before the connection establishment. + + + + + + + + + + + Session information within one call. + + + + + + + The type of media stream used in this session. + + + + + + + + + + + + + The time that the session started, in UTC. + + + + + + + + Length of the session in {{units}}. + + + + + + + + + + Session Identifier. For the SIP protocol this corresponds to the SIP SDP session identifier. + + + + + + + + + + SIP Session Identifier + + + + + + + + + + + The source of the session information within one call. + + + + + The RTP part of the source session information. + + + + The IP address of far end VoIP device. + + + + + + + + The UDP port used for current session in the far end device. + + + + + + + + + + The local UDP port used for current session. + + + + + + + + + + The minimum relative transit time in {{units}} between two packets as defined in {{bibref|RFC3611}}. + A value of -1 indicates no reliable value is available. + + + + + + + + + + + The maximum relative transit time in {{units}} between two packets as defined in {{bibref|RFC3611}}. + A value of -1 indicates no reliable value is available. + + + + + + + + + + + The mean relative transit time in {{units}} between each two packet series as defined in {{bibref|RFC3611}}. + A value of -1 indicates no reliable value is available. + + + + + + + + + + + 1-Point Packet Delay Variation according to {{bibref|Y.1540}} in {{units}}. + A value of -1 indicates no reliable value is available. + + + + + + + + + + + Average delay in {{units}} added by buffer processing. + A value of -1 indicates no reliable value is available. + + + + + + + + + + + The number of bursts (as defined in {{bibref|RFC3611}}) that occur during this session (during one burst several packets MAY be lost). + The burst's threshold is configured with the parameter {{param|.VoIPProfile.{i}.RTP.Gmin}}. + + + + + + + + Total number of RTP packets received for this session. + + + + + + + + Total number of RTP packets sent for this session. + + + + + + + + Total number of RTP packets that have been lost for this session (see {{bibref|RFC3611}}). + + + + + + + + Total number of RTP packets that have been discarded for this session (see {{bibref|RFC3611}}). + + + + + + + + Total number of bytes received for this session. + + + + + + + + Total number of bytes sent for this session. + + + + + + + + Current receive packet loss rate in percent, calculated as defined in {{bibref|RFC3550|Section 6.4}}. + + + + + + + + + + Current far end receive packet lost rate in percent, calculated as defined in {{bibref|RFC3550|Section 6.4}}. + + + + + + + + + + Current receive interarrival jitter in timestamp units. Calculated from J(i) as defined in {{bibref|RFC3550|Section 6.4}}. + A value of -1 indicates no reliable value is available. + + + + + + + + + + Current Interarrival jitter in timestamp units as reported from the far-end device via RTCP. Calculated from J(i) as defined in {{bibref|RFC3550|Section 6.4}}. + A value of -1 indicates no reliable value is available. + + + + + + + + + + Average receive interarrival jitter in timestamp units since the beginning of the current call. Calculated as the average of the interarrival jitter values reported by the far-end. + A value of -1 indicates no reliable value is available. + + + + + + + + + + Average far-end interarrival jitter in timestamp units since the beginning of the current call. Calculated as the average of the interarrival jitter values reported by the far-end. + A value of -1 indicates no reliable value is available. + + + + + + + + + + Current round trip delay in {{units}} calculated as defined in {{bibref|RFC3550|Section 6.4}}. + A value of -1 indicates no reliable value is available. + + + + + + + + + + + Average round trip delay in {{units}} since the beginning of the current session. + A value of -1 indicates no reliable value is available. + + + + + + + + + + + Sample frequency in {{units}} used by the codec for this session. + + + + + + + + + + + The DSP part of the line session information. + + + + + The receive codec used in this session. + + + + The codec in use for the incoming voice stream. + {{reference}} + + + + + + + + + + + Whether or not silence suppression is in use for the incoming voice stream. + + + + + + + + Total number of times the receive jitter buffer has overrun for this session. + + + + + + + + Total number of times the receive jitter buffer has underrun for this session. + + + + + + + + + The transmit codec used in this session. + + + + The codec in use for the outgoing voice stream. + {{reference}} + + + + + + + + + + + Whether or not silence suppression is in use for the outgoing voice stream. + + + + + + + + Current outgoing packetization period in {{units}}. + + + + + + + + + + Total number of times the transmit jitter buffer has overrun for this session. + + + + + + + + Total number of times the transmit jitter buffer has underrun for this session. + + + + + + + + + VoIP Statistics for current session instance. + + + + {{list|representing the VoIP quality calculated for consecutive intervals of the session}} The interval is specified by {{param|.VoIPProfile.{i}.QICalculationInterval}} and the quality model used is specified by {{param|.VoIPProfile.{i}.QIModelUsed}}. + The statistics values in this list MUST be in time order, with the oldest one first and the most recent one last. + For long sessions the number of values might exceed the limit given by {{param|.Capabilities.QualityIndicator.MaxQIValues}}. In that case, the CPE MUST remove the oldest values to keep the number of reported values within the limit. + The interpretation of the QI values are algorithm-specific, the only constraints being the range and the fact that lower values indicate worse quality than do higher values. + For instance, if {{param}} is reported as "78,57,88,79,34,56", and {{param|.VoIPProfile.{i}.QICalculationInterval}} is 10 seconds, the quality during the first ten seconds was 78, the next ten seconds 57, and so on. The last reported value (here 56) might cover a shorter time period than {{param|.VoIPProfile.{i}.QICalculationInterval}}, but the length can be deduced using {{param|##.Duration}}. + + + + + + + + + + + {{list|representing the worst VoIP quality indicators calculated during the whole session}} + Only the N worst values are stored, where N is the limit stored in the {{param|.VoIPProfile.{i}.NumberOfWorstQIValues}} attribute. + The values are given in the same algorithm-specific representation as {{param|VoIPQualityIndicator}}, and MUST be in quality-order with the lowest value first. + Example: "34,56,57" are the 3 worst values calculated during the call. + + + + + + + + + + + {{list}} Each value represents the timestamp index, given in units of {{param|.VoIPProfile.{i}.QICalculationInterval}}, when the corresponding value in {{param|WorstVoIPQualityIndicatorsValues}} was calculated. + The first index is number 1. + Only the N worst values are stored, where N is the limit stored in {{param|.VoIPProfile.{i}.NumberOfWorstQIValues}}. + Example: if {{param|.VoIPProfile.{i}.QICalculationInterval}} is equal to 10 (seconds), the value "6,2,5" designates the time intervals 50-60 s, 10-20 s, and 40-50 s when the 3 worst values were calculated. + + + + + + + + + + + + The destination part of session information within one call. + + + + + The RTP part of the destination session information. + + + + The IP address of far end VoIP device. + + + + + + + + The UDP port used for current session in the far end device. + + + + + + + + + + The local UDP port used for current session. + + + + + + + + + + The minimum relative transit time in {{units}} between two packets as defined in {{bibref|RFC3611}}. + A value of -1 indicates no reliable value is available. + + + + + + + + + + + The maximum relative transit time in {{units}} between two packets as defined in {{bibref|RFC3611}}. + A value of -1 indicates no reliable value is available. + + + + + + + + + + + The mean relative transit time in {{units}} between each two packet series as defined in {{bibref|RFC3611}}. + A value of -1 indicates no reliable value is available. + + + + + + + + + + + 1-Point Packet Delay Variation according to {{bibref|Y.1540}} in {{units}}. + A value of -1 indicates no reliable value is available. + + + + + + + + + + + Average delay in {{units}} added by buffer processing. + A value of -1 indicates no reliable value is available. + + + + + + + + + + + The number of bursts (as defined in {{bibref|RFC3611}}) that occur during this session (during one burst several packets MAY be lost). + The burst's threshold is configured with the parameter {{param|.VoIPProfile.{i}.RTP.Gmin}}. + + + + + + + + Total number of RTP packets received for this session. + + + + + + + + Total number of RTP packets sent for this session. + + + + + + + + Total number of RTP packets that have been lost for this session (see {{bibref|RFC3611}}). + + + + + + + + Total number of RTP packets that have been discarded for this session (see {{bibref|RFC3611}}). + + + + + + + + Total number of bytes received for this session. + + + + + + + + Total number of bytes sent for this session. + + + + + + + + Current receive packet loss rate in percent, calculated as defined in {{bibref|RFC3550|Section 6.4}}. + + + + + + + + + + Current far end receive packet lost rate in percent, calculated as defined in {{bibref|RFC3550|Section 6.4}}. + + + + + + + + + + Current receive interarrival jitter in timestamp units. Calculated from J(i) as defined in {{bibref|RFC3550|Section 6.4}}. + A value of -1 indicates no reliable value is available. + + + + + + + + + + Current Interarrival jitter in timestamp units as reported from the far-end device via RTCP. Calculated from J(i) as defined in {{bibref|RFC3550|Section 6.4}}. + A value of -1 indicates no reliable value is available. + + + + + + + + + + Average receive interarrival jitter in timestamp units since the beginning of the current call. Calculated as the average of the interarrival jitter values reported by the far-end. + A value of -1 indicates no reliable value is available. + + + + + + + + + + Average far-end interarrival jitter in timestamp units since the beginning of the current call. Calculated as the average of the interarrival jitter values reported by the far-end. + A value of -1 indicates no reliable value is available. + + + + + + + + + + Current round trip delay in {{units}} calculated as defined in {{bibref|RFC3550|Section 6.4}}. + A value of -1 indicates no reliable value is available. + + + + + + + + + + + Average round trip delay in {{units}} since the beginning of the current session. + A value of -1 indicates no reliable value is available. + + + + + + + + + + + Sample frequency in {{units}} used by the codec for this session. + + + + + + + + + + + The DSP part of the destination session information. + + + + + The receive codec used in this session. + + + + The codec in use for the incoming voice stream. + {{reference}} + + + + + + + + + + + Whether or not silence suppression is in use for the incoming voice stream. + + + + + + + + Total number of times the receive jitter buffer has overrun for this session. + + + + + + + + Total number of times the receive jitter buffer has underrun for this session. + + + + + + + + + The transmit codec used in this session. + + + + The codec in use for the outgoing voice stream. + {{reference}} + + + + + + + + + + + Whether or not silence suppression is in use for the outgoing voice stream. + + + + + + + + Current outgoing packetization period in {{units}}. + + + + + + + + + + Total number of times the transmit jitter buffer has overrun for this session. + + + + + + + + Total number of times the transmit jitter buffer has underrun for this session. + + + + + + + + + VoIP Statistics for current session instance. + + + + {{list|representing the VoIP quality calculated for consecutive intervals of the session}} The interval is specified by {{param|.VoIPProfile.{i}.QICalculationInterval}} and the quality model used is specified by {{param|.VoIPProfile.{i}.QIModelUsed}}. + The statistics values in this list MUST be in time order, with the oldest one first and the most recent one last. + For long sessions the number of values might exceed the limit given by {{param|.Capabilities.QualityIndicator.MaxQIValues}}. In that case, the CPE MUST remove the oldest values to keep the number of reported values within the limit. + The interpretation of the QI values are algorithm-specific, the only constraints being the numeric range and the fact that lower values indicate worse quality than do higher values. + For instance, if {{param}} is reported as "78,57,88,79,34,56", and {{param|.VoIPProfile.{i}.QICalculationInterval}} is 10 seconds, the quality during the first ten seconds was 78, the next ten seconds 57, and so on. The last reported value (here 56) might cover a shorter time period than {{param|.VoIPProfile.{i}.QICalculationInterval}}, but the length can be deduced using {{param|##.Duration}}. + + + + + + + + + + + {{list|representing the worst VoIP quality indicators calculated during the whole session}} + Only the N worst values are stored, where N is the limit stored in the {{param|.VoIPProfile.{i}.NumberOfWorstQIValues}} attribute. + The values are given in the same algorithm-specific representation as {{param|VoIPQualityIndicator}}, and MUST be in quality-order with the lowest value first. + Example: "34,56,57" are the 3 worst values calculated during the call. + + + + + + + + + + + {{list}} Each value represents the timestamp index, given in units of {{param|.VoIPProfile.{i}.QICalculationInterval}}, when the corresponding value in {{param|WorstVoIPQualityIndicatorsValues}} was calculated. + The first index is number 1. + Only the N worst values are stored, where N is the limit stored in {{param|.VoIPProfile.{i}.NumberOfWorstQIValues}}. + Example: if {{param|.VoIPProfile.{i}.QICalculationInterval}} is equal to 10 (seconds), the value "6,2,5" designates the time intervals 50-60 s, 10-20 s, and 40-50 s when the 3 worst values were calculated. + + + + + + + + + + + + Configuration profile that can be shared by VoIP components. + A VoIP Profile contains media transport configuration parameters that are common to different VoIP protocols. + VoIP Profiles could be used by {{object|.SIP.Network.}}, {{object|.SIP.Proxy.}}, {{object|.SIP.Network.}}, {{object|.H323.Network.}} and {{object|.MGCP.Network.}}. + + + + + + + Enables or disables this VoIP profile. If the value is set to {{false}}, all components using the profile are disabled, whatever their status is. + + + + + + + + + If {{true}}, when {{param|Enable}} is set to {{false}} in-progress sessions remain intact, but no new sessions are allowed. When all sessions are terminated, the {{object}} is disabled. + + + + + + + + Human-readable string to identify the profile instance. + + + + + + + + + + + {{datatype|expand}} + + + + + + + + {{list}} Method by which DTMF digits MUST be passed. {{enum}} + If {{param|DTMFMethodG711}} is non-empty, then this parameter applies only when the current codec is not G.711. + + + + + + + + + Applicable only for {{object|.SIP.Client.{i}.}}. + + + + + + + + + Method by which DTMF digits MUST be passed if the the current codec is G.711. {{enum}} + If {{empty}} indicates that the value of {{param|DTMFMethod}} is to apply whether or not the the the current codec is G.711. + + + + + + + + Applicable only for {{object|.SIP.Client.{i}.}}. + + + + + + + + + + Quality model which the CPE shall use to calculate the parameters {{param|.CallLog.{i}.Session.{i}.Source.VoiceQuality.VoIPQualityIndicator}} and {{param|.CallLog.{i}.Session.{i}.Destination.VoiceQuality.VoIPQualityIndicator}}. The value MUST be a member of the list reported by the {{param|.Capabilities.QualityIndicator.QIModelsSupported}} parameter. + + + + + + + + + + The interval between successive calculations of {{param|.CallLog.{i}.Session.{i}.Source.VoiceQuality.VoIPQualityIndicator}} and {{param|.CallLog.{i}.Session.{i}.Destination.VoiceQuality.VoIPQualityIndicator}} values (in {{units}}). If {{param}} is not set then only one final quality value covering the complete session is reported in {{param|.CallLog.{i}.Session.{i}.Source.VoiceQuality.VoIPQualityIndicator}} and {{param|.CallLog.{i}.Session.{i}.Destination.VoiceQuality.VoIPQualityIndicator}}. + + + + + + + + + + The maximum number of worst quality indicators to store for each call. + The CPE MUST permit {{param}} to be set to any value in the range from 0 to {{param|.Capabilities.QualityIndicator.MaxWorstQIValues}}. + + + + + + + + + VoIP profile parameters related to the voice stream sent via RTP. + + + + Base of port range to be used for incoming RTP streams for this profile. + + + + + + + + + + + Top of port range to be used for incoming RTP streams for this profile. + + + + + + + + + + + Minimum number of consecutive received packets after the end of an RTP Loss Event. A Loss Event is defined as as a sequence of lost or discarded packets, possibly including islands of received packets. Each island consists of up to ({{param}} - 1) received packets (a sequence of {{param}} received packets terminates the Loss Event, and so is not an island). + + + + + + + + + + + Diffserv code point to be used for outgoing RTP and RTCP packets for this profile. It is RECOMMENDED that by default the DSCP for RTP traffic be set to the value to indicate EF traffic. + + + + + + + + + + VLAN ID (as defined in {{bibref|802.1Q-2005}}) to be used for outgoing RTP packets for this profile. A value of -1 indicates the default value is to be used. + If either {{param}} or {{param|EthernetPriorityMark}} is greater than zero, then the outgoing frames MUST be tagged. Otherwise, the outgoing frames MAY be tagged or untagged. + + + + + + + + + + + Ethernet priority code (as defined in {{bibref|802.1D-2004}}) to be used for outgoing RTP packets for this profile. A value of -1 indicates the default value is to be used. + If either {{param|VLANIDMark}} or {{param}} is greater than zero, then the outgoing frames MUST be tagged. Otherwise, the outgoing frames MAY be tagged or untagged. + + + + + + + + + + + Payload type to be used for RTP telephone events. + This parameter indicates the payload type to be used for DTMF events if transmission of DTMF information is in use according to {{bibref|RFC4733}}. + + + + + + + + + + The indicates if the jitte buffer is static or dynamic. + + + + + + + + + + + Maximal (or static) jitter buffer size in {{units}}. + + + + + + + + + + Minimal jitter buffer size in {{units}}, not used if static buffer is used. + + + + + + + + + + Actual jitter buffer size in {{units}}, if static buffer ist used equal to {{param|JitterBufferMaxSize}}. + + + + + + + + + + + VoIP profile parameters related to RTCP. + + + + Enable or disable RTCP. + + + + + + + + Transmission repeat interval, in {{units}}. + + + + + + + + + + + Local Cname (canonical name). + + + + + + + + + + + VoIP profile parameters for secure voice transmission via SRTP. + + + + Enable or disable the use of SRTP. + If RTCP is enabled, a {{true}} value of this parameter also implies the use of SRTCP. + + + + + + + + {{list|available keying methods}} {{enum}} + + + + + + + + + + + + + + {{list|available encryption key sizes}} + + + + + + + + + + VoIP profile parameters for RTP payload redundancy as defined by {{bibref|RFC2198}}. + + + + Enable or disable the use of RTP payload redundancy as defined by {{bibref|RFC2198}}. + + + + + + + + + The Payload Type of RTP packet as defined in {{bibref|RFC2198}}. Values SHOULD be within the range of dynamic Payload Types (96-127). + + + + + + + + + + + Block Payload Type of redundancy packet. + + + + + + + + + + + Specifies the redundancy number for fax and modem pass-through data transmissions. + A non-negative value indicates that {{bibref|RFC2198}} is to be used for fax and modem pass-through data. The value indicates the number of redundant copies to be transmitted (the total number transmitted is one plus this value). + A value of -1 indicates {{bibref|RFC2198}} is not to be used for fax and modem pass-through data. + If {{param|ModemRedundancy}} is present, then {{param}} applies only to fax transmissions, but not to modem transmissions. + + + + + + + + + + + Specifies the redundancy number for modem pass-through data transmissions. + A non-negative value indicates that {{bibref|RFC2198}} is to be used for modem pass-through data. The value indicates the number of redundant copies to be transmitted (the total number transmitted is one plus this value). + A value of -1 indicates {{bibref|RFC2198}} is not to be used for modem pass-through data. + + + + + + + + + + + Specifies the redundancy number for DTMF transmissions. + A non-negative value indicates that {{bibref|RFC2198}} is to be used for DTMF. The value indicates the number of redundant copies to be transmitted (the total number transmitted is one plus this value). + A value of -1 indicates {{bibref|RFC2198}} is not to be used for DTMF. + + + + + + + + + + + Specifies the redundancy number for general voice transmissions. + A non-negative value indicates that {{bibref|RFC2198}} is to be used for voice. The value indicates the number of redundant copies to be transmitted (the total number transmitted is one plus this value). + A value of -1 indicates {{bibref|RFC2198}} is not to be used for voice. + + + + + + + + + + + The maximum number of sessions using {{bibref|RFC2198}} payload redundancy simultaneously in this profile. + A value of zero indicates no explicit limit on the number of sessions using redundancy. + + + + + + + + + + T.38 Fax information for devices that support T.38 relay. + + + + Maximum data rate in {{units}} for fax as defined in {{bibref|T.38}}. + + + + + + + + + + + + Specifies the packet-level redundancy for high-speed data transmissions (i.e., T.4 image data). + + + + + + + + + + Specifies the packet-level redundancy for low-speed data transmissions (i.e., T.30 handshaking information). + + + + + + + + + + The method with which data is handled over the network. + + + + + + + + + + + + Table of codec profiles. This table MUST be populated with the set of supported codecs matching {{object|.Capabilities.Codec.}}. Additional entries can be added to use different configurations of codec or to use the same codec configuration in different CodecList parameters. + + + + + + + Enable or disable the use of this combination of codec parameters. + + + + + + + + {{datatype|expand}} + + + + + + + + {{reference}} + + + + + + + + + + + {{list}} Each item is a supported packetization period, in milliseconds, or continuous ranges of packetization periods as defined in {{param|.Capabilities.Codec.{i}.PacketizationPeriod}}. + The ACS MAY restrict the set of packetization periods by modifying the value of this parameter to a more restricted set of values than is listed in {{param|.Capabilities.Codec.{i}.PacketizationPeriod}}. The CPE MUST ignore any values or portions of ranges outside of those specified in {{param|.Capabilities.Codec.{i}.PacketizationPeriod}}. + + + + + + + + + + + Indicates support for silence suppression for this codec. If silence suppression is supported, it can be disabled for this codec/bit-rate by setting this parameter to {{false}}. + + + + + + + + + This object defines the contents of the tones and announcements generated locally by the VoIP device. + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + Reference to the default tone event profile. + + + + + + + + + + + + Each entry in this table defines the contents of an individual tone. + The defaults given for this object apply only to explicit creation of an instance of this object and not to automatic creation of instances of this object due to creation of a parent object. + + + + + + + Enables or disables the tone entry. If a disabled tone entry is referenced, the result is that no tone is played. + + + + + + + + + {{datatype|expand}} + + + + + + + + Name of the tone. + + + + + + + + + + + This is the {{object|#.Pattern.{i}.}} object that begins this tone. If the tone is specified by a tone file instead of a tone pattern, this parameter MUST be set to {{empty}}. + {{reference}} + + + + + + + + + + + The file name of a tone file locally present on the CPE. + An ACS MUST use the Download method with FileType="4 Tone File" as defined in {{bibref|TR-069a4|Annex A.3.2.8}} to download a tone file. + If the tone is specified by a tone pattern instead of a tone file, this parameter MUST be {{empty}}. + + + + + + + + + + + The default number of times the data in {{param|ToneFile}} is repeated. If the value is 0 (zero) then {{param|ToneFile}} is played indefinitely. + + + + + + + + + + + The text to be displayed by on the screen of the VoIP device when the tone is played and no specific error message has been provided. + This parameter is applicable only for VoIP devices capable text display. + + + + + + + + + + + + Each entry in the table defines a single phase in an overall tone pattern. Each phase identifies the entry that corresponds to the next phase. + Each entry in the table refers to the entry that corresponds to the next phase of the pattern. The table MAY be set up such that entries form loops, or MAY end after a finite sequence. + The defaults given for this object apply only to explicit creation of an instance of this object and not to automatic creation of instances of this object due to creation of a parent object. + + + + + + + Enables or disables this entry. + + + + + + + + + {{datatype|expand}} + + + + + + + + Whether or not a tone is on during this phase of the pattern. If the value is {{false}}, the frequency and power parameters in this entry MUST be ignored. + + + + + + + + + First tone frequency in {{units}}. + A value of zero indicates this tone component is not used. + + + + + + + + + + + + First tone power level in units of 0.1 {{units}}. + + + + + + + + + + + Second tone frequency in {{units}}. + A value of zero indicates this tone component is not used. + + + + + + + + + + + + Second tone power level in units of 0.1 {{units}}. + + + + + + + + + + + Third tone frequency in {{units}}. + A value of zero indicates this tone component is not used. + + + + + + + + + + + + Third tone power level in units of 0.1 {{units}}. + + + + + + + + + + + Fourth tone frequency in {{units}}. + A value of zero indicates this tone component is not used. + + + + + + + + + + + + Fourth tone power level in units of 0.1 {{units}}. + + + + + + + + + + + Modulation frequency in {{units}}. + A value of zero indicates this tone component is not used. + + + + + + + + + + + + Modulation power level in units of 0.1 {{units}}. + + + + + + + + + + + The duration of this phase of the tone pattern, in {{units}}. + A value of zero indicates an unlimited duration. + + + + + + + + + + + The {{object}} for the next phase of the tone pattern, after the specified {{param|Duration}} of this phase has completed. + {{reference}} + {{empty}} indicates that the tone pattern is to terminate after the current phase is completed. + + + + + + + + + + + + Configuration profile for tone events. + + + + + + + {{datatype|expand}} + + + + + + + + {{numentries}} + + + + + + + + + Table of events for which a tone is defined. The table is pre-populated with the list of events for which the CPE supports definition of tones. + + + + + + + {{datatype|expand}} + + + + + + + + The event for which the tone is to apply. {{enum}} + The parameter MAY instead indicate a vendor-specific event name, which MUST use the format defined in {{bibref|TR-106}}. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The description for the tone to be associated with the given event. + {{reference}} + {{empty}} indicates no tone is to be played for this event. + + + + + + + + + + + + This object models a telephony terminal, each object in the table represents an end-user interface. + This object has to be used when the CPE is a voice endpoint itself. + + + + + + + Enables or disables this terminal. + + + + + + + + If {{true}}, when {{param|Enable}} is set to {{false}} in-progress sessions remain intact, but no new sessions are allowed. When all sessions are terminated, the {{object}} is disabled. + + + + + + + + Indicates the status of this terminal. + + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Reference to the {{object|.Tone.EventProfile}} to use with this terminal. If this parameter is {{empty}}, the value of {{param|.Tone.DefautEventProfile}} is used instead. + + + + + + + + + + + {{numentries}} + + + + + + + + + This object models the audio outputs of a telephony terminal.(ex. Handset, handsfree, ...) + + + + + + + {{datatype|expand}} + + + + + + + + The internal name of this audio. + + + + + + + + + + + Parameters related to voice processing capabilities. + + + + Gain in {{units}} to apply to the transmitted voice signal prior to encoding. This gain is a modifier of the default transmit-gain, which is unspecified. + + + + + + + + + + Gain in {{units}} to apply to the received voice signal after decoding. This gain is a modifier of the default receive-gain, which is unspecified. + + + + + + + + + + Enable or disable echo cancellation for this line. + + + + + + + + Indication of whether or not echo cancellation is currently in use for this line. + + + + + + + + Tail length in {{units}} of the echo canceller associated with this line (whether or not it is currently in use). + + + + + + + + + + + This object is provided to permit the purpose of the CPE buttons and function keys to be defined via the ACS. + Support of this object is appropriate only for a device that has programmable buttons in its user interface. + + + + {{numentries}} + + + + + + + + + Each entry in this table specifies the purpose of each programmable CPE button / function key and whether the user has permission to reprogram the button. + + + + + + + {{datatype|expand}} + + + + + + + + Name of the button. + + + + + + + + + + The value MUST be a member of the list reported by {{param|.Capabilities.FacilityActions}}. This is an OPTIONAL parameter that SHOULD NOT be specified for buttons not related to a particular Facility Action (e.g., invocation of ''Call Return'') implemented by the VoIP device. + The parameter MAY instead indicate a vendor-specific Facility Action, which MUST use the format defined in {{bibref|TR-106}}. + An empty or unrecognized string (i.e. a Facility Action not supported by the CPE) means that there is no Facility Action to be taken. + If this parameter is specified (not {{empty}}) then {{param|QuickDialNumber}} SHOULD be {{empty}}. + + + + + + + + + + + Optional argument associated with the specified {{param|FacilityAction}}. The interpretation of the argument is dependent on the specific FacilityAction. + + + + + + + + + + This is a string representing a quick dial destination number. Only the characters '0-9', '*' and '#' can be used. + If this parameter is specified (not {{empty}}) then {{param|FacilityAction}} SHOULD be {{empty}}. + + + + + + + + + + This string represents the message to be displayed on the screen when the button or function key is pressed. + + + + + + + + + + This parameter indicates whether the user has permission to program the button or function key. If this parameter is set to {{true}} then {{param|FacilityAction}}, {{param|QuickDialNumber}} and {{param|ButtonMessage}} MUST all be {{empty}}. + + + + + + + + + This object defines the ring sequences that may be generated by the terminal. + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + Each entry in this table defines the contents of an individual ring specification. + The defaults given for this object apply only to explicit creation of an instance of this object and not to automatic creation of instances of this object due to creation of a parent object. + + + + + + + Enables or disables the ring description entry. If a disabled ring description entry is referenced, the result is that no ring is played. + + + + + + + + + {{datatype|expand}} + + + + + + + + Name of the ring. + + + + + + + + + + + This is the {{object|#.Pattern.{i}.}} object that begins this ring. If the ring is specified by a ring file instead of a ring pattern, this parameter MUST be set to {{empty}}. + {{reference}} + + + + + + + + + + + The file name of a ring file file locally present on the CPE. + An ACS MUST use the Download method with FileType="5 Ringer File" as defined in {{bibref|TR-069a4|Annex A.3.2.8}} to download a ring file. + If the ring is specified by a ring pattern instead of a ring file, this parameter MUST be {{empty}}. + + + + + + + + + + + + Each entry in the table defines a single phase in an overall ring pattern. Each phase identifies the entry that corresponds to the next phase. + Each entry in the table refers to the entry that corresponds to the next phase of the pattern. The table MAY be set up such that entries form loops, or MAY end after a finite sequence. + The defaults given for this object apply only to explicit creation of an instance of this object and not to automatic creation of instances of this object due to creation of a parent object. + + + + + + + Enables or disables this entry. + + + + + + + + + {{datatype|expand}} + + + + + + + + Whether or not a ringer is on during this phase of the pattern. + + + + + + + + + The duration of this phase of the ring pattern, in {{units}}. + A value of zero indicates an unlimited duration. + + + + + + + + + + + The {{object}} for the next phase of the ring pattern, after the specified {{param|Duration}} of this phase has completed. + {{reference}} + {{empty}} indicates that the ring pattern is to terminate after the current phase is completed. + + + + + + + + + + + + Terminal level tests. + + + + {{datatype|expand}} + + + + + + + + + + + + + + + + Indicates which test to perform. + The parameter MAY instead indicate a vendor-specific test, which MUST use the format defined in {{bibref|TR-106}}. For example: + "X_EXAMPLE-COM_MyTest" + + + + + + + + + + Indicates whether or not the phone associated with this port is ringing. This parameter is applicable only if {{enum|RingingTest|TestSelector}} is supported. + + + + + + + + + Clock source configuration for Time-Division multiplexing subsystem. + + + + {{numentries}} + + + + + + + + The currently selected external clock source. If the current clock source is not selected from the {{object|ClockSource}} table, e.g. an internal holdover clock, this parameter is set to {{empty}}. + {{reference}} + + + + + + + + + + + Human readable description of the current clock synchronization status. + + + + + + + + + + If set to {{true}} the CPE automatically reverts back to a higher priority external clock source when it becomes available once again. If set to {{false}}, an automatic change between external clock sources only occurs when the current source becomes unavailable. + + + + + + + + + List of eligible external clock sources. The number of entries in this table depends on the maximum number of external clock sources supported by the CPE. + + + + + + + + + + + + + Enables or disables this entry. + + + + + + + + {{datatype|expand}} + + + + + + + + Position of the {{object}} entry in the order of precedence. A value of "1" indicates the first entry considered (highest precedence). + + + + + + + + + + A reference to a physical interface from which a clock signal can be derived. {{object|.ISDN.PRI.{i}.}} is eligible as a clock source when {{param|.ISDN.PRI.{i}.ClockMode}} is {{enum|Slave|.ISDN.PRI.{i}.ClockMode}}. {{object|.ISDN.BRI.{i}.}} is eligible as a clock source when {{param|.ISDN.BRI.{i}.ProtocolEmulation}} is {{enum|TE|.ISDN.BRI.{i}.ProtocolEmulation}}. + {{reference}} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/test/tools/tr-104-2-0-2-usp-full.xml b/test/tools/tr-104-2-0-2-usp-full.xml new file mode 100644 index 00000000..82bb57f9 --- /dev/null +++ b/test/tools/tr-104-2-0-2-usp-full.xml @@ -0,0 +1,11931 @@ + + + + + + {{docname|VoiceService:2.0 for USP}} + {{appdate|January 2020}} + {{trname|tr-104-2-0-0}} + March 2014: + * Original + September 2019: {{xmlref|tr-104-2-0-1-usp|Corrigendum 1}} + * Added USP support (split XML into common, CWMP and USP files) + January 2020: {{xmlref|tr-104-2-0-2-usp|Corrigendum 2}} + * Clarified meaning of SessionID and added new SIPSessionID + + + + A non-volatile handle used to reference this instance. + '''This is intended only for use in protocol-independent "common" definitions, and MUST NOT be used in protocol-specific definitions.''' + + + + + + + + A non-volatile handle used to reference this instance. Alias provides a mechanism for an ACS to label this instance for future reference. + If the CPE supports the Alias-based Addressing feature as defined in {{bibref|TR-069|3.6.1}} and described in {{bibref|TR-069|Appendix II}}, the following mandatory constraints MUST be enforced: + * Its value MUST NOT be empty. + * Its value MUST start with a letter. + * If its value is not assigned by the ACS, it MUST start with a "cpe-" prefix. + * The CPE MUST NOT change the parameter value. + + + + + + A non-volatile unique key used to reference this instance. Alias provides a mechanism for a Controller to label this instance for future reference. + The following mandatory constraints MUST be enforced: + * The value MUST NOT be empty. + * The value MUST start with a letter. + * If the value is not assigned by the Controller at creation time, the Agent MUST assign a value with an "cpe-" prefix. + The value MUST NOT change once it's been assigned. + + + + + + The value is measured in ''dBm/1000'', i.e. the value divided by 1000 is dB relative to 1 mW. For example, -12345 means -12.345 dBm, 0 means 0 dBm (1 mW) and 12345 means 12.345 dBm. + + + + + + + Indicates the availability of diagnostics data. Enumeration of: + {{enum}} + If the ACS sets the value of this parameter to {{enum|Requested}}, the CPE MUST initiate the corresponding diagnostic test. When writing, the only allowed values are {{enum|Requested}} and {{enum|Canceled}}. To ensure the use of the proper test parameters (the writable parameters in this object), the test parameters MUST be set, and any errors or inconsistencies in the test parameters MUST be detected, either prior to or at the same time as (in the same SetParameterValues) setting this parameter to {{enum|Requested}}. + When requested, the CPE SHOULD wait until after completion of the communication session with the ACS before starting the diagnostic test. + When the test is completed, the value of this parameter MUST be either {{enum|Complete}} (if the test completed successfully), or one of the ''Error'' values listed above. + If the value of this parameter is anything other than {{enum|Complete}}, the values of the results parameters for this test are indeterminate. + When the diagnostic initiated by the ACS is completed (successfully or not), but not if it is canceled for any reason, the CPE MUST establish a new connection to the ACS to allow the ACS to view the results, indicating the Event code ''8 DIAGNOSTICS COMPLETE'' in the Inform message. + After the diagnostic is complete, the value of all result parameters (all read-only parameters in this object) MUST be retained by the CPE until either this diagnostic is run again, or the CPE reboots. After a reboot, if the CPE has not retained the result parameters from the most recent test, it MUST set the value of this parameter to {{enum|None}}. + Modifying any of the writable parameters in this object except for this one MUST result in the value of this parameter being set to {{enum|None}}. + While the test is in progress, modifying any of the writable parameters in this object except for this one MUST result in the test being terminated and the value of this parameter being set to {{enum|None}}. + While the test is in progress, setting this parameter to {{enum|Requested}} (and possibly modifying other writable parameters in this object) MUST result in the test being terminated and then restarted using the current values of the test parameters. + While the test is in progress, setting this parameter to {{enum|Canceled}} MUST result in the test being canceled and the value of this parameter being set to {{enum|None}}. If the CPE does not support the {{enum|Canceled}} value, it MUST return a SPV error with "Invalid Parameter value" (9007) to the ACS instead. + + + + + + + + + + + + The IEEE EUI 64-bit identifier as defined in {{bibref|IEEE_EUI64}}. The IEEE defined 64-bit extended unique identifier (EUI-64) is a concatenation of: + * The 24-bit (OUI-24) or 36-bit (OUI-36) company_id value assigned by the IEEE Registration Authority (IEEE-RA), and + * The extension identifier (40 bits for OUI-24 or 28 bits for OUI-36) assigned by the organization with that company_id assignment. + + + + + + + + + + IP address, i.e. IPv4 address (or IPv4 subnet mask) or IPv6 address. + All IPv4 addresses and subnet masks MUST be represented as strings in IPv4 dotted-decimal notation. Here are some examples of valid IPv4 address textual representations: + * 216.52.29.100 + * 192.168.1.254 + All IPv6 addresses MUST be represented using any of the 3 standard textual representations defined in {{bibref|RFC4291}} Sections 2.2.1, 2.2.2 and 2.2.3. Both lower-case and upper-case letters can be used, but use of lower-case letters is RECOMMENDED. Here are some examples of valid IPv6 address textual representations: + * 1080:0:0:800:ba98:3210:11aa:12dd + * 1080::800:ba98:3210:11aa:12dd + * 0:0:0:0:0:0:13.1.68.3 + IPv6 addresses MUST NOT include zone identifiers. Zone identifiers are discussed in {{bibref|RFC4007|Section 6}}. + Unspecified or inapplicable addresses (or IPv4 subnet masks) MUST be represented as empty strings unless otherwise specified by the parameter definition. + + + + + + + + IPv4 address (or subnet mask). + Can be any IPv4 address that is permitted by the ''IPAddress'' data type. + + + + + + + + IPv6 address. + Can be any IPv6 address that is permitted by the ''IPAddress'' data type. + + + + + + IPv4 or IPv6 routing prefix in Classless Inter-Domain Routing (CIDR) notation {{bibref|RFC4632}}. This is specified as an IP address followed by an appended "/n" suffix, where ''n'' (the prefix size) is an integer in the range 0-32 (for IPv4) or 0-128 (for IPv6) that indicates the number of (leftmost) '1' bits of the routing prefix. + * IPv4 example: 192.168.1.0/24 + * IPv6 example: 2001:edff:fe6a:f76::/64 + If the IP address part is unspecified or inapplicable, it MUST be {{empty}} unless otherwise specified by the parameter definition. In this case the IP prefix will be of the form "/n". + If the entire IP prefix is unspecified or inapplicable, it MUST be {{empty}} unless otherwise specified by the parameter definition. + + + + + + + + IPv4 address prefix. + Can be any IPv4 prefix that is permitted by the ''IPPrefix'' data type. + + + + + + + + + IPv6 address prefix. + Can be any IPv6 prefix that is permitted by the ''IPPrefix'' data type. + + + + + + A JSON Object as defined in {{bibref|RFC7159|Section 4}}. + + + + + + + All MAC addresses are represented as strings of 12 hexadecimal digits (digits 0-9, letters A-F or a-f) displayed as six pairs of digits separated by colons. Unspecified or inapplicable MAC addresses MUST be represented as empty strings unless otherwise specified by the parameter definition. + + + + + + + + + + A 32-bit statistics parameter, e.g. a byte counter. + This data type SHOULD NOT be used for statistics parameters whose values might become greater than the maximum value that can be represented as an ''unsignedInt'' (i.e. 0xffffffff, referred to below as ''maxval''). ''StatsCounter64'' SHOULD be used for such parameters. + The value ''maxval'' indicates that no data is available for this parameter. In the unlikely event that the actual value of the statistic is ''maxval'', the CPE SHOULD return ''maxval - 1''. + The actual value of the statistic might be greater than ''maxval''. Such values SHOULD wrap around through zero. + The term ''packet'' is to be interpreted as the transmission unit appropriate to the protocol layer in question, e.g. an IP packet or an Ethernet frame. + + + + + + + A 64-bit statistics parameter, e.g. a byte counter. + This data type SHOULD be used for all statistics parameters whose values might become greater than the maximum value that can be represented as an ''unsignedInt''. + The maximum value that can be represented as an ''unsignedLong'' (i.e. 0xffffffffffffffff) indicates that no data is available for this parameter. + The term ''packet'' is to be interpreted as the transmission unit appropriate to the protocol layer in question, e.g. an IP packet or an Ethernet frame. + + + + + + + Universally Unique Identifier. See {{bibref|RFC4122}}. + + + + + + + + + Uniform Resource Identifier. See {{bibref|RFC3986}}. + + + + + + + + Uniform Resource Name. See {{bibref|RFC3986}} (URI) and {{bibref|RFC8141}} (''urn'' URI scheme). + + + + + + + Uniform Resource Locator. See {{bibref|RFC3986}} (URI), {{bibref|IANA-uri-schemes}}, and individual URI scheme RFCs such as {{bibref|RFC7252}} (''coap'', ''coaps'') and {{bibref|RFC7230}} (''http'', ''https''). + + + + + + The ZigBee 16-bit network address (NWK) as defined in {{bibref|ZigBee2007}}. The address is assigned to a device by the network layer and used by the network layer for routing messages between devices. + + + + + + + + + + A non-volatile unique key used to reference this instance. Alias provides a mechanism for a Controller to label this instance for future reference. + The following mandatory constraints MUST be enforced: + * The value MUST NOT be empty. + * The value MUST start with a letter. + * If the value is not assigned by the Controller at creation time, the Agent MUST assign a value with an "cpe-" prefix. + The value MUST NOT change once it's been assigned. + + + + + + 3GPP TS 24.229 + IP Multimedia Call Control Protocol based on Session Initiation Protocol (SIP) and Session Description Protocol (SDP); Stage 3 + 3GPP CT WG1 + Technical specification + https://www.3gpp.org/ftp/Specs/html-info/24229.htm + + + IEEE Std 802.1D-2004 + Media Access Control (MAC) Bridges + IEEE + 2004 + https://standards.ieee.org/getieee802/download/802.1D-2004.pdf + + + IEEE Std 802.1Q-2005 + Virtual Bridged Local Area Networks + IEEE + 2006 + https://standards.ieee.org/getieee802/download/802.1Q-2005.pdf + + + ETSI EN 300 444 + Digital Enhanced Cordless Telecommunications (DECT); Generic Access Profile (GAP) + ETSI + Standard + https://www.etsi.org/deliver/etsi_en/300400_300499/300444/02.04.01_60/en_300444v020401p.pdf + + + ETSI EN 300 175-05 + Digital Enhanced Cordless Telecommunications (DECT); Common Interface (CI); Part 5: Network (NWK) layer + ETSI + Standard + https://www.etsi.org/deliver/etsi_en/300100_300199/30017505/02.05.01_60/en_30017505v020501p.pdf + + + ETSI EN 300 175-6 + Digital Enhanced Cordless Telecommunications (DECT); Common Interface (CI); Part 6: Identities and addressing + ETSI + Standard + https://www.etsi.org/deliver/etsi_en/300100_300199/30017506/02.05.01_60/en_30017506v020501p.pdf + + + ETSI 300 175-7 + Digital Enhanced Cordless Telecommunications (DECT); Common Interface (CI); Part 7: Security features + ETSI + Standard + https://www.etsi.org/deliver/etsi_en/300100_300199/30017507/02.05.01_60/en_30017507v020501p.pdf + + + ETSI 300 175-8 + Digital Enhanced Cordless Telecommunications (DECT); Common Interface (CI); Part 8: Speech and audio coding and transmission + ETSI + Standard + https://www.etsi.org/deliver/etsi_en/300100_300199/30017508/02.05.01_60/en_30017508v020501p.pdf + + + ETSI ES 201 970 + Access and Terminals (AT); Public Switched Telephone Network (PSTN); Harmonized specification of physical and electrical characteristics at a 2-wire analogue presented Network Termination Point (NTP) + ETSI + Standard + https://www.etsi.org/deliver/etsi_es/201900_201999/201970/01.01.01_60/es_201970v010101p.pdf + + + ETSI ES 203 021 + Access and Terminals (AT); Harmonized basic attachment requirements for Terminals for connection to analogue interfaces of the Telephone Networks + ETSI + Standard + https://www.etsi.org/WebSite/Technologies/analogueline.aspx + + + ETSI TR 101 183 + Public Switched Telephone Network (PSTN); Analogue ringing signals + ETSI + Technical Report + https://www.etsi.org/deliver/etsi_tr/101100_101199/101183/01.01.01_60/tr_101183v010101p.pdf + + + ETSI TS 102 527-1 + Digital Enhanced Cordless Telecommunications (DECT); New Generation DECT; Part 1: Wideband speech + ETSI + Technical Specification + https://www.etsi.org/deliver/etsi_ts/102500_102599/10252701/01.03.01_60/ts_10252701v010301p.pdf + + + ETSI TS 102 527-3 + Digital Enhanced Cordless Telecommunications (DECT); New Generation DECT; Part 3: Extended wideband speech services + ETSI + Technical Specification + https://www.etsi.org/deliver/etsi_ts/102500_102599/10252703/01.05.01_60/ts_10252703v010501p.pdf + + + ETSI TS 102 527-4 + Digital Enhanced Cordless Telecommunications (DECT); New Generation DECT; Part 4: Light Data Services; Software Update Over The Air (SUOTA), content downloading and HTTP based applications + ETSI + Technical Specification + https://www.etsi.org/deliver/etsi_ts/102500_102599/10252704/01.01.01_60/ts_10252704v010101p.pdf + + + ETSI TS 102 527-5 + Digital Enhanced Cordless Telecommunications (DECT); New Generation DECT; Part 5: Additional feature set nr. 1 for extended wideband speech services + ETSI + Technical Specification + https://www.etsi.org/deliver/etsi_ts/102500_102599/10252705/01.01.01_60/ts_10252705v010101p.pdf + + + ETSI TS 181 019 + Telecommunications and Internet converged Services and Protocols for Advanced Networking (TISPAN) + ETSI + Standard + https://www.etsi.org/deliver/etsi_ts/181000_181099/181019/02.00.00_60/ts_181019v020000p.pdf + + + H.323 + Packet-based multimedia communications systems + ITU-T + H series + https://www.itu.int/rec/T-REC-H.323-200912-I + + + H.235.1 + H.323 security framework: Baseline security profile + ITU-T + H series + https://www.itu.int/rec/T-REC-H.235.1 + + + I.251.1 + Number identification supplementary services : Direct-dialling-In + ITU-T + I series + https://www.itu.int/rec/T-REC-I.251.1 + + + I.251.2 + Number identification supplementary services : Multiple Subscriber Number + ITU-T + I series + https://www.itu.int/rec/T-REC-I.251.2 + + + I.251.7 + Number identification supplementary services : Malicious call Identification + ITU-T + I series + https://www.itu.int/rec/T-REC-I.251.7 + + + I.252.7 + Call offering supplementary services : Explicit call transfer + ITU-T + I series + https://www.itu.int/rec/T-REC-I.252.7 + + + I.256.2a + Charging supplementary services : Advice of charge: charging information at call set-up time (AOC-S) + ITU-T + I series + https://www.itu.int/rec/T-REC-I.256.2a + + + I.256.2c + Charging supplementary services : Advice of charge: charging information at the end of the call (AOC-E) + ITU-T + I series + https://www.itu.int/rec/T-REC-I.256.2c + + + I.256.2b + Charging supplementary services : Advice of charge: charging information during the call (AOC-D) + ITU-T + I series + https://www.itu.int/rec/T-REC-I.256.2b + + + IANA SIP Event packages and Event-template packages Registry + Session Initiation Protocol (SIP) Event Types Namespace + IANA + https://www.iana.org/assignments/sip-events/sip-events.xhtml#sip-events-2 + + + IANA SIP Methods Registry + Session Initiation Protocol (SIP) Parameters : Methods and Response Codes + IANA + https://www.iana.org/assignments/sip-parameters/sip-parameters.xhtml#sip-parameters-6 + + + ISO 3166-1 + Codes for the representation of names of countries and their subdivisions - Part 1: Country codes + ISO + 2006 + https://www.iso.org/iso/country_codes.htm + + + Q.931 + ISDN user-network interface layer 3 specification for basic call control. + ITU-T + Q series + https://www.itu.int/rec/T-REC-Q.931 + + + RFC 2198 + RTP Payload for Redundant Audio Data + IETF + RFC + https://tools.ietf.org/html/rfc2198 + + + RFC 2782 + A DNS RR for specifying the location of services (DNS SRV) + IETF + RFC + 2000 + https://tools.ietf.org/html/rfc2782 + + + RFC 3261 + SIP: Session Initiation Protocol + IETF + RFC + June 2002 + https://tools.ietf.org/html/rfc3261 + + + RFC 3435 + Media Gateway Control Protocol (MGCP) Version 1.0 + IETF + RFC + https://tools.ietf.org/html/rfc3435 + + + RFC 3550 + RTP: A Transport Protocol for Real-Time Applications + IETF + RFC + July 2003 + https://tools.ietf.org/html/rfc3550 + + + RFC 3611 + RTP Control Protocol Extended Reports (RTCP XR) + IETF + RFC + https://tools.ietf.org/html/rfc3611 + + + RFC 4733 + RTP Payload for DTMF Digits, Telephony Tones and Telephony Signals + IETF + RFC + https://tools.ietf.org/html/rfc4733 + + + RFC 6140 + Registration for Multiple Phone Numbers in the Session Initiation Protocol (SIP) + IETF + RFC + https://tools.ietf.org/html/rfc6140 + + + Simple Object Access Protocol (SOAP) 1.1 + W3C + https://www.w3.org/TR/2000/NOTE-SOAP-20000508 + + + T.38 + Procedures for real-time Group 3 facsimile communication over IP networks. + ITU-T + T series + https://www.itu.int/rec/T-REC-T.38-201009-I + + + TR-069 Amendment 4 + CPE WAN Management Protocol + Broadband Forum + Technical Report + July 2011 + https://www.broadband-forum.org/technical/download/TR-069_Amendment-4.pdf + + + TR-104 Issue 2 + Provisioning Parameters for VoIP CPE + Broadband Forum + Technical Report + March 2014 + https://www.broadband-forum.org/technical/download/TR-104_Issue-2.pdf + + + TR-106 Amendment 8 + Data Model Template for CWMP Endpoints and USP Agents + Broadband Forum + Technical Report + May 2018 + https://www.broadband-forum.org/technical/download/TR-106.pdf + + + TR-106 Amendment 2 + Data Model Template for TR-069-Enabled Devices + Broadband Forum + Technical Report + November 2008 + https://www.broadband-forum.org/technical/download/TR-106_Amendment-2.pdf + + + TR-106 Amendment 7 + Data Model Template for TR-069-Enabled Devices + Broadband Forum + Technical Report + September 2013 + https://www.broadband-forum.org/technical/download/TR-106_Amendment-7.pdf + + + TR-106 Amendment 8 + Data Model Template for CWMP Endpoints and USP Agents + Broadband Forum + Technical Report + May 2018 + https://www.broadband-forum.org/technical/download/TR-106_Amendment-8.pdf + + + Y.1540 + IP packet transfer and availability performance parameters + ITU-T + Y series + https://www.itu.int/rec/T-REC-Y.1540 + + + + + + {{numentries}} + + + + + + + + The top-level object for CPE with voice capabilities. + + + + + + + {{datatype|expand}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + The value MUST be less than or equal to {{param|.Capabilities.MaxCallLogCount}}. + + + + + + + + {{numentries}} + + + + + + + + + The overall capabilities of the VoIP CPE. + + + + Maximum total number of {{object|.CallControl.Line}} objects supported. + A value of -1 indicates no specific limit on the number of lines. + + + + + + + + + + Maximum total number of {{object|.CallControl.Extension}} objects supported. + A value of -1 indicates no specific limit on the number of extensions. + + + + + + + + + + Maximum total number of {{object|.CallLog}} objects supported. + A value of -1 indicates no specific limit on the number of call logs. + + + + + + + + + + Maximum number of voice sessions supported for any given {{object|.CallControl.Line}} object. A value greater than one indicates support for CPE-provided conference calling. + A value of -1 indicates no specific limit on the number of voice sessions per line. + + + + + + + + + + Maximum number of voice sessions supported for any given {{object|.CallControl.Extension}} object. A value greater than one indicates support for CPE-provided conference calling. + A value of -1 indicates no specific limit on the number of voice sessions per extension. + + + + + + + + + + Maximum total number of voice sessions supported across all {{object|.CallControl.Line}} objects. (This might differ from {{param|MaxLineCount}} if each line can support more than one session for CPE-provided conference calling. This value MAY be less than the product of {{param|MaxLineCount}} and {{param|MaxSessionsPerLine}}.) + A value of -1 indicates no specific limit on the number of voice sessions. + + + + + + + + + + {{list}} Each item is a supported network connection mode. {{pattern}} + Most entries MAY be appended with a version indicator in the form "/X.Y". For example: + "SIP/2.0" + The list MAY include vendor-specific modes, which MUST be in the format defined in {{bibref|TR-106}}. For example: + "X_EXAMPLE-COM_MyMode" + + + + + + + + + + + + + + + + + + {{list}} Each item is a supported user connection mode. {{pattern}} + Most entries MAY be appended with a version indicator in the form "/X.Y". For example: + "SIP/2.0" + The list MAY include vendor-specific modes, which MUST be in the format defined in {{bibref|TR-106}}. For example: + "X_EXAMPLE-COM_MyMode" + + + + + + + + + + + + + + + + + {{list}} Each item is a supported tone file format. The specified file formats are raw codec data files, using one of the codecs listed below. {{enum}} + The list MAY include vendor-specific -specific extensions, which MUST use the format defined in {{bibref|TR-106}}. + Example: + "G.711MuLaw, MP3, X_EXAMPLE-COM_MyFileFormat" + If the CPE does not support tone files, this parameter MUST be {{empty}}. + + + + + + + + + + + + + + + + {{list}} Each item is a supported ring file format. {{enum}} + The list MAY include vendor-specific-specific extensions, which MUST use the format defined in {{bibref|TR-106}}. + Example: + "MIDI, AMR, X_EXAMPLE-COM_MyFileFormat" + If the CPE does not support ring files, this parameter MUST be {{empty}}. + + + + + + + + MMF + + + + + RTTTL or RTX + + + + + + + + + + + The facility actions supported by this VoiceService. {{enum}} + The list MAY include vendor-specific Facility Actions, which MUST use the format defined in {{bibref|TR-106}}. + Facility Actions are referenced in the VoiceService data model in the objects {{object|.CallControl.NumberingPlan.{i}.PrefixInfo.{i}.}} and {{object|.Terminal.{i}.ButtonMap.Button.{i}.}}. + + + + + + + Register an "Abbreviated Address" and corresponding destination. + Abbreviated Addressing permits a user to define short numbers (within a particular range) to represent commonly used destinations. + + + + + Remove an "Abbreviated Address". + + + + + Interrogate the status of an "Abbreviated Address". + + + + + Make this call an anonymous call. + + + + + Activation of Call Completion to Busy Subscriber. + Call completion to Busy Subscriber is a facility that permits the user to request an automatic call back when a currently busy destination becomes available. + + + + + Deactivation of Call Completion to Busy Subscriber. + + + + + Interrogation of the Call Completion to Busy Subscriber status and destination. + + + + + Activation of Call Completion on No Reply. + Call completion on no reply is a facility that permits the user to request an automatic call back when activity (eg a phone call is made) is detected from a destination from which there is currently no reply. + + + + + Deactivation of Call Completion on No Reply. + + + + + Interrogation of the Call Completion on No Reply status and destination. + + + + + Register the destination for Call Forwarding on Busy. + Set the parameter {{param|.CallControl.CallingFeatures.Set.{i}.CallForwardOnBusyNumber}} of this extension. + If Call Forwarding on Busy is activated, the call will be forwarded to the specified destination if the extension is "busy". + + + + + Activate Call Forwarding on Busy to the registered destination. + + + + + Deactivate Call Forwarding on Busy to the registered destination. + + + + + Erase the registered Call Forwarding on Busy Destination. + + + + + Interrogate the registered Call Forwarding on Busy Destination. + + + + + Register the destination for Call Forwarding on No Reply. + Set the parameter {{param|.CallControl.CallingFeatures.Set.{i}.CallForwardOnNoAnswerNumber}} of this extension. + If Call Forwarding on No Reply is activated, the call will be forwarded to the specified destination if the extension does not reply before the time expires. + + + + + Activate Call Forwarding on No Reply to the registered destination. + + + + + Deactivate Call Forwarding on No Reply to the registered destination. + + + + + Erase the registered Call Forwarding on No Reply Destination. + + + + + Interrogate the registered Call Forwarding on No Reply Destination. + + + + + Set the parameter {{param|.CallControl.CallingFeatures.Set.{i}.CallForwardOnNoAnswerRingTimeout}} of this extension. + + + + + Activate Call Forwarding Timed. This facility permits the user to forward calls to particular destinations depending on the time of day : cf. table {{object|.CallControl.CallingFeatures.Set.{i}.CFT.{i}.}} + + + + + Deactivate Call Forwarding Timed. + + + + + Interrogate the status of Call Forwarding Timed. + + + + + Register the destination for Call Forwarding Unconditional. + Set the parameter {{param|.CallControl.CallingFeatures.Set.{i}.CallForwardUnconditionalNumber}} of this extension. + If Call Forwarding on Busy is activated, the call will be forwarded to the specified destination if the extension is "busy". + + + + + Activate Call Forwarding Unconditional to the registered destination. + + + + + Deactivate Call Forwarding Unconditional to the registered destination. + + + + + Erase the registered Call Forwarding Unconditional Destination. + + + + + Interrogate the registered Call Forwarding Unconditional Destination. + + + + + Activate Calling Line Identification Restriction (i.e. your calling number will be restricted). + Set the parameter {{param|.CallControl.CallingFeatures.Set.{i}.AnonymousCallEnable}} to {{true}}. + + + + + Deactivate Calling Line Identification Restriction. + + + + + Interrogate the Calling Line Identification status. + + + + + Invoke Carrier Prefix. The prefix is prepended to the destination number. The facility argument will reference the Carrier Prefix + + + + + Activate Call Waiting. + Set the parameter {{param|.CallControl.CallingFeatures.Set.{i}.CallWaitingEnable}} to {{true}}. + + + + + Deactivate Call Waiting + + + + + Used for answering a waiting call or switching between calls. + + + + + Activate Do Not Disturb on the extension. + Set the parameter {{param|.CallControl.CallingFeatures.Set.{i}.DoNotDisturbEnable}} of this extension. + Selective Ringing is a facility that permits the user to specify the generation of different ring tones depending on the calling number. + + + + + Deactivate Do Not Desturb. + + + + + Interrogate the status of Do Not Disturb. + + + + + Invoke an extension. The extension referenced in the facility argument will be used as destination instead of the line defined in {{object|.CallControl.OutgoingMap.{i}.}} + + + + + Invoke a line. The line referenced in the facility argument will be used for an outgoing call instead of the line defined in {{object|.CallControl.OutgoingMap.{i}.}}. + + + + + Invoke a mailbox. The interactive menu to listen and manipulate voicemail messages will be invoked. + + + + + Activate Outgoing Call Barring. + Outgoing call barring is a facility that permits the user to bar calls to certain destinations—usually depending on the cost of a call. + + + + + Deactivate Outgoing Call Barring. + + + + + Interrogate Outgoing Call Barring. + + + + + Switch the call to a PSTN line. + + + + + Set the password used for controlling access to the Facility Actions. + + + + + Activate Selective Call Forwarding. This facility permits the user to forward calls to different destinations depending on the calling number : cf. table {{object|.CallControl.CallingFeatures.Set.{i}.SCF.{i}.}} + + + + + Deactivate Selective Call Forwarding. + + + + + Interrogate the status of Selective Call Forwarding. + + + + + Activate Selective Call Rejection. This facility permits the user to selectively reject calls depending on the calling number : cf. table {{object|.CallControl.CallingFeatures.Set.{i}.SCREJ.{i}.}} + + + + + Deactivate Selective Call Rejection. + + + + + Interrogate the status of Selective Call Rejection. + + + + + Activate Selective Ringing. + Selective Ringing is a facility that permits the user to specify the generation of different ring tones depending on the calling number. + + + + + Deactivate Selective Ringing. + + + + + Interrogate the status of Selective Ringing. + + + + + + + + {{numentries}} + + + + + + + + + SIP-specific capabilities (as defined in {{bibref|RFC3261}}). + + + + + SIP client capabilities. + + + + {{list}} Each item is a supported SIP extension method among the methods listed in the IANA SIP parameters registry (see {{bibref|IANA_SIP_Methods}}). SIP extension methods MUST be in the form of the method name in upper case. + The list MAY include vendor-specific extensions, which MUST use the format defined in {{bibref|TR-106}}. + Examples: + : "REFER" + : "INFO" + : "X_EXAMPLE-COM_MyExt" + + + + + + + + + {{list}} Each item is a supported URI scheme beyond the URI schemes REQUIRED by the SIP specification ({{bibref|RFC3261}}). Each URI scheme is given by the URI prefix, without the colon separator. Example: + "tel, fax" + + + + + + + + + {{list}} Each item is a supported event package among the event packages listed in the IANA registry for SIP Event Type Namespace (see {{bibref|IANA_Event_Packages}}). + The list MAY include vendor-specific event packages, which MUST use the format defined in {{bibref|TR-106}}. + Examples: + : "call-completion" + : "presence" + : "X_EXAMPLE-COM_MyEvtPkg" + + + + + + + + + {{list}} Each item is a supported authentication protocol for TLS transport. {{enum}} + The list MAY include vendor-specific protocols, which MUST use the format defined in {{bibref|TR-106}}. + + + + + + + + + + + + + + + {{list}} Each item represents a supported TLS authentication key size. + + + + + + + + + {{list}} Each item is a supported encryption protocol for TLS transport. {{enum}} + The list MAY include vendor-specific protocols, which MUST use the format defined in {{bibref|TR-106}}. + + + + + + + + + + + + + + + + + {{list}} Each item is a supported TLS encryption key size. + + + + + + + + + {{list}} Each item is a supported key exchange protocol for TLS transport. {{enum}} + The list MAY include vendor-specific protocols, which MUST use the format defined in {{bibref|TR-106}}. + + + + + + + + + + + + + + + + + SIP registrar capabilities. + + + + {{list}} Each item is a supported SIP extension method among the methods listed in the IANA SIP parameters registry (see {{bibref|IANA_SIP_Methods}}). SIP extension methods MUST be in the form of the method name in upper case. + The list MAY include vendor-specific extensions, which MUST use the format defined in {{bibref|TR-106}}. + Examples: + : "REFER" + : "INFO" + : "X_EXAMPLE-COM_MyExt" + + + + + + + + + {{list}} Each item is a supported URI scheme beyond the URI schemes REQUIRED by the SIP specification. Each URI scheme is given by the URI prefix, without the colon separator. Example: + "tel, fax" + + + + + + + + + {{list}} Each item is a supported event package among the event packages listed in the IANA registry for SIP Event Type Namespace (see {{bibref|IANA_Event_Packages}}). + The list MAY include vendor-specific event packages, which MUST use the format defined in {{bibref|TR-106}}. + Examples: + : "call-completion" + : "presence" + : "X_EXAMPLE-COM_MyEvtPkg" + + + + + + + + + {{list}} Each item is a supported authentication protocol for TLS transport. {{enum}} + The list MAY include vendor-specific protocols, which MUST use the format defined in {{bibref|TR-106}}. + + + + + + + + + + + + + + + {{list}} Each item represents a supported TLS authentication key size. + + + + + + + + + {{list}} Each item is a supported encryption protocol for TLS transport. {{enum}} + The list MAY include vendor-specific protocols, which MUST use the format defined in {{bibref|TR-106}}. + + + + + + + + + + + + + + + + + {{list}} Each item is a supported TLS encryption key size. + + + + + + + + + {{list}} Each item is a supported key exchange protocol for TLS transport. {{enum}} + The list MAY include vendor-specific protocols, which MUST use the format defined in {{bibref|TR-106}}. + + + + + + + + + + + + + + + + + MGCP-specific capabilities (as defined in {{bibref|RFC3435}}). + + + + {{list}} Each item is a supported optional MGCP package. MGCP packages are listed using the uppercase package abbreviation. + The list MAY include vendor-specific extensions, which MUST use the format defined in {{bibref|TR-106}}. + Examples: + : "BP" + : "X_EXAMPLE-COM_MyExt" + + + + + + + + + + H.323-specific capabilities (as defined in {{bibref|H.323}}). + + + + Support for H.323 fast start. If {{true}} indicates support for fast start. + + + + + + + + {{list}} Each item is a supported authentication method. {{enum}} + The list MAY include vendor-specific protocols, which MUST use the format defined in {{bibref|TR-106a7}}. + + + + + + + Diffie-Hellman + + + + + password with symmetric encryption + + + + + password with hashing + + + + + certificate with signature + + + + + IPsec based connection + + + + + TLS + + + + + + + + + The overall ISDN capabilities of external ports of the CPE. + + + + The external ISDN ports support {{bibref|I.251.2}} Number identification supplementary services: Multiple Subscriber Number + + + + + + + + The external ISDN ports support {{bibref|I.251.1}} Number identification supplementary services: Direct-dialling-In + + + + + + + + The external ISDN ports support {{bibref|I.251.7}} Number identification supplementary services: Malicious call Identification + + + + + + + + The external ISDN ports support Message Waiting Indication (MWI) + + + + + + + + The external ISDN ports support one or more of the followings AOC-services: + {{bibref|I.256.2a}} Charging supplementary services: Advice of charge: charging information at call set-up time (AOC-S) + {{bibref|I.256.2b}} Charging supplementary services: Advice of charge: charging information during the call (AOC-D) + {{bibref|I.256.2c}} Charging supplementary services: Advice of charge: charging information at the end of the call (AOC-E) + + + + + + + + The external ISDN ports support {{bibref|I.252.7}} Call offering supplementary services: + Explicit call transfer (ECT) + + + + + + + + + The overall POTS capabilities of external ports of the CPE. + + + + The supported supported dial type. + + + + + + Supports Tone dialling + + + + + Supports Pulse dialling + + + + + Supports Tone and Pulse dialling + + + + + + + + The external POTS ports support Calling Line identification (CLIP). + + + + + + + + The external POTS ports support transmittal of a charging pulse according to TR1 TR 110. + + + + + + + + + Table to describe the set of supported codecs. + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Identifier of the type of codec. {{enum}} + The parameter MAY instead be a vendor-specific codec, which MUST be in the format defined in {{bibref|TR-106}}. For example: + "X_EXAMPLE-COM_MyCodec" + + + + + + + RFC4040 + + + + + + + + + + + + + + + + + + + RFC3389 + + + + + + + + + + + + + Bit rate, specified in {{units}}. The value MUST be among the values appropriate for the specified codec. + + + + + + + + + + {{list}} Each item is a supported packetization period, in milliseconds, or a continuous range of packetization periods. Ranges are indicated as a hyphen-separated pair of unsigned integers. Examples: + : "20" indicates a single discrete value. + : "10, 20, 30" indicates a set of discrete values. + : "5-40" indicates a continuous inclusive range. + : "5-10, 20, 30" indicates a continuous range in addition to a set of discrete values. + A range MUST only be indicated if all values within the range are supported. + + + + + + + + + + + If {{true}} indicates support for silence suppression for this codec. + + + + + + + + + Specific capabilities concerning quality indicators. + + + + Comma-separated list of supported models for evaluation of VoIP Quality Indicator. {{empty}} indicates that CPE does not support evaluation of this indicator. + The entry MAY include vendor-specific models, which MUST be in the format defined in {{bibref|TR-106}}. + For example: “P.564,G.107,X_EXAMPLE-COM_MyModel” + + + + + + + + Specifies the maximum number of QI values which can be reported for a session. If this parameter is empty there is no specified maximum limit. + If possible this limit SHOULD be large enough to handle at least 10 to 15 minutes of call time, which would typically mean 60 to 90 quality values for commonly used quality models. + + + + + + + + + + Maximum number of worst QI values which the CPE is able to store and report. A value of 0 indicates no specific maximum number of worst QI values. + + + + + + + + + + + The list of IP ports on the CPE WAN and LAN interfaces that will not be allocated by the ACS and therefore are available to be allocated by the CPE. The CPE can dynamically allocate ports from this range for things like signaling listening ports or local RTP ports. + + + + Range of ports reserved for use by the CPE on any WAN interface. {{list}} Each range consists of a ''Start'' part consisting of 1 to n digits (string representation) followed by an OPTIONAL ''End'' part consisting of 1 to n digits prefixed by a "-" symbol. + Example: + : 12345-12350,23580 + + + + + + + + + Range of ports reserved for use by the CPE on any LAN interfaces. {{list}} Each range consists of a ''Start'' part consisting of 1 to n digits (string representation) followed by an OPTIONAL ''End'' part consisting of 1 to n digits prefixed by a "-" symbol. + Example: + : 12345-12350,23580 + + + + + + + + + + This object models ISDN physical interfaces (BRI and PRI) supporting {{bibref|Q.931}} based signalling. + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + ISDN BRI physical interfaces table (a voice physical interface as described in {{bibref|TR-104i2|Section 4.1}}). + + + + + + + + + + Enables or disables this ISDN BRI interface. + + + + + + + + Indicates the status of this physical interface. + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the interface as assigned by the CPE. + + + + + + + + + + Reference to the {{object|.Tone.EventProfile}} to use with this interface. If this parameter is {{empty}}, the value of {{param|.Tone.DefautEventProfile}} is used instead. + + + + + + + + + + + Specify the type of application that uses the interface. + + + + + + + + + + + + Specifies the protocol variant used for the interface. {{enum}} + The list MAY include vendor-specific protocols, which MUST use the format defined in {{bibref|TR-106}}. + + + + + + ETSI defined Euro ISDN (DSS1) + + + + + National ISDN-1 (Bellcore) + + + + + National ISDN-2 (Bellcore)) + + + + + AT&T ISDN + + + + + Japanese NTT ISDN + + + + + French VN3 ISDN + + + + + French VN4 ISDN + + + + + + + + + Protocol emulation for the interface. + + + + + + + + + + + If {{true}}, avoid the disconnection of the ISDN layer 2 when the ISDN terminal or the ISDN network disconnects the layer 2 (in static TEI mode); it will be maintained established. + + + + + + + + Maintain the ISDN layer 1 up; it is useful for clocking and management. + + + + + + + + Avoid the disconnection of the ISDN layer 1 or 2 up when there is no call in progress in dynamic TEI mode. + + + + + + + + TEI management mode. It MUST be set to {{enum|Dynamic}} for ISDN phones or connection to an ISDN network and {{enum|Static}} for PBX. + + + + + + + + + + + TEI value in static mode. + + + + + + + + + + Enable or disable the lifeline bypass on the BRI S0 voice module. If the interface is used by the VoIP gateway, the bypass is enabled if the CPE is not registered on registration server. + + + + + + + + To enable (disable) the power source one (PS1) on the BRI interfaces. + + + + + + + + Maximum number of simultaneous B channels. + + + + + + + + + + {{list|reserved B-channels which can be used only for outbound calls}} + + + + + + + + + + + {{list|reserved B-channels which can be used only for inbound calls}} + + + + + + + + + + + {{list|reserved B-channels which can be used bidirectional}} + + + + + + + + + + + + ISDN PRI physical interfaces table (a voice physical interface as described in {{bibref|TR-104i2|Section 4.1}}). + + + + + + + + + + Enables or disables this ISDN PRI interface. + + + + + + + + Indicates the status of this physical interface. + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the interface as assigned by the CPE. + + + + + + + + + + Reference to the {{object|.Tone.EventProfile}} to use with this interface. If this parameter is {{empty}}, the value of {{param|.Tone.DefautEventProfile}} is used instead. + + + + + + + + + + + Specify the type of application that uses the interface. + + + + + + + + + + + + Specifies the protocol variant used for the interface. {{enum}} + The list MAY include vendor-specific protocols, which MUST use the format defined in {{bibref|TR-106}}. + + + + + + ETSI defined Euro ISDN (DSS1, E-DSS1) + + + + + National ISDN-1 (Bellcore) + + + + + National ISDN-2 (Bellcore)) + + + + + AT&T 4ESS ISDN + + + + + AT&T 5ESS ISDN + + + + + Japanese INS-NET1500 ISDN + + + + + + + + + Specify the protocol emulation for this interface. + + + + + + + + + + + If {{true}}, avoid the disconnection of the ISDN layer 2 when the ISDN terminal or the ISDN network disconnects the layer 2 (in static TEI mode); it will be maintained established. + + + + + + + + Specify the physical line coding to be used. + + + + + + + + + + + + Specify the framing type. + + + + + + no framing. Only used for CES / unstructured mode + + + + + double frame, no CRC4. For E1 only + + + + + multiframe (CRC4). For E1 only + + + + + extended multiframe (CRC4). For E1 only + + + + + super-frame. For T1 only + + + + + extended super frame. For T1 only + + + + + used to find automatically ISDN PRI framing by trying all possible detections. This behavior can be set when the configuration of remote + + + + + + + + {{enum}} + + + + + + + + + + + Maximum number of simultaneous B channels. + + + + + + + + + + {{list|reserved B-channels which can be used only for outbound calls}} + + + + + + + + + + + {{list|reserved B-channels which can be used only for inbound calls}} + + + + + + + + + + + {{list|reserved B-channels which can be used bidirectional}} + + + + + + + + + + + Determines the role of the CPE for the purpose of clock synchronisation on this interface. + + + + + + + + + + + + This object models analogue lines. Both FXO and FXS are handled. + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + The geographic region associated to POTS (MUST be an alpha-2 (two-character alphabetic) country code as specified by {{bibref|ISO3166-1}}). This MAY be used by the CPE to customize localization settings. + If {{empty}}, indicates that the region is unspecified and the CPE SHOULD use default localization settings. + + + + + + + + + + + FXO physical interfaces table (a voice physical interface as described in {{bibref|TR-104i2|Section 4.1}}). + Each entry in the table models an analogue physical interface as defined by {{bibref|ETSI_ES_203_021}} + + + + + + + + + + Enables or disables this FXO interface. + + + + + + + + Indicates the status of this physical interface. + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the interface as assigned by the CPE. + + + + + + + + + + Reference to the {{object|.Tone.EventProfile}} to use with this interface. If this parameter is {{empty}}, the value of {{param|.Tone.DefautEventProfile}} is used instead. + + + + + + + + + + + Enables the second step dialing mode. + If {{false}}, incoming dialed digits are processed through the voice routing table. + If {{true}}, the FXO port goes directly to the off-hook state and works as a FXS port for the dialing reception (a dial-tone is transmitted). The received digits are processed through the routing table until a match is found. If a match is found, the call is routed to the appropriate subscriber. + + + + + + + + + Specifies the time in {{units}} between off-hook and the transmission of the first digit for FXO interface. + + + + + + + + + + + Defines the timeout in {{units}} for incoming call on this FXO port: after receiving a ringing signal, the call is disconnected if no ringing signal is received anymore during this time. + + + + + + + + + + + Defines the number of pulses for ringing signal detection on FXO port. + + + + + + + + + + Specify the minimum duration in {{units}} of the "on-hook" state between two successive calls. + + + + + + + + + + + Signaling mode used for line seizure by the CPE. + + + + + + + + + + + + The time interval in {{units}} between dialing DTMF digits to PSTN. See also {{bibref|ETSI_ES_203_021}} + + + + + + + + + + + Enables the detection of CallerId for incoming calls. See also {{bibref|ETSI_ES_203_021}}. + + + + + + + + Determines if this physical interface is plugged. + + + + + + + + This command provides access to an FXO Port tests. + + + + Input arguments. + + + + Indicates which test to perform. {{enum}} + The parameter MAY instead indicate a vendor-specific test, which MUST use the format defined in {{bibref|TR-106}}. For example: "X_EXAMPLE-COM_MyTest" + + + + + + Tests for the presence of loop feed current; for a ''ground start'' line, also tests for polarity, to detect reversal of Tip and Ring + + + + + Closes the loop and checks for the presence of a dial tone. + + + + + + + + + Output arguments. + + + + Indicates the availability of diagnostics data. {{enum}} + If the value of this parameter is anything other than {{enum|Complete}}, the values of the other results parameters for this test are indeterminate. + + + + + + + + + + + + + + Result of the selected test. {{enum}} + The parameter MAY instead indicate a vendor-specific result, which MUST use the format defined in {{bibref|TR-106}}. For example: "X_EXAMPLE-COM_MyResult" + + + + + + + + + + + + + + FXS physical interfaces table (a voice physical interface as described in {{bibref|TR-104i2|Section 4.1}}). + Each entry in the table models an analogue physical interface as defined by {{bibref|ETSI_ES_201_970}} + + + + + + + + + + Enables or disables this FXS interface. + + + + + + + + Indicates the status of this physical interface. + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the interface as assigned by the CPE. + + + + + + + + + + Reference to the {{object|.Tone.EventProfile}} to use with this interface. If this parameter is {{empty}}, the value of {{param|.Tone.DefautEventProfile}} is used instead. + + + + + + + + + + + Indicates the support for pass-through of fax data of this interface. {{enum}} + + + + + + Prevents the CPE from switching to a fax pass-through mode. + + + + + Allows the CPE to automatically detect fax data to determine whether or not to switch to a fax pass-through mode. + + + + + Forces the CPE to switch to a fax pass-through mode regardless of whether fax signaling is detected. + + + + + + + + Indicates the support for pass-through of modem data of this interface. {{enum}} + + + + + + Prevents the CPE from switching to a modem pass-through mode. + + + + + Allows the CPE to automatically detect modem data to determine whether or not to switch to a modem pass-through mode. + + + + + Forces the CPE to switch to a modem pass-through mode regardless of whether modem signaling is detected. + + + + + + + + Dial type used on the line. + + + + + + Set the dial type to Tone dialling + + + + + Set the dial type to Pulse dialling + + + + + + + + Whether the Calling Line identification (CLIP) is enabled. + + + + + + + + Whether a charging pulse is transmitted on the line. + + + + + + + + Indicates whether a terminal is plugged on this physical interface. + + + + + + + + Defines the terminal type plugged on this interface to determine the correct signaling to be used to contact the terminal. + + + + + + + + + + + + + This command provides access to an FXS Port tests. + + + + Input arguments. + + + + Indicates which GR-909 test to perform. + + + + + + Hazard Potential test is failed if the TIP-GND or RING-GND AC voltage is greater than 50 volts rms or DC voltage is greater than 135 volts + + + + + Foreign Voltage test is failed if the TIP-GND or RING-GND AC voltage is greater than 10 volts or the TIP-GND or RING-GND DC voltage is greater than 6 volts + + + + + Resistive Faults test is failed if a TIP-RING, TIP-GND or RING-GND on-hook DC resistance less than 150 k? + + + + + Off-hook test is based upon criteria that permit the system to discriminate between a resistive fault and a receiver-off-hook condition. For example, a failure condition could be based on a non-linearity in the TIP-RING DC resistance of greater than 15% when measured at two different voltage levels + + + + + Ringer Equivalence Number test is failed when the equivalent ringer count across TIP and RING is less than 0.175 REN or greater than 5 REN + + + + + + + + + Output arguments. + + + + Indicates the availability of diagnostics data. {{enum}} + If the value of this parameter is anything other than {{enum|Complete}}, the values of the other results parameters for this test are indeterminate. + + + + + + + + + + + + + + Result of the selected test. + + + + + + + + + + + + + + Parameters related to voice processing (analogue/digital conversion) capabilities. + + + + Gain in {{units}} to apply to the transmitted voice signal prior to encoding. This gain is a modifier of the default transmit-gain, which is unspecified. + + + + + + + + + + Gain in {{units}} to apply to the received voice signal after decoding. This gain is a modifier of the default receive-gain, which is unspecified. + + + + + + + + + + Enable or disable echo cancellation for this line. + + + + + + + + Indication of whether or not echo cancellation is currently in use for this line. + + + + + + + + Tail length in {{units}} of the echo canceller associated with this line (whether or not it is currently in use). + + + + + + + + + + + This object contains the ring sequences configured for analogue lines. + + + + {{numentries}} + + + + + + + + + Table of events for which a ring pattern is defined. The table is pre-populated with the complete list of events for which the CPE supports definition of ring patterns. + + + + + + + + + + {{datatype|expand}} + + + + + + + + The event for which the ring pattern is to apply. {{enum}} + The parameter MAY instead indicate a vendor-specific event name, which MUST use the format defined in {{bibref|TR-106}}. + + + + + + + + + + + Used when the FXS is being alerted as part of a call to an {{object|.CallControl.Group.{i}}} + + + + + + + + {{list}} The values represent an alternating pattern of times (in {{units}}) when the ringer is ON or OFF. + Example: "1000,5000" + See also {{bibref|ETSI_TR_101_183}}. + + + + + + + + + + + + This object models DECT bases and portables. + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + DECT base table (a voice physical interface as described in {{bibref|TR-104i2|Section 4.1}}). + + + + + + + + + + + + + Enables or disables this base. + + + + + + + + Indicates the status of this base. + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the interface as assigned by the CPE. + + + + + + + + + + Reference to the {{object|.Tone.EventProfile}} to use with this interface. If this parameter is {{empty}}, the value of {{param|.Tone.DefautEventProfile}} is used instead. + + + + + + + + + + + The highest DECT protocol version supported by the base. + + + + + + see {{bibref|ETSI_EN_300_444}} + + + + + see {{bibref|ETSI_TS_102_527-1}} + + + + + see {{bibref|ETSI_TS_102_527-3}} + + + + + see {{bibref|ETSI_TS_102_527-5}} + + + + + see {{bibref|ETSI_TS_102_527-4}} + + + + + + + + + The Radio Fixed Part Identity which uniquely identifies the Base. The RFPI is a 40 bits number stored in a hexbinary string. The format of the number is class-dependant and is defined in {{bibref|ETSI_EN_300_175-6|sections 5.1 to 5.5}}. + + + + + + + + + + The maximum number of Portable Parts (PP) supported by the DECT base of the CPE. + + + + + + + + The PIN is an hexbinary string of 32 bits, as defined in {{bibref|ETSI_TS_102_527-3}}. + + + + + + If {{true}}, the DECT system supports the REP feature, as defined in {{bibref|ETSI_EN_300_175-8}}. + + + + + + + + Enable or disable NEMO (No Emission Mode as defined in {{bibref|ETSI_TS_102_527-3}}) operation of the base. Note: NEMO operations can be successfully enabled only if all PPs registered to the CPE support the NEMO operations. + + + + + + + + Enables the subscription mode of the DECT base. If {{true}}, the ''subscription window'' is open, otherwise it is closed. When the ''subscription window'' is open, a DECT portable part can be subscribed / registered to the DECT base. When written as {{true}}, it forces the device to open the ''subscription window''. When the ''subscription window'' timeslot expires, the value MUST be changed back to {{false}}. + If the CPE user can open the ''subscription window'' with a specific command (i.e. via DECT base GUI or pushing a button), the parameter MUST report the correct status ({{true}}, while the window is opened). + + + + + + + + Enable or disable ciphering for the calls on the DECT domain. + + + + + + + + Algorithm used in the encryption process defined in {{bibref|ETSI_EN_300_175-7}}. + + + + + + DECT Standard Cipher + + + + + DECT Standard Cipher #2 + + + + + CCM Authenticated Encryption Algorithm + + + + + + + + This parameter is used to control the sending RF power as per the required range within the customer premises. + When set to 'Reduced', the CPE SHALL undertake measures to reduce the transmission RF power. + + + + + + + + + + + Firmware version of the base as defined in {{bibref|ETSI_TS_102_527-3}} + + + + + + + + + + EEPROM version of the base as defined in {{bibref|ETSI_TS_102_527-3}} + + + + + + + + + + Hardware version of the base as defined in {{bibref|ETSI_TS_102_527-3}} + + + + + + + + + + + This object is associated with statistics collected from the DECT domain of the CPE. The collected statistics are common for all call scenarios. + The CPE MUST reset the DECT base's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the base becomes operationally down due to a previous administrative down (i.e. the base's {{param|#.Status}} parameter transitions to a down state after the base is disabled) or when the base becomes administratively up (i.e. the base's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). + + + + The count of all successful handovers. + + + + + + + + The count of all failed handovers. + + + + + + + + The count of all bad A-field packets. + + + + + + + + The count of all bad B-field packets. + + + + + + + + The count of all synchronization failures during all calls. + + + + + + + + + DECT portable table. + + + + + + + + + + Enables or disables this DECT portable. + + + + + + + + Indicates the status of this DECT portable. + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + {{list}} {{reference}} + The CPE SHOULD use the first enabled item in the list among those supported by the portable. + + + + + + + + + + + The current registration status of the DECT portable. + + + + + + + + + + + The International Portable User Identity which uniquely identifies the current user of the portable. + The IPUI is composed of the Portable User Type (PUT), of 4 bits, followed by the Portable User Number (PUN) whose size and format depend on PUT (see {{bibref|ETSI_EN_300_175-6|Section 6.2}}). + The hexbinary string is encoded exactly as it is defined in {{bibref|ETSI_EN_300_175-5|section 7.7.30}}) : + * Bits from position 0 to 3 represent the PUT (as defined in {{bibref|ETSI_EN_300_175-6|section 7.3}}). + * Bits from position 4 to {{param|IPUILength}}-1 represent the PUN. + * Unused bits after position {{param|IPUILength}}-1 are set to 0. + Examples : + : - Type N (PUT + IPEI) : + :: - PUT = 0000 (4 bits) = 0 (hexadecimal) + :: - IPEI = 0000 0000 0000 1100 0000 0000 0000 1000 1001 (36 bits) = 00 0C 00 08 9 (hexadecimal) + :: - IPUILength = 4 + 36 = 40 (bits) + :: - IPUI = 00 00 C0 00 89 (40 bits; multiple of 8 so no bits are ignored) + : - Type O (PUT + binary-coded number) : + :: - PUT = 0001 (4 bits) = 1 (hexadecimal) + :: - Number (decimal) = 4546812123 + :: - Number (binary) = 1000 0111 1000 0001 0110 1100 0110 1101 1 (33 bits) + :: - Number (hexadecimal) = 87 81 6C 6D 8 (33 bits; last three bits are ignored) + :: - IPUILength = 4 + 33 = 37 (bits) + :: - IPUI = 18 78 16 C6 D8 (37 bits; last 3 bits are ignored) + : - Type Q (PUT + BCD number) : + :: - PUT = 0011 (4 bits) = 3 (hexadecimal) + :: - Number (decimal) = 4546812123 + :: - Number (BCD) = 0100 0101 0100 0110 1000 0001 0010 0001 0010 0011 (40 bits) + :: - IPUILength = 4 + 40 = 44 (bits) + :: - IPUI = 34 54 68 12 12 30 (40 bits; last 4 bits are ignored) + + + + + + + + + + The length of {{param|IPUI}}, in {{units}}. + + + + + + + + + + The International Portable Equipment Identity which is globally unique and identifies the portable. + The IPEI is composed of the Equipment Manufacturer's Code (EMC), of 16 bits, followed by the Portable equipment Serial Number (PSN) of 20 bits (see {{bibref|ETSI_EN_300_175-6|Section 10}}). + The hexbinary string is encoded as follows : + * Bits from position 0 to 15 represent the EMC. + * Bits from position 16 to 35 represent the PSN. + * The last four bits are unused and are set to 0. + + + + + + + + + + The Portable Access Rights Key of this portable. + The PARK is composed of the Access Rights Class (ARC) of 3 bits and the Access Rights Details (ARD) whose size and format depend on the ARC (see {{bibref|ETSI_EN_300_175-6|Sections 6.1.1 to 6.1.5}}). + The hexbinary string is encoded as follows : + * Bits from position 0 to 2 represent the ARC (as defined in {{bibref|ETSI_EN_300_175-6|section 7.2}}). + * For class A : + ** Bits from position 3 to 35 represent the ARD. + ** The last four bits are unused and are set to 0. + * For other classes : + ** Bits from position 3 to 31 represent the ARD. + + + + + + + + + + Refers to the {{object|#.Base}} where this portable part is attached to. + + + + + + + + + + + {{list}} Protocols used for connection. + + + + + + + + + + + + + + + + The date and time in which the DECT portable has been subscribed with the base. + If NTP or equivalent is not available, this parameter, if present, SHOULD be set to the Unknown Time value. + + + + + + + + This parameter MAY be used by the ACS to control the registration status of the portable. + + + + + + the CPE unregisters the portable from the base, but retains the instance in the list. This is a temporary detachment procedure. + + + + + the CPE unregisters the portable from the base and removes the instance from the list of registered portables. It is possible for the portable to register again in the future. + + + + + + + + Indicates the Hardware Version of a DECT portable. Corresponds to the portable HW Version identifier parameter, as defined in {{bibref|ETSI_TS_102_527-4}}. + + + + + + + + + + Indicates the Software Version used by a DECT portable. Maps with the portable SW Version identifier parameter, as defined in {{bibref|ETSI_TS_102_527-4}}. + + + + + + + + + + This parameter indicates support for SUOTA (Software Update Over The Air). + + + + + + + + Indicates the last successful SW update of the DECT portable. This is based on the reception of a FACILITY message (being part of the HS version indication procedure) from the portable containing another value of SW version than the current value in this table. This new SW version is then updated in this table. + + + + + + + + The name of the operator that will be displayed on the portable, if it supports this feature. + + + + + + + + + + + This object is dedicated to SIP as defined in {{bibref|RFC3261}}. It models SIP networks, clients, proxies and registrars. + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + SIP client table (a Client as described in {{bibref|TR-104i2|Section 4.2}}). Each SIP client maintains its identity-to-location (i.e., RegisterURI-to-ContactURI) binding for SIP signaling exchanged between the client and the network. + For CPE use cases where {{object|.CallControl}} is used to map network-facing to user-facing objects, the relationship between the SIP client object and its associated {{object|.CallControl.Line}} object(s) is determined by the {{param|RegisterMode}} parameter, as follows: + : - In case of RFC3261-style explicit registration of SIP AoRs, only a single line shall be associated with each SIP client. + : - In case of RFC6140 or IMS/TISPAN-style registration, multiple lines can be associated with each SIP client. The set of lines associated with a SIP client constitute an 'identity set'. In this case, registering the single SIP client implicitly registers the identities of all associated lines. + : - In the case where the client does not register with the network ({{param|RegisterMode}} is {{enum|STATIC|RegisterMode}}), multiple lines can be associated with each SIP client. + + + + + + + Enable or disable this client. + + + + + + + + + If {{true}}, when {{param|Enable}} is set to {{false}} in-progress sessions remain intact, but no new sessions are allowed. When all sessions are terminated, the {{object}} is disabled. + + + + + + + + Indicates the status of this client. Unless noted otherwise, the status values apply to both registering and non-registering clients. + + + + + + The client is operational and has established connectivity with the network; i.e. the client is currently registered (for clients that register) or the periodic ping test indicates network connectivity (for clients that don't register) + + + + + Transitional state where the client has been enabled and is waiting an external event to transition to the next state (i.e. IP connectivity, DNS resolution...) + + + + + The client is in the process of registering with the network. This state applies only to clients that register + + + + + The client is in the process of deregistering over the network. This state applies only to clients that register + + + + + The client is enabled, but is non-operational due a configuration error + + + + + A network error occurred + + + + + An error occurred during registration. This state applies only to clients that register. + + + + + This state indicates that the client has been disabled and is waiting for active session(s) to terminate before transitioning to the disabled state. + + + + + The client is disabled + + + + + + + + + {{datatype|expand}} + + + + + + + + Mechanism via which this instance was assigned. {{enum}} + + + + + + Automatically generated, for example by a ESBC that auto-creates client objects + + + + + For example, present in the factory default configuration, created by the ACS, or created by some other management entity (e.g. via a GUI). + + + + + + + + + The registration procedures to apply. For {{param}} values other than {{enum|STATIC}}, the SIP {{object|#}} conveys its RegisterURI-to-ContactURI binding to the network using the SIP registration procedure. For the {{param}} value of {{enum|STATIC}}, the SIP client RegisterURI-to-ContactURI binding is conveyed to the network via some out-of-band mechanism not defined by this data model. + This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + The client registers with the network using the registration procedures defined in {{bibref|RFC3261}} + + + + + The client does not register with the network + + + + + The client registers with the network using the registration procedures defined in {{bibref|RFC6140}} + + + + + The client registers with the network using the registration procedures defined in {{bibref|3GPP_TS_24.229|section 5.1.1.2}} + + + + + + + + Username used to authenticate the connection to the server. + This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + + + + Password used to authenticate the connection to the server. + This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + SIP network with which this SIP client is associated. + {{reference}} + This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + + + + Limit on the number of simultaneous voice sessions across this client. This MUST be less than or equal to {{param|.Capabilities.MaxSessionCount}}. + A value of zero indicates no explicit limit on the number of sessions. + + + + + + + + + The SIP URI that represents the identity of this SIP client. For {{param|RegisterMode}} values where the SIP client registers with the network, this SIP URI is placed in the From and To headers in the REGISTER request. + This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + + + + When {{true}} and using a {{object|.Trunk}}, the SIP URIs built from the directory numbers in {{param|.Trunk.{i}.DDIRange}} SHOULD use E.164 format, using the "user=phone" URI parameter, according to {{bibref|RFC3261|section 19.1.6}}. + + + + + + + + + Enable or disable the use of T.38. + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + Active registrations for this SIP account. + + + + + + + Enable or disable this {{object}}. + + + + + + + + + Indicates the status of this {{object}}. + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Mechanism via which this {{object}} was assigned. {{enum}} + + + + + + Automatically generated, for example by a ESBC that auto-creates {{object}} objects. + + + + + For example, present in the factory default configuration, created by the ACS, or created by some other management entity (e.g. via a GUI). + + + + + + + + + This is the IP address where the {{object|#}} is listening for SIP requests from the service provider network. This IP address value is populated in the host portion of the {{param|ContactURI}} parameter. + This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + This is the port where the {{object|#}} is listening for SIP requests from the service provider network. This IP port value is populated in the port portion of the {{param|ContactURI}} parameter. + This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + + + The current Contact URI of the {{object|#}}. + If SIP registration procedures are being used, as determined by the {{param|#.RegisterMode}} parameter, then this parameter is populated in the Contact header field of the REGISTER request. + This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + + + + Time when this registration will expire. This parameter is valid only when SIP registration procedures are being used, as determined by the {{param|#.RegisterMode}} parameter. + If this registration never expires, this parameter SHOULD be set to the Unknown Time value. + + + + + + + + The interval in {{units}} between sending a periodic ping request toward the network (i.e. a SIP OPTIONS ping). The CPE performs the periodic ping request to verify connectivity with the network when SIP registration procedures are not used (i.e. when the SIP client {{param|#.RegisterMode}} is {{enum|STATIC|#.RegisterMode}}). A value of '0' indicates that the CPE should not perform the periodic ping request. + + + + + + + + + + + This is the User-Agent field reported in the SIP header of the REGISTER message. + + + + + + + + + + + Table of SIP events automatically populated by the CPE with each of the SIP event subscriptions in {{object|.SIP.Network.{i}.EventSubscribe.{i}.}}. This table allows specification of the authentication credentials needed for each event subscription. + + + + + + + + + + Enables or disables this entry. + + + + + + + + + {{datatype|expand}} + + + + + + + + SIP event name corresponding to the value given in {{object|.SIP.Network.{i}.EventSubscribe.{i}.}}. + + + + + + + + + + Username used to authenticate the connection to the event notify server. + + + + + + + + + + + Password used to authenticate the connection to the event notify server. + + + + + + + This object models a SIP network (a network as described in {{bibref|TR-104i2|Section 4.2}}). SIP networks are used by SIP {{object|#.Client}} objects so that common parameters do not have to be provisioned multiple times. + + + + + + + Enable or disable this {{object}}. Starts the DNS resolving when enabled. + + + + + + + + + If {{true}}, when {{param|Enable}} is set to {{false}} in-progress sessions remain intact, but no new sessions are allowed. When all sessions are terminated, the {{object}} is disabled. + + + + + + + + Indicates the status of this network. + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Host name or IP address of the SIP proxy server. + If not {{empty}}, all SIP signaling traffic MUST be sent to the host indicated by this parameter and the port indicated by {{param|ProxyServerPort}} unless {{param|OutboundProxy}} is not {{empty}} or a different route was discovered during normal SIP routing operations. + Regardless of which host the traffic gets sent to ({{param}} or {{param|OutboundProxy}}), the value of this parameter (unless {{empty}}) MUST be used to derive the URI placed into the SIP Route header field of all requests originated by this end-point, unless a different proxy host was discovered dynamically during normal SIP routing operations. + + + + + + + + + + + Destination port to be used in connecting to the SIP proxy server. + + + + + + + + + + + Transport protocol to be used in connecting to the SIP proxy server. + + + + + + + + + + + + + + Host name or IP address of the SIP registrar server. + If this parameter is {{empty}}, the CPE MUST obtain all of the registrar server configuration information, including host name or IP address, port, and transport protocol, from the values in {{param|ProxyServer}}, {{param|ProxyServerPort}}, and {{param|ProxyServerTransport}}. + + + + + + + + + + + Destination port to be used in connecting to the SIP registrar server. + If {{param|RegistrarServer}} is empty the CPE MUST obtain all of the registrar server configuration information, including host name or IP address, port, and transport protocol, from the values in {{param|ProxyServer}}, {{param|ProxyServerPort}}, and {{param|ProxyServerTransport}}. + + + + + + + + + + + Transport protocol to be used in connecting to the registrar server. {{enum}} + If {{param|RegistrarServer}} is empty the CPE MUST obtain all of the registrar server configuration information, including host name or IP address, port, and transport protocol, from the values in {{param|ProxyServer}}, {{param|ProxyServerPort}}, and {{param|ProxyServerTransport}}. + + + + + + + + + + + + + + If non-empty this {{param}} is used by the devices in a DNS SRV request to provide FQDNs {{object|FQDNServer.{i}.}} for SIP Server connections. + {{bibref|RFC2782}} ''Clients ask for a specific service/protocol for a specific domain (the word domain is used here in the strict RFC 1034 sense), and get back the names of any available servers.'' + + + + + + + + + + + Domain used by {{object|#.Client}} objects that reference this {{object}} instance. + + + + + + + + + + + IP address used to reach the {{param|ChosenDomain}}. + + + + + + + + Port used to reach the {{param|ChosenDomain}}. + + + + + + + + + + CPE domain string. If {{empty}}, the CPE SHOULD use its IP address as the domain. + + + + + + + + + + + Port used for incoming call control signaling. + + + + + + + + + + + Transport protocol to be used for incoming call control signaling. + + + + + + + + + + + + + + The Fully Qualified Domain Name (FQDN) or IP Address of the outbound proxy. If the value is not {{empty}}, the SIP endpoint MUST send all SIP traffic (requests and responses) to the host indicated by this parameter and the port indicated by {{param|OutboundProxyPort}}. This MUST be done regardless of the routes discovered using normal SIP operations, including use of Route headers initialized from Service-Route and Record-Route headers previously received. {{param}} is NOT used to generate the URI placed into the Route header of any requests. + When {{param}} is assigned, the name is looked up (resolved) and the corresponding address is set in {{param|OutboundProxyResolvedAddress}}. + + + + + + + + + + + The IP address of the outbound proxy. + This parameter can be assigned statically (e.g. present in the factory default configuration or set by the ACS via {{param|OutboundProxy}}) or assigned dynamically (via DHCP). + When {{param|OutboundProxy}} is assigned, the name is looked up (resolved) and the corresponding address is set in {{param}}. + + + + + + + + Indicates whether it is the static configuration or the DHCP configuration that is actually used for {{param|OutboundProxyResolvedAddress}}. + + + + + + + + + + + Destination port to be used in connecting to the outbound proxy. This parameter MUST be ignored unless the value of {{param|OutboundProxy}} is non-empty. + + + + + + + + + + + Enable or disable use of STUN to allow operation through NAT. Note: enabling STUN is to be interpreted as enabling the use of STUN for discovery, not use as a keep-alive mechanism. + + + + + + + + + Domain name or IP address of the STUN server. + + + + + + + + + + + For bandwidth-based admission control, a session can proceed only if there is {{param}} {{units}} of upstream bandwidth left available for non-voice traffic. This parameter is appropriate only in implementations in which the actual bandwidth can be known, such as a VoIP device embedded in a DSL B-NT. + + + + + + + + + + + For bandwidth-based admission control, a session can proceed only if there is {{param}} {{units}} of downstream bandwidth left available for non-voice traffic. This parameter is appropriate only in implementations in which the actual bandwidth can be known, such as a VoIP device embedded in a DSL B-NT. + + + + + + + + + + + Text string to be used in the Organization header. + + + + + + + + + + + Duration, in {{units}}, after which the user agent needs to register again. + + + + + + + + + + + Realm for authentication with the specified values of {{param|#.Client.{i}.AuthUserName}} and {{param|#.Client.{i}.AuthPassword}}. + + + + + + + + Value of SIP timer T1, in {{units}}, as defined in {{bibref|RFC3261}}. + + + + + + + + + + + Value of SIP timer T2, in {{units}}, as defined in {{bibref|RFC3261}}. + + + + + + + + + + + Value of SIP timer T4, in {{units}}, as defined in {{bibref|RFC3261}}. + + + + + + + + + + + Value of SIP timer A, in {{units}}, as defined in {{bibref|RFC3261}}. + + + + + + + + + + + Value of SIP timer B, in {{units}}, as defined in {{bibref|RFC3261}}. + + + + + + + + + + + Value of SIP timer C, in {{units}}, as defined in {{bibref|RFC3261}}. + + + + + + + + + + + Value of SIP timer D, in {{units}}, as defined in {{bibref|RFC3261}}. + + + + + + + + + + + Value of SIP timer E, in {{units}}, as defined in {{bibref|RFC3261}}. + + + + + + + + + + + Value of SIP timer F, in {{units}}, as defined in {{bibref|RFC3261}}. + + + + + + + + + + + Value of SIP timer G, in {{units}}, as defined in {{bibref|RFC3261}}. + + + + + + + + + + + Value of SIP timer H, in {{units}}, as defined in {{bibref|RFC3261}}. + + + + + + + + + + + Value of SIP timer I, in {{units}}, as defined in {{bibref|RFC3261}}. + + + + + + + + + + + Value of SIP timer J, in {{units}}, as defined in {{bibref|RFC3261}}. + + + + + + + + + + + Value of SIP timer K, in {{units}}, as defined in {{bibref|RFC3261}}. + + + + + + + + + + + Invite request Expires header value, in {{units}}. + + + + + + + + + + + Re-invite request Expires header value, in {{units}}. + + + + + + + + + + + Register request Expires header value, in {{units}}. + + + + + + + + + + + Register retry interval, in {{units}}. + + + + + + + + + + + Applicable inbound authentication method, if any. + + + + + + + when selected, {{param|InboundAuthUsername}} and {{param|InboundAuthPassword}} MUST be specified. + + + + + only accept incoming SIP requests from IP addresses associated with {{param|ProxyServer}} + + + + + + + + + If inbound authentication is used, the username credentials. + + + + + + + + + + + If inbound authentication is used, the password credentials. + + + + + + When {{true}}, in the SDP included in an OK response to an Invite, the first listed codec MUST be the highest priority codec among those offered in the Invite, based on the priorities specified in {{param|CodecList}}. The list of codecs in the SDP MAY also include other lower priority codecs. + When {{false}}, there is no specific requirement for choosing the codecs listed in the SDP included in an OK response. + + + + + + + + + Diffserv code point to be used for outgoing SIP signaling packets. + + + + + + + + + + + VLAN ID (as defined in {{bibref|802.1Q-2005}}) to be used for outgoing SIP signaling packets for this network. A value of -1 indicates the default value is to be used. + If either {{param}} or {{param|EthernetPriorityMark}} are greater than zero, then the outgoing frames MUST be tagged. Otherwise, the outgoing frames MAY be tagged or untagged. + + + + + + + + + + + Ethernet priority code (as defined in {{bibref|802.1Q-2005}}) to be used for outgoing SIP signaling packets for this network. A value of -1 indicates the default value is to be used. + If either {{param|VLANIDMark}} or {{param}} are greater than zero, then the outgoing frames MUST be tagged. Otherwise, the outgoing frames MAY be tagged or untagged. + + + + + + + + + + + URI of the network conference bridge for the multiway conference call service. + + + + + + + + + + In case of a 401 (Unauthorized) or a 407 (Proxy Authentication Required) response to a REGISTER request, the CPE shall send REGISTER using credentials. If the second response is a new 401 (Unauthorized) or a 407 (Proxy Authentication Required) with stale=false or no stale value, the CPE shall re-init registration cycle after expiration of this timer (in {{units}}). If stale=true, the CPE shall send REGISTER using credentials. + + + + + + + + + + If {{true}}, no retry after a 401 (Unauthorized) or a 407 (Proxy Authentication Required) response to a REGISTER until power cycle or credentials have been changed. + + + + + + + + In case of no response to a REGISTER request, the CPE shall retry according to retransmission algorithm defined in {{bibref|RFC3261}}, then wait for expiration of this timer (in {{units}}). + In case of other response, the CPE shall wait for expiration of this timer before sending a new REGISTER request. + + + + + + + + + + When starting a MWI subscription, on response of a SUBSCRIBE request : in case of no response or other response than 200 or 423, the CPE shall retry according to retransmission algorithm defined in {{bibref|RFC3261}}, then wait for expiration of this timer (in {{units}}) before sending a new SUBSCRIBE request. + + + + + + + + + + The number of registration timeouts when trying to register the server. + + + + + + + + VoIP profile to use with this {{object}}. + {{reference}} + + + + + + + + + + + {{list}} {{reference}} + The CPE SHOULD use the first enabled item in the list among those supported by the remote endpoint and consistent with the available bandwidth. + + + + + + + + + + + Limit on the number of simultaneous voice sessions across all {{object|.SIP.Client}} referencing this {{object}}. This MUST be less than or equal to {{param|.Capabilities.MaxSessionCount}}. + A value of zero indicates no explicit limit on the number of sessions. + + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + + + Table of Fully Qualified Domain Names for this {{object|#}} instance in order to connect to the SIP server as described in {{bibref|RFC2782}}. + + + + + + + + + + Enables or disables this FQDN server. + + + + + + + + + {{datatype|expand}} + + + + + + + + Mechanism via which the FQDN server was assigned. + + + + + + Automatically generated, for example by a CPE that utilizes DNS SRV record requests + + + + + For example, present in the factory default configuration, created by the ACS, or created by some other management entity (e.g. via a GUI) + + + + + + + + + The domain name of the target host. This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + + + A server selection mechanism. The weight field specifies a relative weight for entries with the same priority. + Larger weights SHOULD be given a proportionately higher probability of being selected. This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + + + + The priority of this target host. A client MUST attempt to contact the target host with the lowest-numbered priority it can reach; + target hosts with the same priority SHOULD be tried in an order defined by the weight field. This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + + + + The port on this target host of this service. + + + + + + + + + + {{list|the IP Addresses that the FQDN resolves to}} + The order in which the addresses appear in the list MAY imply priority. This parameter MAY be modified by the ACS only if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + + + Table to specify the SIP events to which the CPE MUST subscribe. + + + + + + + + + + Enables or disables this entry. + + + + + + + + + {{datatype|expand}} + + + + + + + + SIP event name to appear in the EVENT header of the SIP SUBSCRIBE request. + + + + + + + + + + + Host name or IP address of the event notify server. + + + + + + + + + + + Destination port to be used in connecting to the event notifier. + + + + + + + + + + + Transport protocol to be used in connecting to the event notifier. + + + + + + + + + + + + + + Subscription refresh timer, in {{units}}. + + + + + + + + + + + Each entry in this table specifies the tone and message to be provided to the user for a particular SIP response received (normally 4xx and 5xx). + + + + + + + + + + {{datatype|expand}} + + + + + + + + The SIP response code number. + + + + + + + + + + Enables or disables this entry. + + + + + + + + + The message to be provided on the screen or display of the VoIP device when the SIP response is received. + If this parameter is not {{empty}}, display of this text preempts the value of {{param|.Tone.Description.{i}.ToneText}} associated with {{param|Tone}}. If this parameter is {{empty}}, the value of {{param|.Tone.Description.{i}.ToneText}} associated with {{param|Tone}}, if any, is displayed instead. + This parameter is applicable only for VoIP devices capable of text display. + + + + + + + + + + + The tone to be played to the user when the SIP response is received. + {{reference}} + {{empty}} indicates no tone is to be played for this event. + + + + + + + + + + + + Global SIP parameters used by the CPE when acting as proxy for SIP user agents. + + + + + + + + + + + Enable or disable the proxy. + + + + + + + + + Indicates the status of this proxy. + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Mechanism via which the IP address was assigned. {{enum}} + + + + + + Automatically generated, for example by a ESBC that auto-creates {{object}} objects + + + + + For example, present in the factory default configuration, created by the ACS, or created by some other management entity (e.g. via a GUI). + + + + + + + + + The IP address the proxy listens on. + This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + The port the proxy listens on. + + + + + + + + + + Built by the CPE using {{param|ProxyIPAddress}} and {{param|ProxyPort}}. + + + + + + + + + + VoIP profile to use with this proxy. + {{reference}} + + + + + + + + + + + + Global SIP parameters used by the CPE when acting as registrar server for externally connected SIP user agents. This object also contains the global SIP parameters used by the CPE when it acts as static identity-to-location binding database for externally connected SIP user agents that don't register (i.e. static-mode SIP-PBX). + + + + + + + + + + + Enable or disable the registrar. + + + + + + + + + If {{true}}, when {{param|Enable}} is set to {{false}} in-progress sessions remain intact, but no new sessions are allowed. When all sessions are terminated, the {{object}} is disabled. + + + + + + + + Indicates the status of this registrar. + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Mechanism via which the IP address was assigned. {{enum}} + + + + + + Automatically generated, for example by a ESBC that auto-creates {{object}} objects + + + + + For example, present in the factory default configuration, created by the ACS, or created by some other management entity (e.g. via a GUI) + + + + + + + + + The IP address the registrar listens on for incoming SIP requests from an externally connected SIP user agent. + This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + The port the registrar listens on. + + + + + + + + + + The minimum register expire time in {{units}}. This parameter is valid only for SIP user agents that support registration. + + + + + + + + + + The interval in {{units}} between sending a periodic ping request (e.g., a SIP OPTIONS ping) to externally connected SIP user agents. The CPE performs the periodic ping request to verify connectivity with externally connected devices that do not support SIP registration procedures (i.e. a static-mode SIP-PBX). A value of 0 indicates that the CPE should not perform the periodic ping request. + + + + + + + + + + + Text string to be used in the Organization header. + + + + + + + + + + + Realm for authentication with the specified values of {{param|Account.{i}.AuthUserName}} and {{param|Account.{i}.AuthPassword}}. + + + + + + + + VoIP profile to use with this registrar. + {{reference}} + + + + + + + + + + + Built by the CPE using {{param|RegistrarIPAddress}} and {{param|RegistrarPort}}. + + + + + + + + + + {{numentries}} + + + + + + + + + SIP account table. + + + + + + + + + + Enables or disables this account, or places it into a quiescent state. {{enum}} + In the {{enum|Quiescent}} state, in-progress sessions remain intact, but no new sessions are allowed. If this parameter is set to {{enum|Quiescent}} in a CPE that does not support the {{enum|Quiescent}} state, it MUST treat it the same as the {{enum|Disable}} state (and indicate {{enum|Disabled|Status}} in {{param|Status}}). + + + + + + + + + + + + + If {{true}}, when {{param|Enable}} is set to {{false}} in-progress sessions remain intact, but no new sessions are allowed. When all sessions are terminated, the {{object}} is disabled. + + + + + + + + Indicates the status of this account. Unless noted otherwise, the {{param}} values apply to both registering and non-registering external SIP user agents. + + + + + + The {{object}} is operational and has established connectivity with the external SIP user agent; i.e. the external device is currently registered (for SIP user agents that register) or the periodic ping test indicates connectivity with the external device (for SIP user agents that don't register + + + + + Transitional state where the {{object}} has been enabled and is waiting for an external event to transition to the next state (i.e. IP connectivity, DNS resolution, reception of SIP REGISTER request from external SIP user agent...) + + + + + The external SIP user agent is in the process of registering with the CPE. This state applies only to SIP user agents that register + + + + + The external SIP user agent is in the process of deregistering with the CPE. This state applies only to SIP user agents that register + + + + + The {{object}} is enabled, but is non-operational due a configuration error + + + + + A network error occurred + + + + + An error occurred during registration. This state applies only to Accounts serving SIP user agents that register + + + + + This state indicates that the {{object}} has been disabled and is waiting for active session(s) to terminate before transitioning to the disabled state + + + + + The {{object}} is disabled + + + + + + + + + {{datatype|expand}} + + + + + + + + Mechanism via which the {{object}} was created. {{enum}} + + + + + + Automatically generated, for example by a ESBC that auto-creates {{object}} objects + + + + + For example, present in the factory default configuration, created by the ACS, or created by some other management entity (e.g. via a GUI) + + + + + + + + + Indicates the call status for this account. + + + + + + + + + + + + + + + Username used to authenticate the connection to the registrar server. + This parameter can only be modified if {{param|Origin}} is Static. + + + + + + + + + + + Password used to authenticate the connection to the registrar server. + This parameter can only be modified if {{param|Origin}} is Static. + + + + + + The current registration status of the externally connected SIP user agent. This parameter is valid only for SIP user agents that support registration. + + + + + + + + + + + The URI (AoR) of the externally connected SIP user agent. For SIP user agents that register, this is the URI that is contained in the To header field of the incoming REGISTER request. + This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + + + The domain name used when the SIP user agent has registered itself. + This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + + + {{list}} {{reference}} + The CPE SHOULD use the first enabled item in the list among those supported by the remote endpoint and consistent with the available bandwidth. + + + + + + + + + + + Voice profile to use with this {{object}}. + {{reference}} + + + + + + + + + + + {{numentries}} + + + + + + + + + Active registrations for this SIP account. + + + + + + + Enable or disable this entry. + + + + + + + + + Indicates the status of this entry. + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Mechanism via which the {{object}} was assigned. {{enum}} + + + + + + Automatically generated, for example by a ESBC that auto-creates {{object}} objects. + + + + + For example, present in the factory default configuration, created by the ACS, or created by some other management entity (e.g. via a GUI). + + + + + + + + + IP Address of the externally connected SIP user agent. This is the IP address contained in the {{param|ContactURI}} parameter. + This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + The port of the externally connected SIP user agent. This is the port contained in the {{param|ContactURI}} parameter. + This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + + + This is the SIP signaling address of the externally connected SIP user agent. If the SIP user agent registers, then {{param}} is the Contact URI contained in the Contact header field of the REGISTER request received from the SIP user agent. If the SIP user agent does not register, then the {{param}} is provisioned by the ACS. + This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + + + Time when this registration will expire. This parameter is valid only for external SIP user agents that register. + If this registration never expires, this parameter SHOULD be set to the Unknown Time value. + + + + + + + + This parameter defines the User-Agent header that will be used by the SIP messages send by this user agent. Implementers SHOULD make the User-Agent header field a configurable option. + + + + + + + + + + + This object is dedicated to MGCP as defined in {{bibref|RFC3435}}. It models MGCP clients and networks. + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + MGCP client table (a client as described in {{bibref|TR-104i2|Section 4.2}}). Each MGCP client maintains a registration for the MGCP identities of the associated line with the {{object|#.Network}}. + + + + + + + Enable or disable this client. + + + + + + + + + If {{true}}, when {{param|Enable}} is set to {{false}} in-progress sessions remain intact, but no new sessions are allowed. When all sessions are terminated, the {{object}} is disabled. + + + + + + + + Indicates the status of this client. + + + + + + The client is operational and has established connectivity with the network + + + + + Transitional state where the client has been enabled and is waiting an external event to transition to the next state (i.e. IP connectivity, DNS resolution...) + + + + + The client is in the process of registering with the network + + + + + The client is in the process of deregistering over the network + + + + + The client is enabled, but is non-operational due a configuration error + + + + + A network error occurred + + + + + An error occurred during registration + + + + + This state indicates that the client has been disabled and is waiting for active session(s) to terminate before transitioning to the disabled state + + + + + The client is disabled + + + + + + + + + {{datatype|expand}} + + + + + + + + Register mode. + + + + + + + + + + + + Port listening for incoming call control signaling. + + + + + + + + + + + CPE domain string. If {{empty}}, the CPE SHOULD use its IP address. + + + + + + + + + + + User string used in accessing the call agent. + + + + + + + + + + + MGCP network with which this MGCP client is associated. + {{reference}} + + + + + + + + + + + Limit on the number of simultaneous voice sessions across this {{object}}. This MUST be less than or equal to {{param|.Capabilities.MaxSessionCount}}. + A value of zero indicates no explicit limit on the number of sessions. + + + + + + + + + + This object models a MGCP network (a network as described in {{bibref|TR-104i2|Section 4.2}}). + + + + + + + Enable or disable the {{object}}. Starts the DNS resolving when enabled. + + + + + + + + + If {{true}}, when {{param|Enable}} is set to {{false}} in-progress sessions remain intact, but no new sessions are allowed. When all sessions are terminated, the {{object}} is disabled. + + + + + + + + Indicates the status of this {{object}}. + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Host name or IP address of the main MGCP call agent. + + + + + + + + + + + Destination port to be used in connecting with the main MGCP call agent. + + + + + + + + + + + Host name or IP address of the backup MGCP call agent. + + + + + + + + + + + Destination port to be used in connecting with the backup MGCP call agent. + + + + + + + + + + + Message retransfer interval, in {{units}}. + + + + + + + + + + + + Max number of message retransfers. + + + + + + + + + + + Diffserv code point to be used for outgoing MGCP signaling packets. + + + + + + + + + + VLAN ID (as defined in {{bibref|802.1Q-2005}}) to be used for outgoing MGCP signaling packets for this network. A value of -1 indicates the default value is to be used. + If either {{param}} or {{param|EthernetPriorityMark}} are greater than zero, then the outgoing frames MUST be tagged. Otherwise, the outgoing frames MAY be tagged or untagged. + + + + + + + + + + + Ethernet priority code (as defined in {{bibref|802.1D-2004}}) to be used for outgoing MGCP signaling packets for this network. A value of -1 indicates the default value is to be used. + If either {{param|VLANIDMark}} or {{param}} are greater than zero, then the outgoing frames MUST be tagged. Otherwise, the outgoing frames MAY be tagged or untagged. + + + + + + + + + + + Indicates whether or not piggyback events are allowed to the MGCP call agent. + + + + + + + + Indicates whether or not to send RSIP immediately on restart. + + + + + + + + Enable or disable use of STUN to allow operation through NAT. Note: enabling STUN is to be interpreted as enabling the use of STUN for discovery, not use as a keep-alive mechanism. + + + + + + + + + Domain name or IP address of the STUN server. + + + + + + + + + + + For bandwidth-based admission control, a session can proceed only if there is {{param}} {{units}} of upstream bandwidth left available for non-voice traffic. This parameter is appropriate only in implementations in which the actual bandwidth can be known, such as a VoIP device embedded in a DSL B-NT. + + + + + + + + + + + For bandwidth-based admission control, a session can proceed only if there is {{param}} {{units}} of downstream bandwidth left available for non-voice traffic. This parameter is appropriate only in implementations in which the actual bandwidth can be known, such as a VoIP device embedded in a DSL B-NT. + + + + + + + + + + + Limit on the number of simultaneous voice sessions across all {{object|.MGCP.Client.}} referencing this {{object}}. This MUST be less than or equal to {{param|.Capabilities.MaxSessionCount}}. + A value of zero indicates no explicit limit on the number of sessions. + + + + + + + + + VoIP profile to use with this network. + {{reference}} + + + + + + + + + + + {{list}} {{reference}} + The CPE SHOULD use the first enabled item in the list among those supported by the remote endpoint and consistent with the available bandwidth. + + + + + + + + + + + + This object is dedicated to H.323 as defined in {{bibref|H.323}}. It models H.323 clients and networks. + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + H.323 client table (a client as described in {{bibref|TR-104i2|Section 4.2}}). Each H.323 client maintains a registration for the H.323 identities of the associated line with the {{object|#.Network}}. + + + + + + + Enable or disable this client. + + + + + + + + + If {{true}}, when {{param|Enable}} is set to {{false}} in-progress sessions remain intact, but no new sessions are allowed. When all sessions are terminated, the {{object}} is disabled. + + + + + + + + Indicates the status of this client. + + + + + + The client is operational and has established connectivity with the network + + + + + Transitional state where the client has been enabled and is waiting an external event to transition to the next state (i.e. IP connectivity, DNS resolution...) + + + + + The client is in the process of registering with the network + + + + + The client is in the process of deregistering over the network + + + + + The client is enabled, but is non-operational due a configuration error + + + + + A network error occurred + + + + + An error occurred during registration + + + + + This state indicates that the client has been disabled and is waiting for active session(s) to terminate before transitioning to the disabled state + + + + + The client is disabled + + + + + + + + + {{datatype|expand}} + + + + + + + + Enables or disables usage of H.235 security baseline security profile as defined in {{bibref|H.235.1}}. + + + + + + + + + Password to be used when H.235 is enabled. + + + + + + In ITU-T based H.235 authentication, the sendersID is the ID of the gateway as received from the Gatekeeper. As long as the endpointID is not received from the Gatekeeper, the sendersID will be applied as configured here. The generalID is the GatekeeperID. + + + + + + + + + H.323 network with which this H.323 client is associated. + {{reference}} + + + + + + + + + + + The H.323 ID assigned to the client. + + + + + + + + + + + Limit on the number of simultaneous voice sessions across this {{object}}. This MUST be less than or equal to {{param|.Capabilities.MaxSessionCount}}. + A value of zero indicates no explicit limit on the number of sessions. + + + + + + + + + + This object models a H.323 network (a network as described in {{bibref|TR-104i2|Section 4.2}}). + + + + + + + Enable or disable this {{object}}. Starts the DNS resolving when enabled. + + + + + + + + + If {{true}}, when {{param|Enable}} is set to {{false}} in-progress sessions remain intact, but no new sessions are allowed. When all sessions are terminated, the {{object}} is disabled. + + + + + + + + Indicates the status of this network. + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Host name or IP address of H.323 Gatekeeper. + + + + + + + + + Destination port to be used in connecting to the H.323 Gatekeeper. + + + + + + + + + Gatekeeper ID. + + + + + + + + + Defines the TimeToLive specification in the registration with the Gatekeeper in {{units}}. + + + + + + + + + + + Diffserv code point to be used for outgoing H.323 signaling packets. + + + + + + + + + + + VLAN ID (as defined in {{bibref|802.1Q-2005}}) to be used for outgoing H.323 signaling packets for this network. A value of -1 indicates the default value is to be used. + If either {{param}} or {{param|EthernetPriorityMark}} is greater than zero, then the outgoing frames MUST be tagged. Otherwise, the outgoing frames MAY be tagged or untagged. + + + + + + + + + + + Ethernet priority code (as defined in {{bibref|802.1D-2004}}) to be used for outgoing H.323 signaling packets for this network. A value of -1 indicates the default value is to be used. + If either {{param|VLANIDMark}} or {{param}} is greater than zero, then the outgoing frames MUST be tagged. Otherwise, the outgoing frames MAY be tagged or untagged. + + + + + + + + + + + Enable or disable use of STUN to allow operation through NAT. Note: enabling STUN is to be interpreted as enabling the use of STUN for discovery, not use as a keep-alive mechanism. + + + + + + + + + Domain name or IP address of the STUN server. + + + + + + + + + + + For bandwidth-based admission control, a session can proceed only if there is {{param}} {{units}} of upstream bandwidth left available for non-voice traffic. This parameter is appropriate only in implementations in which the actual bandwidth can be known, such as a VoIP device embedded in a DSL B-NT. + + + + + + + + + + + For bandwidth-based admission control, a session can proceed only if there is {{param}} {{units}} of downstream bandwidth left available for non-voice traffic. This parameter is appropriate only in implementations in which the actual bandwidth can be known, such as a VoIP device embedded in a DSL B-NT. + + + + + + + + + + + Limit on the number of simultaneous voice sessions across all {{object|.H323.Client.}} referencing this {{object}}. This MUST be less than or equal to {{param|.Capabilities.MaxSessionCount}}. + A value of zero indicates no explicit limit on the number of sessions. + + + + + + + + + VoIP profile to use with this network. + {{reference}} + + + + + + + + + + + {{list}} {{reference}} + The CPE SHOULD use the first enabled item in the list among those supported by the remote endpoint and consistent with the available bandwidth. + + + + + + + + + + + + Trunk table. + The {{object}} holds all parameters a CPE needs to set up a trunk connection with an NGN, as defined in {{bibref|ETSI_TS_181_019}}. + + + + + + + Enables or disables this trunk. + + + + + + + + + If {{true}}, when {{param|Enable}} is set to {{false}} in-progress sessions remain intact, but no new sessions are allowed. When all sessions are terminated, the {{object}} is disabled. + + + + + + + + Indicates the status of this trunk. + + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Mechanism via which the {{object}} was assigned. {{enum}} + + + + + + Automatically generated, for example by a ESBC that auto-creates {{object}} objects. + + + + + For example, present in the factory default configuration, created by the ACS, or created by some other management entity (e.g. via a GUI). + + + + + + + + + Name of the trunk. + + + + + + + + + + {{list}} Each range consists of a ''Start'' part consisting of 1 to n digits (string representation) followed by an OPTIONAL ''End'' part consisting of 1 to n digits prefixed by a "-" symbol. + Examples: + :0123456789 + :0123456700-0123456720 + Each time this value is changed, the table of Lines managed by the {{object|.Trunk}} is automatically adapted and each value of the {{param}} MUST be represented in corresponding {{param|.CallControl.Line.{i}.DirectoryNumber}} parameter. + If this trunk has a {{object|.SIP.Client.}} provider and {{param|.SIP.Client.{i}.E164Format}} is set to {{true}}, full E.164 numbers with country code (but without "+" prefix) MUST be used. + This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + + When {{true}}, a {{object|.CallControl.Line.{i}.}} instance SHOULD be created automatically for each identity within the ranges specified by {{param|DDIRange}}. + + + + + + + + Defines the maximum number of simultaneous communication channels handled by this trunk. A channel is used to convey an information signal, for example a digital bit stream, from one or several senders to one or several receivers. + + + + + + + + Maximal number of simultaneous communication channels in outbound direction supported across this trunk. The maximum number cannot exceed {{param|MaxChannels}} - {{param|MaxInboundChannelCount}}. A value n>0 means, that there are no more than n channels allowed, which are used by outbound calls. A value of -1 means that there are no restrictions in this direction. + + + + + + + + + + + Maximal number of simultaneous communication channels in inbound direction supported across this trunk. The maximum number cannot exceed {{param|MaxChannels}} - {{param|MaxOutboundChannelCount}}. A value n>0 means, that there are no more than n channels allowed, which are used by inbound calls. A value of -1 means that there are no restrictions in this direction. + + + + + + + + + + + The {{param}} option controls which end of an inbound call leg will have priority over the negotiation of codecs. + + + + + + + + + + + SIP client or ISDN interface associated with the identities represented by this trunk. + {{reference}} + This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + + + + + Call control and call routing parameters. This object is a control plane application for the VoiceService that provides numbers or names based routing, local PBX functionalities and advanced telephony features. + It is mutually exclusive with the {{object|.Interwork}} table which is used in case of switching capabilities. + + + + Maximum number of {{object|Line.{i}.}} in {{object}}. + This value cannot be greater than {{param|.Capabilities.MaxLineCount}}. + + + + + + + + Maximum number of {{object|Extension.{i}.}} in {{object}}. + This value cannot be greater than {{param|.Capabilities.MaxExtensionCount}}. + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + Voice line table. + Support for adding and removing lines is conditional on whether the CPE supports more than one line in total as indicated by {{param|.Capabilities.MaxLineCount}}. + + + + + + + + + + Enable or disable this line. + + + + + + + + + If {{true}}, when {{param|Enable}} is set to {{false}} in-progress sessions remain intact, but no new sessions are allowed. When all sessions are terminated, the {{object}} is disabled. + + + + + + + + Indicates the status of this line. + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Indicates the call status for this line. + + + + + + + + + + + + + + + Mechanism via which the {{object}} instance was created. + + + + + + explicitly created by the ACS or some other management entity, e.g. via a GUI + + + + + created by the CPE according to the {{param|.Trunk.{i}.DDIRange}} setting of the associated {{object|.Trunk.{i}.}} in {{param|Provider}} + + + + + + + + Directory number associated with this line. + + + + + + + + + + + Provider for the line. The value MUST be the path name of a row in one of the following tables: + {{reference}} + + + + + + + + + + + Set of calling features to apply to this line. + {{reference}} + + + + + + + + + + + + Statistics for this {{object|#}} instance. + The CPE MUST reset the line's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the line becomes operationally down due to a previous administrative down (i.e. the line's {{param|#.Status}} parameter transitions to a down state after the line is disabled) or when the line becomes administratively up (i.e. the line's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). + + + + + Statistics for incoming calls. + + + + Total number of received calls to the line. + + + + + + + + Total number of calls that successfully completed call setup signaling. + + + + + + + + Total number of calls that failed to successfully complete call setup signaling. + + + + + + + + Total calls that were successfully connected, but dropped unexpectedly while in progress without explicit user termination. + + + + + + + + Cumulative call duration in {{units}}. + + + + + + + + + + + Statistics for outgoing calls. + + + + Total number of outgoing calls attempted from the line. + + + + + + + + Total number of calls that successfully completed call setup signaling. + + + + + + + + Total number of calls that failed to successfully complete call setup signaling. + + + + + + + + Total calls that were successfully connected, but dropped unexpectedly while in progress without explicit user termination. + + + + + + + + Cumulative call duration in {{units}}. + + + + + + + + + + + RTP statistic parameters. + + + + Total number of RTP packets received. + + + + + + + + Total number of RTP packets sent. + + + + + + + + Total number of RTP packets that have been lost. + + + + + + + + Total number of bytes sent. + + + + + + + + Total number of bytes received. + + + + + + + + + DSP statistic parameters. + + + + Total number of times the receive jitter buffer has overrun. + + + + + + + + Total number of times the receive jitter buffer has underrun. + + + + + + + + + Extension table containing the local numbers and names. + Support for adding and removing extensions is conditional on whether the CPE supports more than one line in total as indicated by {{param|.Capabilities.MaxExtensionCount}}. + + + + + + + + + + Enable or disable this extension. + + + + + + + + + If {{true}}, when {{param|Enable}} is set to {{false}} in-progress sessions remain intact, but no new sessions are allowed. When all sessions are terminated, the {{object}} is disabled. + + + + + + + + Indicates the status of this extension. + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Indicates the call status for this extension. + + + + + + + + + + + + + + + Mechanism via which the {{object}} object was assigned. {{enum}} + + + + + + Automatically generated, for example by a ESBC that auto-creates {{object}} objects + + + + + For example, present in the factory default configuration, created by the ACS, or created by some other management entity (e.g. via a GUI). + + + + + + + + + The name of this extension. + This name will also be used for CallerIdName functionality and for displaying on screen of handset, etc... + + + + + + + + + + The number assigned to this extension for internal calls. + + + + + + + + + + + Provider for the extension. The value MUST be the path name of a row in one of the following tables: + {{reference}} + + + + + + + + + + + Numbering plan to be used for outgoing calls. + {{reference}} + + + + + + + + + + + Set of calling features to apply to this extension. + {{reference}} + + + + + + + + + + + Status of endpoint managed call waiting, if supported. {{enum}} + This parameter SHOULD NOT be present if the CPE does not support endpoint managed call waiting. + + + + + + + + + + + + + + Status of endpoint managed conference calling, if supported. {{enum}} + This parameter SHOULD NOT be present if the CPE does not support endpoint managed conference calling. + + + + + + + + + + + + + + + Number of active sessions on this extension. + : 0 indicates no call is in progress. + : 1 indicates a single call is in progress. + : Higher values indicate a conference call is in progress. + This parameter SHOULD NOT be present if the CPE does not support endpoint managed conference calling. + + + + + + + + Voice mail to use when the {{object}} is not responding. + {{reference}} + + + + + + + + + + + + Statistics for this extension. + The CPE MUST reset the extension's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the extension becomes operationally down due to a previous administrative down (i.e. the extension's {{param|#.Status}} parameter transitions to a down state after the extension is disabled) or when the extension becomes administratively up (i.e. the extension's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). + + + + + Statistics for incoming calls. + + + + Total number of received calls to the extension. + + + + + + + + Total number of calls that successfully completed call setup signaling. + + + + + + + + Total number of calls that failed to successfully complete call setup signaling. + + + + + + + + Total calls that were successfully connected, but dropped unexpectedly while in progress without explicit user termination. + + + + + + + + Cumulative call duration in {{units}}. + + + + + + + + + + + Statistics for outgoing calls. + + + + Total number of outgoing calls attempted from the extension. + + + + + + + + Total number of calls that successfully completed call setup signaling. + + + + + + + + Total number of calls that failed to successfully complete call setup signaling. + + + + + + + + Total calls that were successfully connected, but dropped unexpectedly while in progress without explicit user termination. + + + + + + + + Cumulative call duration in {{units}}. + + + + + + + + + + + RTP statistic parameters. + + + + Total number of RTP packets received. + + + + + + + + Total number of RTP packets sent. + + + + + + + + Total number of RTP packets that have been lost. + + + + + + + + Total number of bytes sent. + + + + + + + + Total number of bytes received. + + + + + + + + + DSP statistic parameters. + + + + Total number of times the receive jitter buffer has overrun. + + + + + + + + Total number of times the receive jitter buffer has underrun. + + + + + + + + + This object models an extension as a group of extensions. + + + + + + + {{datatype|expand}} + + + + + + + + {{list}} If this parameter is null the group is treated as a group that contains all extensions. + {{reference}} + + + + + + + + + + + Defines the way of ringing for the extensions in this group. {{enum}} + + + + + + all extensions ring together + + + + + extensions ring one by one in the order defined in {{param|Extensions}}. If the ringing extension doesn’t answer after {{param|RingTimeout}}, the next extension in the list is tried + + + + + as Hierarchical, but the list is not reset between incoming calls + + + + + + + + The time (in {{units}}) to wait for extension reply before trying the next extension. + Only applicable if {{param|RingType}} = {{enum|Hierarchical|RingType}} or {{enum|Cyclic|RingType}}. + + + + + + + + + + + Voice mail configuration related to a particular extension. + + + + + + + Enables or disables this entry. + + + + + + + + + {{datatype|expand}} + + + + + + + + This limits the number of messages in a voicemail folder. + + + + + + + + Defines the maximum amount of time in {{units}} of an incoming message. Use this when there are many users and disk space is limited. A value of 0 means there will be no maximum time limit enforced. + + + + + + + + + + Minimal size in {{units}} of the voicemail box. + + + + + + + + + + SMTP server FQDN or IP Address used for voicemail notifications. + + + + + + + + + + SMTP server port for voicemail notifications. + + + + + + + + + + + SMTP user name. + + + + + + + + + + SMTP password. + + + + + + + + + + Type of authentication used to connect to the SMTP server. + + + + + + + + + + + + + + Sender's email address. + + + + + + + + + + + The {{object}} is a table that is used to control which extensions ring when an incoming call is received. + The map approach separates the call routing aspects from the configuration of the lines and extensions. It support PBX concepts such as DDI (one extension per line) and groups (parallel dialing if extensions have same priority and hunting when extensions have different priority). + + + + + + + + + + + Enables or disables this entry. + + + + + + + + + {{datatype|expand}} + + + + + + + + {{object|#.Line}} used by the call. + {{reference}} + + + + + + + + + + + {{object|#.Extension}} that rings on incoming call. + {{reference}} + + + + + + + + + + + Indicates the order in which extensions ring. + First all extensions with the lowest order value will ring. + When all these extensions have rejected the call or did not reply, the next order value will be attempted. + + + + + + + + + + + The time in {{units}} the extension will ring before it is considered that there was no reply. + + + + + + + + + + + The {{object}} is a table that is used to control which line is used when an extension makes a call. + + + + + + + + + + + Enables or disables this entry. + + + + + + + + + {{datatype|expand}} + + + + + + + + Public number to be presented outgoing calls, instead of the effective extension number. + + + + + + + + + + {{object|#.Extension}} which makes the outgoing call. + {{reference}} + + + + + + + + + + + Identifies the {{object|#.Line}} to be used for outgoing calls. + When applicable in the signaling protocol the DirectoryNumber will be used as source number for this call. + Note: The Line to be used for an outgoing call can be overridden by the {{object|#.NumberingPlan}}. + {{reference}} + + + + + + + + + + + The order in which using the lines is attempted. This is used to implement a backup mechanism. + If the first line is not available, using the next one will be attempted. + + + + + + + + + + + + Information related the numbering plan. + {{object}} is applicable only if the device supports a dialing mechanism for which a number plan is needed (for example, some devices with an explicit Dial button do not need to be aware of the dialing plan) and if the device does not already support a numbering plan mechanism for this call control (e.g., in-band via MGCP). + + + + + + + {{datatype|expand}} + + + + + + + + This is the minimum number of digits to be collected before an outgoing request (e.g., a SIP INVITE) can be initiated. + If ''End of Dialing'' (as defined in {{param|InterDigitTimerStd}}) occurs before the minimum number of digits has been reached then the number will be considered incomplete and no request will be initiated. + In practice, searching {{object|.CallControl.NumberingPlan.{i}.PrefixInfo.{i}.}} commences only once {{param}} digits has been received. + + + + + + + + + + + When this number of digits has been collected, an outgoing request (e.g., a SIP INVITE) MUST be initiated. Any additional dialed digits will be ignored. This parameter is only used in the case that no match in {{object|.CallControl.NumberingPlan.{i}.PrefixInfo.{i}.}} has been found. + + + + + + + + + + + This timer is the maximum allowable time (expressed in {{units}}) between the dialing of digits. This timer is restarted every time a digit is dialed. Expiration of this timer indicates ''End of Dialing''. + + + + + + + + + + + + This timer is the maximum allowable time (expressed in {{units}}) between the dialing of digits once the minimum number of digits defined on a prefix based has been reached. + This timer is only applicable to "open numbering", where the exact number of digits for a prefix is not known. + + + + + + + + + + + + Digit that can be used by the subscriber to indicate that dialing has completed. + + + + + + + + + + + The tone that tells the user when the number dialed is determined to be invalid. + {{reference}} + + + + + + + + + + + This is the maximum number of instances of {{object|.CallControl.NumberingPlan.{i}.PrefixInfo.{i}.}} that can be supported. + + + + + + + + Indicates the number of instances of {{object|.CallControl.NumberingPlan.{i}.PrefixInfo.{i}.}}. + + + + + + + + + Each entry in this table contains information related to an individual prefix in the NumberingPlan. + It is anticipated that once the minimum number of digits has been received, the VoIP device will search this prefix list every time a new digit is received. If no new entry is found, then the object that was previously found will be used instead. + If supported, {{param|.CallControl.NumberingPlan.{i}.PrefixInfoMaxEntries}} and {{param|.CallControl.NumberingPlan.{i}.PrefixInfoNumberOfEntries}} MUST be present. + The defaults given for this object apply only to explicit creation of an instance of this object and not to automatic creation of instances of this object due to creation of a parent object. + + + + + + + {{datatype|expand}} + + + + + + + + Enables or disables this entry. + + + + + + + + + This is a string representation of a range of prefixes. Each prefix consists of a ''From'' part consisting of 1 to n digits (string representation) followed by an OPTIONAL ''To'' part consisting of exactly one digit prefixed by a "-" symbol. + All characters in the "From" and "To" parts of the prefix range MUST be "0-9", "*" or "#". + A further constraint is that the "To" digit MUST always be numerically greater than the last digit of the "From" part. + Examples: + : 02 + : 031-5 + : 032 + : 0325 + : *#34 + : #22 + + + + + + + + + + + This is the minimum number of allowable digits for the prefix range. Once the minimum number of digits has been reached, {{param|#.InterDigitTimerOpen}} will be used instead of {{param|#.InterDigitTimerStd}}. + If the minimum number of digits has been reached and the inter-digit timer expires, an outgoing request is initiated. + + + + + + + + + + + This is the maximum number of allowable digits for the prefix range. Once the number of digits received reaches this value an outgoing request is initiated. + + + + + + + + + + + If this parameter has a non-zero value, the specified number of digits will be removed from the internal digit buffer (which contains the dialed digits) from the position specified by {{param|PosOfDigitsToRemove}}. + Subsequently a search of {{object}} for a matching prefix using the modified number is performed. Note that this parameter does not have any impact on the number sent in the outgoing request: it is used only for searching within the Numbering Plan. + This parameter has no effect if it is set to 0. + This parameter is provided to handle Carrier override and other codes used as prefix to standard numbers and to ensure that the correct ''End of Dialing'' can be specified without significant data duplication. + + + + + + + + + + + This parameter is used in conjunction with {{param|NumberOfDigitsToRemove}}. It specifies the position within the internal digit buffer from which the digits are to be removed. + + + + + + + + + + + The tone to be played by the VoIP device when the user has dialed exactly the same digits as defined in the prefix. The VoIP device will cease playing the tone once an additional digit has been dialed. + {{reference}} + + + + + + + + + + + This is a string representing a Facility Action implemented by the VoIP device. + The parameter MAY instead indicate a vendor-specific Facility Action, which MUST use the format defined in {{bibref|TR-106}}. + When {{empty}} or the value is an unrecognized string (i.e. a Facility Action not supported by the CPE) normal outgoing requests are made. + + + + + + + + + + + + Optional argument associated with {{param|FacilityAction}}. The interpretation of the argument is dependent on a specific value of {{param|FacilityAction}}. {{reference}} + + + + + + + + + + + + + This object models the calling features that can be apply on {{object|.CallControl.Line}} or {{object|.CallControl.Extension}}. + + + + {{numentries}} + + + + + + + + + This object models a set of calling features that can be applied in {{object|.CallControl.Line.}} or {{object|.CallControl.Extension.}} objects. + + + + + + + {{datatype|expand}} + + + + + + + + Enable or disable the transmission of caller ID information on incoming calls (CLIP). + + + + + + + + Enable or disable the transmission of caller ID name information on incoming calls (CNIP). + + + + + + + + Enables or disables call waiting in the Endpoint. + This parameter SHOULD NOT be present if the CPE does not support Endpoint managed call waiting. + + + + + + + + Enables or disables unconditional call forwarding by the endpoint. + This parameter SHOULD NOT be present if the CPE does not support Endpoint based call forwarding. + + + + + + + + Directory number to which all incoming calls to this line are forwarded when {{param|CallForwardUnconditionalEnable}} is {{true}}. + This parameter SHOULD NOT be present if the CPE does not support Endpoint based call forwarding + + + + + + + + + + Enables or disables call forwarding-on-busy by the Endpoint. + This parameter SHOULD NOT be present if the CPE does not support Endpoint based call forwarding. + + + + + + + + Directory number to which all incoming calls to this line are forwarded when {{param|CallForwardOnBusyEnable}} is {{true}} and the line is busy. + This parameter SHOULD NOT be present if the CPE does not support Endpoint based call forwarding. + + + + + + + + + + Delay in {{units}} before considering there is no answer for call forwarding-on-busy. + This parameter SHOULD NOT be present if the CPE does not support Endpoint based call forwarding. + + + + + + + + + + Enables or disables call forwarding-on-no-answer by the Endpoint. + This parameter SHOULD NOT be present if the CPE does not support Endpoint based call forwarding. + + + + + + + + Directory number to which all incoming calls to this line are forwarded when {{param|CallForwardOnNoAnswerEnable}} is {{true}} and there is no local answer. + This parameter SHOULD NOT be present if the CPE does not support Endpoint based call forwarding. + + + + + + + + + + Delay in {{units}} before considering there is no answer for call forwarding-on-no-answer. + This parameter SHOULD NOT be present if the CPE does not support Endpoint based call forwarding. + + + + + + + + + + Enables or disables call transfer by the Endpoint. + This parameter SHOULD NOT be present if the CPE does not support Endpoint based call transfer. + + + + + + + + Enables or disables Message Waiting Indication by the Endpoint. + This parameter SHOULD NOT be present if the CPE does not support MWI. + + + + + + + + Enables or disables Visual Message Waiting Indication. + + + + + + + + Indicates the number of messages which are currently waiting on this line as known by the CPE. + This parameter SHOULD NOT be present if the CPE does not support MWI. + + + + + + + + Enable or disable Anonymous Call Block capability in the endpoint (ACR). + This parameter SHOULD NOT be present if the CPE does not support endpoint based Anonymous Call Block capability. + + + + + + + + Enable or disable Anonymous Call capability in the endpoint (CLIR). + This parameter SHOULD NOT be present if the CPE does not support endpoint based Anonymous Call capability. + + + + + + + + Enable or disable Do Not Disturb capability in the Endpoint. When enabled, all calls are forwarded to voice mail. + This parameter SHOULD NOT be present if the CPE does not support Endpoint based Do Not Disturb capability. + + + + + + + + Enable or disable Repeat Dial capability in the Endpoint. + This parameter SHOULD NOT be present if the CPE does not support Endpoint based Repeat Dial capability. + + + + + + + + Enable or disable Voice Mail capability in the Endpoint. + This parameter SHOULD NOT be present if the CPE does not support Endpoint based Voice Mail capability. + + + + + + + + Enable or disable Call Interception capability in the Endpoint. + + + + + + + + Enable or disable automatic recall on busy (Completion of Calls to Busy Subscriber) capability in the Endpoint. + + + + + + + + Enable or disable successive forwarding (Inhibition of Incoming Forwarded Calls) from the Endpoint. + + + + + + + + Allow or block any internal forward to the Endpoint. + + + + + + + + Enable or disable secret identity of this Endpoint in case it initiates (on an external incoming call) a forward to another internal phone Endpoint. + If enabled, only the remote ''caller party'' can be identified (if not anonymous), not this intermediate ''via'' phone extension. + + + + + + + + Enable or disable FollowMe capability in the Endpoint. + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + This object defines a Call Forwarding Timed (CFT) that permit the user to forward calls to particular destinations depending on the time of day. + Note: a bad configuration (e.g. timeslots overlapping) could cause unexpected behavior. + + + + + + + Whether this schedule is currently enabled. + + + + + + + + {{datatype|expand}} + + + + + + + + Day where the schedule active. + + + + + + + + + + + + + For all days schedule + + + + + + + + Start time of the schedule in the form : hh:mm. + + + + + + + + + + End time of the schedule in the form : hh:mm. + + + + + + + + + + Number to forward the call to. + + + + + + + + + + + This object defines a Selective Call Forwarding (SCF) that permit the user to forward calls to different destinations depending on the calling number. + + + + + + + + + + Enables or disables this Selective Call Forward. + + + + + + + + + {{datatype|expand}} + + + + + + + + Calling number concerned by the forward. + The CPE SHOULD perform an exact match with this string without any attempts at number normalization. + + + + + + + + + + Number to forward the call to. + + + + + + + + + + + This object defines a Selective Call Rejection (SCREJ) that permit the user to selectively reject calls depending on the calling number. + + + + + + + + + + Enables or disables this Selective Call Rejection. + + + + + + + + + {{datatype|expand}} + + + + + + + + Calling number concerned by the reject. + The CPE SHOULD perform an exact match with this string without any attempts at number normalization. + + + + + + + + + + + This object defines the FollowMe destinations mapping definition, in the provided sequence order. + + + + + + + + + + + Enables or disables this FollowMe sequence item. + + + + + + + + + {{datatype|expand}} + + + + + + + + Delay in {{units}} before next FollowMe sequence item applies. + + + + + + + + + + Directory number to which all incoming calls to this line are forwarded to after {{param|Delay}}, when {{param|#.FollowMeEnable}} is {{true}}. In this case, {{param|#.CallForwardOnNoAnswerNumber}} is not used. + + + + + + + + + + For a given {{param|Number}}, defines the order of this item in the FollowMe sequence. + + + + + + + + + Voice to mail specific attributes. Applies only if {{param|#.VoiceMailEnable}} is set to {{true}}. + + + + Enable or disable voice mail notification. + + + + + + + + Defines the maximum amount of time in {{units}} of an incoming message. Use this when there are many users and disk space is limited. A value of 0 means there will be no maximum time limit enforced. + + + + + + + + + + Indicates if the message is sent as an attachment in voice mail notification. + + + + + + + + Whether the voice to mail message is kept on the CPE after sending the mail. Applicable only if {{param|Attach}} is {{true}}. + + + + + + + + E-mail for voice to mail notification messages. + + + + + + + + + Each entry in this table configures Inter-Working Function switching features. + It is mutually exclusive with the {{object|.CallControl}} object which is used in case of PBX or Endpoint capabilities. + + + + + + + Enable or disable this {{object}} instance. + + + + + + + + + If {{true}}, when {{param|Enable}} is set to {{false}} in-progress sessions remain intact, but no new sessions are allowed. When all sessions are terminated, the {{object}} is disabled. + + + + + + + + Indicates the status of this {{object}} instance. + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Indicates the operational status of the {{object}} connections when {{param|Status}} is {{enum|Up|Status}}. {{enum}} + + + + + + Indicates the {{object}} is operational. + + + + + Indicates the {{object}} is not operational. + + + + + Indicates the {{object}} has lost connection to all of the Network servers. + + + + + + + + + Human-readable string identifying the reason or explanation for the current {{param|OperationalStatus}}. + + + + + + + + + + This parameter indicates whether or not the CPE supports a registration procedure that conveys its signaling IP address:port to the network. This parameter also indicates whether the network-facing Client object and its parameters are statically provisioned by the ACS or dynamically created by the CPE. {{enum}} + + + + + + The CPE does not register toward the service provider network. The ACS creates the Client object and statically provisions the Client parameters, including the signaling address + + + + + The CPE registers toward the service provider network. The ACS creates the Client object and statically provisions its parameters, excluding the signaling address which is dynamically assigned by the CPE + + + + + The CPE registers toward the service provider network. The CPE creates the Client object and dynamically assigns its signaling address + + + + + The CPE registers toward the service provider network. The ACS creates the Client object and statically provisions the Client parameters, including the signaling address + + + + + + + + This parameter indicates whether or not an externally connected user device supports a registration procedure to convey its signaling address to the CPE. This parameter also indicates whether the user-facing objects and parameters that contain the external user device signaling address are statically provisioned by the ACS or dynamically learned by the CPE. {{enum}} + + + + + + The external user device does not register with the CPE. The ACS creates the object containing the signaling address of the externally connected user device and statically configures the signaling address of the user device + + + + + The externally connected user device registers with the CPE. The ACS creates the object that contains the signaling address of the external user device. The CPE sets the signaling address learned when the user device registers + + + + + The externally connected user device registers with the CPE. The CPE dynamically creates the object that contains the signaling address of the external user device and sets the signaling address learned when the user device registers + + + + + + + + This attribute indicates whether or not the CPE performs E.164 routing of incoming requests received from the service provider network when the target Endpoint is a PBX. + + + + + + + + This parameter indicates how the CPE treats authentication challenges received from the service provider network. This parameter only has meaning when the CPE supports an externally connected user device (e.g., the CPE is acting as a gateway between the user device and the network). {{enum}} + + + + + + The CPE transparently passes authentication challenges and challenge responses between the service provider network and the external user device + + + + + The CPE responds to authentication challenges received from the service provider network on behalf of the externally connected user device. The CPE does not send authentication challenges to the externally connected user device + + + + + The CPE responds to authentication challenges received from the service provider network on behalf of the externally connected user device. In addition, the CPE generates authentication challenges toward the externally connected user device + + + + + + + + The network IP Address of the CPE. The CPE MUST resolve this when the {{object|.Interwork.{i}.}} object is created. + Note: In case of multiple network IP addresses, the choice is left to the CPE. + + + + + + + + URI of the Interworking Rule Set for this {{object}} instance. + + + + + + + + + + The duration in {{units}} of the interval for which the CPE SHOULD send request to refresh the Interworking Rule Set. + A value of '0' indicates that this feature is disabled. + + + + + + + + + + An absolute time reference in UTC to determine when the CPE will send a request to refresh the Interworking Rule Set. Each refresh request MUST occur at this reference time plus or minus an integer multiple of the {{param|InterworkingRuleSetInterval}}. + {{param}} is used only to set the ''phase'' of refresh requests. The actual value of {{param}} can be arbitrarily far into the past or future. + For example, if {{param|InterworkingRuleSetInterval}} is 86400 (a day) and if {{param}} is set to UTC midnight on some day (in the past, present, or future) then the refresh requests will occur every day at UTC midnight. These MUST begin on the very next midnight, even if {{param}} refers to a day in the future. + The Unknown Time value defined in {{bibref|TR-106a2|section 3.2}} indicates that no particular time reference is specified. That is, the CPE MAY locally choose the time reference, and needs only to adhere to the specified {{param|InterworkingRuleSetInterval}}. + If absolute time is not available to the CPE, its behavior MUST be the same as if the {{param}} parameter was set to the Unknown Time value. + + + + + + + + URI of the Firewall Rule Set for this {{object}} instance. + + + + + + + + + + The duration in {{units}} of the interval for which the CPE SHOULD send request to refresh the Firewall Rule Set. + A value of '0' indicates that this feature is disabled. + + + + + + + + + + An absolute time reference in UTC to determine when the CPE will send a request to refresh the Firewall Rule Set. Each refresh request MUST occur at this reference time plus or minus an integer multiple of the {{param|FirewallRuleSetInterval}}. + {{param}} is used only to set the ''phase'' of refresh requests. The actual value of {{param}} can be arbitrarily far into the past or future. + For example, if {{param|FirewallRuleSetInterval}} is 86400 (a day) and if {{param}} is set to UTC midnight on some day (in the past, present, or future) then the refresh requests will occur every day at UTC midnight. These MUST begin on the very next midnight, even if {{param}} refers to a day in the future. + The Unknown Time value defined in {{bibref|TR-106a2|section 3.2}} indicates that no particular time reference is specified. That is, the CPE MAY locally choose the time reference, and needs only to adhere to the specified {{param|FirewallRuleSetInterval}}. + If absolute time is not available to the CPE, its behavior MUST be the same as if the {{param}} parameter was set to the Unknown Time value. + + + + + + + + Human-readable string identifying the name or explanation for this {{object}}. + + + + + + + + + + Reference to the {{object|.SIP.Proxy}} associated with this {{object}}. {{reference}} + + + + + + + + + + + {{list}} {{reference}} + List of available Networks for routing calls. + + + + + + + + + + + This parameter is MUST contain the {{object|.SIP.Client}} for all {{object|.Trunk}} objects referenced in the {{object|Map}} table when {{param|E164Mode}} = {{true}}. + + + + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + Each table entry references a row in the {{object|.SIP.Registrar}} table to identify the User IP address and listening port for the Device and the Network to route calls to. + + + + + + + + + + Enable ({{true}}) or disable ({{false}}) {{object}}. + + + + + + + + + {{datatype|expand}} + + + + + + + + The {{object|.SIP.Registrar}} to use with this {{object|#}}. The value of {{param}} MUST be unique over all {{object|.Interwork.{i}.}}. + {{reference}} + + + + + + + + + + + If not null this provides the appropriate {{object|.SIP.Network}} to route calls from this User server to. + {{reference}} + + + + + + + + + + + + For interworking use cases such as SIP-ISDN PBX plug and ESBC : mapping instance between a Network interface and a User extension. + + + + + + + Enable ({{true}}) or disable ({{false}}) this connection mapping. + + + + + + + + + Indicates the status of this connection mapping. {{enum}} + + + + + + indicates the {{object}} is valid + + + + + indicates the {{object}} is valid but either the Network or User connection is not operational + + + + + + + + + {{datatype|expand}} + + + + + + + + Human-readable string identifying the reason or explanation of the current mapping {{param|Status}}. + + + + + + + + + + The last time the Status was updated. + + + + + + + + Mechanism via which this connection mapping was assigned. {{enum}} + + + + + + Automatically generated, for example by a ESBC that auto-creates User and Network connections + + + + + For example, present in the factory default configuration, created by the ACS, or created by some other management entity (e.g. via a GUI). + + + + + + + + + {{reference}}. This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + + + + {{reference}}. This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + + + + Digit map controlling digit collection on a User interface. The string defines the criteria to be met as digits are collected before an outgoing request (e.g., a SIP INVITE) can be initiated. + The syntax of this parameter is exactly the syntax used by MGCP as defined in {{bibref|RFC3435|Section 2.1.5}}. + This parameter is applicable only if the User interface supports per digit dialing and the Network interface supports en-bloc dialing only. + + + + + + + + + + + Enables use of {{param|DigitMap}}. + + + + + + + + + Indicates the priority for this combination of Network-to-User mapping, where 1 is the highest priority. Where the priority differs between entries in this table, the CPE SHOULD use the highest priority (lowest numbered) entry. Where the priorities are equal among multiple entries, the CPE MAY apply a local criterion for choosing among them. + + + + + + + + + + + This table contains a list of calls. An entry is similar to a CDR (Call Detail Record) as used in PBX or on mobile phones. + An entry is created each time a call is terminated. If the number of {{object|.CallLog}} exceeds {{param|.Capabilities.MaxCallLogCount}}, the CPE SHOULD remove the oldest {{object|.CallLog}} object on basis of {{param|Start}} parameter. + + + + + + + {{datatype|expand}} + + + + + + + + Number of the party originating the call. + + + + + + + + + + Number of destination party of the call. + + + + + + + + + + Party originating the call. + {{reference}} + {{object|.Trunk}}, {{object|.SIP.Registrar.{i}.Account}} and {{object|.SIP.Client}} objects SHOULD be referenced only when {{object|.Interwork}} is in use. + + + + + + + + + + + Destination party of the call. + {{reference}} + {{object|.Trunk}}, {{object|.SIP.Registrar.{i}.Account}} and {{object|.SIP.Client}} objects SHOULD be only referenced only when {{object|.Interwork}} is in use. + + + + + + + + + + + The phone number of the remote party after the dial plan has been processed. + + + + + + + + + + The {{object|.CallControl.Line}} used to process the call. + {{reference}} + When {{object|.Interwork}} is in use, this parameter is {{empty}}. + + + + + + + + + + + {{list}} {{reference}} + For an incoming call multiple {{object|.CallControl.Extension}} objects can be involved till one user answers the call. + When {{object|.Interwork}} is in use, this parameter is {{empty}}. + + + + + + + + + + + Direction of the call. + + + + + + + + + + + Start of the call. + + + + + + + + Length of the call in {{units}}. + + + + + + + + + + The call termination cause. + The parameter MAY instead indicate a vendor-specific cause, which MUST use the format defined in {{bibref|TR-106}}. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Indicates the number of entries in {{object|.CallLog.{i}.Session.{i}.}}. Sessions are the equivalent of RTP streams in VoIP calls : a call can have more than one session in sequence when codec changes happen during a call. In multimedia calls, multiple sessions in parallel are possible. + + + + + + + + {{numentries}} + + + + + + + + + This table contains signaling performance statistics for each protocol involved in the call. + + + + + + + Protocol for which this signaling performance statistics are available. + + + + + + + + + + + The time between the instant a system receives a call attempt and the instant of invitation of ringing at the call receiver end instrument in {{units}}. + + + + + + + + + + The time in {{units}} between : + :- the instant a system has received information that the called party is connected + :- the instant the first media packet goes out the CPE + The value could be negative if a media packet is sent before the connection establishment. + + + + + + + + + + The time in {{units}} between : + :- the instant a system has received information that the called party is connected + :- the instant the first media packet goes into the CPE + The value could be negative if a media packet arrives before the connection establishment. + + + + + + + + + + + Session information within one call. + + + + + + + The type of media stream used in this session. + + + + + + + + + + + + + The time that the session started, in UTC. + + + + + + + + Length of the session in {{units}}. + + + + + + + + + + Session Identifier. For the SIP protocol this corresponds to the SIP SDP session identifier. + + + + + + + + + + SIP Session Identifier + + + + + + + + + + + The source of the session information within one call. + + + + + The RTP part of the source session information. + + + + The IP address of far end VoIP device. + + + + + + + + The UDP port used for current session in the far end device. + + + + + + + + + + The local UDP port used for current session. + + + + + + + + + + The minimum relative transit time in {{units}} between two packets as defined in {{bibref|RFC3611}}. + A value of -1 indicates no reliable value is available. + + + + + + + + + + + The maximum relative transit time in {{units}} between two packets as defined in {{bibref|RFC3611}}. + A value of -1 indicates no reliable value is available. + + + + + + + + + + + The mean relative transit time in {{units}} between each two packet series as defined in {{bibref|RFC3611}}. + A value of -1 indicates no reliable value is available. + + + + + + + + + + + 1-Point Packet Delay Variation according to {{bibref|Y.1540}} in {{units}}. + A value of -1 indicates no reliable value is available. + + + + + + + + + + + Average delay in {{units}} added by buffer processing. + A value of -1 indicates no reliable value is available. + + + + + + + + + + + The number of bursts (as defined in {{bibref|RFC3611}}) that occur during this session (during one burst several packets MAY be lost). + The burst's threshold is configured with the parameter {{param|.VoIPProfile.{i}.RTP.Gmin}}. + + + + + + + + Total number of RTP packets received for this session. + + + + + + + + Total number of RTP packets sent for this session. + + + + + + + + Total number of RTP packets that have been lost for this session (see {{bibref|RFC3611}}). + + + + + + + + Total number of RTP packets that have been discarded for this session (see {{bibref|RFC3611}}). + + + + + + + + Total number of bytes received for this session. + + + + + + + + Total number of bytes sent for this session. + + + + + + + + Current receive packet loss rate in percent, calculated as defined in {{bibref|RFC3550|Section 6.4}}. + + + + + + + + + + Current far end receive packet lost rate in percent, calculated as defined in {{bibref|RFC3550|Section 6.4}}. + + + + + + + + + + Current receive interarrival jitter in timestamp units. Calculated from J(i) as defined in {{bibref|RFC3550|Section 6.4}}. + A value of -1 indicates no reliable value is available. + + + + + + + + + + Current Interarrival jitter in timestamp units as reported from the far-end device via RTCP. Calculated from J(i) as defined in {{bibref|RFC3550|Section 6.4}}. + A value of -1 indicates no reliable value is available. + + + + + + + + + + Average receive interarrival jitter in timestamp units since the beginning of the current call. Calculated as the average of the interarrival jitter values reported by the far-end. + A value of -1 indicates no reliable value is available. + + + + + + + + + + Average far-end interarrival jitter in timestamp units since the beginning of the current call. Calculated as the average of the interarrival jitter values reported by the far-end. + A value of -1 indicates no reliable value is available. + + + + + + + + + + Current round trip delay in {{units}} calculated as defined in {{bibref|RFC3550|Section 6.4}}. + A value of -1 indicates no reliable value is available. + + + + + + + + + + + Average round trip delay in {{units}} since the beginning of the current session. + A value of -1 indicates no reliable value is available. + + + + + + + + + + + Sample frequency in {{units}} used by the codec for this session. + + + + + + + + + + + The DSP part of the line session information. + + + + + The receive codec used in this session. + + + + The codec in use for the incoming voice stream. + {{reference}} + + + + + + + + + + + Whether or not silence suppression is in use for the incoming voice stream. + + + + + + + + Total number of times the receive jitter buffer has overrun for this session. + + + + + + + + Total number of times the receive jitter buffer has underrun for this session. + + + + + + + + + The transmit codec used in this session. + + + + The codec in use for the outgoing voice stream. + {{reference}} + + + + + + + + + + + Whether or not silence suppression is in use for the outgoing voice stream. + + + + + + + + Current outgoing packetization period in {{units}}. + + + + + + + + + + Total number of times the transmit jitter buffer has overrun for this session. + + + + + + + + Total number of times the transmit jitter buffer has underrun for this session. + + + + + + + + + VoIP Statistics for current session instance. + + + + {{list|representing the VoIP quality calculated for consecutive intervals of the session}} The interval is specified by {{param|.VoIPProfile.{i}.QICalculationInterval}} and the quality model used is specified by {{param|.VoIPProfile.{i}.QIModelUsed}}. + The statistics values in this list MUST be in time order, with the oldest one first and the most recent one last. + For long sessions the number of values might exceed the limit given by {{param|.Capabilities.QualityIndicator.MaxQIValues}}. In that case, the CPE MUST remove the oldest values to keep the number of reported values within the limit. + The interpretation of the QI values are algorithm-specific, the only constraints being the range and the fact that lower values indicate worse quality than do higher values. + For instance, if {{param}} is reported as "78,57,88,79,34,56", and {{param|.VoIPProfile.{i}.QICalculationInterval}} is 10 seconds, the quality during the first ten seconds was 78, the next ten seconds 57, and so on. The last reported value (here 56) might cover a shorter time period than {{param|.VoIPProfile.{i}.QICalculationInterval}}, but the length can be deduced using {{param|##.Duration}}. + + + + + + + + + + + {{list|representing the worst VoIP quality indicators calculated during the whole session}} + Only the N worst values are stored, where N is the limit stored in the {{param|.VoIPProfile.{i}.NumberOfWorstQIValues}} attribute. + The values are given in the same algorithm-specific representation as {{param|VoIPQualityIndicator}}, and MUST be in quality-order with the lowest value first. + Example: "34,56,57" are the 3 worst values calculated during the call. + + + + + + + + + + + {{list}} Each value represents the timestamp index, given in units of {{param|.VoIPProfile.{i}.QICalculationInterval}}, when the corresponding value in {{param|WorstVoIPQualityIndicatorsValues}} was calculated. + The first index is number 1. + Only the N worst values are stored, where N is the limit stored in {{param|.VoIPProfile.{i}.NumberOfWorstQIValues}}. + Example: if {{param|.VoIPProfile.{i}.QICalculationInterval}} is equal to 10 (seconds), the value "6,2,5" designates the time intervals 50-60 s, 10-20 s, and 40-50 s when the 3 worst values were calculated. + + + + + + + + + + + + The destination part of session information within one call. + + + + + The RTP part of the destination session information. + + + + The IP address of far end VoIP device. + + + + + + + + The UDP port used for current session in the far end device. + + + + + + + + + + The local UDP port used for current session. + + + + + + + + + + The minimum relative transit time in {{units}} between two packets as defined in {{bibref|RFC3611}}. + A value of -1 indicates no reliable value is available. + + + + + + + + + + + The maximum relative transit time in {{units}} between two packets as defined in {{bibref|RFC3611}}. + A value of -1 indicates no reliable value is available. + + + + + + + + + + + The mean relative transit time in {{units}} between each two packet series as defined in {{bibref|RFC3611}}. + A value of -1 indicates no reliable value is available. + + + + + + + + + + + 1-Point Packet Delay Variation according to {{bibref|Y.1540}} in {{units}}. + A value of -1 indicates no reliable value is available. + + + + + + + + + + + Average delay in {{units}} added by buffer processing. + A value of -1 indicates no reliable value is available. + + + + + + + + + + + The number of bursts (as defined in {{bibref|RFC3611}}) that occur during this session (during one burst several packets MAY be lost). + The burst's threshold is configured with the parameter {{param|.VoIPProfile.{i}.RTP.Gmin}}. + + + + + + + + Total number of RTP packets received for this session. + + + + + + + + Total number of RTP packets sent for this session. + + + + + + + + Total number of RTP packets that have been lost for this session (see {{bibref|RFC3611}}). + + + + + + + + Total number of RTP packets that have been discarded for this session (see {{bibref|RFC3611}}). + + + + + + + + Total number of bytes received for this session. + + + + + + + + Total number of bytes sent for this session. + + + + + + + + Current receive packet loss rate in percent, calculated as defined in {{bibref|RFC3550|Section 6.4}}. + + + + + + + + + + Current far end receive packet lost rate in percent, calculated as defined in {{bibref|RFC3550|Section 6.4}}. + + + + + + + + + + Current receive interarrival jitter in timestamp units. Calculated from J(i) as defined in {{bibref|RFC3550|Section 6.4}}. + A value of -1 indicates no reliable value is available. + + + + + + + + + + Current Interarrival jitter in timestamp units as reported from the far-end device via RTCP. Calculated from J(i) as defined in {{bibref|RFC3550|Section 6.4}}. + A value of -1 indicates no reliable value is available. + + + + + + + + + + Average receive interarrival jitter in timestamp units since the beginning of the current call. Calculated as the average of the interarrival jitter values reported by the far-end. + A value of -1 indicates no reliable value is available. + + + + + + + + + + Average far-end interarrival jitter in timestamp units since the beginning of the current call. Calculated as the average of the interarrival jitter values reported by the far-end. + A value of -1 indicates no reliable value is available. + + + + + + + + + + Current round trip delay in {{units}} calculated as defined in {{bibref|RFC3550|Section 6.4}}. + A value of -1 indicates no reliable value is available. + + + + + + + + + + + Average round trip delay in {{units}} since the beginning of the current session. + A value of -1 indicates no reliable value is available. + + + + + + + + + + + Sample frequency in {{units}} used by the codec for this session. + + + + + + + + + + + The DSP part of the destination session information. + + + + + The receive codec used in this session. + + + + The codec in use for the incoming voice stream. + {{reference}} + + + + + + + + + + + Whether or not silence suppression is in use for the incoming voice stream. + + + + + + + + Total number of times the receive jitter buffer has overrun for this session. + + + + + + + + Total number of times the receive jitter buffer has underrun for this session. + + + + + + + + + The transmit codec used in this session. + + + + The codec in use for the outgoing voice stream. + {{reference}} + + + + + + + + + + + Whether or not silence suppression is in use for the outgoing voice stream. + + + + + + + + Current outgoing packetization period in {{units}}. + + + + + + + + + + Total number of times the transmit jitter buffer has overrun for this session. + + + + + + + + Total number of times the transmit jitter buffer has underrun for this session. + + + + + + + + + VoIP Statistics for current session instance. + + + + {{list|representing the VoIP quality calculated for consecutive intervals of the session}} The interval is specified by {{param|.VoIPProfile.{i}.QICalculationInterval}} and the quality model used is specified by {{param|.VoIPProfile.{i}.QIModelUsed}}. + The statistics values in this list MUST be in time order, with the oldest one first and the most recent one last. + For long sessions the number of values might exceed the limit given by {{param|.Capabilities.QualityIndicator.MaxQIValues}}. In that case, the CPE MUST remove the oldest values to keep the number of reported values within the limit. + The interpretation of the QI values are algorithm-specific, the only constraints being the numeric range and the fact that lower values indicate worse quality than do higher values. + For instance, if {{param}} is reported as "78,57,88,79,34,56", and {{param|.VoIPProfile.{i}.QICalculationInterval}} is 10 seconds, the quality during the first ten seconds was 78, the next ten seconds 57, and so on. The last reported value (here 56) might cover a shorter time period than {{param|.VoIPProfile.{i}.QICalculationInterval}}, but the length can be deduced using {{param|##.Duration}}. + + + + + + + + + + + {{list|representing the worst VoIP quality indicators calculated during the whole session}} + Only the N worst values are stored, where N is the limit stored in the {{param|.VoIPProfile.{i}.NumberOfWorstQIValues}} attribute. + The values are given in the same algorithm-specific representation as {{param|VoIPQualityIndicator}}, and MUST be in quality-order with the lowest value first. + Example: "34,56,57" are the 3 worst values calculated during the call. + + + + + + + + + + + {{list}} Each value represents the timestamp index, given in units of {{param|.VoIPProfile.{i}.QICalculationInterval}}, when the corresponding value in {{param|WorstVoIPQualityIndicatorsValues}} was calculated. + The first index is number 1. + Only the N worst values are stored, where N is the limit stored in {{param|.VoIPProfile.{i}.NumberOfWorstQIValues}}. + Example: if {{param|.VoIPProfile.{i}.QICalculationInterval}} is equal to 10 (seconds), the value "6,2,5" designates the time intervals 50-60 s, 10-20 s, and 40-50 s when the 3 worst values were calculated. + + + + + + + + + + + + Configuration profile that can be shared by VoIP components. + A VoIP Profile contains media transport configuration parameters that are common to different VoIP protocols. + VoIP Profiles could be used by {{object|.SIP.Network.}}, {{object|.SIP.Proxy.}}, {{object|.SIP.Network.}}, {{object|.H323.Network.}} and {{object|.MGCP.Network.}}. + + + + + + + Enables or disables this VoIP profile. If the value is set to {{false}}, all components using the profile are disabled, whatever their status is. + + + + + + + + + If {{true}}, when {{param|Enable}} is set to {{false}} in-progress sessions remain intact, but no new sessions are allowed. When all sessions are terminated, the {{object}} is disabled. + + + + + + + + Human-readable string to identify the profile instance. + + + + + + + + + + + {{datatype|expand}} + + + + + + + + {{list}} Method by which DTMF digits MUST be passed. {{enum}} + If {{param|DTMFMethodG711}} is non-empty, then this parameter applies only when the current codec is not G.711. + + + + + + + + + Applicable only for {{object|.SIP.Client.{i}.}}. + + + + + + + + + Method by which DTMF digits MUST be passed if the the current codec is G.711. {{enum}} + If {{empty}} indicates that the value of {{param|DTMFMethod}} is to apply whether or not the the the current codec is G.711. + + + + + + + + Applicable only for {{object|.SIP.Client.{i}.}}. + + + + + + + + + + Quality model which the CPE shall use to calculate the parameters {{param|.CallLog.{i}.Session.{i}.Source.VoiceQuality.VoIPQualityIndicator}} and {{param|.CallLog.{i}.Session.{i}.Destination.VoiceQuality.VoIPQualityIndicator}}. The value MUST be a member of the list reported by the {{param|.Capabilities.QualityIndicator.QIModelsSupported}} parameter. + + + + + + + + + + The interval between successive calculations of {{param|.CallLog.{i}.Session.{i}.Source.VoiceQuality.VoIPQualityIndicator}} and {{param|.CallLog.{i}.Session.{i}.Destination.VoiceQuality.VoIPQualityIndicator}} values (in {{units}}). If {{param}} is not set then only one final quality value covering the complete session is reported in {{param|.CallLog.{i}.Session.{i}.Source.VoiceQuality.VoIPQualityIndicator}} and {{param|.CallLog.{i}.Session.{i}.Destination.VoiceQuality.VoIPQualityIndicator}}. + + + + + + + + + + The maximum number of worst quality indicators to store for each call. + The CPE MUST permit {{param}} to be set to any value in the range from 0 to {{param|.Capabilities.QualityIndicator.MaxWorstQIValues}}. + + + + + + + + + VoIP profile parameters related to the voice stream sent via RTP. + + + + Base of port range to be used for incoming RTP streams for this profile. + + + + + + + + + + + Top of port range to be used for incoming RTP streams for this profile. + + + + + + + + + + + Minimum number of consecutive received packets after the end of an RTP Loss Event. A Loss Event is defined as as a sequence of lost or discarded packets, possibly including islands of received packets. Each island consists of up to ({{param}} - 1) received packets (a sequence of {{param}} received packets terminates the Loss Event, and so is not an island). + + + + + + + + + + + Diffserv code point to be used for outgoing RTP and RTCP packets for this profile. It is RECOMMENDED that by default the DSCP for RTP traffic be set to the value to indicate EF traffic. + + + + + + + + + + VLAN ID (as defined in {{bibref|802.1Q-2005}}) to be used for outgoing RTP packets for this profile. A value of -1 indicates the default value is to be used. + If either {{param}} or {{param|EthernetPriorityMark}} is greater than zero, then the outgoing frames MUST be tagged. Otherwise, the outgoing frames MAY be tagged or untagged. + + + + + + + + + + + Ethernet priority code (as defined in {{bibref|802.1D-2004}}) to be used for outgoing RTP packets for this profile. A value of -1 indicates the default value is to be used. + If either {{param|VLANIDMark}} or {{param}} is greater than zero, then the outgoing frames MUST be tagged. Otherwise, the outgoing frames MAY be tagged or untagged. + + + + + + + + + + + Payload type to be used for RTP telephone events. + This parameter indicates the payload type to be used for DTMF events if transmission of DTMF information is in use according to {{bibref|RFC4733}}. + + + + + + + + + + The indicates if the jitte buffer is static or dynamic. + + + + + + + + + + + Maximal (or static) jitter buffer size in {{units}}. + + + + + + + + + + Minimal jitter buffer size in {{units}}, not used if static buffer is used. + + + + + + + + + + Actual jitter buffer size in {{units}}, if static buffer ist used equal to {{param|JitterBufferMaxSize}}. + + + + + + + + + + + VoIP profile parameters related to RTCP. + + + + Enable or disable RTCP. + + + + + + + + Transmission repeat interval, in {{units}}. + + + + + + + + + + + Local Cname (canonical name). + + + + + + + + + + + VoIP profile parameters for secure voice transmission via SRTP. + + + + Enable or disable the use of SRTP. + If RTCP is enabled, a {{true}} value of this parameter also implies the use of SRTCP. + + + + + + + + {{list|available keying methods}} {{enum}} + + + + + + + + + + + + + + {{list|available encryption key sizes}} + + + + + + + + + + VoIP profile parameters for RTP payload redundancy as defined by {{bibref|RFC2198}}. + + + + Enable or disable the use of RTP payload redundancy as defined by {{bibref|RFC2198}}. + + + + + + + + + The Payload Type of RTP packet as defined in {{bibref|RFC2198}}. Values SHOULD be within the range of dynamic Payload Types (96-127). + + + + + + + + + + + Block Payload Type of redundancy packet. + + + + + + + + + + + Specifies the redundancy number for fax and modem pass-through data transmissions. + A non-negative value indicates that {{bibref|RFC2198}} is to be used for fax and modem pass-through data. The value indicates the number of redundant copies to be transmitted (the total number transmitted is one plus this value). + A value of -1 indicates {{bibref|RFC2198}} is not to be used for fax and modem pass-through data. + If {{param|ModemRedundancy}} is present, then {{param}} applies only to fax transmissions, but not to modem transmissions. + + + + + + + + + + + Specifies the redundancy number for modem pass-through data transmissions. + A non-negative value indicates that {{bibref|RFC2198}} is to be used for modem pass-through data. The value indicates the number of redundant copies to be transmitted (the total number transmitted is one plus this value). + A value of -1 indicates {{bibref|RFC2198}} is not to be used for modem pass-through data. + + + + + + + + + + + Specifies the redundancy number for DTMF transmissions. + A non-negative value indicates that {{bibref|RFC2198}} is to be used for DTMF. The value indicates the number of redundant copies to be transmitted (the total number transmitted is one plus this value). + A value of -1 indicates {{bibref|RFC2198}} is not to be used for DTMF. + + + + + + + + + + + Specifies the redundancy number for general voice transmissions. + A non-negative value indicates that {{bibref|RFC2198}} is to be used for voice. The value indicates the number of redundant copies to be transmitted (the total number transmitted is one plus this value). + A value of -1 indicates {{bibref|RFC2198}} is not to be used for voice. + + + + + + + + + + + The maximum number of sessions using {{bibref|RFC2198}} payload redundancy simultaneously in this profile. + A value of zero indicates no explicit limit on the number of sessions using redundancy. + + + + + + + + + + T.38 Fax information for devices that support T.38 relay. + + + + Maximum data rate in {{units}} for fax as defined in {{bibref|T.38}}. + + + + + + + + + + + + Specifies the packet-level redundancy for high-speed data transmissions (i.e., T.4 image data). + + + + + + + + + + Specifies the packet-level redundancy for low-speed data transmissions (i.e., T.30 handshaking information). + + + + + + + + + + The method with which data is handled over the network. + + + + + + + + + + + + Table of codec profiles. This table MUST be populated with the set of supported codecs matching {{object|.Capabilities.Codec.}}. Additional entries can be added to use different configurations of codec or to use the same codec configuration in different CodecList parameters. + + + + + + + Enable or disable the use of this combination of codec parameters. + + + + + + + + {{datatype|expand}} + + + + + + + + {{reference}} + + + + + + + + + + + {{list}} Each item is a supported packetization period, in milliseconds, or continuous ranges of packetization periods as defined in {{param|.Capabilities.Codec.{i}.PacketizationPeriod}}. + The ACS MAY restrict the set of packetization periods by modifying the value of this parameter to a more restricted set of values than is listed in {{param|.Capabilities.Codec.{i}.PacketizationPeriod}}. The CPE MUST ignore any values or portions of ranges outside of those specified in {{param|.Capabilities.Codec.{i}.PacketizationPeriod}}. + + + + + + + + + + + Indicates support for silence suppression for this codec. If silence suppression is supported, it can be disabled for this codec/bit-rate by setting this parameter to {{false}}. + + + + + + + + + This object defines the contents of the tones and announcements generated locally by the VoIP device. + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + Reference to the default tone event profile. + + + + + + + + + + + + Each entry in this table defines the contents of an individual tone. + The defaults given for this object apply only to explicit creation of an instance of this object and not to automatic creation of instances of this object due to creation of a parent object. + + + + + + + Enables or disables the tone entry. If a disabled tone entry is referenced, the result is that no tone is played. + + + + + + + + + {{datatype|expand}} + + + + + + + + Name of the tone. + + + + + + + + + + + This is the {{object|#.Pattern.{i}.}} object that begins this tone. If the tone is specified by a tone file instead of a tone pattern, this parameter MUST be set to {{empty}}. + {{reference}} + + + + + + + + + + + The file name of a tone file locally present on the CPE. + An ACS MUST use the Download method with FileType="4 Tone File" as defined in {{bibref|TR-069a4|Annex A.3.2.8}} to download a tone file. + If the tone is specified by a tone pattern instead of a tone file, this parameter MUST be {{empty}}. + + + + + + + + + + + The default number of times the data in {{param|ToneFile}} is repeated. If the value is 0 (zero) then {{param|ToneFile}} is played indefinitely. + + + + + + + + + + + The text to be displayed by on the screen of the VoIP device when the tone is played and no specific error message has been provided. + This parameter is applicable only for VoIP devices capable text display. + + + + + + + + + + + + Each entry in the table defines a single phase in an overall tone pattern. Each phase identifies the entry that corresponds to the next phase. + Each entry in the table refers to the entry that corresponds to the next phase of the pattern. The table MAY be set up such that entries form loops, or MAY end after a finite sequence. + The defaults given for this object apply only to explicit creation of an instance of this object and not to automatic creation of instances of this object due to creation of a parent object. + + + + + + + Enables or disables this entry. + + + + + + + + + {{datatype|expand}} + + + + + + + + Whether or not a tone is on during this phase of the pattern. If the value is {{false}}, the frequency and power parameters in this entry MUST be ignored. + + + + + + + + + First tone frequency in {{units}}. + A value of zero indicates this tone component is not used. + + + + + + + + + + + + First tone power level in units of 0.1 {{units}}. + + + + + + + + + + + Second tone frequency in {{units}}. + A value of zero indicates this tone component is not used. + + + + + + + + + + + + Second tone power level in units of 0.1 {{units}}. + + + + + + + + + + + Third tone frequency in {{units}}. + A value of zero indicates this tone component is not used. + + + + + + + + + + + + Third tone power level in units of 0.1 {{units}}. + + + + + + + + + + + Fourth tone frequency in {{units}}. + A value of zero indicates this tone component is not used. + + + + + + + + + + + + Fourth tone power level in units of 0.1 {{units}}. + + + + + + + + + + + Modulation frequency in {{units}}. + A value of zero indicates this tone component is not used. + + + + + + + + + + + + Modulation power level in units of 0.1 {{units}}. + + + + + + + + + + + The duration of this phase of the tone pattern, in {{units}}. + A value of zero indicates an unlimited duration. + + + + + + + + + + + The {{object}} for the next phase of the tone pattern, after the specified {{param|Duration}} of this phase has completed. + {{reference}} + {{empty}} indicates that the tone pattern is to terminate after the current phase is completed. + + + + + + + + + + + + Configuration profile for tone events. + + + + + + + {{datatype|expand}} + + + + + + + + {{numentries}} + + + + + + + + + Table of events for which a tone is defined. The table is pre-populated with the list of events for which the CPE supports definition of tones. + + + + + + + {{datatype|expand}} + + + + + + + + The event for which the tone is to apply. {{enum}} + The parameter MAY instead indicate a vendor-specific event name, which MUST use the format defined in {{bibref|TR-106}}. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The description for the tone to be associated with the given event. + {{reference}} + {{empty}} indicates no tone is to be played for this event. + + + + + + + + + + + + This object models a telephony terminal, each object in the table represents an end-user interface. + This object has to be used when the CPE is a voice endpoint itself. + + + + + + + Enables or disables this terminal. + + + + + + + + If {{true}}, when {{param|Enable}} is set to {{false}} in-progress sessions remain intact, but no new sessions are allowed. When all sessions are terminated, the {{object}} is disabled. + + + + + + + + Indicates the status of this terminal. + + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Reference to the {{object|.Tone.EventProfile}} to use with this terminal. If this parameter is {{empty}}, the value of {{param|.Tone.DefautEventProfile}} is used instead. + + + + + + + + + + + {{numentries}} + + + + + + + + This command provides access to an Terminal Diag tests. + + + + Input arguments. + + + + Indicates which test to perform. + The parameter MAY instead indicate a vendor-specific test, which MUST use the format defined in {{bibref|TR-106}}. For example: + "X_EXAMPLE-COM_MyTest" + + + + + + + + + + + Output arguments. + + + + Indicates the availability of diagnostics data. {{enum}} + If the value of this parameter is anything other than {{enum|Complete}}, the values of the other results parameters for this test are indeterminate. + + + + + + + + + + + + + + Indicates whether or not the phone associated with this port is ringing. This parameter is applicable only if {{enum|RingingTest|TestSelector}} is supported. + + + + + + + + + + + This object models the audio outputs of a telephony terminal.(ex. Handset, handsfree, ...) + + + + + + + {{datatype|expand}} + + + + + + + + The internal name of this audio. + + + + + + + + + + + Parameters related to voice processing capabilities. + + + + Gain in {{units}} to apply to the transmitted voice signal prior to encoding. This gain is a modifier of the default transmit-gain, which is unspecified. + + + + + + + + + + Gain in {{units}} to apply to the received voice signal after decoding. This gain is a modifier of the default receive-gain, which is unspecified. + + + + + + + + + + Enable or disable echo cancellation for this line. + + + + + + + + Indication of whether or not echo cancellation is currently in use for this line. + + + + + + + + Tail length in {{units}} of the echo canceller associated with this line (whether or not it is currently in use). + + + + + + + + + + + This object is provided to permit the purpose of the CPE buttons and function keys to be defined via the ACS. + Support of this object is appropriate only for a device that has programmable buttons in its user interface. + + + + {{numentries}} + + + + + + + + + Each entry in this table specifies the purpose of each programmable CPE button / function key and whether the user has permission to reprogram the button. + + + + + + + {{datatype|expand}} + + + + + + + + Name of the button. + + + + + + + + + + The value MUST be a member of the list reported by {{param|.Capabilities.FacilityActions}}. This is an OPTIONAL parameter that SHOULD NOT be specified for buttons not related to a particular Facility Action (e.g., invocation of ''Call Return'') implemented by the VoIP device. + The parameter MAY instead indicate a vendor-specific Facility Action, which MUST use the format defined in {{bibref|TR-106}}. + An empty or unrecognized string (i.e. a Facility Action not supported by the CPE) means that there is no Facility Action to be taken. + If this parameter is specified (not {{empty}}) then {{param|QuickDialNumber}} SHOULD be {{empty}}. + + + + + + + + + + + Optional argument associated with the specified {{param|FacilityAction}}. The interpretation of the argument is dependent on the specific FacilityAction. + + + + + + + + + + This is a string representing a quick dial destination number. Only the characters '0-9', '*' and '#' can be used. + If this parameter is specified (not {{empty}}) then {{param|FacilityAction}} SHOULD be {{empty}}. + + + + + + + + + + This string represents the message to be displayed on the screen when the button or function key is pressed. + + + + + + + + + + This parameter indicates whether the user has permission to program the button or function key. If this parameter is set to {{true}} then {{param|FacilityAction}}, {{param|QuickDialNumber}} and {{param|ButtonMessage}} MUST all be {{empty}}. + + + + + + + + + This object defines the ring sequences that may be generated by the terminal. + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + Each entry in this table defines the contents of an individual ring specification. + The defaults given for this object apply only to explicit creation of an instance of this object and not to automatic creation of instances of this object due to creation of a parent object. + + + + + + + Enables or disables the ring description entry. If a disabled ring description entry is referenced, the result is that no ring is played. + + + + + + + + + {{datatype|expand}} + + + + + + + + Name of the ring. + + + + + + + + + + + This is the {{object|#.Pattern.{i}.}} object that begins this ring. If the ring is specified by a ring file instead of a ring pattern, this parameter MUST be set to {{empty}}. + {{reference}} + + + + + + + + + + + The file name of a ring file file locally present on the CPE. + An ACS MUST use the Download method with FileType="5 Ringer File" as defined in {{bibref|TR-069a4|Annex A.3.2.8}} to download a ring file. + If the ring is specified by a ring pattern instead of a ring file, this parameter MUST be {{empty}}. + + + + + + + + + + + + Each entry in the table defines a single phase in an overall ring pattern. Each phase identifies the entry that corresponds to the next phase. + Each entry in the table refers to the entry that corresponds to the next phase of the pattern. The table MAY be set up such that entries form loops, or MAY end after a finite sequence. + The defaults given for this object apply only to explicit creation of an instance of this object and not to automatic creation of instances of this object due to creation of a parent object. + + + + + + + Enables or disables this entry. + + + + + + + + + {{datatype|expand}} + + + + + + + + Whether or not a ringer is on during this phase of the pattern. + + + + + + + + + The duration of this phase of the ring pattern, in {{units}}. + A value of zero indicates an unlimited duration. + + + + + + + + + + + The {{object}} for the next phase of the ring pattern, after the specified {{param|Duration}} of this phase has completed. + {{reference}} + {{empty}} indicates that the ring pattern is to terminate after the current phase is completed. + + + + + + + + + + + + Clock source configuration for Time-Division multiplexing subsystem. + + + + {{numentries}} + + + + + + + + The currently selected external clock source. If the current clock source is not selected from the {{object|ClockSource}} table, e.g. an internal holdover clock, this parameter is set to {{empty}}. + {{reference}} + + + + + + + + + + + Human readable description of the current clock synchronization status. + + + + + + + + + + If set to {{true}} the CPE automatically reverts back to a higher priority external clock source when it becomes available once again. If set to {{false}}, an automatic change between external clock sources only occurs when the current source becomes unavailable. + + + + + + + + + List of eligible external clock sources. The number of entries in this table depends on the maximum number of external clock sources supported by the CPE. + + + + + + + + + + + + + Enables or disables this entry. + + + + + + + + {{datatype|expand}} + + + + + + + + Position of the {{object}} entry in the order of precedence. A value of "1" indicates the first entry considered (highest precedence). + + + + + + + + + + A reference to a physical interface from which a clock signal can be derived. {{object|.ISDN.PRI.{i}.}} is eligible as a clock source when {{param|.ISDN.PRI.{i}.ClockMode}} is {{enum|Slave|.ISDN.PRI.{i}.ClockMode}}. {{object|.ISDN.BRI.{i}.}} is eligible as a clock source when {{param|.ISDN.BRI.{i}.ProtocolEmulation}} is {{enum|TE|.ISDN.BRI.{i}.ProtocolEmulation}}. + {{reference}} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/test/tools/tr-135-1-4-1-cwmp-full.xml b/test/tools/tr-135-1-4-1-cwmp-full.xml new file mode 100644 index 00000000..935262b3 --- /dev/null +++ b/test/tools/tr-135-1-4-1-cwmp-full.xml @@ -0,0 +1,8125 @@ + + + + + + {{docname|STBService:1.4 for CWMP}} + {{appdate|September 2019}} + {{trname|TR-135a3}} + August 2015: {{xmlref|tr-135-1-4-0|Original}} + * Added objects for Service Monitoring of Events + September 2019: {{xmlref|tr-135-1-4-1-cwmp|Corrigendum 1}} + * Added USP support (split XML into common, CWMP and USP files) + + + + A non-volatile handle used to reference this instance. + '''This is intended only for use in protocol-independent "common" definitions, and MUST NOT be used in protocol-specific definitions.''' + + + + + + + + A non-volatile handle used to reference this instance. Alias provides a mechanism for an ACS to label this instance for future reference. + If the CPE supports the Alias-based Addressing feature as defined in {{bibref|TR-069|3.6.1}} and described in {{bibref|TR-069|Appendix II}}, the following mandatory constraints MUST be enforced: + * Its value MUST NOT be empty. + * Its value MUST start with a letter. + * If its value is not assigned by the ACS, it MUST start with a "cpe-" prefix. + * The CPE MUST NOT change the parameter value. + + + + + + A non-volatile unique key used to reference this instance. Alias provides a mechanism for a Controller to label this instance for future reference. + The following mandatory constraints MUST be enforced: + * The value MUST NOT be empty. + * The value MUST start with a letter. + * If the value is not assigned by the Controller at creation time, the Agent MUST assign a value with an "cpe-" prefix. + The value MUST NOT change once it's been assigned. + + + + + + The value is measured in ''dBm/1000'', i.e. the value divided by 1000 is dB relative to 1 mW. For example, -12345 means -12.345 dBm, 0 means 0 dBm (1 mW) and 12345 means 12.345 dBm. + + + + + + + Indicates the availability of diagnostics data. Enumeration of: + {{enum}} + If the ACS sets the value of this parameter to {{enum|Requested}}, the CPE MUST initiate the corresponding diagnostic test. When writing, the only allowed values are {{enum|Requested}} and {{enum|Canceled}}. To ensure the use of the proper test parameters (the writable parameters in this object), the test parameters MUST be set, and any errors or inconsistencies in the test parameters MUST be detected, either prior to or at the same time as (in the same SetParameterValues) setting this parameter to {{enum|Requested}}. + When requested, the CPE SHOULD wait until after completion of the communication session with the ACS before starting the diagnostic test. + When the test is completed, the value of this parameter MUST be either {{enum|Complete}} (if the test completed successfully), or one of the ''Error'' values listed above. + If the value of this parameter is anything other than {{enum|Complete}}, the values of the results parameters for this test are indeterminate. + When the diagnostic initiated by the ACS is completed (successfully or not), but not if it is canceled for any reason, the CPE MUST establish a new connection to the ACS to allow the ACS to view the results, indicating the Event code ''8 DIAGNOSTICS COMPLETE'' in the Inform message. + After the diagnostic is complete, the value of all result parameters (all read-only parameters in this object) MUST be retained by the CPE until either this diagnostic is run again, or the CPE reboots. After a reboot, if the CPE has not retained the result parameters from the most recent test, it MUST set the value of this parameter to {{enum|None}}. + Modifying any of the writable parameters in this object except for this one MUST result in the value of this parameter being set to {{enum|None}}. + While the test is in progress, modifying any of the writable parameters in this object except for this one MUST result in the test being terminated and the value of this parameter being set to {{enum|None}}. + While the test is in progress, setting this parameter to {{enum|Requested}} (and possibly modifying other writable parameters in this object) MUST result in the test being terminated and then restarted using the current values of the test parameters. + While the test is in progress, setting this parameter to {{enum|Canceled}} MUST result in the test being canceled and the value of this parameter being set to {{enum|None}}. If the CPE does not support the {{enum|Canceled}} value, it MUST return a SPV error with "Invalid Parameter value" (9007) to the ACS instead. + + + + + + + + + + + + The IEEE EUI 64-bit identifier as defined in {{bibref|IEEE_EUI64}}. The IEEE defined 64-bit extended unique identifier (EUI-64) is a concatenation of: + * The 24-bit (OUI-24) or 36-bit (OUI-36) company_id value assigned by the IEEE Registration Authority (IEEE-RA), and + * The extension identifier (40 bits for OUI-24 or 28 bits for OUI-36) assigned by the organization with that company_id assignment. + + + + + + + + + + IP address, i.e. IPv4 address (or IPv4 subnet mask) or IPv6 address. + All IPv4 addresses and subnet masks MUST be represented as strings in IPv4 dotted-decimal notation. Here are some examples of valid IPv4 address textual representations: + * 216.52.29.100 + * 192.168.1.254 + All IPv6 addresses MUST be represented using any of the 3 standard textual representations defined in {{bibref|RFC4291}} Sections 2.2.1, 2.2.2 and 2.2.3. Both lower-case and upper-case letters can be used, but use of lower-case letters is RECOMMENDED. Here are some examples of valid IPv6 address textual representations: + * 1080:0:0:800:ba98:3210:11aa:12dd + * 1080::800:ba98:3210:11aa:12dd + * 0:0:0:0:0:0:13.1.68.3 + IPv6 addresses MUST NOT include zone identifiers. Zone identifiers are discussed in {{bibref|RFC4007|Section 6}}. + Unspecified or inapplicable addresses (or IPv4 subnet masks) MUST be represented as empty strings unless otherwise specified by the parameter definition. + + + + + + + + IPv4 address (or subnet mask). + Can be any IPv4 address that is permitted by the ''IPAddress'' data type. + + + + + + + + IPv6 address. + Can be any IPv6 address that is permitted by the ''IPAddress'' data type. + + + + + + IPv4 or IPv6 routing prefix in Classless Inter-Domain Routing (CIDR) notation {{bibref|RFC4632}}. This is specified as an IP address followed by an appended "/n" suffix, where ''n'' (the prefix size) is an integer in the range 0-32 (for IPv4) or 0-128 (for IPv6) that indicates the number of (leftmost) '1' bits of the routing prefix. + * IPv4 example: 192.168.1.0/24 + * IPv6 example: 2001:edff:fe6a:f76::/64 + If the IP address part is unspecified or inapplicable, it MUST be {{empty}} unless otherwise specified by the parameter definition. In this case the IP prefix will be of the form "/n". + If the entire IP prefix is unspecified or inapplicable, it MUST be {{empty}} unless otherwise specified by the parameter definition. + + + + + + + + IPv4 address prefix. + Can be any IPv4 prefix that is permitted by the ''IPPrefix'' data type. + + + + + + + + + IPv6 address prefix. + Can be any IPv6 prefix that is permitted by the ''IPPrefix'' data type. + + + + + + A JSON Object as defined in {{bibref|RFC7159|Section 4}}. + + + + + + + All MAC addresses are represented as strings of 12 hexadecimal digits (digits 0-9, letters A-F or a-f) displayed as six pairs of digits separated by colons. Unspecified or inapplicable MAC addresses MUST be represented as empty strings unless otherwise specified by the parameter definition. + + + + + + + + + + A 32-bit statistics parameter, e.g. a byte counter. + This data type SHOULD NOT be used for statistics parameters whose values might become greater than the maximum value that can be represented as an ''unsignedInt'' (i.e. 0xffffffff, referred to below as ''maxval''). ''StatsCounter64'' SHOULD be used for such parameters. + The value ''maxval'' indicates that no data is available for this parameter. In the unlikely event that the actual value of the statistic is ''maxval'', the CPE SHOULD return ''maxval - 1''. + The actual value of the statistic might be greater than ''maxval''. Such values SHOULD wrap around through zero. + The term ''packet'' is to be interpreted as the transmission unit appropriate to the protocol layer in question, e.g. an IP packet or an Ethernet frame. + + + + + + + A 64-bit statistics parameter, e.g. a byte counter. + This data type SHOULD be used for all statistics parameters whose values might become greater than the maximum value that can be represented as an ''unsignedInt''. + The maximum value that can be represented as an ''unsignedLong'' (i.e. 0xffffffffffffffff) indicates that no data is available for this parameter. + The term ''packet'' is to be interpreted as the transmission unit appropriate to the protocol layer in question, e.g. an IP packet or an Ethernet frame. + + + + + + + Universally Unique Identifier. See {{bibref|RFC4122}}. + + + + + + + + + Uniform Resource Identifier. See {{bibref|RFC3986}}. + + + + + + + + Uniform Resource Name. See {{bibref|RFC3986}} (URI) and {{bibref|RFC8141}} (''urn'' URI scheme). + + + + + + + Uniform Resource Locator. See {{bibref|RFC3986}} (URI), {{bibref|IANA-uri-schemes}}, and individual URI scheme RFCs such as {{bibref|RFC7252}} (''coap'', ''coaps'') and {{bibref|RFC7230}} (''http'', ''https''). + + + + + + The ZigBee 16-bit network address (NWK) as defined in {{bibref|ZigBee2007}}. The address is assigned to a device by the network layer and used by the network layer for routing messages between devices. + + + + + + + + + + A non-volatile handle used to reference this instance. Alias provides a mechanism for an ACS to label this instance for future reference. + If the CPE supports the Alias-based Addressing feature as defined in {{bibref|TR-069|3.6.1}} and described in {{bibref|TR-069|Appendix II}}, the following mandatory constraints MUST be enforced: + * Its value MUST NOT be empty. + * Its value MUST start with a letter. + * If its value is not assigned by the ACS, it MUST start with a "cpe-" prefix. + * The CPE MUST NOT change the parameter value. + + + + + + E-AC-3 + Digital Audio Compression (AC-3) Standard, Rev. B, document number A/52B + ATSC + June 2005 + + + DGTVi D-Book v1.0 + Compatible receivers for the Italian market + Sep 2004 + + + HDMI + High-Definition Multimedia Interface 1.4a + March 2010 + + + ISO/IEC 11172-1 (1993) + Information Technology - Coding of moving pictures and associated audio for digital storage media at up to about 1.5 Mbit/s - Part 1: System + ISO/IEC + 1993 + + + ISO/IEC 11172-3 (1993) + Information Technology - Coding of moving pictures and associated audio for digital storage media at up to about 1.5 Mbit/s - Part 3: Audio + ISO/IEC + 1993 + + + ISO/IEC 13818-1 (2nd edition, 2000) + Information technology - Generic coding of moving picture and associated audio information: Systems + ISO/IEC + 2000 + + + ISO/IEC 13818-3 (2nd edition, 1998) + Information technology - Generic coding of moving picture and associated audio information: Audio + ISO/IEC + 1998 + + + ISO/IEC 13818-6 (2nd edition, 1998) + Information technology - Generic coding of moving picture and associated audio information: Extensions for DSM-CC + ISO/IEC + 1998 + + + ISO/IEC 14496-3:2001 + Information technology - Coding of Audio-Visual objects - Part 3: Audio + ISO/IEC + 2001 + + + ITU-T Rec. H.264 | ISO/IEC 14496-10:2004/AM 1, Part 10 + Advanced Video Coding AMENDMENT 1: AVC fidelity range extensions + ISO/IEC + 2004 + + + ISO/IEC 23003-1:2007 + Information technology - MPEG audio technologies - Part 1: MPEG Surround + ISO/IEC + 2007 + + + RFC 1350 + The TFTP Protocol (Revision 2) + IETF + RFC + https://tools.ietf.org/html/rfc1350 + + + RFC 2228 + FTP Security Extensions + IETF + RFC + https://tools.ietf.org/html/rfc2228 + + + RFC 2326 + Real Time Streaming Protocol (RTSP) + IETF + RFC + https://tools.ietf.org/html/rfc2326 + + + RFC 2960 + Stream Control Transmission Protocol (SCTP) + IETF + RFC + https://tools.ietf.org/html/rfc2960 + + + RFC 3066 + Tags for the Identification of Languages + IETF + RFC + https://tools.ietf.org/html/rfc3066 + + + RFC 3376 + Internet Group Management Protocol (IGMP) Version 3 + IETF + RFC + https://tools.ietf.org/html/rfc3376 + + + RFC 3550 + RTP: A Transport Protocol for Real-Time Applications + IETF + RFC + July 2003 + https://tools.ietf.org/html/rfc3550 + + + RFC 4078 + The TV-Anytime Content Reference Identifier (CRID) + IETF + RFC + https://tools.ietf.org/html/rfc4078 + + + RFC 4122 + A Universally Unique IDentifier (UUID) URN Namespace + IETF + RFC + 2005 + https://tools.ietf.org/html/rfc4122 + + + RFC 4340 + Datagram Congestion Control Protocol (DCCP) + IETF + RFC + https://tools.ietf.org/html/rfc4340 + + + RFC 4585 + Extended RTP Profile for Real-time Transport Control Protocol (RTCP)-Based Feedback (RTP/AVPF) + IETF + RFC + https://tools.ietf.org/html/rfc4585 + + + RFC 4588 + RTP Retransmission Packet Format + IETF + RFC + https://tools.ietf.org/html/rfc4588 + + + SMPTE 20022-1 Application Layer Forward Error Correction + + + Simple Object Access Protocol (SOAP) 1.1 + W3C + https://www.w3.org/TR/2000/NOTE-SOAP-20000508 + + + S/PDIF + Sony/Philips Digital InterFace IEC-958 + IEC + + + SSH File Transfer Protocol + https://tools.ietf.org/wg/secsh/draft-ietf-secsh-filexfer + + + TR-106 Amendment 1 + Data Model Template for TR-069-Enabled Devices + Broadband Forum + Technical Report + November 2006 + https://www.broadband-forum.org/technical/download/TR-106_Amendment-1.pdf + + + TR-106 Amendment 8 + Data Model Template for CWMP Endpoints and USP Agents + Broadband Forum + Technical Report + May 2018 + https://www.broadband-forum.org/technical/download/TR-106_Amendment-8.pdf + + + TR-135 Amendment 3 + Data Model for a TR-069 Enabled STB + Broadband Forum + Technical Report + November 2012 + https://www.broadband-forum.org/technical/download/TR-135.pdf + + + TR-140 + TR-069 Data Model for Storage Service Devices + Broadband Forum + Technical Report + https://www.broadband-forum.org/technical/download/TR-140.pdf + + + ETSI TS 102 034 + Digital Video Broadcasting (DVB); Transport of MPEG-2 Based DVB Services + ETSI + + + ETSI TS 102 323 + Digital Video Broadcasting (DVB); Carriage and signalling of TV-Anytime information + in DVB transport streams + ETSI + + + SMPTE VC-1 + Compressed Video Bitstream Format and Decoding Process, document number 421M + SMPTE, Television + 2006 + + + + + + Number of entries in the {{object|STBService}} table. + + + + + + + + The top-level object for an STB CPE. + + + + + + + Enables or disables this {{object}} instance. + + + + + + + + {{datatype|expand}} + + + + + + + + + The overall capabilities of the STB CPE. This is a constant read-only object, meaning that only a firmware update will cause these values to be altered. + + + + Maximum number of simultaneously active AV streams supported by the STB. + A value of -1 indicates no specific limit on the number of active streams. + A value of 0, while not strictly illegal, would indicate an STB that doesn't support AV streams, which is extremely unlikely. + + + + + + + + + + Maximum number of simultaneously active AV players supported by the STB. An AV player is associated with a presentation device (such as a TV set). + Note that this is the strict maximum but, depending on the AV streams to be decoded, a given STB may not always have the resources to run all of these AV players, e.g. it might be able to decode one main picture and one PIP in standard definition, but just a main picture and no PIP in high definition. + A value of -1 indicates no specific limit on the number of active players. + A value of 0, while not strictly illegal, would indicate an STB that doesn't support AV players, which is extremely unlikely. + + + + + + + + + + + Front-end capabilities. + + + + + Capabilities of the DVB-T receiver. + + + + Maximum number of simultaneous active AV streams supported by the DVB-T FrontEnd. + A value of -1 indicates no specific limit on the number of active streams. + + + + + + + + + + Maximum number of logical channels that can be contained in a Service List Database. + A value of -1 indicates no specific limit on the number of logical channels. + + + + + + + + + + + IP front-end capabilities. + + + + Maximum number of simultaneous active AV streams supported by the IP FrontEnd. + A value of -1 indicates no specific limit on the number of active streams. + + + + + + + + + + Maximum number of simultaneous active Inbound AV streams supported by the IP FrontEnd. + A value of -1 indicates no specific limit on the number of active streams. + + + + + + + + + + Maximum number of simultaneous active Outbound AV streams supported by the IP FrontEnd. + A value of -1 indicates no specific limit on the number of active streams. + + + + + + + + + + Supported streaming control protocols. + + + + + + + supports RTSP {{bibref|RFC2326}} + + + + + supports IGMPv1 {{bibref|RFC3376}} + + + + + supports IGMPv2 and lower versions {{bibref|RFC3376}} + + + + + supports IGMPv3 and lower versions {{bibref|RFC3376}} + + + + + supports DSM-CC {{bibref|ISO/IEC13818-6}} + + + + + + + + Network protocols supported for AV streaming. + + + + + + + + + {{bibref|RFC2960}} + + + + + {{bibref|RFC4340}} + + + + + {{bibref|RFC3550}} + + + + + + + + + Transport control protocols supported for AV streaming in combination with RTP. + + + + + + + supports sending RTCP receiver reports as defined in {{bibref|RFC3550}} + + + + + as defined in {{bibref|RFC4585}} and {{bibref|RFC4588}} + + + + + as defined in {{bibref|SMPTE20022-1}} + + + + + + + + Network protocols supported for AV download. + + + + + + + + + + FTP/SSL {{bibref|RFC2228}} + + + + + SSH file transfer protocol {{bibref|SSH-FTP}} + + + + + {{bibref|RFC1350}} + + + + + + + + AV multiplex types supported by the front end. + + + + + + + + {{bibref|ISO/IEC11172-1}} + + + + + {{bibref|ISO/IEC13818-1}} + + + + + {{bibref|ISO/IEC13818-1}} + + + + + {{bibref|ISO/IEC13818-1}} + + + + + + + + Describes the maximum de-jittering buffer size, in {{units}}, supported by the STB. + A value of -1 indicates no specific limit on the buffer size. + + + + + + + + + + + + PVR capabilities. + + + + Maximum number of AV streams that the PVR can simultaneously record and playback. For example a time shift, consisting of a record and a play back is considered as 2 streams. + A value of -1 indicates no specific limit on the number of streams. + + + + + + + + + + Maximum number of AV streams that the PVR can simultaneously record. + A value of -1 indicates no specific limit on the number of streams. + + + + + + + + + + Maximum number of AV streams that the PVR can simultaneously play back. + A value of -1 indicates no specific limit on the number of streams. + + + + + + + + + + Maximum time delay, in {{units}}, that the PVR time-shift mode can support. + A value of -1 indicates no specific limit on the time delay. + + + + + + + + + + + + Audio decoder capabilities. + + + + Audio standards supported by this STB. + + + + + + + {{bibref|ISO/IEC11172-3}} + + + + + {{bibref|ISO/IEC11172-3}} + + + + + {{bibref|ISO/IEC13818-3}} + + + + + {{bibref|ISO/IEC13818-3}} + + + + + + + + Low Complexity {{bibref|ISO/IEC13818-3}} + + + + + Low Complexity {{bibref|ISO/IEC14496-3}} + + + + + Main Profile {{bibref|ISO/IEC14496-3}} + + + + + Scalable AAC {{bibref|ISO/IEC14496-3}} + + + + + High Efficiency Profile Level 2 {{bibref|ISO/IEC14496-3}} + + + + + {{bibref|ISO/IEC23003-1}} + + + + + Dolby Digital (AC-3) {{bibref|AC-3}} + + + + + Dolby Digital Plus {{bibref|AC-3}} + + + + + Digital Theatre System + + + + + + + + + + Video decoder capabilities. + + + + Video standards supported by this STB. + + + + + + + {{bibref|ISO/IEC13818-1}} + + + + + {{bibref|ISO/IEC13818-6}} + + + + + Same as MPEG4 AVC and H.264 {{bibref|ISO/IEC14496-10}} + + + + + {{bibref|VC-1}} + + + + + + + + + Object describing the set of supported MPEG2 profiles and levels for this STB. It also describes the set of audio standards supported when MPEG2 Part 2 is used as the video standard. + + + + Audio Standards supported by the Player when associated with MPEG2 Part 2 Video. + + + + + + + + + + + Number of instances of {{object|ProfileLevel}}. + + + + + + + + + Table to describe the set of profiles and levels combinations supported by the STB when MPEG2 Part 2 is used as video standard. + {{keys}} The table MUST include a distinct entry for each supported combination of these parameters. + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Identifier of the MPEG2 Part 2 profile. + + + + + + Simple Profile + + + + + Main Profile + + + + + SNR Scalable + + + + + Spatially Scalable + + + + + High Profile + + + + + + + + + Identifier of the MPEG2 part 2 level. + + + + + + Low Level + + + + + Main Level + + + + + High-1440 + + + + + High Level + + + + + + + + The maximum decoding capability for this video standard in {{units}}. This strictly depends on the profile and level selected. + + + + + + + + + + + Object describing the set of supported profiles and levels for this STB. It also describes the set of audio standards supported when MPEG4 Part 2 is used as the video standard. + + + + Audio Standards supported by the Player when associated with MPEG4 Part 2 video. + + + + + + + + + + + Number of instances of {{object|ProfileLevel}}. + + + + + + + + + Table to describe the set of profiles and levels combinations supported by the STB when MPEG4 Part 2 is used as video standard. + {{keys}} The table MUST include a distinct entry for each supported combination of these parameters. + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Identifier of the MPEG4 Part 2 profile. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Identifier of the MPEG4 Part 2 level. + + + + + + + + + + + + + + + + + The maximum decoding capability for this video standard in {{units}}. This strictly depends on the profile and level selected. + + + + + + + + + + + Object describing the set of supported profiles and levels for this STB. It also describes the set of audio standards supported when MPEG4 Part 10 is used as the video standard. + + + + Audio Standards supported by the Player when associated with MPEG4 Part 10 video. + + + + + + + + + + + Number of instances of {{object|ProfileLevel}}. + + + + + + + + + Table to describe the set of profiles and levels combinations supported by the STB when MPEG4 Part 10 is used as video standard. + {{keys}} The table MUST include a distinct entry for each supported combination of these parameters. + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Supported MPEG4 Part 10 profiles. + + + + + + + + + + + + + + + + + Supported MPEG4 Part 10 Levels. + + + + + + + + + + + + + + + + + + + + + + + + + + The maximum decoding capability for this video standard in {{units}}. This strictly depends on the profile and level selected. + + + + + + + + + + + Object describing the set of supported SMPTE-VC-1 profiles and levels for this STB. It also describes the set of audio standards supported when SMPTE-VC-1 is used as the video standard. + + + + Audio Standards supported by the Player when associated with SMPTE-VC-1 video. + + + + + + + + + + + Number of instances of {{object|ProfileLevel}}. + + + + + + + + + Table to describe the set of profiles and levels combinations supported by the STB when SMPTE-VC-1 is used as video standard. + {{keys}} The table MUST include a distinct entry for each supported combination of these parameters. + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Identifier of the SMPTE-VC-1 profile. + + + + + + Simple Profile + + + + + Main Profile + + + + + Advanced Profile + + + + + + + + Identifier of the SMPTE-VC-1 level. + + + + + + Low Level + + + + + Medium Level + + + + + High Level + + + + + Advanced Profile only + + + + + Advanced Profile only + + + + + Advanced Profile only + + + + + Advanced Profile only + + + + + Advanced Profile only + + + + + + + + The maximum decoding capability for this video standard in {{units}}. This strictly depends on the profile and level selected. + + + + + + + + + + + Audio output capabilities. The audio output stage may include selecting output formats, selecting output connectors, and copy protection. + + + + Supported audio output formats. {{enum}} + Note that these refer to supported output formats and not to physical connectors. + + + + + + + + + + + + + modulated analog signals on coax + + + + + + + + + Video output capabilities. The video output stage may include selecting output formats, selecting output connectors, and copy protection. + + + + Analog composite video standards supported for video output. This applies only to CVBS video output. + + + + + + + + + + + + + + + + + + + + + + + + + + Supported video output formats. {{enum}} + Note that these refer to supported output formats and not to physical connectors. + + + + + + + + same as Y/C + + + + + + RGB with Sync on Green + + + + + RGB with external Sync + + + + + + + modulated analog signals on coax + + + + + + + + Supported version of Macrovision digital content protection standard. + + + + + + + + + + Supported version of HDCP digital content protection standard. + + + + + + + + + + Each entry is a supported display format and MUST be in the form of “x:y”, such as for example “4:3, 16:9, 14:9". {{nopattern}} + + + + + + + {{nopattern}} + + + + + + + + + This object describes the characteristics of the HDMI interface, if any. + + + + Video resolutions supported for the HDMI video output. {{enum}} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Indicates whether the STB is supporting HDMI-CEC features as described in {{bibref|HDMI}}. + + + + + + + + Indicates whether the STB is supporting the 3D video formats mandated by {{bibref|HDMI}}. + + + + + + + + + This object describes the characteristics of the Content Download System, if any. + + + + Capability of providing a CDS Push service for the operator initiated download of content items to local storage via a broadband IP connection. + + + + + + + + Capability of providing a CDS Pull service for the user initiated download of content items to a local storage via a broadband IP connection. + + + + + + + + + This object describes the characteristics of the Conditional Access, if any. + + + + Unique identifiers (e.g. commercial names) of supported CA systems. + + + + + + + + + + + + This object describes the characteristics of the Digital Rights Management, if any. + + + + Unique identifiers (e.g. commercial names) of supported DRM systems. + + + + + + + + + + + + This object describes the capabilities of the {{object|.ServiceMonitoring}} object. + + + + Supported service types, each of which relates to an AV stream source. {{enum}} + Note that none of the standard service types cover LAN-sourced IP streams. + + + + + + + WAN-sourced IPTV stream + + + + + WAN-sourced VoD stream + + + + + WAN-sourced IP stream (includes IPTV and VoD + + + + + WAN-sourced Force monitoring IP stream from {{param|.Components.FrontEnd.{i}.IP.ForceMonitor.URI}} (either IPTV or VoD). + + + + + Any WAN-sourced IP stream (includes user and force monitoring streams, IPTV and VoD). + + + + + Cable, e.g. DVB-C, Front End stream + + + + + DTT, e.g. DVB-T, Front End stream + + + + + Satellite, e.g. DVB-S, Front End stream + + + + + PVR play-out stream + + + + + + + + Maximum number of events of each applicable statistic that the STB is able to store for each sample interval. + A value of -1 indicates no specific maximum number of events. + + + + + + + + + + + Maximum number of AV Main streams for which the STB can simultaneously collect statistics. + A value of -1 indicates no specific limit on the number of active streams. + + + + + + + + + + Minimum sample interval in {{units}} that the STB MUST be able to support. + A value of -1 indicates no specific minimum sample interval. + + + + + + + + + + + Maximum number of samples of each statistic that the STB is able to store and report. + A value of -1 indicates no specific maximum number of samples. + + + + + + + + + + The names of the supported high-level metrics. If a metric produces several different scores (e.g. an audio, a video, and an audiovisual score), then they MUST be explicitly named. Example (using "XYZ" as the name of the base metric): + "XYZAudio,XYZVideo,XYZAudiovisual". + + + + + + + + + + + Maximum number of event log entries that the STB is able to record for a MainStream object instance. + + + + + + + + + This object describes the capabilities of the {{object|.Applications.AudienceStats}} object. + + + + Maximum number of channels that the STB MUST support in the {{object|.Applications.AudienceStats}} object + A value of -1 indicates no specific limit on the number of channels. + + + + + + + + + + + Details of STB logical or physical internal components. Unlike the {{object|.Capabilities}} object, which is read-only and which doesn't describe individual instances, this object contains some writeable parameters. + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + FrontEnd instance table. Each front-end instance, including vendor-specific front-end types, will normally have a sub-object that corresponds to the front-end type (e.g. DVB-T or IP). + + + + + + + + + + Enables or disables this front-end. + + + + + + + + The status of this front-end. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Human-readable name associated with this front-end. + + + + + + + + + + + DVB-T front-end details. This object will normally be present if and only if this front-end is a DVB-T front-end. + Parameters are taken from the DGTVi D-Book {{bibref|D-Book}}. + + + + + DVB-T modulation details. + + + + Indicates the current frequency in {{units}}. + The value of this parameter is undefined while installing the service list (see {{object|.Components.FrontEnd.{i}.DVBT.Install}}). + + + + + + + + + + Indicates the channel bandwidth in use. + + + + + + + + + + + + Indicates the current constellation in use. + + + + + + + + + + + + Hierarchical parameter alpha. The higher the value of alpha, the more noise-immune the High Priority Modulation is. + + + + + + no hierarchy + + + + + + + + + + + Indicates the current code rate in use. Code rate applies to HP in case of hierarchical coding. + + + + + + + + + + + + + + Indicates the current code rate in use. Code rate applies to LP in case of hierarchical coding. + + + + + + Coding is not hierarchical + + + + + + + + + + + + + Indicates the current guard interval in use. + + + + + + + + + + + + + Indicates the number of carriers in an OFDM frame. + + + + + + + + + + + Signal/Noise ratio in the carrier band, measured in {{units}}. + + + + + + + + + + Bit Error Ratio before correction, expressed in multiples of 1e-6. + + + + + + + + Bit Error Ratio after correction, expressed in multiples of 1e-9. + + + + + + + + Indicates whether or not the tuner is locked on a frequency. + + + + + + + + + DVB-T Current service details. + + + + It represents the logical channel object instance for the current service, For example: ''.Components.FrontEnd.1.DVBT.-ServiceListDatabase.LogicalChannel.12''. + + + + + + + + + + + It represents the service object instance for the current service. For example: ''.Components.FrontEnd.1.DVBT.ServiceListDatabase.LogicalChannel.12.Service.1''. + + + + + + + + + + + + DVB-T service list database installation. Supports maintenance of the service list database by scanning frequencies in order to detect services. + The service list database is in {{object|.Components.FrontEnd.{i}.DVBT.ServiceListDatabase}}. + + + + Starts (when set to {{true}}) or stops (when set to {{false}}) scanning for services. The value is not saved in device state and is always {{false}} when read. + Discovered services are merged with those already present in the service list database. This supports cases where the frequency spectrum is not continuous. + In order to force a re-install, the service list database needs to be reset (see {{param|.Components.FrontEnd.{i}.DVBT.ServiceListDatabase.Reset}}). + + + + + + + + Indicates the status of the scanning process. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + scanning is not in progress + + + + + scanning is in progress + + + + + + + + + Progression in {{units}} of the current scan. The value is undefined when a scan is not in progress. + + + + + + + + + + + Frequency (in {{units}}) at which to start the scanning process. + + + + + + + + + + Frequency (in {{units}}) at which to stop the scanning process. + + + + + + + + + + + DVB-T service list database. + + + + Total number of services defined in the service list database, i.e. the number of different DvbIds in the database. + + + + + + + + Number of logical channels in the service list database. + + + + + + + + When set to {{true}}, resets the service list database. Setting it to {{false}} has no effect. The value is not saved in device state and is always {{false}} when read. + + + + + + + + + DVB-T logical channel information. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Logical channel number. + + + + + + + + Number of services associated with this logical channel. + + + + + + + + + DVB-T service information. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Human-readable name associated with this service, e.g. read from the DVB service information metadata. + + + + + + + + + + DVB Triplet {{bibref|TS102034}} that uniquely identifies the service in the service list database. + The DVB Triplet is a 12-byte string that is a concatenation of 4 hexadecimal characters for each of the following: Original Network Id, Transport Stream Id, Service Id. For example: + * OriginalNetworkId = 8442 = 0x20FA + * TransportStreamId = 4 = 0x0004 + * ServiceId = 257 = 0x0101 + -> DvbId = ''20FA00040101'' + + + + + + + + + + Transmitter frequency (in {{units}}) for this service. + + + + + + + + + + Bit Error Ratio before correction, expressed in multiples of 1e-6 (indicates the quality of this service). + + + + + + + + Bit Error Ratio after correction, expressed in {{units}} (indicates the quality of this service). + + + + + + + + + + Signal/Noise ratio in the carrier band, measured in {{units}} (indicates the quality of this service). + + + + + + + + + + When set to {{true}}, identifies this as the preferred service for this logical channel and automatically sets {{param}} to {{false}} for other services associated with this logical channel. + When set to {{false}}, cancels this service's preferred status and causes the service with the lowest {{param|BER}} (best received quality) to become the preferred service for this logical channel. + Whenever frequencies are re-scanned, all {{param}} parameters are implicitly reset to {{false}}, i.e. a re-scan will always use the {{param|BER}} to determine preferred services, and will discard any past explicit overrides. + + + + + + + + + Connect to a DVB-T logical channel. + + + + Logical channel number to connect to (the logical channel's preferred service will be connected to). + If a {{object|.ServiceMonitoring.MainStream}} instance with ''ServiceType'' = ''DTT'' is currently enabled, the STB MUST ensure that performance data for this service is collected in that instance. + The value is not saved in device state. The value when read is not specified and need not be the value that was most recently written. + + + + + + + + + Connect to a DVB-T service. + + + + DvbId of the service to connect to. + If a {{object|.ServiceMonitoring.MainStream}} instance with ''ServiceType'' = ''DTT'' is currently enabled, the STB MUST ensure that performance data for this service is collected in that instance. + The value is not saved in device state. The value when read is not specified and need not be the value that was most recently written. + + + + + + + + + + + IP front-end details. This object will normally be present if and only if the front-end is an IP front-end. + + + + Number of {{object|Inbound}} instances. + + + + + + + + Number of {{object|Outbound}} instances. + + + + + + + + Number of {{object|Inbound}} AV streams currently active (i.e. with ''Status'' != ''Disabled'', which means audio or AV data are being processed). + + + + + + + + Number of {{object|Outbound}} AV streams currently active (i.e. with ''Status'' != ''Disabled'', which means audio or AV data are being processed). + + + + + + + + + Parameters related to RTCP receiver report generation as defined in {{bibref|RFC3550}}. + + + + Enables or disables RTCP receiver report generation. + + + + + + + + The status of RTCP receiver report generation. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + Transmission repeat interval, in {{units}}. + + + + + + + + + + + + Parameters related to RTP AVPF configuration as defined in {{bibref|RFC4585}} and {{bibref|RFC4588}}. + + + + Enables or disables RTP/AVPF receiver report generation. + When set to {{true}}, enables the error correction operation, immediately ({{enum|Forced|OperationMode}} mode) or automatically when necessary ({{enum|Auto|OperationMode}} mode). + When set to {{false}}, disables the error correction operation. + + + + + + + + The operation mode of the Error Correction mechanism. {{enum}} + In {{enum|Auto}} mode, when Error Correction is enabled, the STB decides whether or not to run the Error Correction operation (e.g. after an error analysis). + In {{enum|Forced}} mode, when Error Correction is enabled the STB MUST run the Error Correction operation. + + + + + + + + + + + The status of RTP/AVPF operation. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + {{enum|Auto|OperationMode}} mode and EC is running + + + + + {{enum|Auto|OperationMode}} mode and EC is not running and EC data are not buffered). Note: this is equivalent of "Disabled" but this "Disabled" state is caused by STB under auto mode, not be set by operator + + + + + {{enum|Auto|OperationMode}} mode and EC is not running but EC data are buffered + + + + + {{enum|Forced|OperationMode}} mode and Enabled + + + + + + + + + The status of RTP/AVPF receiver report generation. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + Time in {{units}} the receiver shall wait for a retransmitted packet before considering it to be lost. + + + + + + + + + + Minimum number of lost packets the receiver shall wait for before generating a retransmission request. + + + + + + + + Maximum time in {{units}} the receiver shall wait between a lost packet and the generation of a retransmission request. + + + + + + + + + + Maximum number of consecutive lost packets for which the receiver shall attempt recovery. + + + + + + + + + Parameters related to AL-FEC configuration as defined in {{bibref|SMPTE20022-1}}. + + + + Enables or disables FEC decoder operation. + When set to {{true}}, enables the FEC decoder operation, immediately ({{enum|Forced|OperationMode}} mode) or automatically when necessary ({{enum|Auto|OperationMode}} mode). + When set to {{false}}, disables the FEC decoder operation. + + + + + + + + The operation mode of the FEC decoder. {{enum}} + In {{enum|Auto}} mode, when Error Correction is enabled the STB decides whether or not to run the AL_FEC decoding (e.g. after an error analysis). + In {{enum|Forced}} mode, when Error Correction is enabled the STB MUST run the FEC decoding. + + + + + + + + + + + The status of FEC decoder operation. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + {{enum|Auto|OperationMode}} mode and EC is running + + + + + {{enum|Auto|OperationMode}} mode and EC is not running and EC data are not buffered). Note: this is equivalent of "Disabled", but this "Disabled" state is caused by STB under auto mode, not be set by operator + + + + + {{enum|Auto|OperationMode}} mode and EC is not running but EC data are buffered + + + + + {{enum|Forced|OperationMode}} mode and Enabled + + + + + + + + + + Parameters that are specific to IGMP clients when changing channels. + + + + Enables or disables all IGMP support on the receiver side of the CPE. + + + + + + + + Status of IGMP support on the receiver side of the CPE. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + Maximum number of group memberships allowed simultaneously. + For example, this would need to be at least 2 in order to support a Multicast-delivered main picture and a Multicast-delivered PIP. + + + + + + + + Maximum number of groups for which statistics will be tracked. + This relates only to the maintenance of statistics, and does not affect the operation of the STB. + + + + + + + + Controls logging of IGMP traffic. + The CPE MAY choose to throttle log entries, e.g. if joins and leaves are occurring at an excessive rate. + + + + + + + + Diffserv code point to be used for outgoing IGMP packets. + + + + + + + + + + VLAN ID (as defined in 802.1Q) to be used for outgoing IGMP packets. A value of -1 indicates the default value is to be used. + If either the {{param}} or {{param|EthernetPriorityMark}} is greater than zero, then the outgoing frames MUST be tagged. Otherwise, the outgoing frames MAY be tagged or untagged. + + + + + + + + + + Ethernet priority code (as defined in 802.1D) to be used for outgoing IGMP packets. A value of -1 indicates the default value is to be used. + If either the {{param|VLANIDMark}} or {{param}} are greater than zero, then the outgoing frames MUST be tagged. Otherwise, the outgoing frames MAY be tagged or untagged. + + + + + + + + + + The highest IGMP version supported by the IGMP Client. + + + + + + + + + + + + Robustness is a way of indicating how vulnerable the network is to lost packets. IGMP can recover from robustness minus 1 lost IGMP packets. + RFC 3376 specifies a default of 2. + + + + + + + + The number of {{units}} between repetitions of a host's initial report of membership in a group. + RFC 3376 specifies a default of 1s. + + + + + + + + + + + Number of entries in the {{object|ClientGroup}} table. + + + + + + + + Number of entries in the {{object|ClientGroupStats}} table. + + + + + + + + + IGMP Group table. This is the database that is maintained by the IGMP client to reflect the current group membership. + The CPE MUST support at least ''MaximumNumberOfConcurrentGroups'' table entries. + + + + + + + + + + {{datatype|expand}} + + + + + + + + The IP multicast group address for which this entry contains information. + + + + + + + + Time elapsed in {{units}} since the multicast group has been a member on this interface. + + + + + + + + + + + IGMP Group statistics table. This stores per-group historical statistical data. + The CPE MUST support at least ''MaximumNumberOfTrackedGroups'' table entries. The CPE MAY reclaim entries based on the oldest membership reports. + + + + + + + + + + {{datatype|expand}} + + + + + + + + The IP multicast group address for which this entry contains information. + + + + + + + + Number of {{units}} since the beginning of the period used for collection of {{object|Total}} statistics. + Statistics SHOULD continue to be accumulated across CPE reboots, though this may not always be possible. + + + + + + + + + + Number of {{units}} since the beginning of the period used for collection of {{object|CurrentDay}} statistics. + The CPE MAY align the beginning of each {{object|CurrentDay}} interval with days in the UTC time zone, but is not required to do so. + Statistics SHOULD continue to be accumulated across CPE reboots, though this may not always be possible. + + + + + + + + + + Number of {{units}} since the beginning of the period used for collection of {{object|QuarterHour}} statistics. + The CPE MAY align the beginning of each {{object|QuarterHour}} interval with real-time quarter-hour intervals, but is not required to do so. + Statistics SHOULD continue to be accumulated across CPE reboots, though this may not always be possible. + + + + + + + + + + + Total statistics for this multicast group. + + + + Number of IGMP joins during this period. + + + + + + + + Number of IGMP leaves during this period. + + + + + + + + Maximum latency delay, in {{units}}, from the sending of a Join message for this group to the arrival of the first IP packet for this group during this period. + + + + + + + + + + + Current day statistics for this multicast group. + + + + Number of IGMP joins during this period. + + + + + + + + Number of IGMP leaves during this period. + + + + + + + + Maximum latency delay, in {{units}}, from the sending of a Join message for this group to the arrival of the first IP packet for this group during this period. + + + + + + + + + + + Current quarter hour statistics for this multicast group. + + + + Number of IGMP joins during this period. + + + + + + + + Number of IGMP leaves during this period. + + + + + + + + Maximum latency delay, in {{units}}, from the sending of a Join message for this group to the arrival of the first IP packet for this group during this period. + + + + + + + + + + + Parameters related to the de-jittering buffer configuration for all inbound IP streams. + + + + De-jittering buffer size, measured in {{units}}, on the receiver side of the CPE. The STB is responsible for converting this into the actual buffer size in ''bytes''. + + + + + + + + + + Describes the number of {{units}} worth of data that should be in the receiver side dejittering buffer before play-out can start. Typically this would be half of the buffer size. + + + + + + + + + + + Inbound IP streams currently entering the STB via this front-end. + + + + + + + + + + The status of this Inbound stream. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Unique human-readable name associated with this inbound IP instance. + + + + + + + + + + Network protocol currently used for controlling streaming of the source content, or {{empty}} if the content is not being streamed or is being streamed but is not being controlled. + + + + + + + + + + Network protocol currently used for streaming the source content, or an empty string if the content is not being streamed. + + + + + + + + + + Transport control protocol currently used for streaming the source content, or an empty string if the content is not being streamed. + + + + + + + + + + AV multiplex type currently used for the source content, or an empty string if the content is not being demultiplexed. + + + + + + + + + + Network protocol currently used for downloading the source content, or an empty string if the content is not being downloaded. + + + + + + + + + + IP address of the source of the current stream content. + + + + + + + + TCP or UDP port number of the source of the current stream content, or 0 if the content is not being delivered via IP or if not applicable. + + + + + + + + + + IP address of the destination of the current stream content, or {{empty}} if the content is not being delivered via IP. + + + + + + + + TCP or UDP port number of the destination of the current stream content, or 0 if the content is not being delivered via IP or if not applicable. + + + + + + + + + + RFC 3986 URI that indicates the current source (possibly including Multicast group and port, if relevant) of the stream content, or {{empty}} if the source is not known or cannot be represented as a URI. + For example, for a WAN-delivered stream this might be a content provider's URL, or for a LAN-delivered stream it might be an UPnP AV URN. + If specified, the URI MUST be consistent with the other source-related parameters. + + + + + + + + + + + Parameters related to an outbound IP stream. + + + + + + + + + + The status of this Outbound stream. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Unique human-readable name associated with this outbound IP instance. + + + + + + + + + + AV multiplex type currently used for the destination content, or an empty string if the content is not being demultiplexed. + + + + + + + + + + RFC 3986 URI that indicates the current destination (possibly including Multicast group and port, if relevant) of the stream content, or an empty string if the destination is not known or cannot be represented as a URI. + For example, this might be an UPnP AV URN. + + + + + + + + + + + Parameters used to force connection to a dedicated IP stream for test purposes. + + + + RFC 3986 URI that describes the service to connect to in the form: + * <trsp>://<addr>:<port>?StrCtrl=<strctrl>?StrTrspCtrl=<trspctrl>?MuxType=<muxtype> + where: + * '''<addr>''' is the IP address of the service source (for Unicast) or IGMP group (for Multicast). + * '''<port>''' is the associated TCP/UDP port. If not specified, the STB is assumed to know and use an appropriate default port. + * '''<trsp>''' is the streaming transport protocol and MUST be one of the values in {{param|.Capabilities.FrontEnd.IP.StreamingTransportProtocols}}, which SHOULD be converted to lower-case. + * '''<strctrl>''' is the streaming control protocol and MUST be one of the values in {{param|.Capabilities.FrontEnd.IP.StreamingControlProtocols}}. If not specified, no streaming control protocol is to be used. + * '''<trspctrl>''' is the streaming transport control protocol and MUST be one of the values in {{param|.Capabilities.FrontEnd.IP.StreamingTransportControlProtocols}}. If not specified, no streaming transport control protocol is to be used. + * '''<muxtype>''' is the multiplex type and MUST be one of the values in {{param|.Capabilities.FrontEnd.IP.MultiplexTypes}}. This tells the STB which multiplex type to expect. If not specified, the STB is assumed to know, or to be able to determine, the multiplex type. + Note that download protocols are not supported by the above syntax. However, the specified syntax is just a baseline, and STBs MAY support an extended syntax. + Example of Multicast MPEG2-TS over RTP with no transport control: + * rtp://224.112.15.18:3257?StrCtrl=IGMP?MuxType=MPEG2-TS + Example of Multicast MPEG2-TS over RTP with AL-FEC transport control: + * rtp://224.112.15.18:3257?StrCtrl=IGMP?StrTrspCtrl=AL-FEC?MuxType=MPEG2-TS + Example of Unicast MPEG2-TS over UDP with RTSP transport control: + * udp://174.146.35.12:3257?StrCtrl=RTSP?MuxType=MPEG2-TS + Example of Unicast raw AV over RTP with RTCP control and RTSP transport control: + * rtp://174.146.35.12:3257?StrCtrl=RTSP?StrTrspCtrl=RTCP?MuxType=None + If a {{object|.ServiceMonitoring.MainStream}} instance with ''ServiceType'' = ''IP'' or ''IPTV'' (or ''VoD'' if the URI accesses a VoD service) is currently enabled, the STB MUST ensure that performance data for this service is collected in that instance. + The value is not saved in device state. The value when read is not specified and need not be the value that was most recently written. + + + + + + + + + + + Parameters used to describe the force monitoring operation. + When running in the force monitoring mode, the STB MUST automatically connect to a test URI defined by the {{param|URI}} parameter whenever it detects that the IP tuner is not not receiving any data from the WAN. + When running in normal mode, the STB does not perform any action when it does not receive any data from the IP tuner coming from the WAN. + The force monitor mode allows to maintain an active stream coming from the network so as to keep collecting statistics. + + + + When set to {{true}}, forces the operation mode in ForceMonitor mode + When set to {{false}}, forces operation mode in Normal mode. + + + + + + + + Indicates the status of the statistic mode of operation. {{enum}} + + + + + + + + + + + Describes the service to connect to for force monitoring purposes with the same syntax as {{param|#.ServiceConnect.URI}}. + If a {{object|.ServiceMonitoring.MainStream}} instance with ''ServiceType'' = ''TEST'' or ''IP-All'' is currently enabled, the STB MUST ensure that performance data for this service is collected in that instance. + The value when read is not specified and need not be the value that was most recently written. + + + + + + + + + + + PVR details. This is a read-only object that exists only to reference PVR storage objects. + + + + Number of {{object|Storage}} instances. + + + + + + + + + PVR storage table. There MUST be an instance for each storage object that can be accessed by the PVR. Entries MAY be dynamically created and deleted as storage devices become available and unavailable. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Unique human-readable name associated with this storage instance. + + + + + + + + + + References the corresponding ''StorageService'' {{bibref|TR-140}} instance, or an object contained within such an instance, e.g. a ''PhysicalMedium'', ''LogicalVolume'' or ''Folder'' instance. + The value is the full hierarchical name of the corresponding object. Example: ''Device.Services.StorageService.1'' + + + + + + + + + + + Audio decoder instance table. It contains data representing the current status of the Audio decoder. + + + + + + + + + + Enables or disables this audio decoder. + + + + + + + + The status of this audio decoder. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Human-readable name associated with this audio decoder. + + + + + + + + + + Audio standard currently being processed by this audio decoder, or an empty string if no audio standard is currently being processed. + + + + + + + + + + + Video decoder instance table. It contains data representing the current status of the video decoder. + + + + + + + + + + Enables or disables this video decoder. + + + + + + + + The status of this video decoder. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Human-readable name associated with this video decoder. + + + + + + + + + + MPEG2 Part 2 profile and level object instance, or {{empty}} if MPEG2 Part 2 is not used. For example: + ''.Capabilities.VideoDecoder.MPEG2Part2.ProfileLevel.2'' + + + + + + + + + + + MPEG4 Part 2 profile and level object instance, or {{empty}} if MPEG4 Part 2 is not used). For example: + ''.Capabilities.VideoDecoder.MPEG4Part2.ProfileLevel.2'' + + + + + + + + + + + MPEG4 Part 10 profile and level object instance, or {{empty}} if MPEG4 Part 10 is not used. For example: + ''.Capabilities.VideoDecoder.MPEG4Part10.ProfileLevel.2'' + + + + + + + + + + + SMPTE-VC-1 profile and level object instance, or {{empty}} if SMPTE-VC-1 is not used. For example: + ''.Capabilities.VideoDecoder.SMPTEVC1.ProfileLevel.2'' + + + + + + + + + + + Indicates the native aspect ratio of the content available at this decoder. + + + + + + + + + + + + Audio output instance table. + + + + + + + + + + Enables or disables this audio output. + + + + + + + + The status of this audio output. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + i.e. Enabled and Muted + + + + + + + + + {{datatype|expand}} + + + + + + + + Human-readable name associated with this audio output. + + + + + + + + + + Currently active audio output format, or {{empty}} if no audio output format is currently active. + Note that this parameter refers to output formats and not to physical connectors. + + + + + + + + + + The audio level on this audio output in {{units}} (0 is quietest and 100 is loudest). This setting is independent of the mute status. + For some audio formats, the audio level is not meaningful, in which case this parameter SHOULD have a fixed value of 0. + + + + + + + + + + + When set to {{true}}, cancels this audio output's mute status. Setting it to {{false}} has no effect. The value is not saved in device state and is always {{false}} when read. + + + + + + + + SCART object instances associated with this audio output, or {{empty}} if not associated with any SCART object instances. For example: + * ''.Components.SCART.2'' + * ''.Components.SCART.2,.Components.SCART.3'' + + + + + + + + + + + + + + S/PDIF output instance table configuration. This object, if present, is connected to the audio ouput instance currently delivering S/PDIF audio format as described in {{bibref|SPDIF}}. + + + + + + + + + + Enables or disables the S/PDIF output. + + + + + + + + The status of this S/PDIF output. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Human-readable name associated with this output. + + + + + + + + + + When set to {{true}}, forces the audio format over S/PDIF to be in PCM mode. + When set to {{false}}, let the compressed audio format be carried over S/PDIF (passthrough). + + + + + + + + When in Passthrough mode, the STB sends the audio stream over S/PDIF without decoding it. + + + + + + + + Audio delay value, in {{units}}, currently being applied to the audio stream on the S/PDIF interface. The audio delay is entered by the user via his local UI, when necessary for correcting the lipsync. + + + + + + + + + + + Video output instance table. + + + + + + + + + + Enables or disables this video output. + + + + + + + + The status of this video output. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Enables or disables the color bar display. + When set to {{true}}, the CPE MUST suspend the running service currently using the video output (e.g. IPTV broadcast reception) and MUST display the color bar. + When set to {{false}}, the CPE MUST resume the previousely running service. + This parameter MUST be always initialized with the value {{false}} on STB boot. + + + + + + + + Human-readable name associated with this Video output. + + + + + + + + + + The type of analog video standard currently in use or {{empty}} if no analog video standard is currently in use. + Note that this parameter applies only to the CVBS output format. + + + + + + + + + + Currently active video output format, or {{empty}} if no video output format is currently active. + Note that this parameter refers to output formats and not to physical connectors. + + + + + + + + + + Indicates the aspect ratio behaviour for display on monitors with an aspect ratio different from that of the content, which is specified in {{param|.Components.VideoDecoder.{i}.ContentAspectRatio}}. + + + + + + + DEPRECATED and replaced by following values + + + + + + + + DEPRECATED and replaced by following values + + + + + + + + + + Display format being connected to this VideoOutput. + This parameter is used by the STB to determine whether an aspect ratio conversion is required. + + + + + + + + + + Indicates whether Macrovision analog protection is being used on this video output. + The Macrovision version supported is indicated in {{param|.Capabilities.VideoOutput.Macrovision}}. + + + + + + + + Indicates whether HDCP is being used on this video output. + The HDCP version supported is indicated in {{param|.Capabilities.VideoOutput.HDCP}}. + + + + + + + + SCART object instances associated with this video output, or {{empty}} if not associated with any SCART object instances. For example: + * ''.Components.SCART.2'' + * ''.Components.SCART.2,.Components.SCART.3'' + + + + + + + + + + + + + + SCART configuration. This object allows configuration of the STB's AV switching. + + + + + + + + + + Enables or disables this SCART connector. + + + + + + + + The status of this SCART connector. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Human-readable name associated with this connector. + + + + + + + + + + Enables or disables the Presence control signal (pin 8 of the SCART connector), an output from the STB to control the display device connected to the SCART. + When enabled (set to {{true}}) the STB MUST drive pin 8 to the appropriate level to indicate the output video format (SD or HD) to the connected device. + When disabled (set to {{false}}) the STB MUST NOT drive pin 8. + + + + + + + + + HDMI instance table. This object allows configuration of the STB’s HDMI output. + + + + + + + + + + Enables or disables the HDMI output. + + + + + + + + The status of HDMI output. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Human-readable name associated with this output. + + + + + + + + + + The resolution mode of the HDMI output. + In {{enum|Auto}} mode, the resolution is automatically set at the best format via HDMI protocols. + In {{enum|Manual}} mode, the resolution to be applied to the HDMI output is given by the ResolutionValue parameter. + + + + + + + + + + + When {{param|ResolutionMode}} is set to {{enum|Manual|ResolutionMode}} mode, a write action configures the resolution to be applied to the HDMI output, + When {{param|ResolutionMode}} is set to {{enum|Auto|ResolutionMode}}, a write action as no effect. + A read action provides the current resolution of the HDMI output. + + + + + + + + + + + HDMI connected display device configuration. This object provides parameters from the HDMI connected device if any. + + + + The status of the connected HDMI Display device. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + Human-readable name associated with this display device. + + + + + + + + + + Enhanced Extended Display Information Data (E-EDID) retrieved from the connected HDMI device. + + + + + + + + + + Each entry is a supported resolution of the connected HDMI device and MUST be one element of {{param|.Capabilities.HDMI.SupportedResolutions}}. + + + + + + + + + Preferred connected HDMI device resolution format. + + + + + + + + + + Video latency, in {{units}}, being applied in the connected HDMI device. This parameter is extracted from the E-EDID and can be used to compensate the video latency to preserve lipsync. + + + + + + + + + + When set to {{true}}, indicates the connected HDMI device is supporting HDMI-CEC features. + When set to {{false}}, indicates the connected HDMI device does not support HDMI CEC. + + + + + + + + When set to {{true}}, indicates the connected display device supports auto lip synchronization. This mode consists in communicating over HDMI, the delay to be applied by the STB to the audio in order to preserve the lip sync. + + + + + + + + When set to {{true}}, indicates the connected display device supports the 3D video formats mandated by {{bibref|HDMI}}. + + + + + + + + + This object describes the characteristics of the Conditional Access, if any. + + + + + + + + + + Enables or disables this CA system. + + + + + + + + The status of this CA system. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Indicates a unique identifier (e.g. the commercial name: ''La 7 piu'', ''Mediaset Premium'') for this CA system. + + + + + + + + + + + Path name of the smart card reader object instance containing the smart card (if any) associated with this CA system. + The value MUST be {{empty}} (if not associated with a smart card) or else be the full path name of the corresponding smart card reader object. For example: + ''Device.SmartCardReader.1'' + + + + + + + + + + + This object describes the characteristics of the Digital Rights Management, if any. + + + + + + + + + + Enables or disables this DRM system. + + + + + + + + The status of this DRM system. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Indicates a unique identifier (e.g. the commercial name: ''La 7 piu'', ''Mediaset Premium'') for this DRM system. + + + + + + + + + + + Path name of the smart card reader object instance containing the smart card (if any) associated with this DRM system. + The value MUST be {{empty}} (if not associated with a smart card) or else be the full path name of the corresponding smart card reader object. For example: + ''Device.SmartCardReader.1'' + + + + + + + + + + + AV Streams object. If more than one AV stream can be active at a time, it may contain several {{object|AVStream}} instances. + + + + Number of AV streams currently active (i.e. with ''Status'' != ''Disabled'', which means audio or AV data are being processed). + + + + + + + + Number of {{object|AVStream}} instances. + + + + + + + + + Details of each AVStream. AV streams are created statically. Each AV stream corresponds to a valid ''{FrontEnd, AudioDecoder, VideoDecoder}'' instance combination (although if the PVR is active for this stream, only ''{FrontEnd}'' or ''{AudioDecoder, VideoDecoder}'' will be in use). + + + + + + + + + + The status of this AV stream. {{enum}} + An AV stream is disabled if any of the referenced objects are disabled. + If an AV stream is disabled then the values of other AV stream parameters are not significant. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + Unspecified error + + + + + + + + {{datatype|expand}} + + + + + + + + Human-readable name associated with this stream, e.g. read from the DVB service information metadata. + + + + + + + + + + Indicates whether this stream is using the PVR and, if so, the PVR state. {{enum}} + PVR record state can be inferred from whether the stream has an input FrontEnd: if so and {{param}} is not {{enum|Disabled}}, the PVR is recording. + + + + + + PVR not used by this stream + + + + + PVR playback not active + + + + + PVR playback active (and playing) + + + + + PVR playback active (paused) + + + + + PVR playback active (fast forward) + + + + + PVR playback active (rewind) + + + + + + + + Input FrontEnd object instance associated with this AV stream, or {{empty}} if not associated with a FrontEnd object). For example: + ''.Components.FrontEnd.2'' + + + + + + + + + + + Inbound IP stream object instance associated with the FrontEnd for this AV stream, or {{empty}} if the inbound stream is not delivered over IP. For example: + ''.Components.FrontEnd.2.IP.Inbound.3'' + + + + + + + + + + + Outbound IP stream object instance associated with the output FrontEnd for this AV stream (which is always the IP FrontEnd), or {{empty}} if the outbound stream is not delivered over IP. For example: + ''.Components.FrontEnd.2.IP.Outbound.3'' + + + + + + + + + + + Audio Decoder object instance associated with this AV stream, or {{empty}} if not associated with an Audio Decoder object. For example: + ''.Components.AudioDecoder.2'' + + + + + + + + + + + Video Decoder object instance associated with this AV stream, or {{empty}} if not associated with a Video Decoder object. For example: + ''.Components.VideoDecoder.2'' + + + + + + + + + + + CA system object instance associated with this AV stream, or {{empty}} if not associated with a CA object. For example: + ''.Components.CA.2'' + + + + + + + + + + + DRM system object instance associated with this AV stream, or {{empty}} if not associated with a DRM object. For example: + ''.Components.DRM.2'' + + + + + + + + + + + + AV Players object. If more than one AV player can be active at a time, it may contain several {{object|AVPlayer}} instances. + AV players are created statically. Each AV player corresponds to a combination of several AV streams (one main screen video, several PIP, one audio) being connected to an AV presentation device (such as a TV set). + There is no guarantee that the STB has the resources to enable all of its AV players at the same time. + + + + Number of AV players currently active (i.e. with ''Status'' != ''Disabled'', which means the {{object|AVPlayer}} is processing an audio or AV stream). + + + + + + + + Number of {{object|AVPlayer}} instances. + + + + + + + + Human-readable string, as specified in {{bibref|RFC3066}}, describing the audio language that SHOULD be used by the STB when receiving a multi-language audio multiplex. + {{empty}} indicates that there is no preferred audio language. + + + + + + + + + + Human-readable string, as specified in {{bibref|RFC3066}}, describing the subtitling language that SHOULD be used by the STB when receiving multi-language subtitling. + A value of ''None'' indicates that no subtitling is required. + {{empty}} indicates that there is no preferred subtitling language. + + + + + + + + + + Aspect ratio behaviour preference for display on monitor. + If non-empty, the string MUST be one of the .Components.VideoOutput.{i}. AspectRatioBehaviour values. + + + + + + + + + + When set to {{true}}, the master PIN code for the STB is set to 0000. Setting it to {{false}} has no effect. The value is not saved in device state and is always {{false}} when read. It is not recommended that this be set to true without the user's permission. No data on the device such as PVR recordings are to be cleared as a result of resetting the PIN code. + + + + + + + + + List of AV Player objects. Each item is one particular AV player being processed by the STB. + + + + + + + + + + Enables or disables this AV player. + + + + + + + + The status of this AV player. {{enum}} + If an AV player is disabled then the values of other AV player parameters are not significant. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Human-readable name associated with this AV player. + + + + + + + + + + Human-readable string, as specified in {{bibref|RFC3066}}, describing the audio language being currently processed by the AV player. + + + + + + + + + + The status of subtitling for this AV player. {{enum}} + Subtitles are assumed to be shown only on the main screen. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + Human-readable string, as specified in {{bibref|RFC3066}}, describing the subtitling language being currently processed by the AV player. + Subtitles are assumed to be shown only on the main screen. + + + + + + + + + + Audio output object instances associated with this AV player, or {{empty}} if not associated with any audio output object instances. For example: + ''.Components.AudioOutput.2'' + + + + + + + + + + + + + Video output object instances associated with this AV player, or {{empty}} if not associated with any video output object instances. For example: + ''.Components.VideoOutput.2'' + + + + + + + + + + + + + AV stream object instance associated with this AV player that is being sent to the main screen, or {{empty}} if not associated with an AV stream object. For example: + ''.AVStreams.AVStream.2'' + + + + + + + + + + + AV stream object instances associated with this AV player that are being displayed as Picture In Picture (PIP), or {{empty}} if not associated with any PIP AV stream objects. For example: + * ''.AVStreams.AVStream.2'' + * ''.AVStreams.AVStream.2,.AVStreams.AVStream.3'' + + + + + + + + + + + + + + Records events and collects QoS / QoE related statistics for Main AV streams. + These statistics are broken down into categories, e.g. de-jittering and RTP, and for each category there are two types of statistics: + * '''Total''' statistics, which count the number of occurrences of something. + * '''Sample''' statistics, which are measured over a sample interval, and are made available to the ACS as a list of the most recent n samples. + Total statistics are always collected (collection cannot be disabled, but the values can be reset). + For Sample statistics, an STB uses a single sample interval and number of samples (n) for all {{object|MainStream}} instances. The sample interval can be aligned with absolute time. + When Sample statistics collection is enabled, statistics collection MUST proceed regardless of whether there are any active Main AV streams. For example, even when the STB is not receiving any data, sample intervals will continue to be timed as normal. + Refer to {{bibref|TR-135|I.3}} for non-normative explanation of the operation of the ''ServiceMonitoring'' object. + + + + Enables or disables collection of Sample statistics. + When collection of Sample statistics is enabled, any stored samples are discarded, and the first sample interval begins immediately. + + + + + + + + Indicates availability of Sample statistics. {{enum}} + The {{enum|Trigger}} value is only used for triggering the ACS to fetch the collected data and can only be used when {{param|FetchSamples}} is in the range [1:{{param|ReportSamples}}]. + The transition from {{enum|Enabled}} -> {{enum|Trigger}} -> {{enum|Enabled}} MUST be instantaneous and so will result in only a single value change for notification purposes. + + + + + + Collection is disabled + + + + + Collection is enabled + + + + + Collection is enabled and the ACS should now fetch the collected data + + + + + + + + The sample interval in {{units}}. Each statistic is measured over this sample interval. + The STB MAY reject a request to set {{param}} to less than {{param|.Capabilities.ServiceMonitoring.MinSampleInterval}}. + Sample intervals MUST begin every {{param}} seconds, with no delay between samples. + If {{param}} is changed while collection of Sample statistics is enabled, any stored samples are discarded, and the first sample interval begins immediately. + For example, if {{param|ReportSamples}} is 24 and {{param}} is 3600 (an hour), the STB can store up to a day's worth of samples for each statistic. + + + + + + + + + + + The number of samples that the STB can store and report for each statistic. + The STB MUST permit {{param}} to be set to any value in the range from 1 to {{param|.Capabilities.ServiceMonitoring.MaxReportSamples}}. + If {{param}} is changed while collection of Sample statistics is enabled, the STB will truncate or extend its statistics buffers as appropriate, but statistics collection MUST NOT otherwise be affected. + For example, if {{param}} is 24 and {{param|SampleInterval}} is 3600 (an hour), the STB can store up to a day's worth of samples for each statistic. + + + + + + + + + + The number of event measurements of each applicable statistic that the STB is able to store for each sample interval. + The STB MUST permit {{param}} to be set to any value in the range from 1 to {{param|.Capabilities.ServiceMonitoring.MaxEventsPerSampleInterval}}. + If {{param}} is changed while collection of Sample statistic is enabled, the STB will truncate or extend its event measurement buffers as appropriate, but event measurement collection MUST NOT otherwise be affected. + For example, if {{param|ReportSamples}} is 24 and {{param|SampleInterval}} is 3600 (an hour), and {{param}} is 60, the STB can store up 60 event measurements per hour, or in total 1440 event measurements per day. + + + + + + + + + + If collection of Sample statistics is enabled and {{param}} is in the range [1:{{param|ReportSamples}}] then {{param|SampleState}} MUST transition from {{enum|Enabled|SampleState}} -> {{enum|Trigger|SampleState}} -> {{enum|Enabled|SampleState}} on completion of every {{param}} sample intervals. Otherwise, this transition MUST NOT occur. + For example, if {{param|ReportSamples}} is 25 and {{param}} is 24, then the STB will store 25 values for each statistic and the above {{param|SampleState}} transition will occur every 24 sample intervals, which means that the ACS could delay for up to two sample intervals before reading the stored values and would still not miss any samples (see also {{param|ForceSample}}). + + + + + + + + An absolute time reference in UTC to determine when sample intervals will complete. Each sample interval MUST complete at this reference time plus or minus an integer multiple of {{param|SampleInterval}}. + This time reference also determines when the {{param|SampleState}} {{enum|Enabled|SampleState}} -> {{enum|Trigger|SampleState}} -> {{enum|Enabled|SampleState}} transitions that are controlled by {{param|FetchSamples}} will occur. If collection of Sample statistics is enabled and {{param|FetchSamples}} is in the range [1:{{param|ReportSamples}}] then each such {{param|SampleState}} transition MUST occur at this reference time plus or minus an integer multiple of {{param|FetchSamples}} * {{param|SampleInterval}} (the fetch interval). + {{param}} is used only to set the "phase" of the sample and fetch intervals. The actual value of {{param}} can be arbitrarily far into the past or future. + If {{param}} is changed while collection of Sample statistics is enabled, any stored samples are discarded, and the first sample interval begins immediately. + The Unknown Time value defined in {{bibref|TR-106a1}} indicates that no particular time reference is specified. That is, the STB MAY locally choose the time reference, and is required only to adhere to the specified sample and fetch intervals. + If absolute time is not available to the STB, its sample and fetch interval behavior MUST be the same as if the {{param}} parameter was set to the Unknown Time value. + For example, if {{param|SampleInterval}} is 3600 (an hour) and if {{param}} is set to UTC midnight on some day (in the past, present, or future) then sample intervals will complete on each UTC hour (00:00, 01:00, 02:00 etc). + If, in addition, {{param|FetchSamples}} is 24, then the fetch interval is 86400 (a day) and {{param|SampleState}} {{enum|Enabled|SampleState}} -> {{enum|Trigger|SampleState}} -> {{enum|Enabled|SampleState}} transitions will occur every day at UTC midnight. + Note that, if {{param}} is set to a time other than the Unknown Time, the first sample interval (which has to begin immediately) will almost certainly be shorter than {{param|SampleInterval}}). This is why {{param}} is defined in terms of when sample intervals complete rather than start. + + + + + + + + When set to {{true}}, forces statistics for the current sample to be calculated and updated in the data model. Setting it to {{false}} has no effect. The value is not saved in device state and is always {{false}} when read. + If this is the first time that {{param}} has been set to true during the current sample interval, this MUST cause a new value to be added to each of the Sample statistics comma-separated list parameters, and the {{param|ReportEndTime}} and all ''SampleSeconds'' parameters MUST be updated accordingly. + If this is not the first time that {{param}} has been set to {{true}} during the current sample interval, then the new values that were added as described in the previous paragraph, and the {{param|ReportEndTime}} and all ''SampleSeconds'' parameters, MUST be updated accordingly. + Note that {{param}} just provides a ''sneak preview'' of the current sample. It does not create a new sample and it does not interfere with the sample interval schedule. + At the end of each sample interval, if {{param}} was set to {{true}} during the sample interval then the new values that were added as described above, and the {{param|ReportEndTime}} and all ''SampleSeconds'' parameters, will be updated accordingly. In other words, the partial sample data that was created when {{param}} was set to {{true}} will be updated one last time at the end of the sample interval. + + + + + + + + The absolute time at which the sample interval for the first stored sample (for each statistic) started. + + + + + + + + The absolute time at which the sample interval for the last stored sample (for each statistic) ended. + If {{param|ForceSample}} has been used to force statistics for the current sample to be calculated and updated in the data model, then {{param}} MUST be updated to reflect the actual time over which stored data was collected. + + + + + + + + Number of {{object|MainStream}} instances. + + + + + + + + Enables or disables the collection of the events for all main streams. + When the collection of events is enabled, any previously collected events are discarded and the collection of new events begins immediately. + + + + + + + + + List of Main AV stream objects. Each instance is associated with a specified service type and will collect statistics only for the main stream that matches that service type. + Note that this means that streams that do not match an instance's service type MUST NOT contribute to the instance's Total and Sample statistics. + It is up to the STB to determine which AV stream should be regarded as the Main AV stream for a given service type at any given time. For example, if two active streams are associated with the same service type, the STB might prefer streams that are associated with an AV player, or if more than one stream is associated with an AV player, the STB might prefer a player that is outputting a DVI stream to a player that is outputting an RF stream. + Note that some parameters, e.g. {{param|.Components.FrontEnd.{i}.IP.ServiceConnect.URI}}, include requirements that restrict the STB's freedom to determine which AV stream should be regarded as the Main AV stream for a given service. + + + + + + + + + + Enables or disables collection of Total and Sample statistics and events for this object instance. + The collection of events requires the value of this parameter to be {{true}} and the value of the {{param|##.ServiceMonitoring.EventCollectionEnable}} to be {{true}}. + + + + + + + + Total and Sample statistics and event collection status for this object instance. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + Time based UUID {{bibref|RFC4122|Section 4.2}} that is the identifier for the associated {{param|AVStream}} parameter when available to the device. + + + + + + + + {{datatype|expand}} + + + + + + + + Service type associated with this main stream instance, or {{empty}} if this instance is disabled. + The STB MUST reject a request that would result in a given AV stream contributing to more than one {{object|.ServiceMonitoring.MainStream}} instance, e.g. it would reject a request to enable simultaneous collection of both IPTV and IP statistics, or to collect IPTV statistics on more than one instance. + + + + + + + + + + Main AV stream object instance currently associated with this ''ServiceMonitoring'' main stream instance. For example: + ''.AVStreams.AVStream.2'' + Note that, during the period of time over which Sample statistics are stored, this ''ServiceMonitoring'' main stream instance might be associated with many different ''AVStream'' instances. This parameter just provides information about which ''AVStream'' is currently being monitored. + + + + + + + + + + + Minimum number of consecutive received packets after the end of an RTP Loss Event. A Loss Event is defined as as a sequence of lost packets, possibly including islands of received packets. Each island consists of up to + ({{param}} - 1) received packets (a sequence of {{param}} received packets terminates the Loss Event, and so is not an island). + + + + + + + + The minimum distance required between error events before an RTP Loss Event is considered severe. Used in the calculation of ''SevereLossIndexCount'' and ''SevereLossIndexCountBeforeEC''. + + + + + + + + The minimum value for the count of lost packets per RTP Loss Event before the count of lost packets is considered severe. Used in the calculation of ''SevereLossLengthCount'' and ''SevereLossLengthCountBeforeEC''. + + + + + + + + Time period, in {{units}}, between a user channel change request (defined as the instant of transmission of the relevant control protocol message (IGMP JOIN or RTSP SETUP) or a tuner command in case of DTT), and the display of the first I frame for the current AVStream, above which a channel change is considered as failed. + + + + + + + + + + {{list}} Definition of the histogram intervals for counting loss events according to their size (in {{units}}). Each value indicates the maximum value of the interval. For example, "1,2,4,8," defines the five intervals: 1 packet lost, 2 packets, 3 or 4 packets, 5 to 8 packets and 9 or more packets. (No value after the last comma means no upper bound.) + If this parameter is set to an empty string, no PacketsLostByEvent stats will be collected. + + + + + + + + + + + + {{list}} Definition of the histogram intervals for counting loss events according to their delay (in {{units}}) after the preceding loss event. Each value indicates the maximum value of the interval. For example, "10,20,50,100,1000,60000,3600000," defines the intervals up to 10 ms, to 20 ms, to 50 ms, to 100 ms, to 1 s, to 1 mn, to 1 h and more than 1 h. (No value after the last comma means no upper bound.) + If this parameter is set to an empty string, no DelayBetweenLossEvents stats will be collected. + + + + + + + + + + + + {{list}} Definition of the histogram intervals for counting severe loss events according to their duration (in {{units}}). Each value indicates the maximum value of the interval. For example, "50,100,500,1000,2000,5000,10000,120000," defines the intervals up to 50 ms, to 100 ms, to 500 ms, to 1 s, to 2 s etc. (No value after the last comma means no upper bound.) + If this parameter is set to an empty string, no DurationSevereLossEvents stats will be collected. + + + + + + + + + + + + + Total statistics since this ''ServiceMonitoring'' main stream instance was last enabled or Total statistics were last reset. + + + + The number of seconds during which data was collected for this AV stream since last reset + Each statistics category (Dejittering, RTP etc) has its own {{param}} parameter, which indicates the number of seconds during which data was collected for that statistics category since last reset. + Individual {{param}} values can be less than the {{param|ResetTime}}, for several reasons, including the STB was not receiving any data (Standby mode without force monitoring). + + + + + + + + When set to {{true}}, resets Total statistics for this ''ServiceMonitoring'' main stream instance. Setting it to {{false}} has no effect. The value is not saved in device state and is always {{false}} when read. + + + + + + + + Number of seconds since the Total statistics were last enabled or reset for this ''ServiceMonitoring'' main stream instance. + + + + + + + + + Total de-jittering statistics for this ''ServiceMonitoring'' main stream instance. + + + + The number of seconds during which data was collected for this AV stream since last reset + Each statistics category (Dejittering, RTP etc) has its own {{param}} parameter, which indicates the number of seconds during which data was collected for that statistics category since last reset. + Individual {{param}} values can be less than {{param|.ServiceMonitoring.MainStream.{i}.Total.ResetTime}}, for several reasons, including: + * Any of the reasons for which the {{param}} values might be less than {{param|.ServiceMonitoring.MainStream.{i}.Total.ResetTime}}. + * De-jittering data collection is not appropriate or possible for this AV stream. + + + + + + + + Total time, in {{units}}, for which the playout was stopped due to buffer issues (empty or too low level) for this AV stream. + + + + + + + + + + Total number of times the receive jitter buffer has overrun for this AV stream. + + + + + + + + Total number of times the receive jitter buffer has underrun for this AV stream. + + + + + + + + + Total TCP statistics for this ServiceMonitoring main stream instance. + + + + The number of seconds during which data was collected for this AV stream since last reset + Each statistics category (Dejittering, RTP etc) has its own {{param}} parameter, which indicates the number of seconds during which data was collected for that statistics category since last reset. + Individual {{param}} values can be less than {{param|.ServiceMonitoring.MainStream.{i}.Total.ResetTime}}, for several reasons, including: + * Any of the reasons for which the {{param}} values might be less than {{param|.ServiceMonitoring.MainStream.{i}.Total.ResetTime}}. + * TCP data collection is not appropriate or possible for this AV stream. + + + + + + + + Total number of TCP packets correctly received for this AV stream. + + + + + + + + Total number of TCP packets being retransmitted for this AV stream. + + + + + + + + Total number of bytes received for this AV stream. + + + + + + + + + Total RTP statistics for this ''ServiceMonitoring'' main stream instance. + If no EC is applied the ''BeforeEC'' statistics provide the same values as the corresponding statistics, e.g. when there is no EC, {{param|PacketsReceivedBeforeEC}} = {{param|PacketsReceived}}. + + + + The number of seconds during which data was collected for this AV stream since last reset + Each statistics category (Dejittering, RTP etc) has its own {{param}} parameter, which indicates the number of seconds during which data was collected for that statistics category since last reset. + Individual {{param}} values can be less than {{param|.ServiceMonitoring.MainStream.{i}.Total.ResetTime}}, for several reasons, including: + * Any of the reasons for which the {{param}} values might be less than {{param|.ServiceMonitoring.MainStream.{i}.Total.ResetTime}}. + * RTP data collection is not appropriate or possible for this AV stream. + + + + + + + + Total number of RTP packets expected for this AV stream as described in {{bibref|RFC3550|A.3}}. + + + + + + + + Total number of packets discarded at the RTP layer for this AV stream because they were too late for playout, regardless of their being out of sequence or not. + These statistics are collected when no EC is applied or after any EC if available. + + + + + + + + Total number of packets out of sequence at the RTP level for this AV stream, regardless of their being too late for playout or not. + These statistics are collected when no EC is applied or after any EC if available. + + + + + + + + Total number of RTP packets received for this AV stream. + These statistics are collected when no EC is applied or after any EC if available. + + + + + + + + Total number of RTP packets received for this AV stream. + These statistics are collected before any EC, if available, is applied. + + + + + + + + Total number of RTP packets lost for this stream. + These statistics are collected when no EC is applied or after any EC if available. + + + + + + + + Total number of RTP packets lost for this stream. + These statistics are collected before any EC, if available, is applied. + + + + + + + + {{list}} Total number of loss events counted by their length in packets (1 packet, 2 packets, etc.) according to the intervals defined by {{param|##.PacketsLostByEventHistogramIntervals}}. + These statistics are collected when no EC is applied or after any EC if available. + + + + + + + + + {{list}} Total number of loss events counted by their length in packets (1 packet, 2 packets, etc.) according to the intervals defined by {{param|##.PacketsLostByEventHistogramIntervals}}. + These statistics are collected before any EC, if available, is applied. + + + + + + + + + Total number of Loss Events for this stream. + These statistics are collected when no EC is applied or after any EC if available. + + + + + + + + Total number of Loss Events for this stream. + These statistics are collected before any EC, if available, is applied. + + + + + + + + {{list}} Total number of times that the delay (in milliseconds) between two consecutive loss events belongs to each time interval defined by {{param|##.DelayBetweenLossEventsHistogramIntervals}}. + These statistics are collected when no EC is applied or after any EC if available. + + + + + + + + + {{list}} Total number of times that the delay (in milliseconds) between two consecutive loss events belongs to each time interval defined by {{param|##.DelayBetweenLossEventsHistogramIntervals}}. + These statistics are collected before any EC, if available, is applied. + + + + + + + + + Total number of Loss Events closer than ''SevereLossMinDistance''. + These statistics are collected when no EC is applied or after any EC if available. + + + + + + + + Total number of Loss Events closer than ''SevereLossMinDistance''. + These statistics are collected before any EC, if available, is applied. + + + + + + + + Total number of Loss Events longer than ''SevereLossMinLength''. + These statistics are collected when no EC is applied or after any EC if available. + + + + + + + + Total number of Loss Events longer than ''SevereLossMinLength''. + These statistics are collected before any EC, if available, is applied. + + + + + + + + {{list}} Total number of severe loss events counted by their duration (in milliseconds) according to the intervals defined by {{param|##.DurationSevereLossEventsHistogramIntervals}}. + These statistics are collected when no EC is applied or after any EC if available. + + + + + + + + + {{list}} Total number of severe loss events counted by their duration (in milliseconds) according to the intervals defined by {{param|##.DurationSevereLossEventsHistogramIntervals}}. + These statistics are collected before any EC, if available, is applied. + + + + + + + + + Total number of RTP/AVPF retransmission timeouts ({{bibref|RFC4585}}, {{bibref|RFC4588}}) + If RTP/AVPF is not used this parameter does not increment + + + + + + + + + Total MPEG2-TS statistics for this ''ServiceMonitoring'' main stream instance. + + + + The number of seconds during which data was collected for this AV stream since last reset + Each statistics category (Dejittering, RTP etc) has its own {{param}} parameter, which indicates the number of seconds during which data was collected for that statistics category since last reset. + Individual {{param}} values can be less than {{param|.ServiceMonitoring.MainStream.{i}.Total.ResetTime}}, for several reasons, including: + * Any of the reasons for which the {{param}} values might be less than {{param|.ServiceMonitoring.MainStream.{i}.Total.ResetTime}}. + * MPEG2 TS data collection is not appropriate or possible for this AV stream. + + + + + + + + Total number of MPEG2-TS packets received for this AV stream. + + + + + + + + Total number of MPEG2-TS packets with an invalid transport sync byte received for this AV stream. + Not meaningful when MPEG2-TS is transported over IP. + + + + + + + + Total number of MPEG2-TS Loss of Synchronization Events for this AV stream. + Not meaningful when MPEG2-TS is transported over IP. + + + + + + + + Total number of MPEG2-TS Discontinuity errors that have been captured for this AV stream. This parameter accumulates all of the discontinuities observed for all currently monitored PIDs. + These statistics are collected when no CA decryption scheme is in use or after any CA decryption if in use. + + + + + + + + Total number of MPEG2-TS Discontinuity errors that have been captured for this AV stream. This parameter accumulates all of the discontinuities observed for all currently monitored PIDs. + These statistics are collected before any CA decryption scheme, if used, is applied. + + + + + + + + + Total video decoder application layer statistics for this ''ServiceMonitoring'' main stream instance. + + + + The number of seconds during which data was collected for this AV stream since last reset + Each statistics category (Dejittering, RTP etc) has its own {{param}} parameter, which indicates the number of seconds during which data was collected for that statistics category since last reset. + Individual {{param}} values can be less than {{param|.ServiceMonitoring.MainStream.{i}.Total.ResetTime}}, for several reasons, including: + * Any of the reasons for which the {{param}} values might be less than {{param|.ServiceMonitoring.MainStream.{i}.Total.ResetTime}}. + * Video Decoder data collection is not appropriate or possible for this AV stream. + + + + + + + + The latest frame rate at which the STB played out the video content for this AV stream. Also the reported rate will be rounded off to the nearest integer. + + + + + + + + The number of video frames that were decoded completely (errorless frames) or partially (corrupted frames) for this AV stream. + + + + + + + + The number of video frames that could not be reproduced by the STB for this AV stream. + + + + + + + + The number of video frames that were reproduced by the STB for which some information was missing and loss concealment was applied for this AV stream. + + + + + + + + The number of I frames that were decoded completely (errorless frames) or partially (corrupted frames) for this AV stream. + + + + + + + + The number of I frames that could not be reproduced by the STB for this AV stream. + + + + + + + + The number of I frames that were reproduced by the STB for which some information was missing and loss concealment applied for this AV stream. + + + + + + + + The number of P frames that were decoded completely (errorless frames) or partially (corrupted frames) for this AV stream. + + + + + + + + The number of P frames that could not be reproduced by the STB for this AV stream. + + + + + + + + The number of P frames that were reproduced by the STB for which some information was missing and loss concealment applied for this AV stream. + + + + + + + + The number of B frames that were decoded completely (errorless frames) or partially (corrupted frames) for this AV stream. + + + + + + + + The number of B frames that could not be reproduced by the STB for this AV stream. + + + + + + + + The number of B frames that were reproduced by the STB for which some information was missing and loss concealment applied for this AV stream. + + + + + + + + The number of AV resynchronizations that were performed by the STB for this AV stream. + + + + + + + + + Total audio decoder application layer statistics for this ''ServiceMonitoring'' main stream instance. + + + + The number of seconds during which data was collected for this AV stream since last reset + Each statistics category (Dejittering, RTP etc) has its own {{param}} parameter, which indicates the number of seconds during which data was collected for that statistics category since last reset. + Individual {{param}} values can be less than {{param|.ServiceMonitoring.MainStream.{i}.Total.ResetTime}}, for several reasons, including: + * Any of the reasons for which the {{param}} values might be less than {{param|.ServiceMonitoring.MainStream.{i}.Total.ResetTime}}. + * Audio Decoder data collection is not appropriate or possible for this AV stream. + + + + + + + + The number of audio frames that were decoded completely (errorless frames) or partially (corrupted frames) for this AV stream. + + + + + + + + The number of audio decoding errors detected for this AV stream. + + + + + + + + + Total video response statistics for this ''ServiceMonitoring'' main stream instance. + + + + The number of seconds during which data was collected for this AV stream since last reset + Each statistics category (Dejittering, RTP etc) has its own {{param}} parameter, which indicates the number of seconds during which data was collected for that statistics category since last reset. + Individual {{param}} values can be less than {{param|.ServiceMonitoring.MainStream.{i}.Total.ResetTime}}, for several reasons, including: + * Any of the reasons for which the {{param}} values might be less than {{param|.ServiceMonitoring.MainStream.{i}.Total.ResetTime}}. + * Video response data collection is not appropriate or possible for this AV stream. + + + + + + + + Number of channel change failures. A channel change is considered as failed when the time period between a user channel change request and the display of the first I frame for this AVStream is above {{param|.ServiceMonitoring.MainStream.{i}.ChannelChangeFailureTimeout}}. + + + + + + + + Each entry represents a channel for which a channel change failed. Channels MAY be described as IP address, URL or Service names as appropriate. Only last 10 failures are required to be reported. + + + + + + + + + Minimum time period, in {{units}}, between the instant of transmitting a RTSP PLAY command to start playing stream, and displaying the first I frame of unicast stream. Only measured when started from a non-play state, i.e. either idle or paused. + + + + + + + + + + Maximum time period, in {{units}}, between the instant of transmitting a RTSP PLAY command to start playing stream, and displaying the first I-frame of unicast stream. Only measured when started from a non-play state, i.e. either idle or paused. + + + + + + + + + + Total number of RTSP protocol requests to start a VoD program display. + Only meaningful for VoD. + + + + + + + + Total number of successful VoD attempts. An attempt is considered successful when the first I-frame is displayed by the client. + Only meaningful for VoD. + + + + + + + + Total number of completed VoD requests. An attempt is defined successful if it continues until a RTSP protocol request to end the session is sent by the STB. + Only meaningful for VoD. + + + + + + + + Minimum time period (in {{units}}) between the instant of transmitting an IGMP JOIN command or an RTSP SETUP command, and the display of the first I frame for this AV stream. + + + + + + + + + + Maximum time period (in {{units}}) between the instant of transmitting an IGMP JOIN command or an RTSP SETUP command, and the display of the first I frame for this AV stream. + + + + + + + + + + + Sample statistics collected since collection was last enabled or reset. + Most of the parameters in this object are comma-separated lists of individual statistics values, each of which corresponds to a sample interval. + The statistics values in these comma-separated lists MUST be in time order, with the oldest one first and the most recent one last. + Each comma-separated list can contain up to {{param|##.ReportSamples}} statistics values. When the list is full, each new value causes the oldest one to be discarded. + Some comma-separated lists contain terms that are comma-separated lists themselves and are used to store measurements on an event basis. These sub-lists can contain up to {{param|.Capabilities.ServiceMonitoring.MaxEventsPerSampleInterval}} values. + If no data was collected for a statistic during a sample interval then the value for that sample interval MUST be zero unless otherwise specified in the description of the individual statistics parameter. + + + + Each entry is the number of seconds during which data was collected for this AV stream during the sample interval. Each statistics category (Dejittering, RTP etc) has its own ''SampleSeconds'' parameter, which indicates the number of seconds during which data was collected for that statistics category during the sample interval. + Individual ''SampleSeconds'' values can be less than the ''SampleInterval'', for several reasons, including: + * The STB was not receiving any data for the corresponding ServiceType for all or part of the sample interval. + * ''TimeReference'' has been set to a time other than the Unknown Time and the current sample interval started part of the way through a scheduled sample interval. + * ''ForceSample'' has been used to force statistics for the current sample to be calculated and updated in the data model. + + + + + + + + + + + Each entry is the total number of times that a channel change (or other potentially disruptive event) occurred for this AV stream during the sample interval. + + + + + + + + + Each entry is a Boolean that indicates whether the PVR, with a non-zero time-shift, was used at any time for this AV stream during the sample interval. + + + + + + + + + Number of {{object|HighLevelMetricStats}} instances. + + + + + + + + + De-jittering Sample statistics for this ''ServiceMonitoring'' main stream instance. + + + + Each entry is the number of seconds during which de-jittering data was collected for this AV stream during the sample interval. + Individual {{param}} values can be less than the sample interval, for several reasons, including: + * Any of the reasons for which the {{param|.ServiceMonitoring.MainStream.{i}.Sample.SampleSeconds}} values might be less than the sample interval. + * De-jittering data collection is not appropriate or possible for this AV stream. + + + + + + + + + + + Each entry is the total number of times the receive jitter buffer has overrun for this AV stream during the sample interval. + + + + + + + + + Each entry is the total number of times the receive jitter buffer has underrun for this AV stream during the sample interval. + + + + + + + + + Each entry is the time period, in {{units}}, for which the playout was stopped due to buffer issues (empty or too low level) for this AV stream during the sample interval. + + + + + + + + + + + + TCP sample statistics for this ''ServiceMonitoring'' main stream instance. + + + + Each entry is the number of seconds during which de-jittering data was collected for this AV stream during the sample interval. + Individual {{param}} values can be less than the sample interval, for several reasons, including: + * Any of the reasons for which the {{param|.ServiceMonitoring.MainStream.{i}.Sample.SampleSeconds}} values might be less than the sample interval. + * TCP data collection is not appropriate or possible for this AV stream. + + + + + + + + + + + Each entry is the total number of TCP packets received for this AV stream during the sample interval. + + + + + + + + + Each entry is the total number of TCP packets being retransmitted this AV stream.during the sample interval. + + + + + + + + + Each entry is the total number of bytes received for this AV stream.during the sample interval. + + + + + + + + + + RTP Sample statistics for this ''ServiceMonitoring'' main stream instance. + If no EC is applied the ''BeforeEC'' statistics provide the same values as the corresponding statistics, e.g. when there is no EC, {{param|PacketsReceivedBeforeEC}} = {{param|PacketsReceived}}. + + + + Each entry is the number of seconds during which RTP data was collected for this AV stream during the sample interval. + Individual {{param}} values can be less than the sample interval, for several reasons, including: + * Any of the reasons for which the {{param|.ServiceMonitoring.MainStream.{i}.Sample.SampleSeconds}} values might be less than the sample interval. + * RTP data collection is not appropriate or possible for this AV stream. + + + + + + + + + + + Each entry is the total number of RTP packets expected for this AV stream during the sample interval as described in {{bibref|RFC3550|A.3}}. + + + + + + + + + Each entry is the number of packets that were discarded at the RTP layer for this AV stream during the sample interval because they were too late for playout, regardless of their being out of sequence or not. + These statistics are collected when no EC is applied or after any EC if available. + + + + + + + + + Each entry is the number of packets out of sequence at the RTP level for this AV stream during the sample interval, regardless of their being too late for playout or not. + These statistics are collected when no EC is applied or after any EC if available. + + + + + + + + + Each entry is the total number of RTP packets received for this AV stream during the sample interval. + These statistics are collected when no EC is applied or after any EC if available. + + + + + + + + + Each entry is the total number of RTP packets received for this AV stream during the sample interval. + These statistics are collected before any EC, if available, is applied. + + + + + + + + + Each entry is the number of RTP/AVPF retransmission timeouts ({{bibref|RFC4585}}, {{bibref|RFC4588}}) for this AV stream during the sample interval. + + + + + + + + + Each entry is the total number of RTP packets lost for this AV stream during the sample interval. + Calculated by looking for missing RTP sequence headers. + These statistics are collected when no EC is applied or after any EC if available. + + + + + + + + + Each entry is the total number of RTP packets lost for this AV stream during the sample interval. + Calculated by looking for missing RTP sequence headers. + These statistics are collected before any EC, if available, is applied. + + + + + + + + + {{list}} Each list item is a comma-separated list of unsigned integers that represents, for a sample interval, a histogram of loss events counted by their length in packets (1 packet, 2 packets, etc.) according to the intervals defined by {{param|##.PacketsLostByEventHistogramIntervals}}. + These statistics are collected when no EC is applied or after any EC if available. + + + + + + + + + {{list}} Each list item is a comma-separated list of unsigned integers that represents, for a sample interval, a histogram of loss events counted by their length in packets (1 packet, 2 packets, etc.) according to the intervals defined by {{param|##.PacketsLostByEventHistogramIntervals}}. + These statistics are collected before any EC, if available, is applied. + + + + + + + + + Each entry is the total number of Loss Events for this AV stream during the sample interval. + These statistics are collected when no EC is applied or after any EC if available. + + + + + + + + + Each entry is the total number of Loss Events for this AV stream during the sample interval. + These statistics are collected before any EC, if available, is applied. + + + + + + + + + {{list}} Each list item is a comma-separated list of unsigned integers that represents, for a sample interval, a histogram of the number of times that the delay (in milliseconds) between two consecutive loss events belongs to each time interval defined by {{param|##.DelayBetweenLossEventsHistogramIntervals}}. + These statistics are collected when no EC is applied or after any EC if available. + + + + + + + + + {{list}} Each list item is a comma-separated list of unsigned integers that represents, for a sample interval, a histogram of the number of times that the delay (in milliseconds) between two consecutive loss events belongs to each time interval defined by {{param|##.DelayBetweenLossEventsHistogramIntervals}}. + These statistics are collected before any EC, if available, is applied. + + + + + + + + + Each entry is the total number of Loss Events that occurred at a distance shorter than ''SevereLossMinDistance'' from the previous Loss Event for this AV stream during the sample interval. + These statistics are collected when no EC is applied or after any EC if available. + + + + + + + + + Each entry is the total number of Loss Events that occurred at a distance shorter than ''SevereLossMinDistance'' from the previous Loss Event for this AV stream during the sample interval. + These statistics are collected before any EC, if available, is applied. + + + + + + + + + Each entry is the average distance in {{units}} between consecutive Loss Events for this AV stream during the sample interval. + These statistics are collected when no EC is applied or after any EC if available. + + + + + + + + + + + Each entry is the average distance in {{units}} between consecutive loss events for this AV stream during the sample interval. + These statistics are collected before any EC, if available, is applied. + + + + + + + + + + + Each entry is the length in {{units}} of the shortest distance between consecutive Loss Events for this AV stream during the sample interval. + These statistics are collected when no EC is applied or after any EC if available. + + + + + + + + + + + Each entry is the length in {{units}} of the shortest distance between consecutive Loss Events for this AV stream during the sample interval. + These statistics are collected before any EC, if available, is applied. + + + + + + + + + + + Each entry is the total number of Loss Events with length in RTP packets greater than ''SevereLossMinLength'' for this AV stream during the sample interval. + These statistics are collected when no EC is applied or after any EC if available. + + + + + + + + + Each entry is the total number of Loss Events with length in RTP packets greater than ''SevereLossMinLength'' for this AV stream during the sample interval. + These statistics are collected before any EC, if available, is applied. + + + + + + + + + {{list}} Each list item is a comma-separated list of unsigned integers that represents, for a sample interval, a histogram of the number of severe loss events counted by their duration (in milliseconds) according to the intervals defined by {{param|##.DurationSevereLossEventsHistogramIntervals}}. + These statistics are collected when no EC is applied or after any EC if available. + + + + + + + + + {{list}} Each list item is a comma-separated list of unsigned integers that represents, for a sample interval, a histogram of the number of severe loss events counted by their duration (in milliseconds) according to the intervals defined by {{param|##.DurationSevereLossEventsHistogramIntervals}}. + These statistics are collected before any EC, if available, is applied. + + + + + + + + + Each entry is the length in {{units}} of the longest Loss Event for this AV stream during the sample interval. + These statistics are collected when no EC is applied or after any EC if available. + + + + + + + + + + + Each entry is the length in {{units}} of the longest Loss Event for this AV stream during the sample interval. + These statistics are collected before any EC, if available, is applied. + + + + + + + + + + + Each entry is the average length in {{units}} of Loss Events for this AV stream during the sample interval. + These statistics are collected when no EC is applied or after any EC if available. + + + + + + + + + + + Each entry is the average length in {{units}} of Loss Events for this AV stream during the sample interval. + These statistics are collected before any EC, if available, is applied. + + + + + + + + + + + Each entry is the length in {{units}} of the shortest RTP Loss Event for this AV stream during the sample interval. + These statistics are collected when no EC is applied or after any EC if available. + + + + + + + + + + + Each entry is the length in {{units}} of the shortest RTP Loss Event for this AV stream during the sample interval. + These statistics are collected before any EC, if available, is applied. + + + + + + + + + + + + MPEG2-TS Sample statistics for this ''ServiceMonitoring'' main stream instance. + + + + Each entry is the number of seconds during which MPEG2-TS data was collected for this AV stream during the sample interval. + Individual {{param}} values can be less than the sample interval, for several reasons, including: + * Any of the reasons for which the {{param|.ServiceMonitoring.MainStream.{i}.Sample.SampleSeconds}} values might be less than the sample interval. + * MPEG2-TS data collection is not appropriate or possible for this AV stream. + + + + + + + + + + + Each entry is the total number of MPEG2-TS packets received for this AV stream during the sample interval. + + + + + + + + + Each entry is the total number of good MPEG2-TS packets removed from the buffer for this AV stream during the sample interval. + Packets received minus packets drained provides an indication how close the buffer came to over or under running during the sample interval. + + + + + + + + + Each entry is the total number of MPEG2-TS packets with an invalid transport sync byte for this AV stream during the sample interval. + Not meaningful when MPEG2-TS is transported over IP. + + + + + + + + + Each entry is the total number of MPEG2-TS Loss of Synchronization Events for this AV stream during the sample interval. + Not meaningful when MPEG2-TS is transported over IP. + + + + + + + + + Each entry is the total number of MPEG2-TS Discontinuity errors that were captured for this AV stream during the sample interval. + These statistics are collected when no CA decryption scheme is in use or after any CA decryption if in use. + + + + + + + + + Each entry is the total number of MPEG2-TS Discontinuity errors that were captured for this AV stream during the sample interval. + These statistics are collected before any CA decryption scheme, if used, is applied. + + + + + + + + + + Video decoder Sample statistics for this ''ServiceMonitoring'' main stream instance. + + + + Each entry is the number of seconds during which video decoder data was collected for this AV stream during the sample interval. + Individual {{param}} values can be less than the sample interval, for several reasons, including: + * Any of the reasons for which the {{param|.ServiceMonitoring.MainStream.{i}.Sample.SampleSeconds}} values might be less than the sample interval. + * Video Decoder data collection is not appropriate or possible for this AV stream. + + + + + + + + + + + Each entry is the last frame rate at which the STB played out the video content for this AV stream during the sample interval. . Also the reported rate will be rounded off to the nearest integer. + + + + + + + + + Each entry is the number of video frames that were decoded completely (errorless frames) or partially (corrupted frames) by the STB for this AV stream during the sample interval. + + + + + + + + + Each entry is the number of video frames that could not be reproduced by the STB for this AV stream during the sample interval. + + + + + + + + + Each entry is the number of video frames that were reproduced by the STB for which some information was missing for this AV stream during the sample interval and loss concealment was applied. + + + + + + + + + Each entry is the number of I frames that were decoded completely (errorless frames) or partially (corrupted frames) by the STB for this AV stream during the sample interval. + + + + + + + + + Each entry is the number of I frames that could not be reproduced by the STB for this AV stream during the sample interval. + + + + + + + + + Each entry is the number of I frames that were reproduced by the STB for which some information was missing for this AV stream during the sample interval and loss concealment applied. + + + + + + + + + Each entry is the number of P frames that were decoded completely (errorless frames) or partially (corrupted frames) by the STB for this AV stream during the sample interval. + + + + + + + + + Each entry is the number of P frames that could not be reproduced by the STB for this AV stream during the sample interval. + + + + + + + + + Each entry is the number of P frames that were reproduced by the STB for which some information was missing for this AV stream during the sample interval and loss concealment applied. + + + + + + + + + Each entry is the number of B frames that were decoded completely (errorless frames) or partially (corrupted frames) by the STB for this AV stream during the sample interval. + + + + + + + + + Each entry is the number of B frames that could not be reproduced by the STB for this AV stream during the sample interval. + + + + + + + + + Each entry is the number of B frames that were reproduced by the STB for which some information was missing for this AV stream during the sample interval and loss concealment applied. + + + + + + + + + Each entry is the number of AV resynchronizations that were performed by the STB for this AV stream during the sample interval. + + + + + + + + + + Audio decoder Sample statistics for this ''ServiceMonitoring'' main stream instance. + + + + Each entry is the number of seconds during which audio decoder data was collected for this AV stream during the sample interval. + Individual {{param}} values can be less than the sample interval, for several reasons, including: + * Any of the reasons for which the {{param|.ServiceMonitoring.MainStream.{i}.Sample.SampleSeconds}} values might be less than the sample interval. + * Audio decoder data collection is not appropriate or possible for this AV stream. + + + + + + + + + + + Each entry is the number of audio frames that were decoded completely (errorless frames) or partially (corrupted frames) by the STB for this AV stream during the sample interval. + + + + + + + + + Each entry is the number of audio decoding errors detected by the STB for this AV stream during the sample interval. + + + + + + + + + + Video response Sample statistics for this ''ServiceMonitoring'' main stream instance. + + + + Each entry is the number of seconds during which video response data was collected for this AV stream during the sample interval. + Individual {{param}} values can be less than the sample interval, for several reasons, including: + * Any of the reasons for which the {{param|.ServiceMonitoring.MainStream.{i}.Sample.SampleSeconds}} values might be less than the sample interval. + * Video response data collection is not appropriate or possible for this AV stream. + + + + + + + + + + + Each entry is the time period (in {{units}}) between the instant of transmitting an IGMP JOIN or an RTSP SETUP command and the display of the first I frame, computed as the average of the VideoSystemResponse events that occured for this AV stream during the sample interval. + + + + + + + + + + + Each entry is the minimum time period (in {{units}}) between the instant of transmitting an IGMP JOIN or an RTSP SETUP command and the display of the first I frame for this AV stream during the sample interval. + + + + + + + + + + + Each entry is the maximum time period (in {{units}}) between the instant of transmitting an IGMP JOIN or an RTSP SETUP command and the display of the first I frame for this AV stream during the sample interval. + + + + + + + + + + + Each entry is the time period, in {{units}}, between the instant of transmitting a RTSP PLAY command to start playing stream, and displaying the first I-frame of unicast stream, computed as the average of the VoDControlResponse events that occured for this AV stream during the sample interval. Only measured when started from a non-play state, i.e. either idle or paused. + + + + + + + + + + + Each entry is the minimum time period, in {{units}}, between the instant of transmitting a RTSP PLAY command to start playing stream, and displaying the first I-frame of unicast stream. Only measured when started from a non-play state, i.e. either idle or paused. + + + + + + + + + + + Each entry is the maximum time period, in {{units}}, between the instant of transmitting a RTSP PLAY command to start playing stream, and displaying the first I-frame of unicast stream. Only measured when started from a non-play state, i.e. either idle or paused. + + + + + + + + + + + Each entry is a colon separated list of time periods in milliseconds between the instant of transmitting a RTSP PLAY command to start playing stream, and displaying the first I-frame of unicast stream. Only measured when started from a non-play state, i.e. either idle or paused. + A comma separates measurements made in different sample intervals, while a colon separates individual measurements within a specific sample interval. + If no VoDControlResponse measurements were made during a specific sample interval then this MUST be represented by an empty string. + Example: ,837:453:1234,759,,,923:698,,,1284 + Here there were no measurements during first sample interval, three during the second, one during the third, etc. + The statistics values in this list MUST be in time order, with the oldest one first and the most recent one last. This applies both to sample intervals and to individual measurements during a specific sample interval. {{nopattern}} + + + + + + + {{nopattern}} + + + + + + + + Each entry is a colon separated list of time periods in milliseconds between the instant of transmitting an IGMP JOIN or an RTSP SETUP command and the display of the first I frame that occurred for this AV stream during the sample interval. + A comma separates measurements made in different sample intervals, while a colon separates individual measurements within a specific sample interval. + If no VideoSystemResponse measurements were made during a specific sample interval then this MUST be represented by an empty string. + Example: ,837:453:1234,759,,,923:698,,,1284 + Here there were no measurements during first sample interval, three during the second, one during the third, etc. + The statistics values in this list MUST be in time order, with the oldest one first and the most recent one last. This applies both to sample intervals and to individual measurements during a specific sample interval. {{nopattern}} + + + + + + + {{nopattern}} + + + + + + + + Each entry is the number of RTSP protocol requests to start a VoD program display during the sample interval. + Only meaningful for VoD. + + + + + + + + + Each entry is the number of successful VoD attempts during the sample interval. An attempt is considered successful when the first I-frame is displayed by the client. + Only meaningful for VoD. + + + + + + + + + Each entry is the number of completed VoD requests during the sample interval. An attempt is defined successful if it continues until a RTSP protocol request to end the session is sent by the STB. + Only meaningful for VoD. + + + + + + + + + Each entry is the number of channel change failures. A channel change is considered as failed when the time period between a user channel change request and the display of the first I frame for this AVStream is above {{param|.ServiceMonitoring.MainStream.{i}.ChannelChangeFailureTimeout}}. + + + + + + + + + + High-level metric Sample statistics for this ''ServiceMonitoring'' main stream instance. One or more different high-level metrics can be supported; this is specified by {{param|.ServiceMonitoring.MainStream.{i}.Sample.HighLevelMetricStatsNumberOfEntries}}. + + + + + + + + + + Enables or disables this Metric instance. + + + + + + + + The status of this Metric instance. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Indicates a unique identifier for this high-level metric. + + + + + + + + + + + This parameter is DEPRECATED and replaced by the {{param|MetricThreshold}} parameter and, if needed, several instances of {{object|.ServiceMonitoring.MainStream.{i}.Sample.HighLevelMetricStats.}}. + + + + + + + + + + This parameter is DEPRECATED and replaced by the {{param|MetricThreshold}} parameter and, if needed, several instances of {{object|.ServiceMonitoring.MainStream.{i}.Sample.HighLevelMetricStats.}}. + + + + + + + + + + Each entry is the number of seconds during which this high-level metric's data was collected for this AV stream during the sample interval. + Individual {{param}} values can be less than the sample interval, for several reasons, including: + * Any of the reasons for which the {{param|.ServiceMonitoring.MainStream.{i}.Sample.SampleSeconds}} values might be less than the sample interval. + * This high-level metric's data collection is not appropriate or possible for this AV stream. + + + + + + + + + + + This parameter is DEPRECATED and replaced by the {{param|Metric}} parameter and, if needed, several instances of {{object|.ServiceMonitoring.MainStream.{i}.Sample.HighLevelMetricStats.}}. + + + + + + + + + + + This parameter is DEPRECATED and replaced by the {{param|Metric}} parameter and, if needed, several instances of {{object|.ServiceMonitoring.MainStream.{i}.Sample.HighLevelMetricStats.}}. + + + + + + + + + + + This parameter is DEPRECATED and replaced by the {{param|MetricFailures}} parameter and, if needed, several instances of {{object|.ServiceMonitoring.MainStream.{i}.Sample.HighLevelMetricStats.}}. + + + + + + + + This parameter is DEPRECATED and replaced by the {{param|MetricFailures}} parameter and, if needed, several instances of {{object|.ServiceMonitoring.MainStream.{i}.Sample.HighLevelMetricStats.}}. + + + + + + + + A time period measured in {{units}}. A new value for the high level metric is calculated every {{param}} seconds. + The value for {{param}} MUST be less than, or equal to, {{param|.ServiceMonitoring.SampleInterval}}. + {{param}} SHOULD be chosen such that {{param|.ServiceMonitoring.SampleInterval}} is an integer multiple of {{param}}. If not, the last metric sample interval in each sample interval MUST be shortened so that the last metric sample interval ends when the sample interval ends. + The value for {{param}} is algorithm-specific. + + + + + + + + + + The threshold value that controls the calculation of the {{param|MetricFailures}} parameter. + + + + + + + + + + Each entry is a high-level metric calculated for this AV stream during the sample interval as the average of the high level metric values calculated on a metric sample interval basis. The length of the metric sample interval is given by {{param|MetricSampleInterval}}. + The interpretation of the metric values is algorithm-specific; the only constraints are that values have to be numeric, in the range [0:65535] and that lower values indicate worse QoE than do higher values. + + + + + + + + + + + Counts the number of times (since the last time this ''MainStream'' and Sample statistics collection were both enabled) that a newly-calculated value of high-level metric {{param|Metric}} was less than or equal to {{param|MetricThreshold}}. + This parameter can be incremented at any time during a sample interval, and might be incremented more than once during a single sample interval. + + + + + + + + + This object represents the log entries of events recorded by the MainStream object instance. + When the number of log entries in the EventLog exceeds the value of the {{param|###.Capabilities.ServiceMonitoring.MaxMainStreamEventLogEntries}} parameter, the Entry object with the lowest SequenceNumber value is replaced by the new EventLog Entry object. + Log entries are persisted across reboots of the CPE. + + + + When set to true, clears the events from the event log and the value of {{param|Entry.{i}.SequenceNumber}} parameter is reset to the parameter's minimum value. + + + + + + + + {{numentries}} + + + + + + + + + This object represents an entry (e.g., start session, channel change) in the event log. + + + + + + + The sequence number of the event within the EventLog. + This parameter is incremented by one (1) for each entry within the EventLog. + When the value of the parameter exceeds the maximium range, the lowest value of this parameter that is not contained in current EventLog entries is used. + + + + + + + + + + Type of the event. The values for this parameter are vendor specific. + + + + + + + + Timestamp of the event. + + + + + + + + {{numentries}} + + + + + + + + + This object represents an instance of a parameter that is associated with the Entry object Instance. + + + + Name of the parameter (vendor-specific). + + + + + + + + Value of the parameter. + + + + + + + + + Global operations statistics. + + + + + Global operations total statistics. + + + + The time period in, {{units}}, between the first message (e.g. DHCP Discover) sent by the STB during boot-up and the first multicast I-frame for the default channel displayed by the STB. + + + + + + + + + + Minimum portal latency defined as the minimum time period, in {{units}}, between the instant of transmitting TCP SYN (the three way handshake) prior to first HTTP message, and receiving the last HTTP message carrying the information. + + + + + + + + + + Maximum portal latency defined as the maximum time period, in {{units}}, between the instant of transmitting TCP SYN (the three way handshake) prior to first HTTP message, and receiving the last HTTP message carrying the information. + + + + + + + + + + + Global operations sample statistics. + + + + Each entry is the minimum portal latency defined as the minimum time period, in {{units}}, between the instant of transmitting TCP SYN (the three way handshake) prior to first HTTP message, and receiving the last HTTP message carrying the information during the sample interval. + + + + + + + + + + + Each entry is the maximum portal latency defined as the maximum time period, in {{units}}, between the instant of transmitting TCP SYN (the three way handshake) prior to first HTTP message, and receiving the last HTTP message carrying the information during the sample interval. + + + + + + + + + + + Each entry is a colon separated list of time periods (in milliseconds) between the instant of transmitting TCP SYN (the three way handshake) prior to first HTTP message, and receiving the last HTTP message carrying the information. + A comma separates measurements made in different sample intervals, while a colon separates individual measurements within a specific sample interval. + If no PortalResponse measurements were made during a specific sample interval then this MUST be represented by an empty string. + Example: ,837:453:1234,759,,,923:698,,,1284 + Here there were no measurements during first sample interval, three during the second, one during the third, etc. + The statistics values in this list MUST be in time order, with the oldest one first and the most recent one last. This applies both to sample intervals and to individual measurements during a specific sample interval. {{nopattern}} + + + + + + + {{nopattern}} + + + + + + + + + Applications. + + + + Number of Service Provider instances. + + + + + + + + + Audience viewing statistics. + + + + Enables or disables collection of viewing statistics. Enabling collection of viewing statistics also resets the viewing statistics table. + + + + + + + + When set to {{true}} resets the viewing statistics table. Setting it to {{false}} has no effect. The value is not saved in device state and is always {{false}} when read. + Resetting statistics MUST reset all {{param|Channel.{i}.Duration}} parameters. + + + + + + + + Number of {{units}} since the Audience statistics were last enabled or reset. + + + + + + + + + + Number of instances of {{object|Channel}}. + + + + + + + + + Table to record what the STB has been receiving. Time durations are recorded only for an AVPlayer's main AVStream (i.e. for TV channels being displayed in the main screen). + Each entry corresponds to a given TV channel and is indexed by channel name (the instance number is chosen by the STB and is not related to the channel number). + + + + + + + + + + {{datatype|expand}} + + + + + + + + String describing the TV channel being displayed in the main screen. MUST be the value of the corresponding {{param|.AVStreams.AVStream.{i}.Name}} parameter. + + + + + + + + + + The cumulative duration of this channel in {{units}}. + + + + + + + + + + + Details of STB CDS Push logical internal parameters. + + + + It references the object instance dedicated to the CDS Push service. Example: “Device.Services.StorageService.1.LogicalVolume.1.Folder.1”. + + + + + + + + + + + {{numentries}} + + + + + + + + + Content Item instance table. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Unique Content Item reference as defined in {{bibref|TS102323}}, or {{bibref|RFC4078}}. + + + + + + + + Version number of the stored content item (a content item could be updated with a new version e.g. in case of errors in the video preventing the play out). + + + + + + + + + + + When set to {{true}}, deletes this Content Item instance. The value is not saved in device state and is always {{false}} when read. + + + + + + + + + Details of STB CDS Pull logical internal component. This object is present only if the user allowed (via his local STB UI) the remote management of the CDS Pull service. + + + + It references the object instance dedicated to the CDS Pull service. Example: “Device.Services.StorageService.1.LogicalVolume.1.Folder.1”. + + + + + + + + + + + {{numentries}} + + + + + + + + + Content Item instance table. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Unique Content Item reference as defined in {{bibref|TS102323}}, or {{bibref|RFC4078}}. + + + + + + + + Version number of the stored content item (a content item could be updated with a new version e.g. in case of errors in the video preventing the play out). + + + + + + + + + + + When set to {{true}}, deletes this Content Item instance. The value is not saved in device state and is always {{false}} when read. + + + + + + + + + Service Provider instance table. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Service Provider name. + + + + + + + + + + Service Provider domain URI. + + + + + + + + + + Service Provider’s Service Discovery Server. It MAY be configured in the format of IMS Public Service Identifier, or IP address or URL. + + + + + + + + + + Comma separated list of the BCG (Broadband Content Guide) server URLs the STB is currently retrieving IPTV service information from. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/test/tools/tr-135-1-4-1-usp-full.xml b/test/tools/tr-135-1-4-1-usp-full.xml new file mode 100644 index 00000000..329753f4 --- /dev/null +++ b/test/tools/tr-135-1-4-1-usp-full.xml @@ -0,0 +1,8064 @@ + + + + + + {{docname|STBService:1.4 for USP}} + {{appdate|September 2019}} + {{trname|TR-135a3}} + August 2015: + * Added objects for Service Monitoring of Events + September 2019: {{xmlref|tr-135-1-4-1-usp|Corrigendum 1}} + * Added USP support (split XML into common, CWMP and USP files) + + + + A non-volatile handle used to reference this instance. + '''This is intended only for use in protocol-independent "common" definitions, and MUST NOT be used in protocol-specific definitions.''' + + + + + + + + A non-volatile handle used to reference this instance. Alias provides a mechanism for an ACS to label this instance for future reference. + If the CPE supports the Alias-based Addressing feature as defined in {{bibref|TR-069|3.6.1}} and described in {{bibref|TR-069|Appendix II}}, the following mandatory constraints MUST be enforced: + * Its value MUST NOT be empty. + * Its value MUST start with a letter. + * If its value is not assigned by the ACS, it MUST start with a "cpe-" prefix. + * The CPE MUST NOT change the parameter value. + + + + + + A non-volatile unique key used to reference this instance. Alias provides a mechanism for a Controller to label this instance for future reference. + The following mandatory constraints MUST be enforced: + * The value MUST NOT be empty. + * The value MUST start with a letter. + * If the value is not assigned by the Controller at creation time, the Agent MUST assign a value with an "cpe-" prefix. + The value MUST NOT change once it's been assigned. + + + + + + The value is measured in ''dBm/1000'', i.e. the value divided by 1000 is dB relative to 1 mW. For example, -12345 means -12.345 dBm, 0 means 0 dBm (1 mW) and 12345 means 12.345 dBm. + + + + + + + Indicates the availability of diagnostics data. Enumeration of: + {{enum}} + If the ACS sets the value of this parameter to {{enum|Requested}}, the CPE MUST initiate the corresponding diagnostic test. When writing, the only allowed values are {{enum|Requested}} and {{enum|Canceled}}. To ensure the use of the proper test parameters (the writable parameters in this object), the test parameters MUST be set, and any errors or inconsistencies in the test parameters MUST be detected, either prior to or at the same time as (in the same SetParameterValues) setting this parameter to {{enum|Requested}}. + When requested, the CPE SHOULD wait until after completion of the communication session with the ACS before starting the diagnostic test. + When the test is completed, the value of this parameter MUST be either {{enum|Complete}} (if the test completed successfully), or one of the ''Error'' values listed above. + If the value of this parameter is anything other than {{enum|Complete}}, the values of the results parameters for this test are indeterminate. + When the diagnostic initiated by the ACS is completed (successfully or not), but not if it is canceled for any reason, the CPE MUST establish a new connection to the ACS to allow the ACS to view the results, indicating the Event code ''8 DIAGNOSTICS COMPLETE'' in the Inform message. + After the diagnostic is complete, the value of all result parameters (all read-only parameters in this object) MUST be retained by the CPE until either this diagnostic is run again, or the CPE reboots. After a reboot, if the CPE has not retained the result parameters from the most recent test, it MUST set the value of this parameter to {{enum|None}}. + Modifying any of the writable parameters in this object except for this one MUST result in the value of this parameter being set to {{enum|None}}. + While the test is in progress, modifying any of the writable parameters in this object except for this one MUST result in the test being terminated and the value of this parameter being set to {{enum|None}}. + While the test is in progress, setting this parameter to {{enum|Requested}} (and possibly modifying other writable parameters in this object) MUST result in the test being terminated and then restarted using the current values of the test parameters. + While the test is in progress, setting this parameter to {{enum|Canceled}} MUST result in the test being canceled and the value of this parameter being set to {{enum|None}}. If the CPE does not support the {{enum|Canceled}} value, it MUST return a SPV error with "Invalid Parameter value" (9007) to the ACS instead. + + + + + + + + + + + + The IEEE EUI 64-bit identifier as defined in {{bibref|IEEE_EUI64}}. The IEEE defined 64-bit extended unique identifier (EUI-64) is a concatenation of: + * The 24-bit (OUI-24) or 36-bit (OUI-36) company_id value assigned by the IEEE Registration Authority (IEEE-RA), and + * The extension identifier (40 bits for OUI-24 or 28 bits for OUI-36) assigned by the organization with that company_id assignment. + + + + + + + + + + IP address, i.e. IPv4 address (or IPv4 subnet mask) or IPv6 address. + All IPv4 addresses and subnet masks MUST be represented as strings in IPv4 dotted-decimal notation. Here are some examples of valid IPv4 address textual representations: + * 216.52.29.100 + * 192.168.1.254 + All IPv6 addresses MUST be represented using any of the 3 standard textual representations defined in {{bibref|RFC4291}} Sections 2.2.1, 2.2.2 and 2.2.3. Both lower-case and upper-case letters can be used, but use of lower-case letters is RECOMMENDED. Here are some examples of valid IPv6 address textual representations: + * 1080:0:0:800:ba98:3210:11aa:12dd + * 1080::800:ba98:3210:11aa:12dd + * 0:0:0:0:0:0:13.1.68.3 + IPv6 addresses MUST NOT include zone identifiers. Zone identifiers are discussed in {{bibref|RFC4007|Section 6}}. + Unspecified or inapplicable addresses (or IPv4 subnet masks) MUST be represented as empty strings unless otherwise specified by the parameter definition. + + + + + + + + IPv4 address (or subnet mask). + Can be any IPv4 address that is permitted by the ''IPAddress'' data type. + + + + + + + + IPv6 address. + Can be any IPv6 address that is permitted by the ''IPAddress'' data type. + + + + + + IPv4 or IPv6 routing prefix in Classless Inter-Domain Routing (CIDR) notation {{bibref|RFC4632}}. This is specified as an IP address followed by an appended "/n" suffix, where ''n'' (the prefix size) is an integer in the range 0-32 (for IPv4) or 0-128 (for IPv6) that indicates the number of (leftmost) '1' bits of the routing prefix. + * IPv4 example: 192.168.1.0/24 + * IPv6 example: 2001:edff:fe6a:f76::/64 + If the IP address part is unspecified or inapplicable, it MUST be {{empty}} unless otherwise specified by the parameter definition. In this case the IP prefix will be of the form "/n". + If the entire IP prefix is unspecified or inapplicable, it MUST be {{empty}} unless otherwise specified by the parameter definition. + + + + + + + + IPv4 address prefix. + Can be any IPv4 prefix that is permitted by the ''IPPrefix'' data type. + + + + + + + + + IPv6 address prefix. + Can be any IPv6 prefix that is permitted by the ''IPPrefix'' data type. + + + + + + A JSON Object as defined in {{bibref|RFC7159|Section 4}}. + + + + + + + All MAC addresses are represented as strings of 12 hexadecimal digits (digits 0-9, letters A-F or a-f) displayed as six pairs of digits separated by colons. Unspecified or inapplicable MAC addresses MUST be represented as empty strings unless otherwise specified by the parameter definition. + + + + + + + + + + A 32-bit statistics parameter, e.g. a byte counter. + This data type SHOULD NOT be used for statistics parameters whose values might become greater than the maximum value that can be represented as an ''unsignedInt'' (i.e. 0xffffffff, referred to below as ''maxval''). ''StatsCounter64'' SHOULD be used for such parameters. + The value ''maxval'' indicates that no data is available for this parameter. In the unlikely event that the actual value of the statistic is ''maxval'', the CPE SHOULD return ''maxval - 1''. + The actual value of the statistic might be greater than ''maxval''. Such values SHOULD wrap around through zero. + The term ''packet'' is to be interpreted as the transmission unit appropriate to the protocol layer in question, e.g. an IP packet or an Ethernet frame. + + + + + + + A 64-bit statistics parameter, e.g. a byte counter. + This data type SHOULD be used for all statistics parameters whose values might become greater than the maximum value that can be represented as an ''unsignedInt''. + The maximum value that can be represented as an ''unsignedLong'' (i.e. 0xffffffffffffffff) indicates that no data is available for this parameter. + The term ''packet'' is to be interpreted as the transmission unit appropriate to the protocol layer in question, e.g. an IP packet or an Ethernet frame. + + + + + + + Universally Unique Identifier. See {{bibref|RFC4122}}. + + + + + + + + + Uniform Resource Identifier. See {{bibref|RFC3986}}. + + + + + + + + Uniform Resource Name. See {{bibref|RFC3986}} (URI) and {{bibref|RFC8141}} (''urn'' URI scheme). + + + + + + + Uniform Resource Locator. See {{bibref|RFC3986}} (URI), {{bibref|IANA-uri-schemes}}, and individual URI scheme RFCs such as {{bibref|RFC7252}} (''coap'', ''coaps'') and {{bibref|RFC7230}} (''http'', ''https''). + + + + + + The ZigBee 16-bit network address (NWK) as defined in {{bibref|ZigBee2007}}. The address is assigned to a device by the network layer and used by the network layer for routing messages between devices. + + + + + + + + + + A non-volatile unique key used to reference this instance. Alias provides a mechanism for a Controller to label this instance for future reference. + The following mandatory constraints MUST be enforced: + * The value MUST NOT be empty. + * The value MUST start with a letter. + * If the value is not assigned by the Controller at creation time, the Agent MUST assign a value with an "cpe-" prefix. + The value MUST NOT change once it's been assigned. + + + + + + E-AC-3 + Digital Audio Compression (AC-3) Standard, Rev. B, document number A/52B + ATSC + June 2005 + + + DGTVi D-Book v1.0 + Compatible receivers for the Italian market + Sep 2004 + + + HDMI + High-Definition Multimedia Interface 1.4a + March 2010 + + + ISO/IEC 11172-1 (1993) + Information Technology - Coding of moving pictures and associated audio for digital storage media at up to about 1.5 Mbit/s - Part 1: System + ISO/IEC + 1993 + + + ISO/IEC 11172-3 (1993) + Information Technology - Coding of moving pictures and associated audio for digital storage media at up to about 1.5 Mbit/s - Part 3: Audio + ISO/IEC + 1993 + + + ISO/IEC 13818-1 (2nd edition, 2000) + Information technology - Generic coding of moving picture and associated audio information: Systems + ISO/IEC + 2000 + + + ISO/IEC 13818-3 (2nd edition, 1998) + Information technology - Generic coding of moving picture and associated audio information: Audio + ISO/IEC + 1998 + + + ISO/IEC 13818-6 (2nd edition, 1998) + Information technology - Generic coding of moving picture and associated audio information: Extensions for DSM-CC + ISO/IEC + 1998 + + + ISO/IEC 14496-3:2001 + Information technology - Coding of Audio-Visual objects - Part 3: Audio + ISO/IEC + 2001 + + + ITU-T Rec. H.264 | ISO/IEC 14496-10:2004/AM 1, Part 10 + Advanced Video Coding AMENDMENT 1: AVC fidelity range extensions + ISO/IEC + 2004 + + + ISO/IEC 23003-1:2007 + Information technology - MPEG audio technologies - Part 1: MPEG Surround + ISO/IEC + 2007 + + + RFC 1350 + The TFTP Protocol (Revision 2) + IETF + RFC + https://tools.ietf.org/html/rfc1350 + + + RFC 2228 + FTP Security Extensions + IETF + RFC + https://tools.ietf.org/html/rfc2228 + + + RFC 2326 + Real Time Streaming Protocol (RTSP) + IETF + RFC + https://tools.ietf.org/html/rfc2326 + + + RFC 2960 + Stream Control Transmission Protocol (SCTP) + IETF + RFC + https://tools.ietf.org/html/rfc2960 + + + RFC 3066 + Tags for the Identification of Languages + IETF + RFC + https://tools.ietf.org/html/rfc3066 + + + RFC 3376 + Internet Group Management Protocol (IGMP) Version 3 + IETF + RFC + https://tools.ietf.org/html/rfc3376 + + + RFC 3550 + RTP: A Transport Protocol for Real-Time Applications + IETF + RFC + July 2003 + https://tools.ietf.org/html/rfc3550 + + + RFC 4078 + The TV-Anytime Content Reference Identifier (CRID) + IETF + RFC + https://tools.ietf.org/html/rfc4078 + + + RFC 4122 + A Universally Unique IDentifier (UUID) URN Namespace + IETF + RFC + 2005 + https://tools.ietf.org/html/rfc4122 + + + RFC 4340 + Datagram Congestion Control Protocol (DCCP) + IETF + RFC + https://tools.ietf.org/html/rfc4340 + + + RFC 4585 + Extended RTP Profile for Real-time Transport Control Protocol (RTCP)-Based Feedback (RTP/AVPF) + IETF + RFC + https://tools.ietf.org/html/rfc4585 + + + RFC 4588 + RTP Retransmission Packet Format + IETF + RFC + https://tools.ietf.org/html/rfc4588 + + + SMPTE 20022-1 Application Layer Forward Error Correction + + + Simple Object Access Protocol (SOAP) 1.1 + W3C + https://www.w3.org/TR/2000/NOTE-SOAP-20000508 + + + S/PDIF + Sony/Philips Digital InterFace IEC-958 + IEC + + + SSH File Transfer Protocol + https://tools.ietf.org/wg/secsh/draft-ietf-secsh-filexfer + + + TR-106 Amendment 1 + Data Model Template for TR-069-Enabled Devices + Broadband Forum + Technical Report + November 2006 + https://www.broadband-forum.org/technical/download/TR-106_Amendment-1.pdf + + + TR-106 Amendment 8 + Data Model Template for CWMP Endpoints and USP Agents + Broadband Forum + Technical Report + May 2018 + https://www.broadband-forum.org/technical/download/TR-106_Amendment-8.pdf + + + TR-135 Amendment 3 + Data Model for a TR-069 Enabled STB + Broadband Forum + Technical Report + November 2012 + https://www.broadband-forum.org/technical/download/TR-135.pdf + + + TR-140 + TR-069 Data Model for Storage Service Devices + Broadband Forum + Technical Report + https://www.broadband-forum.org/technical/download/TR-140.pdf + + + ETSI TS 102 034 + Digital Video Broadcasting (DVB); Transport of MPEG-2 Based DVB Services + ETSI + + + ETSI TS 102 323 + Digital Video Broadcasting (DVB); Carriage and signalling of TV-Anytime information + in DVB transport streams + ETSI + + + SMPTE VC-1 + Compressed Video Bitstream Format and Decoding Process, document number 421M + SMPTE, Television + 2006 + + + + + + Number of entries in the {{object|STBService}} table. + + + + + + + + The top-level object for an STB CPE. + + + + + + + Enables or disables this {{object}} instance. + + + + + + + + {{datatype|expand}} + + + + + + + + + The overall capabilities of the STB CPE. This is a constant read-only object, meaning that only a firmware update will cause these values to be altered. + + + + Maximum number of simultaneously active AV streams supported by the STB. + A value of -1 indicates no specific limit on the number of active streams. + A value of 0, while not strictly illegal, would indicate an STB that doesn't support AV streams, which is extremely unlikely. + + + + + + + + + + Maximum number of simultaneously active AV players supported by the STB. An AV player is associated with a presentation device (such as a TV set). + Note that this is the strict maximum but, depending on the AV streams to be decoded, a given STB may not always have the resources to run all of these AV players, e.g. it might be able to decode one main picture and one PIP in standard definition, but just a main picture and no PIP in high definition. + A value of -1 indicates no specific limit on the number of active players. + A value of 0, while not strictly illegal, would indicate an STB that doesn't support AV players, which is extremely unlikely. + + + + + + + + + + + Front-end capabilities. + + + + + Capabilities of the DVB-T receiver. + + + + Maximum number of simultaneous active AV streams supported by the DVB-T FrontEnd. + A value of -1 indicates no specific limit on the number of active streams. + + + + + + + + + + Maximum number of logical channels that can be contained in a Service List Database. + A value of -1 indicates no specific limit on the number of logical channels. + + + + + + + + + + + IP front-end capabilities. + + + + Maximum number of simultaneous active AV streams supported by the IP FrontEnd. + A value of -1 indicates no specific limit on the number of active streams. + + + + + + + + + + Maximum number of simultaneous active Inbound AV streams supported by the IP FrontEnd. + A value of -1 indicates no specific limit on the number of active streams. + + + + + + + + + + Maximum number of simultaneous active Outbound AV streams supported by the IP FrontEnd. + A value of -1 indicates no specific limit on the number of active streams. + + + + + + + + + + Supported streaming control protocols. + + + + + + + supports RTSP {{bibref|RFC2326}} + + + + + supports IGMPv1 {{bibref|RFC3376}} + + + + + supports IGMPv2 and lower versions {{bibref|RFC3376}} + + + + + supports IGMPv3 and lower versions {{bibref|RFC3376}} + + + + + supports DSM-CC {{bibref|ISO/IEC13818-6}} + + + + + + + + Network protocols supported for AV streaming. + + + + + + + + + {{bibref|RFC2960}} + + + + + {{bibref|RFC4340}} + + + + + {{bibref|RFC3550}} + + + + + + + + + Transport control protocols supported for AV streaming in combination with RTP. + + + + + + + supports sending RTCP receiver reports as defined in {{bibref|RFC3550}} + + + + + as defined in {{bibref|RFC4585}} and {{bibref|RFC4588}} + + + + + as defined in {{bibref|SMPTE20022-1}} + + + + + + + + Network protocols supported for AV download. + + + + + + + + + + FTP/SSL {{bibref|RFC2228}} + + + + + SSH file transfer protocol {{bibref|SSH-FTP}} + + + + + {{bibref|RFC1350}} + + + + + + + + AV multiplex types supported by the front end. + + + + + + + + {{bibref|ISO/IEC11172-1}} + + + + + {{bibref|ISO/IEC13818-1}} + + + + + {{bibref|ISO/IEC13818-1}} + + + + + {{bibref|ISO/IEC13818-1}} + + + + + + + + Describes the maximum de-jittering buffer size, in {{units}}, supported by the STB. + A value of -1 indicates no specific limit on the buffer size. + + + + + + + + + + + + PVR capabilities. + + + + Maximum number of AV streams that the PVR can simultaneously record and playback. For example a time shift, consisting of a record and a play back is considered as 2 streams. + A value of -1 indicates no specific limit on the number of streams. + + + + + + + + + + Maximum number of AV streams that the PVR can simultaneously record. + A value of -1 indicates no specific limit on the number of streams. + + + + + + + + + + Maximum number of AV streams that the PVR can simultaneously play back. + A value of -1 indicates no specific limit on the number of streams. + + + + + + + + + + Maximum time delay, in {{units}}, that the PVR time-shift mode can support. + A value of -1 indicates no specific limit on the time delay. + + + + + + + + + + + + Audio decoder capabilities. + + + + Audio standards supported by this STB. + + + + + + + {{bibref|ISO/IEC11172-3}} + + + + + {{bibref|ISO/IEC11172-3}} + + + + + {{bibref|ISO/IEC13818-3}} + + + + + {{bibref|ISO/IEC13818-3}} + + + + + + + + Low Complexity {{bibref|ISO/IEC13818-3}} + + + + + Low Complexity {{bibref|ISO/IEC14496-3}} + + + + + Main Profile {{bibref|ISO/IEC14496-3}} + + + + + Scalable AAC {{bibref|ISO/IEC14496-3}} + + + + + High Efficiency Profile Level 2 {{bibref|ISO/IEC14496-3}} + + + + + {{bibref|ISO/IEC23003-1}} + + + + + Dolby Digital (AC-3) {{bibref|AC-3}} + + + + + Dolby Digital Plus {{bibref|AC-3}} + + + + + Digital Theatre System + + + + + + + + + + Video decoder capabilities. + + + + Video standards supported by this STB. + + + + + + + {{bibref|ISO/IEC13818-1}} + + + + + {{bibref|ISO/IEC13818-6}} + + + + + Same as MPEG4 AVC and H.264 {{bibref|ISO/IEC14496-10}} + + + + + {{bibref|VC-1}} + + + + + + + + + Object describing the set of supported MPEG2 profiles and levels for this STB. It also describes the set of audio standards supported when MPEG2 Part 2 is used as the video standard. + + + + Audio Standards supported by the Player when associated with MPEG2 Part 2 Video. + + + + + + + + + + + Number of instances of {{object|ProfileLevel}}. + + + + + + + + + Table to describe the set of profiles and levels combinations supported by the STB when MPEG2 Part 2 is used as video standard. + {{keys}} The table MUST include a distinct entry for each supported combination of these parameters. + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Identifier of the MPEG2 Part 2 profile. + + + + + + Simple Profile + + + + + Main Profile + + + + + SNR Scalable + + + + + Spatially Scalable + + + + + High Profile + + + + + + + + + Identifier of the MPEG2 part 2 level. + + + + + + Low Level + + + + + Main Level + + + + + High-1440 + + + + + High Level + + + + + + + + The maximum decoding capability for this video standard in {{units}}. This strictly depends on the profile and level selected. + + + + + + + + + + + Object describing the set of supported profiles and levels for this STB. It also describes the set of audio standards supported when MPEG4 Part 2 is used as the video standard. + + + + Audio Standards supported by the Player when associated with MPEG4 Part 2 video. + + + + + + + + + + + Number of instances of {{object|ProfileLevel}}. + + + + + + + + + Table to describe the set of profiles and levels combinations supported by the STB when MPEG4 Part 2 is used as video standard. + {{keys}} The table MUST include a distinct entry for each supported combination of these parameters. + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Identifier of the MPEG4 Part 2 profile. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Identifier of the MPEG4 Part 2 level. + + + + + + + + + + + + + + + + + The maximum decoding capability for this video standard in {{units}}. This strictly depends on the profile and level selected. + + + + + + + + + + + Object describing the set of supported profiles and levels for this STB. It also describes the set of audio standards supported when MPEG4 Part 10 is used as the video standard. + + + + Audio Standards supported by the Player when associated with MPEG4 Part 10 video. + + + + + + + + + + + Number of instances of {{object|ProfileLevel}}. + + + + + + + + + Table to describe the set of profiles and levels combinations supported by the STB when MPEG4 Part 10 is used as video standard. + {{keys}} The table MUST include a distinct entry for each supported combination of these parameters. + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Supported MPEG4 Part 10 profiles. + + + + + + + + + + + + + + + + + Supported MPEG4 Part 10 Levels. + + + + + + + + + + + + + + + + + + + + + + + + + + The maximum decoding capability for this video standard in {{units}}. This strictly depends on the profile and level selected. + + + + + + + + + + + Object describing the set of supported SMPTE-VC-1 profiles and levels for this STB. It also describes the set of audio standards supported when SMPTE-VC-1 is used as the video standard. + + + + Audio Standards supported by the Player when associated with SMPTE-VC-1 video. + + + + + + + + + + + Number of instances of {{object|ProfileLevel}}. + + + + + + + + + Table to describe the set of profiles and levels combinations supported by the STB when SMPTE-VC-1 is used as video standard. + {{keys}} The table MUST include a distinct entry for each supported combination of these parameters. + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Identifier of the SMPTE-VC-1 profile. + + + + + + Simple Profile + + + + + Main Profile + + + + + Advanced Profile + + + + + + + + Identifier of the SMPTE-VC-1 level. + + + + + + Low Level + + + + + Medium Level + + + + + High Level + + + + + Advanced Profile only + + + + + Advanced Profile only + + + + + Advanced Profile only + + + + + Advanced Profile only + + + + + Advanced Profile only + + + + + + + + The maximum decoding capability for this video standard in {{units}}. This strictly depends on the profile and level selected. + + + + + + + + + + + Audio output capabilities. The audio output stage may include selecting output formats, selecting output connectors, and copy protection. + + + + Supported audio output formats. {{enum}} + Note that these refer to supported output formats and not to physical connectors. + + + + + + + + + + + + + modulated analog signals on coax + + + + + + + + + Video output capabilities. The video output stage may include selecting output formats, selecting output connectors, and copy protection. + + + + Analog composite video standards supported for video output. This applies only to CVBS video output. + + + + + + + + + + + + + + + + + + + + + + + + + + Supported video output formats. {{enum}} + Note that these refer to supported output formats and not to physical connectors. + + + + + + + + same as Y/C + + + + + + RGB with Sync on Green + + + + + RGB with external Sync + + + + + + + modulated analog signals on coax + + + + + + + + Supported version of Macrovision digital content protection standard. + + + + + + + + + + Supported version of HDCP digital content protection standard. + + + + + + + + + + Each entry is a supported display format and MUST be in the form of “x:y”, such as for example “4:3, 16:9, 14:9". {{nopattern}} + + + + + + + {{nopattern}} + + + + + + + + + This object describes the characteristics of the HDMI interface, if any. + + + + Video resolutions supported for the HDMI video output. {{enum}} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Indicates whether the STB is supporting HDMI-CEC features as described in {{bibref|HDMI}}. + + + + + + + + Indicates whether the STB is supporting the 3D video formats mandated by {{bibref|HDMI}}. + + + + + + + + + This object describes the characteristics of the Content Download System, if any. + + + + Capability of providing a CDS Push service for the operator initiated download of content items to local storage via a broadband IP connection. + + + + + + + + Capability of providing a CDS Pull service for the user initiated download of content items to a local storage via a broadband IP connection. + + + + + + + + + This object describes the characteristics of the Conditional Access, if any. + + + + Unique identifiers (e.g. commercial names) of supported CA systems. + + + + + + + + + + + + This object describes the characteristics of the Digital Rights Management, if any. + + + + Unique identifiers (e.g. commercial names) of supported DRM systems. + + + + + + + + + + + + This object describes the capabilities of the {{object|.ServiceMonitoring}} object. + + + + Supported service types, each of which relates to an AV stream source. {{enum}} + Note that none of the standard service types cover LAN-sourced IP streams. + + + + + + + WAN-sourced IPTV stream + + + + + WAN-sourced VoD stream + + + + + WAN-sourced IP stream (includes IPTV and VoD + + + + + WAN-sourced Force monitoring IP stream from {{param|.Components.FrontEnd.{i}.IP.ForceMonitor.URI}} (either IPTV or VoD). + + + + + Any WAN-sourced IP stream (includes user and force monitoring streams, IPTV and VoD). + + + + + Cable, e.g. DVB-C, Front End stream + + + + + DTT, e.g. DVB-T, Front End stream + + + + + Satellite, e.g. DVB-S, Front End stream + + + + + PVR play-out stream + + + + + + + + Maximum number of events of each applicable statistic that the STB is able to store for each sample interval. + A value of -1 indicates no specific maximum number of events. + + + + + + + + + + + Maximum number of AV Main streams for which the STB can simultaneously collect statistics. + A value of -1 indicates no specific limit on the number of active streams. + + + + + + + + + + Minimum sample interval in {{units}} that the STB MUST be able to support. + A value of -1 indicates no specific minimum sample interval. + + + + + + + + + + + Maximum number of samples of each statistic that the STB is able to store and report. + A value of -1 indicates no specific maximum number of samples. + + + + + + + + + + The names of the supported high-level metrics. If a metric produces several different scores (e.g. an audio, a video, and an audiovisual score), then they MUST be explicitly named. Example (using "XYZ" as the name of the base metric): + "XYZAudio,XYZVideo,XYZAudiovisual". + + + + + + + + + + + Maximum number of event log entries that the STB is able to record for a MainStream object instance. + + + + + + + + + This object describes the capabilities of the {{object|.Applications.AudienceStats}} object. + + + + Maximum number of channels that the STB MUST support in the {{object|.Applications.AudienceStats}} object + A value of -1 indicates no specific limit on the number of channels. + + + + + + + + + + + Details of STB logical or physical internal components. Unlike the {{object|.Capabilities}} object, which is read-only and which doesn't describe individual instances, this object contains some writeable parameters. + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + FrontEnd instance table. Each front-end instance, including vendor-specific front-end types, will normally have a sub-object that corresponds to the front-end type (e.g. DVB-T or IP). + + + + + + + + + + Enables or disables this front-end. + + + + + + + + The status of this front-end. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Human-readable name associated with this front-end. + + + + + + + + + + + DVB-T front-end details. This object will normally be present if and only if this front-end is a DVB-T front-end. + Parameters are taken from the DGTVi D-Book {{bibref|D-Book}}. + + + + Progression in {{units}} of the current scan. The value is undefined when a scan is not in progress. + + + + + + + + + + + DVB-T service list database installation. Supports maintenance of the service list database by scanning frequencies in order to detect services. + The service list database is in {{object|.Components.FrontEnd.{i}.DVBT.ServiceListDatabase}}. + + + + Input arguments. + + + + Frequency (in {{units}}) at which to start the scanning process. + + + + + + + + + + Frequency (in {{units}}) at which to stop the scanning process. + + + + + + + + + + + + Connect to a DVB-T logical channel. + + + + Input arguments. + + + + Logical channel number to connect to (the logical channel's preferred service will be connected to). + If a {{object|.ServiceMonitoring.MainStream}} instance with ''ServiceType'' = ''DTT'' is currently enabled, the STB MUST ensure that performance data for this service is collected in that instance. + + + + + + + + + + Connect to a DVB-T service. + + + + Input arguments. + + + + DvbId of the service to connect to. + If a {{object|.ServiceMonitoring.MainStream}} instance with ''ServiceType'' = ''DTT'' is currently enabled, the STB MUST ensure that performance data for this service is collected in that instance. + + + + + + + + + + + + + DVB-T modulation details. + + + + Indicates the current frequency in {{units}}. + The value of this parameter is undefined while installing the service list (see {{command|.Components.FrontEnd.{i}.DVBT.Install()}}). + + + + + + + + + + Indicates the channel bandwidth in use. + + + + + + + + + + + + Indicates the current constellation in use. + + + + + + + + + + + + Hierarchical parameter alpha. The higher the value of alpha, the more noise-immune the High Priority Modulation is. + + + + + + no hierarchy + + + + + + + + + + + Indicates the current code rate in use. Code rate applies to HP in case of hierarchical coding. + + + + + + + + + + + + + + Indicates the current code rate in use. Code rate applies to LP in case of hierarchical coding. + + + + + + Coding is not hierarchical + + + + + + + + + + + + + Indicates the current guard interval in use. + + + + + + + + + + + + + Indicates the number of carriers in an OFDM frame. + + + + + + + + + + + Signal/Noise ratio in the carrier band, measured in {{units}}. + + + + + + + + + + Bit Error Ratio before correction, expressed in multiples of 1e-6. + + + + + + + + Bit Error Ratio after correction, expressed in multiples of 1e-9. + + + + + + + + Indicates whether or not the tuner is locked on a frequency. + + + + + + + + + DVB-T Current service details. + + + + It represents the logical channel object instance for the current service, For example: ''.Components.FrontEnd.1.DVBT.-ServiceListDatabase.LogicalChannel.12''. + + + + + + + + + + + It represents the service object instance for the current service. For example: ''.Components.FrontEnd.1.DVBT.ServiceListDatabase.LogicalChannel.12.Service.1''. + + + + + + + + + + + + DVB-T service list database. + + + + Resets the service list database. + + + + + Total number of services defined in the service list database, i.e. the number of different DvbIds in the database. + + + + + + + + Number of logical channels in the service list database. + + + + + + + + + DVB-T logical channel information. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Logical channel number. + + + + + + + + Number of services associated with this logical channel. + + + + + + + + + DVB-T service information. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Human-readable name associated with this service, e.g. read from the DVB service information metadata. + + + + + + + + + + DVB Triplet {{bibref|TS102034}} that uniquely identifies the service in the service list database. + The DVB Triplet is a 12-byte string that is a concatenation of 4 hexadecimal characters for each of the following: Original Network Id, Transport Stream Id, Service Id. For example: + * OriginalNetworkId = 8442 = 0x20FA + * TransportStreamId = 4 = 0x0004 + * ServiceId = 257 = 0x0101 + -> DvbId = ''20FA00040101'' + + + + + + + + + + Transmitter frequency (in {{units}}) for this service. + + + + + + + + + + Bit Error Ratio before correction, expressed in multiples of 1e-6 (indicates the quality of this service). + + + + + + + + Bit Error Ratio after correction, expressed in {{units}} (indicates the quality of this service). + + + + + + + + + + Signal/Noise ratio in the carrier band, measured in {{units}} (indicates the quality of this service). + + + + + + + + + + When set to {{true}}, identifies this as the preferred service for this logical channel and automatically sets {{param}} to {{false}} for other services associated with this logical channel. + When set to {{false}}, cancels this service's preferred status and causes the service with the lowest {{param|BER}} (best received quality) to become the preferred service for this logical channel. + Whenever frequencies are re-scanned, all {{param}} parameters are implicitly reset to {{false}}, i.e. a re-scan will always use the {{param|BER}} to determine preferred services, and will discard any past explicit overrides. + + + + + + + + + IP front-end details. This object will normally be present if and only if the front-end is an IP front-end. + + + + Number of {{object|Inbound}} instances. + + + + + + + + Number of {{object|Outbound}} instances. + + + + + + + + Number of {{object|Inbound}} AV streams currently active (i.e. with ''Status'' != ''Disabled'', which means audio or AV data are being processed). + + + + + + + + Number of {{object|Outbound}} AV streams currently active (i.e. with ''Status'' != ''Disabled'', which means audio or AV data are being processed). + + + + + + + + Force connection to a dedicated IP stream for test purposes. + + + + Input arguments. + + + + RFC 3986 URI that describes the service to connect to in the form: + * <trsp>://<addr>:<port>?StrCtrl=<strctrl>?StrTrspCtrl=<trspctrl>?MuxType=<muxtype> + where: + * '''<addr>''' is the IP address of the service source (for Unicast) or IGMP group (for Multicast). + * '''<port>''' is the associated TCP/UDP port. If not specified, the STB is assumed to know and use an appropriate default port. + * '''<trsp>''' is the streaming transport protocol and MUST be one of the values in {{param|.Capabilities.FrontEnd.IP.StreamingTransportProtocols}}, which SHOULD be converted to lower-case. + * '''<strctrl>''' is the streaming control protocol and MUST be one of the values in {{param|.Capabilities.FrontEnd.IP.StreamingControlProtocols}}. If not specified, no streaming control protocol is to be used. + * '''<trspctrl>''' is the streaming transport control protocol and MUST be one of the values in {{param|.Capabilities.FrontEnd.IP.StreamingTransportControlProtocols}}. If not specified, no streaming transport control protocol is to be used. + * '''<muxtype>''' is the multiplex type and MUST be one of the values in {{param|.Capabilities.FrontEnd.IP.MultiplexTypes}}. This tells the STB which multiplex type to expect. If not specified, the STB is assumed to know, or to be able to determine, the multiplex type. + Note that download protocols are not supported by the above syntax. However, the specified syntax is just a baseline, and STBs MAY support an extended syntax. + Example of Multicast MPEG2-TS over RTP with no transport control: + * rtp://224.112.15.18:3257?StrCtrl=IGMP?MuxType=MPEG2-TS + Example of Multicast MPEG2-TS over RTP with AL-FEC transport control: + * rtp://224.112.15.18:3257?StrCtrl=IGMP?StrTrspCtrl=AL-FEC?MuxType=MPEG2-TS + Example of Unicast MPEG2-TS over UDP with RTSP transport control: + * udp://174.146.35.12:3257?StrCtrl=RTSP?MuxType=MPEG2-TS + Example of Unicast raw AV over RTP with RTCP control and RTSP transport control: + * rtp://174.146.35.12:3257?StrCtrl=RTSP?StrTrspCtrl=RTCP?MuxType=None + If a {{object|.ServiceMonitoring.MainStream}} instance with ''ServiceType'' = ''IP'' or ''IPTV'' (or ''VoD'' if the URI accesses a VoD service) is currently enabled, the STB MUST ensure that performance data for this service is collected in that instance. + + + + + + + + + + + + + Parameters related to RTCP receiver report generation as defined in {{bibref|RFC3550}}. + + + + Enables or disables RTCP receiver report generation. + + + + + + + + The status of RTCP receiver report generation. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + Transmission repeat interval, in {{units}}. + + + + + + + + + + + + Parameters related to RTP AVPF configuration as defined in {{bibref|RFC4585}} and {{bibref|RFC4588}}. + + + + Enables or disables RTP/AVPF receiver report generation. + When set to {{true}}, enables the error correction operation, immediately ({{enum|Forced|OperationMode}} mode) or automatically when necessary ({{enum|Auto|OperationMode}} mode). + When set to {{false}}, disables the error correction operation. + + + + + + + + The operation mode of the Error Correction mechanism. {{enum}} + In {{enum|Auto}} mode, when Error Correction is enabled, the STB decides whether or not to run the Error Correction operation (e.g. after an error analysis). + In {{enum|Forced}} mode, when Error Correction is enabled the STB MUST run the Error Correction operation. + + + + + + + + + + + The status of RTP/AVPF operation. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + {{enum|Auto|OperationMode}} mode and EC is running + + + + + {{enum|Auto|OperationMode}} mode and EC is not running and EC data are not buffered). Note: this is equivalent of "Disabled" but this "Disabled" state is caused by STB under auto mode, not be set by operator + + + + + {{enum|Auto|OperationMode}} mode and EC is not running but EC data are buffered + + + + + {{enum|Forced|OperationMode}} mode and Enabled + + + + + + + + + The status of RTP/AVPF receiver report generation. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + Time in {{units}} the receiver shall wait for a retransmitted packet before considering it to be lost. + + + + + + + + + + Minimum number of lost packets the receiver shall wait for before generating a retransmission request. + + + + + + + + Maximum time in {{units}} the receiver shall wait between a lost packet and the generation of a retransmission request. + + + + + + + + + + Maximum number of consecutive lost packets for which the receiver shall attempt recovery. + + + + + + + + + Parameters related to AL-FEC configuration as defined in {{bibref|SMPTE20022-1}}. + + + + Enables or disables FEC decoder operation. + When set to {{true}}, enables the FEC decoder operation, immediately ({{enum|Forced|OperationMode}} mode) or automatically when necessary ({{enum|Auto|OperationMode}} mode). + When set to {{false}}, disables the FEC decoder operation. + + + + + + + + The operation mode of the FEC decoder. {{enum}} + In {{enum|Auto}} mode, when Error Correction is enabled the STB decides whether or not to run the AL_FEC decoding (e.g. after an error analysis). + In {{enum|Forced}} mode, when Error Correction is enabled the STB MUST run the FEC decoding. + + + + + + + + + + + The status of FEC decoder operation. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + {{enum|Auto|OperationMode}} mode and EC is running + + + + + {{enum|Auto|OperationMode}} mode and EC is not running and EC data are not buffered). Note: this is equivalent of "Disabled", but this "Disabled" state is caused by STB under auto mode, not be set by operator + + + + + {{enum|Auto|OperationMode}} mode and EC is not running but EC data are buffered + + + + + {{enum|Forced|OperationMode}} mode and Enabled + + + + + + + + + + Parameters that are specific to IGMP clients when changing channels. + + + + Enables or disables all IGMP support on the receiver side of the CPE. + + + + + + + + Status of IGMP support on the receiver side of the CPE. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + Maximum number of group memberships allowed simultaneously. + For example, this would need to be at least 2 in order to support a Multicast-delivered main picture and a Multicast-delivered PIP. + + + + + + + + Maximum number of groups for which statistics will be tracked. + This relates only to the maintenance of statistics, and does not affect the operation of the STB. + + + + + + + + Controls logging of IGMP traffic. + The CPE MAY choose to throttle log entries, e.g. if joins and leaves are occurring at an excessive rate. + + + + + + + + Diffserv code point to be used for outgoing IGMP packets. + + + + + + + + + + VLAN ID (as defined in 802.1Q) to be used for outgoing IGMP packets. A value of -1 indicates the default value is to be used. + If either the {{param}} or {{param|EthernetPriorityMark}} is greater than zero, then the outgoing frames MUST be tagged. Otherwise, the outgoing frames MAY be tagged or untagged. + + + + + + + + + + Ethernet priority code (as defined in 802.1D) to be used for outgoing IGMP packets. A value of -1 indicates the default value is to be used. + If either the {{param|VLANIDMark}} or {{param}} are greater than zero, then the outgoing frames MUST be tagged. Otherwise, the outgoing frames MAY be tagged or untagged. + + + + + + + + + + The highest IGMP version supported by the IGMP Client. + + + + + + + + + + + + Robustness is a way of indicating how vulnerable the network is to lost packets. IGMP can recover from robustness minus 1 lost IGMP packets. + RFC 3376 specifies a default of 2. + + + + + + + + The number of {{units}} between repetitions of a host's initial report of membership in a group. + RFC 3376 specifies a default of 1s. + + + + + + + + + + + Number of entries in the {{object|ClientGroup}} table. + + + + + + + + Number of entries in the {{object|ClientGroupStats}} table. + + + + + + + + + IGMP Group table. This is the database that is maintained by the IGMP client to reflect the current group membership. + The CPE MUST support at least ''MaximumNumberOfConcurrentGroups'' table entries. + + + + + + + + + + {{datatype|expand}} + + + + + + + + The IP multicast group address for which this entry contains information. + + + + + + + + Time elapsed in {{units}} since the multicast group has been a member on this interface. + + + + + + + + + + + IGMP Group statistics table. This stores per-group historical statistical data. + The CPE MUST support at least ''MaximumNumberOfTrackedGroups'' table entries. The CPE MAY reclaim entries based on the oldest membership reports. + + + + + + + + + + {{datatype|expand}} + + + + + + + + The IP multicast group address for which this entry contains information. + + + + + + + + Number of {{units}} since the beginning of the period used for collection of {{object|Total}} statistics. + Statistics SHOULD continue to be accumulated across CPE reboots, though this may not always be possible. + + + + + + + + + + Number of {{units}} since the beginning of the period used for collection of {{object|CurrentDay}} statistics. + The CPE MAY align the beginning of each {{object|CurrentDay}} interval with days in the UTC time zone, but is not required to do so. + Statistics SHOULD continue to be accumulated across CPE reboots, though this may not always be possible. + + + + + + + + + + Number of {{units}} since the beginning of the period used for collection of {{object|QuarterHour}} statistics. + The CPE MAY align the beginning of each {{object|QuarterHour}} interval with real-time quarter-hour intervals, but is not required to do so. + Statistics SHOULD continue to be accumulated across CPE reboots, though this may not always be possible. + + + + + + + + + + + Total statistics for this multicast group. + + + + Number of IGMP joins during this period. + + + + + + + + Number of IGMP leaves during this period. + + + + + + + + Maximum latency delay, in {{units}}, from the sending of a Join message for this group to the arrival of the first IP packet for this group during this period. + + + + + + + + + + + Current day statistics for this multicast group. + + + + Number of IGMP joins during this period. + + + + + + + + Number of IGMP leaves during this period. + + + + + + + + Maximum latency delay, in {{units}}, from the sending of a Join message for this group to the arrival of the first IP packet for this group during this period. + + + + + + + + + + + Current quarter hour statistics for this multicast group. + + + + Number of IGMP joins during this period. + + + + + + + + Number of IGMP leaves during this period. + + + + + + + + Maximum latency delay, in {{units}}, from the sending of a Join message for this group to the arrival of the first IP packet for this group during this period. + + + + + + + + + + + Parameters related to the de-jittering buffer configuration for all inbound IP streams. + + + + De-jittering buffer size, measured in {{units}}, on the receiver side of the CPE. The STB is responsible for converting this into the actual buffer size in ''bytes''. + + + + + + + + + + Describes the number of {{units}} worth of data that should be in the receiver side dejittering buffer before play-out can start. Typically this would be half of the buffer size. + + + + + + + + + + + Inbound IP streams currently entering the STB via this front-end. + + + + + + + + + + The status of this Inbound stream. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Unique human-readable name associated with this inbound IP instance. + + + + + + + + + + Network protocol currently used for controlling streaming of the source content, or {{empty}} if the content is not being streamed or is being streamed but is not being controlled. + + + + + + + + + + Network protocol currently used for streaming the source content, or an empty string if the content is not being streamed. + + + + + + + + + + Transport control protocol currently used for streaming the source content, or an empty string if the content is not being streamed. + + + + + + + + + + AV multiplex type currently used for the source content, or an empty string if the content is not being demultiplexed. + + + + + + + + + + Network protocol currently used for downloading the source content, or an empty string if the content is not being downloaded. + + + + + + + + + + IP address of the source of the current stream content. + + + + + + + + TCP or UDP port number of the source of the current stream content, or 0 if the content is not being delivered via IP or if not applicable. + + + + + + + + + + IP address of the destination of the current stream content, or {{empty}} if the content is not being delivered via IP. + + + + + + + + TCP or UDP port number of the destination of the current stream content, or 0 if the content is not being delivered via IP or if not applicable. + + + + + + + + + + RFC 3986 URI that indicates the current source (possibly including Multicast group and port, if relevant) of the stream content, or {{empty}} if the source is not known or cannot be represented as a URI. + For example, for a WAN-delivered stream this might be a content provider's URL, or for a LAN-delivered stream it might be an UPnP AV URN. + If specified, the URI MUST be consistent with the other source-related parameters. + + + + + + + + + + + Parameters related to an outbound IP stream. + + + + + + + + + + The status of this Outbound stream. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Unique human-readable name associated with this outbound IP instance. + + + + + + + + + + AV multiplex type currently used for the destination content, or an empty string if the content is not being demultiplexed. + + + + + + + + + + RFC 3986 URI that indicates the current destination (possibly including Multicast group and port, if relevant) of the stream content, or an empty string if the destination is not known or cannot be represented as a URI. + For example, this might be an UPnP AV URN. + + + + + + + + + + + Parameters used to describe the force monitoring operation. + When running in the force monitoring mode, the STB MUST automatically connect to a test URI defined by the {{param|URI}} parameter whenever it detects that the IP tuner is not not receiving any data from the WAN. + When running in normal mode, the STB does not perform any action when it does not receive any data from the IP tuner coming from the WAN. + The force monitor mode allows to maintain an active stream coming from the network so as to keep collecting statistics. + + + + When set to {{true}}, forces the operation mode in ForceMonitor mode + When set to {{false}}, forces operation mode in Normal mode. + + + + + + + + Indicates the status of the statistic mode of operation. {{enum}} + + + + + + + + + + + Describes the service to connect to for force monitoring purposes with the same syntax as {{param|#.ServiceConnect().URI}}. + If a {{object|.ServiceMonitoring.MainStream}} instance with ''ServiceType'' = ''TEST'' or ''IP-All'' is currently enabled, the STB MUST ensure that performance data for this service is collected in that instance. + The value when read is not specified and need not be the value that was most recently written. + + + + + + + + + + + PVR details. This is a read-only object that exists only to reference PVR storage objects. + + + + Number of {{object|Storage}} instances. + + + + + + + + + PVR storage table. There MUST be an instance for each storage object that can be accessed by the PVR. Entries MAY be dynamically created and deleted as storage devices become available and unavailable. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Unique human-readable name associated with this storage instance. + + + + + + + + + + References the corresponding ''StorageService'' {{bibref|TR-140}} instance, or an object contained within such an instance, e.g. a ''PhysicalMedium'', ''LogicalVolume'' or ''Folder'' instance. + The value is the full hierarchical name of the corresponding object. Example: ''Device.Services.StorageService.1'' + + + + + + + + + + + Audio decoder instance table. It contains data representing the current status of the Audio decoder. + + + + + + + + + + Enables or disables this audio decoder. + + + + + + + + The status of this audio decoder. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Human-readable name associated with this audio decoder. + + + + + + + + + + Audio standard currently being processed by this audio decoder, or an empty string if no audio standard is currently being processed. + + + + + + + + + + + Video decoder instance table. It contains data representing the current status of the video decoder. + + + + + + + + + + Enables or disables this video decoder. + + + + + + + + The status of this video decoder. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Human-readable name associated with this video decoder. + + + + + + + + + + MPEG2 Part 2 profile and level object instance, or {{empty}} if MPEG2 Part 2 is not used. For example: + ''.Capabilities.VideoDecoder.MPEG2Part2.ProfileLevel.2'' + + + + + + + + + + + MPEG4 Part 2 profile and level object instance, or {{empty}} if MPEG4 Part 2 is not used). For example: + ''.Capabilities.VideoDecoder.MPEG4Part2.ProfileLevel.2'' + + + + + + + + + + + MPEG4 Part 10 profile and level object instance, or {{empty}} if MPEG4 Part 10 is not used. For example: + ''.Capabilities.VideoDecoder.MPEG4Part10.ProfileLevel.2'' + + + + + + + + + + + SMPTE-VC-1 profile and level object instance, or {{empty}} if SMPTE-VC-1 is not used. For example: + ''.Capabilities.VideoDecoder.SMPTEVC1.ProfileLevel.2'' + + + + + + + + + + + Indicates the native aspect ratio of the content available at this decoder. + + + + + + + + + + + + Audio output instance table. + + + + + + + + + + Enables or disables this audio output. + + + + + + + + The status of this audio output. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + i.e. Enabled and Muted + + + + + + + + + {{datatype|expand}} + + + + + + + + Human-readable name associated with this audio output. + + + + + + + + + + Currently active audio output format, or {{empty}} if no audio output format is currently active. + Note that this parameter refers to output formats and not to physical connectors. + + + + + + + + + + The audio level on this audio output in {{units}} (0 is quietest and 100 is loudest). This setting is independent of the mute status. + For some audio formats, the audio level is not meaningful, in which case this parameter SHOULD have a fixed value of 0. + + + + + + + + + + + SCART object instances associated with this audio output, or {{empty}} if not associated with any SCART object instances. For example: + * ''.Components.SCART.2'' + * ''.Components.SCART.2,.Components.SCART.3'' + + + + + + + + + + + + + Cancels this audio output's mute status. + + + + + + S/PDIF output instance table configuration. This object, if present, is connected to the audio ouput instance currently delivering S/PDIF audio format as described in {{bibref|SPDIF}}. + + + + + + + + + + Enables or disables the S/PDIF output. + + + + + + + + The status of this S/PDIF output. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Human-readable name associated with this output. + + + + + + + + + + When set to {{true}}, forces the audio format over S/PDIF to be in PCM mode. + When set to {{false}}, let the compressed audio format be carried over S/PDIF (passthrough). + + + + + + + + When in Passthrough mode, the STB sends the audio stream over S/PDIF without decoding it. + + + + + + + + Audio delay value, in {{units}}, currently being applied to the audio stream on the S/PDIF interface. The audio delay is entered by the user via his local UI, when necessary for correcting the lipsync. + + + + + + + + + + + Video output instance table. + + + + + + + + + + Enables or disables this video output. + + + + + + + + The status of this video output. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Enables or disables the color bar display. + When set to {{true}}, the CPE MUST suspend the running service currently using the video output (e.g. IPTV broadcast reception) and MUST display the color bar. + When set to {{false}}, the CPE MUST resume the previousely running service. + This parameter MUST be always initialized with the value {{false}} on STB boot. + + + + + + + + Human-readable name associated with this Video output. + + + + + + + + + + The type of analog video standard currently in use or {{empty}} if no analog video standard is currently in use. + Note that this parameter applies only to the CVBS output format. + + + + + + + + + + Currently active video output format, or {{empty}} if no video output format is currently active. + Note that this parameter refers to output formats and not to physical connectors. + + + + + + + + + + Indicates the aspect ratio behaviour for display on monitors with an aspect ratio different from that of the content, which is specified in {{param|.Components.VideoDecoder.{i}.ContentAspectRatio}}. + + + + + + + DEPRECATED and replaced by following values + + + + + + + + DEPRECATED and replaced by following values + + + + + + + + + + Display format being connected to this VideoOutput. + This parameter is used by the STB to determine whether an aspect ratio conversion is required. + + + + + + + + + + Indicates whether Macrovision analog protection is being used on this video output. + The Macrovision version supported is indicated in {{param|.Capabilities.VideoOutput.Macrovision}}. + + + + + + + + Indicates whether HDCP is being used on this video output. + The HDCP version supported is indicated in {{param|.Capabilities.VideoOutput.HDCP}}. + + + + + + + + SCART object instances associated with this video output, or {{empty}} if not associated with any SCART object instances. For example: + * ''.Components.SCART.2'' + * ''.Components.SCART.2,.Components.SCART.3'' + + + + + + + + + + + + + + SCART configuration. This object allows configuration of the STB's AV switching. + + + + + + + + + + Enables or disables this SCART connector. + + + + + + + + The status of this SCART connector. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Human-readable name associated with this connector. + + + + + + + + + + Enables or disables the Presence control signal (pin 8 of the SCART connector), an output from the STB to control the display device connected to the SCART. + When enabled (set to {{true}}) the STB MUST drive pin 8 to the appropriate level to indicate the output video format (SD or HD) to the connected device. + When disabled (set to {{false}}) the STB MUST NOT drive pin 8. + + + + + + + + + HDMI instance table. This object allows configuration of the STB’s HDMI output. + + + + + + + + + + Enables or disables the HDMI output. + + + + + + + + The status of HDMI output. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Human-readable name associated with this output. + + + + + + + + + + The resolution mode of the HDMI output. + In {{enum|Auto}} mode, the resolution is automatically set at the best format via HDMI protocols. + In {{enum|Manual}} mode, the resolution to be applied to the HDMI output is given by the ResolutionValue parameter. + + + + + + + + + + + When {{param|ResolutionMode}} is set to {{enum|Manual|ResolutionMode}} mode, a write action configures the resolution to be applied to the HDMI output, + When {{param|ResolutionMode}} is set to {{enum|Auto|ResolutionMode}}, a write action as no effect. + A read action provides the current resolution of the HDMI output. + + + + + + + + + + + HDMI connected display device configuration. This object provides parameters from the HDMI connected device if any. + + + + The status of the connected HDMI Display device. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + Human-readable name associated with this display device. + + + + + + + + + + Enhanced Extended Display Information Data (E-EDID) retrieved from the connected HDMI device. + + + + + + + + + + Each entry is a supported resolution of the connected HDMI device and MUST be one element of {{param|.Capabilities.HDMI.SupportedResolutions}}. + + + + + + + + + Preferred connected HDMI device resolution format. + + + + + + + + + + Video latency, in {{units}}, being applied in the connected HDMI device. This parameter is extracted from the E-EDID and can be used to compensate the video latency to preserve lipsync. + + + + + + + + + + When set to {{true}}, indicates the connected HDMI device is supporting HDMI-CEC features. + When set to {{false}}, indicates the connected HDMI device does not support HDMI CEC. + + + + + + + + When set to {{true}}, indicates the connected display device supports auto lip synchronization. This mode consists in communicating over HDMI, the delay to be applied by the STB to the audio in order to preserve the lip sync. + + + + + + + + When set to {{true}}, indicates the connected display device supports the 3D video formats mandated by {{bibref|HDMI}}. + + + + + + + + + This object describes the characteristics of the Conditional Access, if any. + + + + + + + + + + Enables or disables this CA system. + + + + + + + + The status of this CA system. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Indicates a unique identifier (e.g. the commercial name: ''La 7 piu'', ''Mediaset Premium'') for this CA system. + + + + + + + + + + + Path name of the smart card reader object instance containing the smart card (if any) associated with this CA system. + The value MUST be {{empty}} (if not associated with a smart card) or else be the full path name of the corresponding smart card reader object. For example: + ''Device.SmartCardReader.1'' + + + + + + + + + + + This object describes the characteristics of the Digital Rights Management, if any. + + + + + + + + + + Enables or disables this DRM system. + + + + + + + + The status of this DRM system. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Indicates a unique identifier (e.g. the commercial name: ''La 7 piu'', ''Mediaset Premium'') for this DRM system. + + + + + + + + + + + Path name of the smart card reader object instance containing the smart card (if any) associated with this DRM system. + The value MUST be {{empty}} (if not associated with a smart card) or else be the full path name of the corresponding smart card reader object. For example: + ''Device.SmartCardReader.1'' + + + + + + + + + + + AV Streams object. If more than one AV stream can be active at a time, it may contain several {{object|AVStream}} instances. + + + + Number of AV streams currently active (i.e. with ''Status'' != ''Disabled'', which means audio or AV data are being processed). + + + + + + + + Number of {{object|AVStream}} instances. + + + + + + + + + Details of each AVStream. AV streams are created statically. Each AV stream corresponds to a valid ''{FrontEnd, AudioDecoder, VideoDecoder}'' instance combination (although if the PVR is active for this stream, only ''{FrontEnd}'' or ''{AudioDecoder, VideoDecoder}'' will be in use). + + + + + + + + + + The status of this AV stream. {{enum}} + An AV stream is disabled if any of the referenced objects are disabled. + If an AV stream is disabled then the values of other AV stream parameters are not significant. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + Unspecified error + + + + + + + + {{datatype|expand}} + + + + + + + + Human-readable name associated with this stream, e.g. read from the DVB service information metadata. + + + + + + + + + + Indicates whether this stream is using the PVR and, if so, the PVR state. {{enum}} + PVR record state can be inferred from whether the stream has an input FrontEnd: if so and {{param}} is not {{enum|Disabled}}, the PVR is recording. + + + + + + PVR not used by this stream + + + + + PVR playback not active + + + + + PVR playback active (and playing) + + + + + PVR playback active (paused) + + + + + PVR playback active (fast forward) + + + + + PVR playback active (rewind) + + + + + + + + Input FrontEnd object instance associated with this AV stream, or {{empty}} if not associated with a FrontEnd object). For example: + ''.Components.FrontEnd.2'' + + + + + + + + + + + Inbound IP stream object instance associated with the FrontEnd for this AV stream, or {{empty}} if the inbound stream is not delivered over IP. For example: + ''.Components.FrontEnd.2.IP.Inbound.3'' + + + + + + + + + + + Outbound IP stream object instance associated with the output FrontEnd for this AV stream (which is always the IP FrontEnd), or {{empty}} if the outbound stream is not delivered over IP. For example: + ''.Components.FrontEnd.2.IP.Outbound.3'' + + + + + + + + + + + Audio Decoder object instance associated with this AV stream, or {{empty}} if not associated with an Audio Decoder object. For example: + ''.Components.AudioDecoder.2'' + + + + + + + + + + + Video Decoder object instance associated with this AV stream, or {{empty}} if not associated with a Video Decoder object. For example: + ''.Components.VideoDecoder.2'' + + + + + + + + + + + CA system object instance associated with this AV stream, or {{empty}} if not associated with a CA object. For example: + ''.Components.CA.2'' + + + + + + + + + + + DRM system object instance associated with this AV stream, or {{empty}} if not associated with a DRM object. For example: + ''.Components.DRM.2'' + + + + + + + + + + + + AV Players object. If more than one AV player can be active at a time, it may contain several {{object|AVPlayer}} instances. + AV players are created statically. Each AV player corresponds to a combination of several AV streams (one main screen video, several PIP, one audio) being connected to an AV presentation device (such as a TV set). + There is no guarantee that the STB has the resources to enable all of its AV players at the same time. + + + + Number of AV players currently active (i.e. with ''Status'' != ''Disabled'', which means the {{object|AVPlayer}} is processing an audio or AV stream). + + + + + + + + Number of {{object|AVPlayer}} instances. + + + + + + + + Human-readable string, as specified in {{bibref|RFC3066}}, describing the audio language that SHOULD be used by the STB when receiving a multi-language audio multiplex. + {{empty}} indicates that there is no preferred audio language. + + + + + + + + + + Human-readable string, as specified in {{bibref|RFC3066}}, describing the subtitling language that SHOULD be used by the STB when receiving multi-language subtitling. + A value of ''None'' indicates that no subtitling is required. + {{empty}} indicates that there is no preferred subtitling language. + + + + + + + + + + Aspect ratio behaviour preference for display on monitor. + If non-empty, the string MUST be one of the .Components.VideoOutput.{i}. AspectRatioBehaviour values. + + + + + + + + + + Resets the STB's master PIN code to 0000. It is not recommended that this be set to true without the user's permission. No data on the device such as PVR recordings are to be cleared as a result of resetting the PIN code. + + + + + + List of AV Player objects. Each item is one particular AV player being processed by the STB. + + + + + + + + + + Enables or disables this AV player. + + + + + + + + The status of this AV player. {{enum}} + If an AV player is disabled then the values of other AV player parameters are not significant. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Human-readable name associated with this AV player. + + + + + + + + + + Human-readable string, as specified in {{bibref|RFC3066}}, describing the audio language being currently processed by the AV player. + + + + + + + + + + The status of subtitling for this AV player. {{enum}} + Subtitles are assumed to be shown only on the main screen. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + Human-readable string, as specified in {{bibref|RFC3066}}, describing the subtitling language being currently processed by the AV player. + Subtitles are assumed to be shown only on the main screen. + + + + + + + + + + Audio output object instances associated with this AV player, or {{empty}} if not associated with any audio output object instances. For example: + ''.Components.AudioOutput.2'' + + + + + + + + + + + + + Video output object instances associated with this AV player, or {{empty}} if not associated with any video output object instances. For example: + ''.Components.VideoOutput.2'' + + + + + + + + + + + + + AV stream object instance associated with this AV player that is being sent to the main screen, or {{empty}} if not associated with an AV stream object. For example: + ''.AVStreams.AVStream.2'' + + + + + + + + + + + AV stream object instances associated with this AV player that are being displayed as Picture In Picture (PIP), or {{empty}} if not associated with any PIP AV stream objects. For example: + * ''.AVStreams.AVStream.2'' + * ''.AVStreams.AVStream.2,.AVStreams.AVStream.3'' + + + + + + + + + + + + + + Records events and collects QoS / QoE related statistics for Main AV streams. + These statistics are broken down into categories, e.g. de-jittering and RTP, and for each category there are two types of statistics: + * '''Total''' statistics, which count the number of occurrences of something. + * '''Sample''' statistics, which are measured over a sample interval, and are made available to the ACS as a list of the most recent n samples. + Total statistics are always collected (collection cannot be disabled, but the values can be reset). + For Sample statistics, an STB uses a single sample interval and number of samples (n) for all {{object|MainStream}} instances. The sample interval can be aligned with absolute time. + When Sample statistics collection is enabled, statistics collection MUST proceed regardless of whether there are any active Main AV streams. For example, even when the STB is not receiving any data, sample intervals will continue to be timed as normal. + Refer to {{bibref|TR-135|I.3}} for non-normative explanation of the operation of the ''ServiceMonitoring'' object. + + + + Enables or disables collection of Sample statistics. + When collection of Sample statistics is enabled, any stored samples are discarded, and the first sample interval begins immediately. + + + + + + + + Indicates availability of Sample statistics. {{enum}} + The {{enum|Trigger}} value is only used for triggering the ACS to fetch the collected data and can only be used when {{param|FetchSamples}} is in the range [1:{{param|ReportSamples}}]. + The transition from {{enum|Enabled}} -> {{enum|Trigger}} -> {{enum|Enabled}} MUST be instantaneous and so will result in only a single value change for notification purposes. + + + + + + Collection is disabled + + + + + Collection is enabled + + + + + Collection is enabled and the ACS should now fetch the collected data + + + + + + + + The sample interval in {{units}}. Each statistic is measured over this sample interval. + The STB MAY reject a request to set {{param}} to less than {{param|.Capabilities.ServiceMonitoring.MinSampleInterval}}. + Sample intervals MUST begin every {{param}} seconds, with no delay between samples. + If {{param}} is changed while collection of Sample statistics is enabled, any stored samples are discarded, and the first sample interval begins immediately. + For example, if {{param|ReportSamples}} is 24 and {{param}} is 3600 (an hour), the STB can store up to a day's worth of samples for each statistic. + + + + + + + + + + + The number of samples that the STB can store and report for each statistic. + The STB MUST permit {{param}} to be set to any value in the range from 1 to {{param|.Capabilities.ServiceMonitoring.MaxReportSamples}}. + If {{param}} is changed while collection of Sample statistics is enabled, the STB will truncate or extend its statistics buffers as appropriate, but statistics collection MUST NOT otherwise be affected. + For example, if {{param}} is 24 and {{param|SampleInterval}} is 3600 (an hour), the STB can store up to a day's worth of samples for each statistic. + + + + + + + + + + The number of event measurements of each applicable statistic that the STB is able to store for each sample interval. + The STB MUST permit {{param}} to be set to any value in the range from 1 to {{param|.Capabilities.ServiceMonitoring.MaxEventsPerSampleInterval}}. + If {{param}} is changed while collection of Sample statistic is enabled, the STB will truncate or extend its event measurement buffers as appropriate, but event measurement collection MUST NOT otherwise be affected. + For example, if {{param|ReportSamples}} is 24 and {{param|SampleInterval}} is 3600 (an hour), and {{param}} is 60, the STB can store up 60 event measurements per hour, or in total 1440 event measurements per day. + + + + + + + + + + If collection of Sample statistics is enabled and {{param}} is in the range [1:{{param|ReportSamples}}] then {{param|SampleState}} MUST transition from {{enum|Enabled|SampleState}} -> {{enum|Trigger|SampleState}} -> {{enum|Enabled|SampleState}} on completion of every {{param}} sample intervals. Otherwise, this transition MUST NOT occur. + For example, if {{param|ReportSamples}} is 25 and {{param}} is 24, then the STB will store 25 values for each statistic and the above {{param|SampleState}} transition will occur every 24 sample intervals, which means that the ACS could delay for up to two sample intervals before reading the stored values and would still not miss any samples (see also {{param|ForceSample}}). + + + + + + + + An absolute time reference in UTC to determine when sample intervals will complete. Each sample interval MUST complete at this reference time plus or minus an integer multiple of {{param|SampleInterval}}. + This time reference also determines when the {{param|SampleState}} {{enum|Enabled|SampleState}} -> {{enum|Trigger|SampleState}} -> {{enum|Enabled|SampleState}} transitions that are controlled by {{param|FetchSamples}} will occur. If collection of Sample statistics is enabled and {{param|FetchSamples}} is in the range [1:{{param|ReportSamples}}] then each such {{param|SampleState}} transition MUST occur at this reference time plus or minus an integer multiple of {{param|FetchSamples}} * {{param|SampleInterval}} (the fetch interval). + {{param}} is used only to set the "phase" of the sample and fetch intervals. The actual value of {{param}} can be arbitrarily far into the past or future. + If {{param}} is changed while collection of Sample statistics is enabled, any stored samples are discarded, and the first sample interval begins immediately. + The Unknown Time value defined in {{bibref|TR-106a1}} indicates that no particular time reference is specified. That is, the STB MAY locally choose the time reference, and is required only to adhere to the specified sample and fetch intervals. + If absolute time is not available to the STB, its sample and fetch interval behavior MUST be the same as if the {{param}} parameter was set to the Unknown Time value. + For example, if {{param|SampleInterval}} is 3600 (an hour) and if {{param}} is set to UTC midnight on some day (in the past, present, or future) then sample intervals will complete on each UTC hour (00:00, 01:00, 02:00 etc). + If, in addition, {{param|FetchSamples}} is 24, then the fetch interval is 86400 (a day) and {{param|SampleState}} {{enum|Enabled|SampleState}} -> {{enum|Trigger|SampleState}} -> {{enum|Enabled|SampleState}} transitions will occur every day at UTC midnight. + Note that, if {{param}} is set to a time other than the Unknown Time, the first sample interval (which has to begin immediately) will almost certainly be shorter than {{param|SampleInterval}}). This is why {{param}} is defined in terms of when sample intervals complete rather than start. + + + + + + + + The absolute time at which the sample interval for the first stored sample (for each statistic) started. + + + + + + + + The absolute time at which the sample interval for the last stored sample (for each statistic) ended. + If {{param|ForceSample}} has been used to force statistics for the current sample to be calculated and updated in the data model, then {{param}} MUST be updated to reflect the actual time over which stored data was collected. + + + + + + + + Number of {{object|MainStream}} instances. + + + + + + + + Enables or disables the collection of the events for all main streams. + When the collection of events is enabled, any previously collected events are discarded and the collection of new events begins immediately. + + + + + + + + Forces statistics for the current sample to be calculated and updated in the data model. + If this is the first time that {{command}} has been invoked during the current sample interval, this MUST cause a new value to be added to each of the Sample statistics comma-separated list parameters, and the {{param|ReportEndTime}} and all ''SampleSeconds'' parameters MUST be updated accordingly. + If this is not the first time that {{command}} has been invoked during the current sample interval, then the new values that were added as described in the previous paragraph, and the {{param|ReportEndTime}} and all ''SampleSeconds'' parameters, MUST be updated accordingly. + Note that {{command}} just provides a ''sneak preview'' of the current sample. It does not create a new sample and it does not interfere with the sample interval schedule. + At the end of each sample interval, if {{command}} was invoked during the sample interval then the new values that were added as described above, and the {{param|ReportEndTime}} and all ''SampleSeconds'' parameters, will be updated accordingly. In other words, the partial sample data that was created when {{command}} was invoked will be updated one last time at the end of the sample interval. + + + + + + List of Main AV stream objects. Each instance is associated with a specified service type and will collect statistics only for the main stream that matches that service type. + Note that this means that streams that do not match an instance's service type MUST NOT contribute to the instance's Total and Sample statistics. + It is up to the STB to determine which AV stream should be regarded as the Main AV stream for a given service type at any given time. For example, if two active streams are associated with the same service type, the STB might prefer streams that are associated with an AV player, or if more than one stream is associated with an AV player, the STB might prefer a player that is outputting a DVI stream to a player that is outputting an RF stream. + Note that some parameters, e.g. {{param|.Components.FrontEnd.{i}.IP.ServiceConnect().URI}}, include requirements that restrict the STB's freedom to determine which AV stream should be regarded as the Main AV stream for a given service. + + + + + + + + + + Enables or disables collection of Total and Sample statistics and events for this object instance. + The collection of events requires the value of this parameter to be {{true}} and the value of the {{param|##.ServiceMonitoring.EventCollectionEnable}} to be {{true}}. + + + + + + + + Total and Sample statistics and event collection status for this object instance. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + Time based UUID {{bibref|RFC4122|Section 4.2}} that is the identifier for the associated {{param|AVStream}} parameter when available to the device. + + + + + + + + {{datatype|expand}} + + + + + + + + Service type associated with this main stream instance, or {{empty}} if this instance is disabled. + The STB MUST reject a request that would result in a given AV stream contributing to more than one {{object|.ServiceMonitoring.MainStream}} instance, e.g. it would reject a request to enable simultaneous collection of both IPTV and IP statistics, or to collect IPTV statistics on more than one instance. + + + + + + + + + + Main AV stream object instance currently associated with this ''ServiceMonitoring'' main stream instance. For example: + ''.AVStreams.AVStream.2'' + Note that, during the period of time over which Sample statistics are stored, this ''ServiceMonitoring'' main stream instance might be associated with many different ''AVStream'' instances. This parameter just provides information about which ''AVStream'' is currently being monitored. + + + + + + + + + + + Minimum number of consecutive received packets after the end of an RTP Loss Event. A Loss Event is defined as as a sequence of lost packets, possibly including islands of received packets. Each island consists of up to + ({{param}} - 1) received packets (a sequence of {{param}} received packets terminates the Loss Event, and so is not an island). + + + + + + + + The minimum distance required between error events before an RTP Loss Event is considered severe. Used in the calculation of ''SevereLossIndexCount'' and ''SevereLossIndexCountBeforeEC''. + + + + + + + + The minimum value for the count of lost packets per RTP Loss Event before the count of lost packets is considered severe. Used in the calculation of ''SevereLossLengthCount'' and ''SevereLossLengthCountBeforeEC''. + + + + + + + + Time period, in {{units}}, between a user channel change request (defined as the instant of transmission of the relevant control protocol message (IGMP JOIN or RTSP SETUP) or a tuner command in case of DTT), and the display of the first I frame for the current AVStream, above which a channel change is considered as failed. + + + + + + + + + + {{list}} Definition of the histogram intervals for counting loss events according to their size (in {{units}}). Each value indicates the maximum value of the interval. For example, "1,2,4,8," defines the five intervals: 1 packet lost, 2 packets, 3 or 4 packets, 5 to 8 packets and 9 or more packets. (No value after the last comma means no upper bound.) + If this parameter is set to an empty string, no PacketsLostByEvent stats will be collected. + + + + + + + + + + + + {{list}} Definition of the histogram intervals for counting loss events according to their delay (in {{units}}) after the preceding loss event. Each value indicates the maximum value of the interval. For example, "10,20,50,100,1000,60000,3600000," defines the intervals up to 10 ms, to 20 ms, to 50 ms, to 100 ms, to 1 s, to 1 mn, to 1 h and more than 1 h. (No value after the last comma means no upper bound.) + If this parameter is set to an empty string, no DelayBetweenLossEvents stats will be collected. + + + + + + + + + + + + {{list}} Definition of the histogram intervals for counting severe loss events according to their duration (in {{units}}). Each value indicates the maximum value of the interval. For example, "50,100,500,1000,2000,5000,10000,120000," defines the intervals up to 50 ms, to 100 ms, to 500 ms, to 1 s, to 2 s etc. (No value after the last comma means no upper bound.) + If this parameter is set to an empty string, no DurationSevereLossEvents stats will be collected. + + + + + + + + + + + + + Total statistics since this ''ServiceMonitoring'' main stream instance was last enabled or Total statistics were last reset. + + + + The number of seconds during which data was collected for this AV stream since last reset + Each statistics category (Dejittering, RTP etc) has its own {{param}} parameter, which indicates the number of seconds during which data was collected for that statistics category since last reset. + Individual {{param}} values can be less than the {{param|ResetTime}}, for several reasons, including the STB was not receiving any data (Standby mode without force monitoring). + + + + + + + + Number of seconds since the Total statistics were last enabled or reset for this ''ServiceMonitoring'' main stream instance. + + + + + + + + Resets Total statistics for this ''ServiceMonitoring'' main stream instance. + + + + + + Total de-jittering statistics for this ''ServiceMonitoring'' main stream instance. + + + + The number of seconds during which data was collected for this AV stream since last reset + Each statistics category (Dejittering, RTP etc) has its own {{param}} parameter, which indicates the number of seconds during which data was collected for that statistics category since last reset. + Individual {{param}} values can be less than {{param|.ServiceMonitoring.MainStream.{i}.Total.ResetTime}}, for several reasons, including: + * Any of the reasons for which the {{param}} values might be less than {{param|.ServiceMonitoring.MainStream.{i}.Total.ResetTime}}. + * De-jittering data collection is not appropriate or possible for this AV stream. + + + + + + + + Total time, in {{units}}, for which the playout was stopped due to buffer issues (empty or too low level) for this AV stream. + + + + + + + + + + Total number of times the receive jitter buffer has overrun for this AV stream. + + + + + + + + Total number of times the receive jitter buffer has underrun for this AV stream. + + + + + + + + + Total TCP statistics for this ServiceMonitoring main stream instance. + + + + The number of seconds during which data was collected for this AV stream since last reset + Each statistics category (Dejittering, RTP etc) has its own {{param}} parameter, which indicates the number of seconds during which data was collected for that statistics category since last reset. + Individual {{param}} values can be less than {{param|.ServiceMonitoring.MainStream.{i}.Total.ResetTime}}, for several reasons, including: + * Any of the reasons for which the {{param}} values might be less than {{param|.ServiceMonitoring.MainStream.{i}.Total.ResetTime}}. + * TCP data collection is not appropriate or possible for this AV stream. + + + + + + + + Total number of TCP packets correctly received for this AV stream. + + + + + + + + Total number of TCP packets being retransmitted for this AV stream. + + + + + + + + Total number of bytes received for this AV stream. + + + + + + + + + Total RTP statistics for this ''ServiceMonitoring'' main stream instance. + If no EC is applied the ''BeforeEC'' statistics provide the same values as the corresponding statistics, e.g. when there is no EC, {{param|PacketsReceivedBeforeEC}} = {{param|PacketsReceived}}. + + + + The number of seconds during which data was collected for this AV stream since last reset + Each statistics category (Dejittering, RTP etc) has its own {{param}} parameter, which indicates the number of seconds during which data was collected for that statistics category since last reset. + Individual {{param}} values can be less than {{param|.ServiceMonitoring.MainStream.{i}.Total.ResetTime}}, for several reasons, including: + * Any of the reasons for which the {{param}} values might be less than {{param|.ServiceMonitoring.MainStream.{i}.Total.ResetTime}}. + * RTP data collection is not appropriate or possible for this AV stream. + + + + + + + + Total number of RTP packets expected for this AV stream as described in {{bibref|RFC3550|A.3}}. + + + + + + + + Total number of packets discarded at the RTP layer for this AV stream because they were too late for playout, regardless of their being out of sequence or not. + These statistics are collected when no EC is applied or after any EC if available. + + + + + + + + Total number of packets out of sequence at the RTP level for this AV stream, regardless of their being too late for playout or not. + These statistics are collected when no EC is applied or after any EC if available. + + + + + + + + Total number of RTP packets received for this AV stream. + These statistics are collected when no EC is applied or after any EC if available. + + + + + + + + Total number of RTP packets received for this AV stream. + These statistics are collected before any EC, if available, is applied. + + + + + + + + Total number of RTP packets lost for this stream. + These statistics are collected when no EC is applied or after any EC if available. + + + + + + + + Total number of RTP packets lost for this stream. + These statistics are collected before any EC, if available, is applied. + + + + + + + + {{list}} Total number of loss events counted by their length in packets (1 packet, 2 packets, etc.) according to the intervals defined by {{param|##.PacketsLostByEventHistogramIntervals}}. + These statistics are collected when no EC is applied or after any EC if available. + + + + + + + + + {{list}} Total number of loss events counted by their length in packets (1 packet, 2 packets, etc.) according to the intervals defined by {{param|##.PacketsLostByEventHistogramIntervals}}. + These statistics are collected before any EC, if available, is applied. + + + + + + + + + Total number of Loss Events for this stream. + These statistics are collected when no EC is applied or after any EC if available. + + + + + + + + Total number of Loss Events for this stream. + These statistics are collected before any EC, if available, is applied. + + + + + + + + {{list}} Total number of times that the delay (in milliseconds) between two consecutive loss events belongs to each time interval defined by {{param|##.DelayBetweenLossEventsHistogramIntervals}}. + These statistics are collected when no EC is applied or after any EC if available. + + + + + + + + + {{list}} Total number of times that the delay (in milliseconds) between two consecutive loss events belongs to each time interval defined by {{param|##.DelayBetweenLossEventsHistogramIntervals}}. + These statistics are collected before any EC, if available, is applied. + + + + + + + + + Total number of Loss Events closer than ''SevereLossMinDistance''. + These statistics are collected when no EC is applied or after any EC if available. + + + + + + + + Total number of Loss Events closer than ''SevereLossMinDistance''. + These statistics are collected before any EC, if available, is applied. + + + + + + + + Total number of Loss Events longer than ''SevereLossMinLength''. + These statistics are collected when no EC is applied or after any EC if available. + + + + + + + + Total number of Loss Events longer than ''SevereLossMinLength''. + These statistics are collected before any EC, if available, is applied. + + + + + + + + {{list}} Total number of severe loss events counted by their duration (in milliseconds) according to the intervals defined by {{param|##.DurationSevereLossEventsHistogramIntervals}}. + These statistics are collected when no EC is applied or after any EC if available. + + + + + + + + + {{list}} Total number of severe loss events counted by their duration (in milliseconds) according to the intervals defined by {{param|##.DurationSevereLossEventsHistogramIntervals}}. + These statistics are collected before any EC, if available, is applied. + + + + + + + + + Total number of RTP/AVPF retransmission timeouts ({{bibref|RFC4585}}, {{bibref|RFC4588}}) + If RTP/AVPF is not used this parameter does not increment + + + + + + + + + Total MPEG2-TS statistics for this ''ServiceMonitoring'' main stream instance. + + + + The number of seconds during which data was collected for this AV stream since last reset + Each statistics category (Dejittering, RTP etc) has its own {{param}} parameter, which indicates the number of seconds during which data was collected for that statistics category since last reset. + Individual {{param}} values can be less than {{param|.ServiceMonitoring.MainStream.{i}.Total.ResetTime}}, for several reasons, including: + * Any of the reasons for which the {{param}} values might be less than {{param|.ServiceMonitoring.MainStream.{i}.Total.ResetTime}}. + * MPEG2 TS data collection is not appropriate or possible for this AV stream. + + + + + + + + Total number of MPEG2-TS packets received for this AV stream. + + + + + + + + Total number of MPEG2-TS packets with an invalid transport sync byte received for this AV stream. + Not meaningful when MPEG2-TS is transported over IP. + + + + + + + + Total number of MPEG2-TS Loss of Synchronization Events for this AV stream. + Not meaningful when MPEG2-TS is transported over IP. + + + + + + + + Total number of MPEG2-TS Discontinuity errors that have been captured for this AV stream. This parameter accumulates all of the discontinuities observed for all currently monitored PIDs. + These statistics are collected when no CA decryption scheme is in use or after any CA decryption if in use. + + + + + + + + Total number of MPEG2-TS Discontinuity errors that have been captured for this AV stream. This parameter accumulates all of the discontinuities observed for all currently monitored PIDs. + These statistics are collected before any CA decryption scheme, if used, is applied. + + + + + + + + + Total video decoder application layer statistics for this ''ServiceMonitoring'' main stream instance. + + + + The number of seconds during which data was collected for this AV stream since last reset + Each statistics category (Dejittering, RTP etc) has its own {{param}} parameter, which indicates the number of seconds during which data was collected for that statistics category since last reset. + Individual {{param}} values can be less than {{param|.ServiceMonitoring.MainStream.{i}.Total.ResetTime}}, for several reasons, including: + * Any of the reasons for which the {{param}} values might be less than {{param|.ServiceMonitoring.MainStream.{i}.Total.ResetTime}}. + * Video Decoder data collection is not appropriate or possible for this AV stream. + + + + + + + + The latest frame rate at which the STB played out the video content for this AV stream. Also the reported rate will be rounded off to the nearest integer. + + + + + + + + The number of video frames that were decoded completely (errorless frames) or partially (corrupted frames) for this AV stream. + + + + + + + + The number of video frames that could not be reproduced by the STB for this AV stream. + + + + + + + + The number of video frames that were reproduced by the STB for which some information was missing and loss concealment was applied for this AV stream. + + + + + + + + The number of I frames that were decoded completely (errorless frames) or partially (corrupted frames) for this AV stream. + + + + + + + + The number of I frames that could not be reproduced by the STB for this AV stream. + + + + + + + + The number of I frames that were reproduced by the STB for which some information was missing and loss concealment applied for this AV stream. + + + + + + + + The number of P frames that were decoded completely (errorless frames) or partially (corrupted frames) for this AV stream. + + + + + + + + The number of P frames that could not be reproduced by the STB for this AV stream. + + + + + + + + The number of P frames that were reproduced by the STB for which some information was missing and loss concealment applied for this AV stream. + + + + + + + + The number of B frames that were decoded completely (errorless frames) or partially (corrupted frames) for this AV stream. + + + + + + + + The number of B frames that could not be reproduced by the STB for this AV stream. + + + + + + + + The number of B frames that were reproduced by the STB for which some information was missing and loss concealment applied for this AV stream. + + + + + + + + The number of AV resynchronizations that were performed by the STB for this AV stream. + + + + + + + + + Total audio decoder application layer statistics for this ''ServiceMonitoring'' main stream instance. + + + + The number of seconds during which data was collected for this AV stream since last reset + Each statistics category (Dejittering, RTP etc) has its own {{param}} parameter, which indicates the number of seconds during which data was collected for that statistics category since last reset. + Individual {{param}} values can be less than {{param|.ServiceMonitoring.MainStream.{i}.Total.ResetTime}}, for several reasons, including: + * Any of the reasons for which the {{param}} values might be less than {{param|.ServiceMonitoring.MainStream.{i}.Total.ResetTime}}. + * Audio Decoder data collection is not appropriate or possible for this AV stream. + + + + + + + + The number of audio frames that were decoded completely (errorless frames) or partially (corrupted frames) for this AV stream. + + + + + + + + The number of audio decoding errors detected for this AV stream. + + + + + + + + + Total video response statistics for this ''ServiceMonitoring'' main stream instance. + + + + The number of seconds during which data was collected for this AV stream since last reset + Each statistics category (Dejittering, RTP etc) has its own {{param}} parameter, which indicates the number of seconds during which data was collected for that statistics category since last reset. + Individual {{param}} values can be less than {{param|.ServiceMonitoring.MainStream.{i}.Total.ResetTime}}, for several reasons, including: + * Any of the reasons for which the {{param}} values might be less than {{param|.ServiceMonitoring.MainStream.{i}.Total.ResetTime}}. + * Video response data collection is not appropriate or possible for this AV stream. + + + + + + + + Number of channel change failures. A channel change is considered as failed when the time period between a user channel change request and the display of the first I frame for this AVStream is above {{param|.ServiceMonitoring.MainStream.{i}.ChannelChangeFailureTimeout}}. + + + + + + + + Each entry represents a channel for which a channel change failed. Channels MAY be described as IP address, URL or Service names as appropriate. Only last 10 failures are required to be reported. + + + + + + + + + Minimum time period, in {{units}}, between the instant of transmitting a RTSP PLAY command to start playing stream, and displaying the first I frame of unicast stream. Only measured when started from a non-play state, i.e. either idle or paused. + + + + + + + + + + Maximum time period, in {{units}}, between the instant of transmitting a RTSP PLAY command to start playing stream, and displaying the first I-frame of unicast stream. Only measured when started from a non-play state, i.e. either idle or paused. + + + + + + + + + + Total number of RTSP protocol requests to start a VoD program display. + Only meaningful for VoD. + + + + + + + + Total number of successful VoD attempts. An attempt is considered successful when the first I-frame is displayed by the client. + Only meaningful for VoD. + + + + + + + + Total number of completed VoD requests. An attempt is defined successful if it continues until a RTSP protocol request to end the session is sent by the STB. + Only meaningful for VoD. + + + + + + + + Minimum time period (in {{units}}) between the instant of transmitting an IGMP JOIN command or an RTSP SETUP command, and the display of the first I frame for this AV stream. + + + + + + + + + + Maximum time period (in {{units}}) between the instant of transmitting an IGMP JOIN command or an RTSP SETUP command, and the display of the first I frame for this AV stream. + + + + + + + + + + + Sample statistics collected since collection was last enabled or reset. + Most of the parameters in this object are comma-separated lists of individual statistics values, each of which corresponds to a sample interval. + The statistics values in these comma-separated lists MUST be in time order, with the oldest one first and the most recent one last. + Each comma-separated list can contain up to {{param|##.ReportSamples}} statistics values. When the list is full, each new value causes the oldest one to be discarded. + Some comma-separated lists contain terms that are comma-separated lists themselves and are used to store measurements on an event basis. These sub-lists can contain up to {{param|.Capabilities.ServiceMonitoring.MaxEventsPerSampleInterval}} values. + If no data was collected for a statistic during a sample interval then the value for that sample interval MUST be zero unless otherwise specified in the description of the individual statistics parameter. + + + + Each entry is the number of seconds during which data was collected for this AV stream during the sample interval. Each statistics category (Dejittering, RTP etc) has its own ''SampleSeconds'' parameter, which indicates the number of seconds during which data was collected for that statistics category during the sample interval. + Individual ''SampleSeconds'' values can be less than the ''SampleInterval'', for several reasons, including: + * The STB was not receiving any data for the corresponding ServiceType for all or part of the sample interval. + * ''TimeReference'' has been set to a time other than the Unknown Time and the current sample interval started part of the way through a scheduled sample interval. + * ''ForceSample'' has been used to force statistics for the current sample to be calculated and updated in the data model. + + + + + + + + + + + Each entry is the total number of times that a channel change (or other potentially disruptive event) occurred for this AV stream during the sample interval. + + + + + + + + + Each entry is a Boolean that indicates whether the PVR, with a non-zero time-shift, was used at any time for this AV stream during the sample interval. + + + + + + + + + Number of {{object|HighLevelMetricStats}} instances. + + + + + + + + + De-jittering Sample statistics for this ''ServiceMonitoring'' main stream instance. + + + + Each entry is the number of seconds during which de-jittering data was collected for this AV stream during the sample interval. + Individual {{param}} values can be less than the sample interval, for several reasons, including: + * Any of the reasons for which the {{param|.ServiceMonitoring.MainStream.{i}.Sample.SampleSeconds}} values might be less than the sample interval. + * De-jittering data collection is not appropriate or possible for this AV stream. + + + + + + + + + + + Each entry is the total number of times the receive jitter buffer has overrun for this AV stream during the sample interval. + + + + + + + + + Each entry is the total number of times the receive jitter buffer has underrun for this AV stream during the sample interval. + + + + + + + + + Each entry is the time period, in {{units}}, for which the playout was stopped due to buffer issues (empty or too low level) for this AV stream during the sample interval. + + + + + + + + + + + + TCP sample statistics for this ''ServiceMonitoring'' main stream instance. + + + + Each entry is the number of seconds during which de-jittering data was collected for this AV stream during the sample interval. + Individual {{param}} values can be less than the sample interval, for several reasons, including: + * Any of the reasons for which the {{param|.ServiceMonitoring.MainStream.{i}.Sample.SampleSeconds}} values might be less than the sample interval. + * TCP data collection is not appropriate or possible for this AV stream. + + + + + + + + + + + Each entry is the total number of TCP packets received for this AV stream during the sample interval. + + + + + + + + + Each entry is the total number of TCP packets being retransmitted this AV stream.during the sample interval. + + + + + + + + + Each entry is the total number of bytes received for this AV stream.during the sample interval. + + + + + + + + + + RTP Sample statistics for this ''ServiceMonitoring'' main stream instance. + If no EC is applied the ''BeforeEC'' statistics provide the same values as the corresponding statistics, e.g. when there is no EC, {{param|PacketsReceivedBeforeEC}} = {{param|PacketsReceived}}. + + + + Each entry is the number of seconds during which RTP data was collected for this AV stream during the sample interval. + Individual {{param}} values can be less than the sample interval, for several reasons, including: + * Any of the reasons for which the {{param|.ServiceMonitoring.MainStream.{i}.Sample.SampleSeconds}} values might be less than the sample interval. + * RTP data collection is not appropriate or possible for this AV stream. + + + + + + + + + + + Each entry is the total number of RTP packets expected for this AV stream during the sample interval as described in {{bibref|RFC3550|A.3}}. + + + + + + + + + Each entry is the number of packets that were discarded at the RTP layer for this AV stream during the sample interval because they were too late for playout, regardless of their being out of sequence or not. + These statistics are collected when no EC is applied or after any EC if available. + + + + + + + + + Each entry is the number of packets out of sequence at the RTP level for this AV stream during the sample interval, regardless of their being too late for playout or not. + These statistics are collected when no EC is applied or after any EC if available. + + + + + + + + + Each entry is the total number of RTP packets received for this AV stream during the sample interval. + These statistics are collected when no EC is applied or after any EC if available. + + + + + + + + + Each entry is the total number of RTP packets received for this AV stream during the sample interval. + These statistics are collected before any EC, if available, is applied. + + + + + + + + + Each entry is the number of RTP/AVPF retransmission timeouts ({{bibref|RFC4585}}, {{bibref|RFC4588}}) for this AV stream during the sample interval. + + + + + + + + + Each entry is the total number of RTP packets lost for this AV stream during the sample interval. + Calculated by looking for missing RTP sequence headers. + These statistics are collected when no EC is applied or after any EC if available. + + + + + + + + + Each entry is the total number of RTP packets lost for this AV stream during the sample interval. + Calculated by looking for missing RTP sequence headers. + These statistics are collected before any EC, if available, is applied. + + + + + + + + + {{list}} Each list item is a comma-separated list of unsigned integers that represents, for a sample interval, a histogram of loss events counted by their length in packets (1 packet, 2 packets, etc.) according to the intervals defined by {{param|##.PacketsLostByEventHistogramIntervals}}. + These statistics are collected when no EC is applied or after any EC if available. + + + + + + + + + {{list}} Each list item is a comma-separated list of unsigned integers that represents, for a sample interval, a histogram of loss events counted by their length in packets (1 packet, 2 packets, etc.) according to the intervals defined by {{param|##.PacketsLostByEventHistogramIntervals}}. + These statistics are collected before any EC, if available, is applied. + + + + + + + + + Each entry is the total number of Loss Events for this AV stream during the sample interval. + These statistics are collected when no EC is applied or after any EC if available. + + + + + + + + + Each entry is the total number of Loss Events for this AV stream during the sample interval. + These statistics are collected before any EC, if available, is applied. + + + + + + + + + {{list}} Each list item is a comma-separated list of unsigned integers that represents, for a sample interval, a histogram of the number of times that the delay (in milliseconds) between two consecutive loss events belongs to each time interval defined by {{param|##.DelayBetweenLossEventsHistogramIntervals}}. + These statistics are collected when no EC is applied or after any EC if available. + + + + + + + + + {{list}} Each list item is a comma-separated list of unsigned integers that represents, for a sample interval, a histogram of the number of times that the delay (in milliseconds) between two consecutive loss events belongs to each time interval defined by {{param|##.DelayBetweenLossEventsHistogramIntervals}}. + These statistics are collected before any EC, if available, is applied. + + + + + + + + + Each entry is the total number of Loss Events that occurred at a distance shorter than ''SevereLossMinDistance'' from the previous Loss Event for this AV stream during the sample interval. + These statistics are collected when no EC is applied or after any EC if available. + + + + + + + + + Each entry is the total number of Loss Events that occurred at a distance shorter than ''SevereLossMinDistance'' from the previous Loss Event for this AV stream during the sample interval. + These statistics are collected before any EC, if available, is applied. + + + + + + + + + Each entry is the average distance in {{units}} between consecutive Loss Events for this AV stream during the sample interval. + These statistics are collected when no EC is applied or after any EC if available. + + + + + + + + + + + Each entry is the average distance in {{units}} between consecutive loss events for this AV stream during the sample interval. + These statistics are collected before any EC, if available, is applied. + + + + + + + + + + + Each entry is the length in {{units}} of the shortest distance between consecutive Loss Events for this AV stream during the sample interval. + These statistics are collected when no EC is applied or after any EC if available. + + + + + + + + + + + Each entry is the length in {{units}} of the shortest distance between consecutive Loss Events for this AV stream during the sample interval. + These statistics are collected before any EC, if available, is applied. + + + + + + + + + + + Each entry is the total number of Loss Events with length in RTP packets greater than ''SevereLossMinLength'' for this AV stream during the sample interval. + These statistics are collected when no EC is applied or after any EC if available. + + + + + + + + + Each entry is the total number of Loss Events with length in RTP packets greater than ''SevereLossMinLength'' for this AV stream during the sample interval. + These statistics are collected before any EC, if available, is applied. + + + + + + + + + {{list}} Each list item is a comma-separated list of unsigned integers that represents, for a sample interval, a histogram of the number of severe loss events counted by their duration (in milliseconds) according to the intervals defined by {{param|##.DurationSevereLossEventsHistogramIntervals}}. + These statistics are collected when no EC is applied or after any EC if available. + + + + + + + + + {{list}} Each list item is a comma-separated list of unsigned integers that represents, for a sample interval, a histogram of the number of severe loss events counted by their duration (in milliseconds) according to the intervals defined by {{param|##.DurationSevereLossEventsHistogramIntervals}}. + These statistics are collected before any EC, if available, is applied. + + + + + + + + + Each entry is the length in {{units}} of the longest Loss Event for this AV stream during the sample interval. + These statistics are collected when no EC is applied or after any EC if available. + + + + + + + + + + + Each entry is the length in {{units}} of the longest Loss Event for this AV stream during the sample interval. + These statistics are collected before any EC, if available, is applied. + + + + + + + + + + + Each entry is the average length in {{units}} of Loss Events for this AV stream during the sample interval. + These statistics are collected when no EC is applied or after any EC if available. + + + + + + + + + + + Each entry is the average length in {{units}} of Loss Events for this AV stream during the sample interval. + These statistics are collected before any EC, if available, is applied. + + + + + + + + + + + Each entry is the length in {{units}} of the shortest RTP Loss Event for this AV stream during the sample interval. + These statistics are collected when no EC is applied or after any EC if available. + + + + + + + + + + + Each entry is the length in {{units}} of the shortest RTP Loss Event for this AV stream during the sample interval. + These statistics are collected before any EC, if available, is applied. + + + + + + + + + + + + MPEG2-TS Sample statistics for this ''ServiceMonitoring'' main stream instance. + + + + Each entry is the number of seconds during which MPEG2-TS data was collected for this AV stream during the sample interval. + Individual {{param}} values can be less than the sample interval, for several reasons, including: + * Any of the reasons for which the {{param|.ServiceMonitoring.MainStream.{i}.Sample.SampleSeconds}} values might be less than the sample interval. + * MPEG2-TS data collection is not appropriate or possible for this AV stream. + + + + + + + + + + + Each entry is the total number of MPEG2-TS packets received for this AV stream during the sample interval. + + + + + + + + + Each entry is the total number of good MPEG2-TS packets removed from the buffer for this AV stream during the sample interval. + Packets received minus packets drained provides an indication how close the buffer came to over or under running during the sample interval. + + + + + + + + + Each entry is the total number of MPEG2-TS packets with an invalid transport sync byte for this AV stream during the sample interval. + Not meaningful when MPEG2-TS is transported over IP. + + + + + + + + + Each entry is the total number of MPEG2-TS Loss of Synchronization Events for this AV stream during the sample interval. + Not meaningful when MPEG2-TS is transported over IP. + + + + + + + + + Each entry is the total number of MPEG2-TS Discontinuity errors that were captured for this AV stream during the sample interval. + These statistics are collected when no CA decryption scheme is in use or after any CA decryption if in use. + + + + + + + + + Each entry is the total number of MPEG2-TS Discontinuity errors that were captured for this AV stream during the sample interval. + These statistics are collected before any CA decryption scheme, if used, is applied. + + + + + + + + + + Video decoder Sample statistics for this ''ServiceMonitoring'' main stream instance. + + + + Each entry is the number of seconds during which video decoder data was collected for this AV stream during the sample interval. + Individual {{param}} values can be less than the sample interval, for several reasons, including: + * Any of the reasons for which the {{param|.ServiceMonitoring.MainStream.{i}.Sample.SampleSeconds}} values might be less than the sample interval. + * Video Decoder data collection is not appropriate or possible for this AV stream. + + + + + + + + + + + Each entry is the last frame rate at which the STB played out the video content for this AV stream during the sample interval. . Also the reported rate will be rounded off to the nearest integer. + + + + + + + + + Each entry is the number of video frames that were decoded completely (errorless frames) or partially (corrupted frames) by the STB for this AV stream during the sample interval. + + + + + + + + + Each entry is the number of video frames that could not be reproduced by the STB for this AV stream during the sample interval. + + + + + + + + + Each entry is the number of video frames that were reproduced by the STB for which some information was missing for this AV stream during the sample interval and loss concealment was applied. + + + + + + + + + Each entry is the number of I frames that were decoded completely (errorless frames) or partially (corrupted frames) by the STB for this AV stream during the sample interval. + + + + + + + + + Each entry is the number of I frames that could not be reproduced by the STB for this AV stream during the sample interval. + + + + + + + + + Each entry is the number of I frames that were reproduced by the STB for which some information was missing for this AV stream during the sample interval and loss concealment applied. + + + + + + + + + Each entry is the number of P frames that were decoded completely (errorless frames) or partially (corrupted frames) by the STB for this AV stream during the sample interval. + + + + + + + + + Each entry is the number of P frames that could not be reproduced by the STB for this AV stream during the sample interval. + + + + + + + + + Each entry is the number of P frames that were reproduced by the STB for which some information was missing for this AV stream during the sample interval and loss concealment applied. + + + + + + + + + Each entry is the number of B frames that were decoded completely (errorless frames) or partially (corrupted frames) by the STB for this AV stream during the sample interval. + + + + + + + + + Each entry is the number of B frames that could not be reproduced by the STB for this AV stream during the sample interval. + + + + + + + + + Each entry is the number of B frames that were reproduced by the STB for which some information was missing for this AV stream during the sample interval and loss concealment applied. + + + + + + + + + Each entry is the number of AV resynchronizations that were performed by the STB for this AV stream during the sample interval. + + + + + + + + + + Audio decoder Sample statistics for this ''ServiceMonitoring'' main stream instance. + + + + Each entry is the number of seconds during which audio decoder data was collected for this AV stream during the sample interval. + Individual {{param}} values can be less than the sample interval, for several reasons, including: + * Any of the reasons for which the {{param|.ServiceMonitoring.MainStream.{i}.Sample.SampleSeconds}} values might be less than the sample interval. + * Audio decoder data collection is not appropriate or possible for this AV stream. + + + + + + + + + + + Each entry is the number of audio frames that were decoded completely (errorless frames) or partially (corrupted frames) by the STB for this AV stream during the sample interval. + + + + + + + + + Each entry is the number of audio decoding errors detected by the STB for this AV stream during the sample interval. + + + + + + + + + + Video response Sample statistics for this ''ServiceMonitoring'' main stream instance. + + + + Each entry is the number of seconds during which video response data was collected for this AV stream during the sample interval. + Individual {{param}} values can be less than the sample interval, for several reasons, including: + * Any of the reasons for which the {{param|.ServiceMonitoring.MainStream.{i}.Sample.SampleSeconds}} values might be less than the sample interval. + * Video response data collection is not appropriate or possible for this AV stream. + + + + + + + + + + + Each entry is the time period (in {{units}}) between the instant of transmitting an IGMP JOIN or an RTSP SETUP command and the display of the first I frame, computed as the average of the VideoSystemResponse events that occured for this AV stream during the sample interval. + + + + + + + + + + + Each entry is the minimum time period (in {{units}}) between the instant of transmitting an IGMP JOIN or an RTSP SETUP command and the display of the first I frame for this AV stream during the sample interval. + + + + + + + + + + + Each entry is the maximum time period (in {{units}}) between the instant of transmitting an IGMP JOIN or an RTSP SETUP command and the display of the first I frame for this AV stream during the sample interval. + + + + + + + + + + + Each entry is the time period, in {{units}}, between the instant of transmitting a RTSP PLAY command to start playing stream, and displaying the first I-frame of unicast stream, computed as the average of the VoDControlResponse events that occured for this AV stream during the sample interval. Only measured when started from a non-play state, i.e. either idle or paused. + + + + + + + + + + + Each entry is the minimum time period, in {{units}}, between the instant of transmitting a RTSP PLAY command to start playing stream, and displaying the first I-frame of unicast stream. Only measured when started from a non-play state, i.e. either idle or paused. + + + + + + + + + + + Each entry is the maximum time period, in {{units}}, between the instant of transmitting a RTSP PLAY command to start playing stream, and displaying the first I-frame of unicast stream. Only measured when started from a non-play state, i.e. either idle or paused. + + + + + + + + + + + Each entry is a colon separated list of time periods in milliseconds between the instant of transmitting a RTSP PLAY command to start playing stream, and displaying the first I-frame of unicast stream. Only measured when started from a non-play state, i.e. either idle or paused. + A comma separates measurements made in different sample intervals, while a colon separates individual measurements within a specific sample interval. + If no VoDControlResponse measurements were made during a specific sample interval then this MUST be represented by an empty string. + Example: ,837:453:1234,759,,,923:698,,,1284 + Here there were no measurements during first sample interval, three during the second, one during the third, etc. + The statistics values in this list MUST be in time order, with the oldest one first and the most recent one last. This applies both to sample intervals and to individual measurements during a specific sample interval. {{nopattern}} + + + + + + + {{nopattern}} + + + + + + + + Each entry is a colon separated list of time periods in milliseconds between the instant of transmitting an IGMP JOIN or an RTSP SETUP command and the display of the first I frame that occurred for this AV stream during the sample interval. + A comma separates measurements made in different sample intervals, while a colon separates individual measurements within a specific sample interval. + If no VideoSystemResponse measurements were made during a specific sample interval then this MUST be represented by an empty string. + Example: ,837:453:1234,759,,,923:698,,,1284 + Here there were no measurements during first sample interval, three during the second, one during the third, etc. + The statistics values in this list MUST be in time order, with the oldest one first and the most recent one last. This applies both to sample intervals and to individual measurements during a specific sample interval. {{nopattern}} + + + + + + + {{nopattern}} + + + + + + + + Each entry is the number of RTSP protocol requests to start a VoD program display during the sample interval. + Only meaningful for VoD. + + + + + + + + + Each entry is the number of successful VoD attempts during the sample interval. An attempt is considered successful when the first I-frame is displayed by the client. + Only meaningful for VoD. + + + + + + + + + Each entry is the number of completed VoD requests during the sample interval. An attempt is defined successful if it continues until a RTSP protocol request to end the session is sent by the STB. + Only meaningful for VoD. + + + + + + + + + Each entry is the number of channel change failures. A channel change is considered as failed when the time period between a user channel change request and the display of the first I frame for this AVStream is above {{param|.ServiceMonitoring.MainStream.{i}.ChannelChangeFailureTimeout}}. + + + + + + + + + + High-level metric Sample statistics for this ''ServiceMonitoring'' main stream instance. One or more different high-level metrics can be supported; this is specified by {{param|.ServiceMonitoring.MainStream.{i}.Sample.HighLevelMetricStatsNumberOfEntries}}. + + + + + + + + + + Enables or disables this Metric instance. + + + + + + + + The status of this Metric instance. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Indicates a unique identifier for this high-level metric. + + + + + + + + + + + This parameter is DEPRECATED and replaced by the {{param|MetricThreshold}} parameter and, if needed, several instances of {{object|.ServiceMonitoring.MainStream.{i}.Sample.HighLevelMetricStats.}}. + + + + + + + + + + This parameter is DEPRECATED and replaced by the {{param|MetricThreshold}} parameter and, if needed, several instances of {{object|.ServiceMonitoring.MainStream.{i}.Sample.HighLevelMetricStats.}}. + + + + + + + + + + Each entry is the number of seconds during which this high-level metric's data was collected for this AV stream during the sample interval. + Individual {{param}} values can be less than the sample interval, for several reasons, including: + * Any of the reasons for which the {{param|.ServiceMonitoring.MainStream.{i}.Sample.SampleSeconds}} values might be less than the sample interval. + * This high-level metric's data collection is not appropriate or possible for this AV stream. + + + + + + + + + + + This parameter is DEPRECATED and replaced by the {{param|Metric}} parameter and, if needed, several instances of {{object|.ServiceMonitoring.MainStream.{i}.Sample.HighLevelMetricStats.}}. + + + + + + + + + + + This parameter is DEPRECATED and replaced by the {{param|Metric}} parameter and, if needed, several instances of {{object|.ServiceMonitoring.MainStream.{i}.Sample.HighLevelMetricStats.}}. + + + + + + + + + + + This parameter is DEPRECATED and replaced by the {{param|MetricFailures}} parameter and, if needed, several instances of {{object|.ServiceMonitoring.MainStream.{i}.Sample.HighLevelMetricStats.}}. + + + + + + + + This parameter is DEPRECATED and replaced by the {{param|MetricFailures}} parameter and, if needed, several instances of {{object|.ServiceMonitoring.MainStream.{i}.Sample.HighLevelMetricStats.}}. + + + + + + + + A time period measured in {{units}}. A new value for the high level metric is calculated every {{param}} seconds. + The value for {{param}} MUST be less than, or equal to, {{param|.ServiceMonitoring.SampleInterval}}. + {{param}} SHOULD be chosen such that {{param|.ServiceMonitoring.SampleInterval}} is an integer multiple of {{param}}. If not, the last metric sample interval in each sample interval MUST be shortened so that the last metric sample interval ends when the sample interval ends. + The value for {{param}} is algorithm-specific. + + + + + + + + + + The threshold value that controls the calculation of the {{param|MetricFailures}} parameter. + + + + + + + + + + Each entry is a high-level metric calculated for this AV stream during the sample interval as the average of the high level metric values calculated on a metric sample interval basis. The length of the metric sample interval is given by {{param|MetricSampleInterval}}. + The interpretation of the metric values is algorithm-specific; the only constraints are that values have to be numeric, in the range [0:65535] and that lower values indicate worse QoE than do higher values. + + + + + + + + + + + Counts the number of times (since the last time this ''MainStream'' and Sample statistics collection were both enabled) that a newly-calculated value of high-level metric {{param|Metric}} was less than or equal to {{param|MetricThreshold}}. + This parameter can be incremented at any time during a sample interval, and might be incremented more than once during a single sample interval. + + + + + + + + + This object represents the log entries of events recorded by the MainStream object instance. + When the number of log entries in the EventLog exceeds the value of the {{param|###.Capabilities.ServiceMonitoring.MaxMainStreamEventLogEntries}} parameter, the Entry object with the lowest SequenceNumber value is replaced by the new EventLog Entry object. + Log entries are persisted across reboots of the CPE. + + + + Clears the events from the event log and the value of {{param|Entry.{i}.SequenceNumber}} parameter is reset to the parameter's minimum value. + + + + + {{numentries}} + + + + + + + + + This object represents an entry (e.g., start session, channel change) in the event log. + + + + + + + The sequence number of the event within the EventLog. + This parameter is incremented by one (1) for each entry within the EventLog. + When the value of the parameter exceeds the maximium range, the lowest value of this parameter that is not contained in current EventLog entries is used. + + + + + + + + + + Type of the event. The values for this parameter are vendor specific. + + + + + + + + Timestamp of the event. + + + + + + + + {{numentries}} + + + + + + + + + This object represents an instance of a parameter that is associated with the Entry object Instance. + + + + Name of the parameter (vendor-specific). + + + + + + + + Value of the parameter. + + + + + + + + + Global operations statistics. + + + + + Global operations total statistics. + + + + The time period in, {{units}}, between the first message (e.g. DHCP Discover) sent by the STB during boot-up and the first multicast I-frame for the default channel displayed by the STB. + + + + + + + + + + Minimum portal latency defined as the minimum time period, in {{units}}, between the instant of transmitting TCP SYN (the three way handshake) prior to first HTTP message, and receiving the last HTTP message carrying the information. + + + + + + + + + + Maximum portal latency defined as the maximum time period, in {{units}}, between the instant of transmitting TCP SYN (the three way handshake) prior to first HTTP message, and receiving the last HTTP message carrying the information. + + + + + + + + + + + Global operations sample statistics. + + + + Each entry is the minimum portal latency defined as the minimum time period, in {{units}}, between the instant of transmitting TCP SYN (the three way handshake) prior to first HTTP message, and receiving the last HTTP message carrying the information during the sample interval. + + + + + + + + + + + Each entry is the maximum portal latency defined as the maximum time period, in {{units}}, between the instant of transmitting TCP SYN (the three way handshake) prior to first HTTP message, and receiving the last HTTP message carrying the information during the sample interval. + + + + + + + + + + + Each entry is a colon separated list of time periods (in milliseconds) between the instant of transmitting TCP SYN (the three way handshake) prior to first HTTP message, and receiving the last HTTP message carrying the information. + A comma separates measurements made in different sample intervals, while a colon separates individual measurements within a specific sample interval. + If no PortalResponse measurements were made during a specific sample interval then this MUST be represented by an empty string. + Example: ,837:453:1234,759,,,923:698,,,1284 + Here there were no measurements during first sample interval, three during the second, one during the third, etc. + The statistics values in this list MUST be in time order, with the oldest one first and the most recent one last. This applies both to sample intervals and to individual measurements during a specific sample interval. {{nopattern}} + + + + + + + {{nopattern}} + + + + + + + + + Applications. + + + + Number of Service Provider instances. + + + + + + + + + Audience viewing statistics. + + + + Enables or disables collection of viewing statistics. Enabling collection of viewing statistics also resets the viewing statistics table. + + + + + + + + Number of {{units}} since the Audience statistics were last enabled or reset. + + + + + + + + + + Number of instances of {{object|Channel}}. + + + + + + + + Resets the viewing statistics table. + Resetting statistics MUST reset all {{param|Channel.{i}.Duration}} parameters. + + + + + + Table to record what the STB has been receiving. Time durations are recorded only for an AVPlayer's main AVStream (i.e. for TV channels being displayed in the main screen). + Each entry corresponds to a given TV channel and is indexed by channel name (the instance number is chosen by the STB and is not related to the channel number). + + + + + + + + + + {{datatype|expand}} + + + + + + + + String describing the TV channel being displayed in the main screen. MUST be the value of the corresponding {{param|.AVStreams.AVStream.{i}.Name}} parameter. + + + + + + + + + + The cumulative duration of this channel in {{units}}. + + + + + + + + + + + Details of STB CDS Push logical internal parameters. + + + + It references the object instance dedicated to the CDS Push service. Example: “Device.Services.StorageService.1.LogicalVolume.1.Folder.1”. + + + + + + + + + + + {{numentries}} + + + + + + + + + Content Item instance table. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Unique Content Item reference as defined in {{bibref|TS102323}}, or {{bibref|RFC4078}}. + + + + + + + + Version number of the stored content item (a content item could be updated with a new version e.g. in case of errors in the video preventing the play out). + + + + + + + + + + + Deletes this Content Item instance. + + + + + + Details of STB CDS Pull logical internal component. This object is present only if the user allowed (via his local STB UI) the remote management of the CDS Pull service. + + + + It references the object instance dedicated to the CDS Pull service. Example: “Device.Services.StorageService.1.LogicalVolume.1.Folder.1”. + + + + + + + + + + + {{numentries}} + + + + + + + + + Content Item instance table. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Unique Content Item reference as defined in {{bibref|TS102323}}, or {{bibref|RFC4078}}. + + + + + + + + Version number of the stored content item (a content item could be updated with a new version e.g. in case of errors in the video preventing the play out). + + + + + + + + + + + Deletes this Content Item instance. + + + + + + Service Provider instance table. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Service Provider name. + + + + + + + + + + Service Provider domain URI. + + + + + + + + + + Service Provider’s Service Discovery Server. It MAY be configured in the format of IMS Public Service Identifier, or IP address or URL. + + + + + + + + + + Comma separated list of the BCG (Broadband Content Guide) server URLs the STB is currently retrieving IPTV service information from. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/test/tools/tr-181-2-14-1-cwmp-full.xml b/test/tools/tr-181-2-14-1-cwmp-full.xml new file mode 100644 index 00000000..056450db --- /dev/null +++ b/test/tools/tr-181-2-14-1-cwmp-full.xml @@ -0,0 +1,62106 @@ + + + + + + {{docname|Device:2 Root Data Model for CWMP (TR-069)}} + {{appdate|November 2020}} + {{trname|TR-181i2a14}} + November 2020: {{xmlref|tr-181-2-14-0-cwmp|Original}} + * Added WWC (5G Wireline Wireless Convergence), PDU (Protocol Data Unit) and FWE (5G Wireline wireless Encapsulation) top-level objects + * Updated Cellular object to be applicable to 5G Residential Gateways + * Extended support for TR-471 IP-layer metrics, including new IP-layer capacity test + * Supported LAN device time-based access-control + * Various Wi-Fi improvements + November 2020: {{xmlref|tr-181-2-14-1-cwmp|Corrigendum 1}} + * Removed duplicate remarks about CWMP BOOTSTRAP from descriptions + * Fixed typos + + + + A non-volatile handle used to reference this instance. + '''This is intended only for use in protocol-independent "common" definitions, and MUST NOT be used in protocol-specific definitions.''' + + + + + + + + A non-volatile handle used to reference this instance. Alias provides a mechanism for an ACS to label this instance for future reference. + If the CPE supports the Alias-based Addressing feature as defined in {{bibref|TR-069|3.6.1}} and described in {{bibref|TR-069|Appendix II}}, the following mandatory constraints MUST be enforced: + * Its value MUST NOT be empty. + * Its value MUST start with a letter. + * If its value is not assigned by the ACS, it MUST start with a "cpe-" prefix. + * The CPE MUST NOT change the parameter value. + + + + + + A non-volatile unique key used to reference this instance. Alias provides a mechanism for a Controller to label this instance for future reference. + The following mandatory constraints MUST be enforced: + * The value MUST NOT be empty. + * The value MUST start with a letter. + * If the value is not assigned by the Controller at creation time, the Agent MUST assign a value with an "cpe-" prefix. + The value MUST NOT change once it's been assigned. + + + + + + The value is measured in ''dBm/1000'', i.e. the value divided by 1000 is dB relative to 1 mW. For example, -12345 means -12.345 dBm, 0 means 0 dBm (1 mW) and 12345 means 12.345 dBm. + + + + + + + Indicates the availability of diagnostics data. Enumeration of: + {{enum}} + If the ACS sets the value of this parameter to {{enum|Requested}}, the CPE MUST initiate the corresponding diagnostic test. When writing, the only allowed values are {{enum|Requested}} and {{enum|Canceled}}. To ensure the use of the proper test parameters (the writable parameters in this object), the test parameters MUST be set, and any errors or inconsistencies in the test parameters MUST be detected, either prior to or at the same time as (in the same SetParameterValues) setting this parameter to {{enum|Requested}}. + When requested, the CPE SHOULD wait until after completion of the communication session with the ACS before starting the diagnostic test. + When the test is completed, the value of this parameter MUST be either {{enum|Complete}} (if the test completed successfully), or one of the ''Error'' values listed above. + If the value of this parameter is anything other than {{enum|Complete}}, the values of the results parameters for this test are indeterminate. + When the diagnostic initiated by the ACS is completed (successfully or not), but not if it is canceled for any reason, the CPE MUST establish a new connection to the ACS to allow the ACS to view the results, indicating the Event code ''8 DIAGNOSTICS COMPLETE'' in the Inform message. + After the diagnostic is complete, the value of all result parameters (all read-only parameters in this object) MUST be retained by the CPE until either this diagnostic is run again, or the CPE reboots. After a reboot, if the CPE has not retained the result parameters from the most recent test, it MUST set the value of this parameter to {{enum|None}}. + Modifying any of the writable parameters in this object except for this one MUST result in the value of this parameter being set to {{enum|None}}. + While the test is in progress, modifying any of the writable parameters in this object except for this one MUST result in the test being terminated and the value of this parameter being set to {{enum|None}}. + While the test is in progress, setting this parameter to {{enum|Requested}} (and possibly modifying other writable parameters in this object) MUST result in the test being terminated and then restarted using the current values of the test parameters. + While the test is in progress, setting this parameter to {{enum|Canceled}} MUST result in the test being canceled and the value of this parameter being set to {{enum|None}}. If the CPE does not support the {{enum|Canceled}} value, it MUST return a SPV error with "Invalid Parameter value" (9007) to the ACS instead. + + + + + + + + + + + + The IEEE EUI 64-bit identifier as defined in {{bibref|IEEE_EUI64}}. The IEEE defined 64-bit extended unique identifier (EUI-64) is a concatenation of: + * The 24-bit (OUI-24) or 36-bit (OUI-36) company_id value assigned by the IEEE Registration Authority (IEEE-RA), and + * The extension identifier (40 bits for OUI-24 or 28 bits for OUI-36) assigned by the organization with that company_id assignment. + + + + + + + + + + IP address, i.e. IPv4 address (or IPv4 subnet mask) or IPv6 address. + All IPv4 addresses and subnet masks MUST be represented as strings in IPv4 dotted-decimal notation. Here are some examples of valid IPv4 address textual representations: + * 216.52.29.100 + * 192.168.1.254 + All IPv6 addresses MUST be represented using any of the 3 standard textual representations defined in {{bibref|RFC4291}} Sections 2.2.1, 2.2.2 and 2.2.3. Both lower-case and upper-case letters can be used, but use of lower-case letters is RECOMMENDED. Here are some examples of valid IPv6 address textual representations: + * 1080:0:0:800:ba98:3210:11aa:12dd + * 1080::800:ba98:3210:11aa:12dd + * 0:0:0:0:0:0:13.1.68.3 + IPv6 addresses MUST NOT include zone identifiers. Zone identifiers are discussed in {{bibref|RFC4007|Section 6}}. + Unspecified or inapplicable addresses (or IPv4 subnet masks) MUST be represented as empty strings unless otherwise specified by the parameter definition. + + + + + + + + IPv4 address (or subnet mask). + Can be any IPv4 address that is permitted by the ''IPAddress'' data type. + + + + + + + + IPv6 address. + Can be any IPv6 address that is permitted by the ''IPAddress'' data type. + + + + + + IPv4 or IPv6 routing prefix in Classless Inter-Domain Routing (CIDR) notation {{bibref|RFC4632}}. This is specified as an IP address followed by an appended "/n" suffix, where ''n'' (the prefix size) is an integer in the range 0-32 (for IPv4) or 0-128 (for IPv6) that indicates the number of (leftmost) '1' bits of the routing prefix. + * IPv4 example: 192.168.1.0/24 + * IPv6 example: 2001:edff:fe6a:f76::/64 + If the IP address part is unspecified or inapplicable, it MUST be {{empty}} unless otherwise specified by the parameter definition. In this case the IP prefix will be of the form "/n". + If the entire IP prefix is unspecified or inapplicable, it MUST be {{empty}} unless otherwise specified by the parameter definition. + + + + + + + + IPv4 address prefix. + Can be any IPv4 prefix that is permitted by the ''IPPrefix'' data type. + + + + + + + + + IPv6 address prefix. + Can be any IPv6 prefix that is permitted by the ''IPPrefix'' data type. + + + + + + A JSON Object as defined in {{bibref|RFC7159|Section 4}}. + + + + + + + All MAC addresses are represented as strings of 12 hexadecimal digits (digits 0-9, letters A-F or a-f) displayed as six pairs of digits separated by colons. Unspecified or inapplicable MAC addresses MUST be represented as empty strings unless otherwise specified by the parameter definition. + + + + + + + + + + A 32-bit statistics parameter, e.g. a byte counter. + This data type SHOULD NOT be used for statistics parameters whose values might become greater than the maximum value that can be represented as an ''unsignedInt'' (i.e. 0xffffffff, referred to below as ''maxval''). ''StatsCounter64'' SHOULD be used for such parameters. + The value ''maxval'' indicates that no data is available for this parameter. In the unlikely event that the actual value of the statistic is ''maxval'', the CPE SHOULD return ''maxval - 1''. + The actual value of the statistic might be greater than ''maxval''. Such values SHOULD wrap around through zero. + The term ''packet'' is to be interpreted as the transmission unit appropriate to the protocol layer in question, e.g. an IP packet or an Ethernet frame. + + + + + + + A 64-bit statistics parameter, e.g. a byte counter. + This data type SHOULD be used for all statistics parameters whose values might become greater than the maximum value that can be represented as an ''unsignedInt''. + The maximum value that can be represented as an ''unsignedLong'' (i.e. 0xffffffffffffffff) indicates that no data is available for this parameter. + The term ''packet'' is to be interpreted as the transmission unit appropriate to the protocol layer in question, e.g. an IP packet or an Ethernet frame. + + + + + + + Universally Unique Identifier. See {{bibref|RFC4122}}. + + + + + + + + + Uniform Resource Identifier. See {{bibref|RFC3986}}. + + + + + + + + Uniform Resource Name. See {{bibref|RFC3986}} (URI) and {{bibref|RFC8141}} (''urn'' URI scheme). + + + + + + + Uniform Resource Locator. See {{bibref|RFC3986}} (URI), {{bibref|IANA-uri-schemes}}, and individual URI scheme RFCs such as {{bibref|RFC7252}} (''coap'', ''coaps'') and {{bibref|RFC7230}} (''http'', ''https''). + + + + + + The ZigBee 16-bit network address (NWK) as defined in {{bibref|ZigBee2007}}. The address is assigned to a device by the network layer and used by the network layer for routing messages between devices. + + + + + + + + + + A non-volatile handle used to reference this instance. Alias provides a mechanism for an ACS to label this instance for future reference. + If the CPE supports the Alias-based Addressing feature as defined in {{bibref|TR-069|3.6.1}} and described in {{bibref|TR-069|Appendix II}}, the following mandatory constraints MUST be enforced: + * Its value MUST NOT be empty. + * Its value MUST start with a letter. + * If its value is not assigned by the ACS, it MUST start with a "cpe-" prefix. + * The CPE MUST NOT change the parameter value. + + + + + + Pair of 32-bit signed integers a(i),b(i) with each pair representing a complex component of the uncalibrated echo response (UER); + # Real UER component, a(i) + # Imaginary UER component, b(i) + for values of i starting at i=0. Both values are represented as signed integers. + The interpretation of the UER value is as defined in {{bibref|G.996.2|Clause A.2.2.1}}. + + + + + + + + # the Power Spectral Density (PSD) breakpoint sub-carrier index in the range [0:49152] with Df = 4.3125 kHz frequency spacing, and + # the value of the level of the PSD at this sub-carrier expressed in ''0.1 dBm/Hz'' with an offset of -200 dBm/Hz. The range of valid values for PSD is -30 to -200 dBm/Hz. + Both values are represented as unsignedInt. + + + + + + + + # The PSM breakpoint sub-carrier index in the range [0:4095], and + # the value of the level of the PSM at this sub-carrier expressed in ''0.1 dBm/Hz'' with an offset of -140 dBm/Hz. + Both values are represented as unsignedInt. + {{bibref|G.9964|Clause 5.2}} defines limits on PSM breakpoint levels. + + + + + + + + # The paired frequency spacing index in the range [0:8191], and + # The transfer function log value, i.e. [i, TFlog(i * {{param|TFlogGroupSize}} * Df)], where the reference frequency spacing Df = 4.3125 kHz, the index i valid range is 0 to 8191, and TFlog(i * {{param|TFlogGroupSize}} * Df) spans a range from +6.0 dB down to -96.2 dB with units of 0.1 dB. + Both values are represented as unsignedInt. + + + + + + + + Service Slice Type (SST). {{enum}} + See {{bibref|3GPP-TS.23.501|Clause 5.15.2.2}}. + + + + + 5G Enhanced Mobile Broadband + + + + + Ultra-Reliable Low Latency Communications + + + + + Massive IoT + + + + + Vehicle to Everything + + + + + + + High Speed Packet data Access (HSPA) + 3GPP + https://www.3gpp.org/technologies/keywords-acronyms/99-hspa + + + 3GPP TS 23.003 + Numbering, addressing and identification + 3GPP CT WG4 + https://www.3gpp.org/ftp/Specs/html-info/23003.htm + + + 3GPP TS 23.501 + System architecture for the 5G System (5GS); Stage 2 + 3GPP SA WG2 + https://www.3gpp.org/ftp/Specs/html-info/23501.htm + + + 3GPP TS 24.008 + Mobile radio interface Layer 3 specification; Core network protocols; Stage 3 + 3GPP CT WG1 + https://www.3gpp.org/ftp/Specs/html-info/24008.htm + + + 3GPP TS 24.301 + Non-Access-Stratum (NAS) protocol for Evolved Packet System (EPS); Stage 3 + 3GPP CT WG1 + https://www.3gpp.org/ftp/Specs/html-info/24301.htm + + + 3GPP TS 24.501 + Non-Access-Stratum (NAS) protocol for 5G System (5GS); Stage 3 + 3GPP CT WG1 + https://www.3gpp.org/ftp/Specs/html-info/24501.htm + + + 3GPP TS 24.526 + User Equipment (UE) policies for 5G System (5GS); Stage 3 + 3GPP CT WG1 + https://www.3gpp.org/ftp/Specs/html-info/24526.htm + + + 3GPP TS 25.171 + Requirements for support of Assisted Global Positioning System (A-GPS) + 3GPP RAN WG4 + https://www.3gpp.org/ftp/Specs/html-info/25171.htm + + + IEEE Std 802.11-2007 + Wireless LAN Medium Access Control (MAC) and Physical Layer (PHY) Specifications + IEEE + 2007 + https://standards.ieee.org/getieee802/download/802.11-2007.pdf + + + IEEE Std 802.11-2012 + Wireless LAN Medium Access Control (MAC) and Physical Layer (PHY) Specifications + IEEE + March 2012 + https://standards.ieee.org/getieee802/download/802.11-2012.pdf + + + IEEE Std 802.11-2016 + Wireless LAN Medium Access Control (MAC) and Physical Layer (PHY) Specifications + IEEE + December 2016 + https://ieeexplore.ieee.org/document/7786995 + + + IEEE Std 802.11a-1999 + High-speed Physical Layer in the 5 GHz band + IEEE + 1999 + https://standards.ieee.org/getieee802/download/802.11a-1999.pdf + + + IEEE Std 802.11ac-2013 + Enhancements for Very High Throughput for Operation in Bands below 6 GHz + IEEE + December 2013 + https://www.ieee802.org/11/Reports/tgac_update.htm + + + IEEE Std 802.11ax + IEEE + + + IEEE Std 802.11b-1999 + Higher Speed Physical Layer Extension in the 2.4 GHz band + IEEE + 1999 + https://standards.ieee.org/getieee802/download/802.11b-1999.pdf + + + IEEE Std 802.11g-2003 + Further Higher Data Rate Extension in the 2.4 GHz Band + IEEE + 2003 + https://standards.ieee.org/getieee802/download/802.11g-2003.pdf + + + IEEE Std 802.11h-2003 + Spectrum and Transmit Power Management Extensions + IEEE + 2003 + https://standards.ieee.org/getieee802/download/802.11h-2003.pdf + + + IEEE Std 802.11n-2009 + Amendment 5: Enhancements for Higher Throughput + IEEE + 2009 + https://ieeexplore.ieee.org/xpl/freeabs_all.jsp?reload=true&arnumber=5307322 + + + IEEE Std 802.1AB-2009 + Station and Media Access Control Connectivity Discovery + IEEE + 2009 + https://standards.ieee.org/getieee802/download/802.1AB-2009.pdf + + + IEEE Std 802.1ad-2005 + Virtual Bridged Local Area Networks Amendment 4: Provider Bridges + IEEE + May 2005 + https://standards.ieee.org/getieee802/download/802.1ad-2005.pdf + + + IEEE Std 802.1AX-2014 + IEEE Standard for Local and metropolitan area networks -- Link Aggregation + IEEE + 2014 + https://ieeexplore.ieee.org/servlet/opac?punumber=6997981 + + + IEEE Std 802.1D-2004 + Media Access Control (MAC) Bridges + IEEE + 2004 + https://standards.ieee.org/getieee802/download/802.1D-2004.pdf + + + IEEE Std 802.1Q-2005 + Virtual Bridged Local Area Networks + IEEE + 2006 + https://standards.ieee.org/getieee802/download/802.1Q-2005.pdf + + + IEEE Std 802.1Q-2011 + MAC Bridges and Virtual Bridge Local Area Networks + IEEE + 2011 + https://standards.ieee.org/getieee802/download/802.1Q-2011.pdf + + + IEEE Std 802.1x-2004 + Standards for Local and Metropolitan Area Networks: Port based Network Access Control + IEEE + 2004 + https://standards.ieee.org/getieee802/download/802.1X-2004.pdf + + + IEEE Std 802.3-2015 + IEEE Standard for Ethernet + IEEE + 2015 + https://ieeexplore.ieee.org/servlet/opac?punumber=7428774 + + + IEEE 802.3-2012 - Section Six + IEEE Standard for Ethernet - Section Six + IEEE + December 2012 + https://standards.ieee.org/getieee802/download/802.3-2012_section6.pdf + + + Blue + A New Class of Active Queue Management Algorithms + https://www.thefengs.com/wuchang/work/blue + + + BPF + Berkeley Packet Filter Syntax + FreeBSD.org + October 2016 + https://www.freebsd.org/cgi/man.cgi?query=bpf + + + Data Elements Specification + Data Elements Specification Version 1.0 + January 2019 + https://www.wi-fi.org/discover-wi-fi/specifications + + + DLNA Networked Device Interoperability Guidelines + DLNA Networked Device Interoperability Guidelines, Volume 2: Media Format Profiles. + DLNA + October 2006 + https://www.dlna.org/industry/certification/guidelines/ + + + RFC 6763 + DNS-Based Service Discovery + IETF + RFC + 2013 + https://tools.ietf.org/html/rfc6763 + + + RFC 6333 + Dual-Stack Lite Broadband Deployments Following IPv4 Exhaustion + IETF + RFC + 2011 + https://tools.ietf.org/html/rfc6333 + + + RFC 6334 + Dynamic Host Configuation Protocol for IPv6 (DHCPv6) Option for Dual-Stack Lite + IETF + RFC + 2011 + https://tools.ietf.org/html/rfc6334 + + + TS 102 824 + Digital Video Broadcasting (DVB);Remote Management and Firmware Update System for DVB IP Services + ETSI + July 2008 + https://webapp.etsi.org/workprogram/Report_WorkItem.asp?WKI_ID=27769 + + + ETSI EN 301 893 + Broadband Radio Access Networks (BRAN); 5 GHz high performance RLAN; Harmonized EN covering the essential requirements of article 3.2 of the RTTE Directive + ETSI + https://www.etsi.org/deliver/etsi_en/301800_301899/301893/01.08.01_60/en_301893v010801p.pdf + + + ETSI TS 102 690 v1.1.6 + Machine-to-Machine Communications (M2M Functional Architecture) + ETSI + June 2012 + https://docbox.etsi.org/M2M/Open/Latest_Drafts/00002ed121v116.pdf + + + ETSI TS 102 921 v1.1.6 + M2M mIa, dIa and mId Interfaces + ETSI + August 2012 + https://docbox.etsi.org/M2M/Open/Latest_Drafts/00010ed121v116.pdf + + + draft-allan-5g-fmc-encapsulation + 5G Wireless Wireline Convergence User Plane Encapsulation (5WE) + IETF + Internet Draft + March 2020 + https://tools.ietf.org/html/draft-allan-5g-fmc-encapsulation + + + G.988 + ONU management and control interface (OMCI) specification + ITU-T + 2010 + https://www.itu.int/rec/T-REC-G.988-201010-P/en + + + G.9701 + Fast access to subscriber terminals (G.fast)- Physical layer specification + ITU-T + 2014 + https://www.itu.int/rec/T-REC-G.9701-201412-P + + + G.9954 + Phoneline networking transceivers - Enhanced physical, media access, and link layer specifications (HPNA 3.0 and 3.1) + ITU-T + 2007 + https://www.itu.int/rec/T-REC-G.9954/en + + + G.9960 + Unified high-speed wire-line based home networking transceivers - System architecture and physical layer specification + ITU-T + G.hn series + https://www.itu.int/rec/T-REC-G.9960-201006-P + + + G.9961 + Unified high-speed wire-line based home networking transceivers - Data link layer specification + ITU-T + G.hn series + https://www.itu.int/rec/T-REC-G.9961-201006-P + + + G.9962 + Unified high-speed wire-line based home networking transceivers - Management specification + ITU-T + G.hn series + https://www.itu.int/rec/T-REC-G.9962-201308-P + + + G.9964 + Unified high-speed wire-line based home networking transceivers - Power spectral density specification + ITU-T + G.hn series + https://www.itu.int/rec/T-REC-G.9962-201308-P + + + G.9973 + Protocol for identifying home network topology + ITU-T + 2011 + https://www.itu.int/rec/T-REC-G.9973-201110-I/en + + + G.993.1 + Very high speed digital subscriber line transceivers + ITU-T + https://www.itu.int/rec/T-REC-G.993.1 + + + G.993.2 + Very high speed digital subscriber line transceivers 2 (VDSL2) + ITU-T + https://www.itu.int/rec/T-REC-G.993.2 + + + G.996.2 + Single-ended line testing for digital subscriber lines (DSL) + ITU-T + https://www.itu.int/rec/T-REC-G.996.2 + + + G.997.1 + Physical layer management for digital subscriber line (DSL) transceivers + ITU-T + https://www.itu.int/rec/T-REC-G.997.1 + + + G.997.2 + Physical layer management for FAST transceivers + ITU-T + 2015 + https://www.itu.int/rec/T-REC-G.997.2-201505-I + + + G.998.1 + ATM-based Multi-Pair Bonding + ITU-T + 2005 + https://www.itu.int/rec/T-REC-G.998.1 + + + G.998.2 + Ethernet-based Multi-Pair Bonding + ITU-T + 2005 + https://www.itu.int/rec/T-REC-G.998.2 + + + G.998.3 + Multi-Pair Bonding Using Time-Division Inverse Multiplexing + ITU-T + 2005 + https://www.itu.int/rec/T-REC-G.998.2 + + + HomePlug AV Specification + Version 1.1 + HomePlug + 2007 + https://www.homeplug.org + + + HTML 4.01 Specification + W3C + https://www.w3.org/TR/html4 + + + IANA Protocol Numbers + Protocol Numbers + IANA + https://www.iana.org/assignments/protocol-numbers + + + IANAifType + IANAifType-MIB DEFINITIONS + IANA + 2009 + https://www.iana.org/assignments/ianaiftype-mib/ianaiftype-mib + + + ICSA Baseline Modular Firewall Certification Criteria + Baseline module - version 4.1 + ICSA Labs + 2008 + https://www.icsalabs.com/sites/default/files/baseline.pdf + + + ICSA Residential Modular Firewall Certification Criteria + Required Services Security Policy - Residential Category module - version 4.1 + ICSA Labs + 2008 + https://www.icsalabs.com/sites/default/files/residential.pdf + + + IEEE 1905.1a + IEEE Std 1905.1a, Convergent Digital Home Network for Heterogeneous Technologies Amendment 1: Support of new MAC/PHYs and enhancements, IEEE, December 2014. + IEEE + December 2014 + https://www.IEEE.org + + + IKEv2 Parameters + Internet Key Exchange Version 2 (IKEv2) Parameters + IANA + https://www.iana.org/assignments/ikev2-parameters/ikev2-parameters.xml + + + IPDR File Transfer Protocol + IPDR/File Transfer Protocol + TM Forum + https://www.ipdr.org/public/ + + + IPDR Streaming Protocol + IPDR Streaming Protocol (IPDR/SP) Specification + TM Forum + https://www.ipdr.org/public/ + + + IPDR XDR Encoding Format + IPDR/XDR Encoding Format + TM Forum + https://www.ipdr.org/public/ + + + IPDR XML File Encoding Format + IPDR/XML File Encoding Format + TM Forum + https://www.ipdr.org/public/ + + + ISO/IEC 13818-6:1998 + Information Technology - Generic coding of moving pictures and associated audio information - Part 6: Extensions for DSM-CC + ISO + 1998 + https://www.iso.org/iso/iso_catalogue/catalogue_tc/catalogue_detail.htm?csnumber=25039 + + + ISO 3166-1 + Codes for the representation of names of countries and their subdivisions - Part 1: Country codes + ISO + 2006 + https://www.iso.org/iso/country_codes.htm + + + ISO 639-1 + Codes for the representation of names of Languages - Part 1: Alpha-2 code + ISO + 2002 + https://www.iso.org/iso/language_codes + + + ISO/IEC 646-1991 + Information Technology - ISO 7-bit coded character set for information interchange + ISO + 1991 + + + ITU E.118 + The international telecommunication charge card + International Telecommunication Union + May 2006 + https://www.itu.int/rec/T-REC-E.118-200605-I/en + + + ITU E.164 + The international public telecommunication numbering plan + International Telecommunication Union + October 2010 + https://www.itu.int/rec/T-REC-E.164-201011-I/en + + + ITU X.733 + Information technology - Open Systems Interconnection - Systems Management: Alarm reporting function + International Telecommunication Union + February 1992 + https://www.itu.int/rec/T-REC-X.733/en + + + JJ-300.00 + Home-network Topology Identifying Protocol + TTC + 2011 + https://www.ttc.or.jp/jp/document_list/pdf/e/STD/JJ-300.00(E)v1.1.pdf + + + JJ-300.01 + The List of Device Categories + TTC + 2011 + https://www.ttc.or.jp/jp/document_list/pdf/e/STD/JJ-300.01(E)v1.1.pdf + + + Libpcap + Libpcap File Format + Wireshark + 2015 + https://wiki.wireshark.org/Development/LibpcapFileFormat + + + RFC 8193 + Information Model for Large-Scale Measurement Platforms (LMAPs) + IETF + Informational RFC + August 2017 + https://tools.ietf.org/html/rfc8193 + + + draft-ietf-ippm-metric-registry-12 + Registry for Performance Metrics + IETF + Internet Draft + June 30, 2017 + https://datatracker.ietf.org/doc/draft-ietf-ippm-metric-registry/ + + + Multi-AP Specification + Multi-AP Specification Version 1.0 + June 2018 + https://www.wi-fi.org/discover-wi-fi/specifications + + + MOCA11-MIB + Remote Management of MoCA Interfaces using SNMP MIB + MoCA Alliance + 2009 + https://www.mocalliance.org + + + MoCA v1.0 + MoCA MAC/PHY Specification v1.0 + MoCA Alliance + 2009 + https://www.mocalliance.org + + + MoCA v1.1 + MoCA MAC/PHY Specification v1.1 Extensions + MoCA Alliance + 2009 + https://www.mocalliance.org + + + MQTT v3.1 + MQ Telemetry Transport (MQTT) V3.1 Protocol Specification + 2010 + https://www.ibm.com/developerworks/webservices/library/ws-mqtt/index.html + + + MQTT Version 5.0 + MQTT Version 5.0, Candidate OASIS Standard 02. + OASIS Message Queuing Telemetry Transport (MQTT) TC + February 2019 + https://docs.oasis-open.org/mqtt/mqtt/v5.0/mqtt-v5.0.html + + + Organizationally Unique Identifiers (OUIs) + https://standards.ieee.org/faqs/OUI.html + + + PCP Proxy Function + Port Control Protocol (PCP) Proxy Function + IETF + RFC + September 2015 + https://tools.ietf.org/html/pcpproxyfunction + + + ISO/IEC/IEEE 9945 + Information technology - Portable Operating System Interface (POSIX) Base Specifications, Issue 7 + ISO/IEC/IEEE + September 2009 + https://ieeexplore.ieee.org/xpl/mostRecentIssue.jsp?punumber=4694974 + + + References on RED (Random Early Detection) Queue Management + https://www.icir.org/floyd/red.html + + + RFC 793 + Transmission Control Protocol + IETF + RFC + September 1981 + https://tools.ietf.org/html/rfc793 + + + RFC 862 + Echo Protocol + IETF + RFC + 1983 + https://tools.ietf.org/html/rfc862 + + + RFC 959 + File Transfer Protocol + IETF + RFC + 1985 + https://tools.ietf.org/html/rfc959 + + + RFC 1035 + Domain Names - Implementation and Specification + IETF + RFC + 1987 + https://tools.ietf.org/html/rfc1035 + + + RFC 1323 + TCP Extensions for High Performance + IETF + RFC + May 1992 + https://tools.ietf.org/html/rfc1323 + + + RFC 1332 + The PPP Internet Protocol Control Protocol (IPCP) + IETF + RFC + 1992 + https://tools.ietf.org/html/rfc1332 + + + RFC 1378 + The PPP AppleTalk Control Protocol (ATCP) + IETF + RFC + 1992 + https://tools.ietf.org/html/rfc1378 + + + RFC 1552 + The PPP Internetwork Packet Exchange Control Protocol (IPXCP) + IETF + RFC + 1993 + https://tools.ietf.org/html/rfc1552 + + + RFC 1661 + The Point-to-Point Protocol (PPP) + IETF + RFC + 1994 + https://tools.ietf.org/html/rfc1661 + + + RFC 1877 + PPP Internet Protocol Control Protocol Extensions for Name Server Addresses + IETF + RFC + 1995 + https://tools.ietf.org/html/rfc1877 + + + RFC 1974 + PPP Stac LZS Compression Protocol + IETF + RFC + 1996 + https://tools.ietf.org/html/rfc1974 + + + RFC 2080 + RIPng for IPv6 + IETF + RFC + 1997 + https://tools.ietf.org/html/rfc2080 + + + RFC 2097 + The PPP NetBIOS Frames Control Protocol (NBFCP) + IETF + RFC + 1997 + https://tools.ietf.org/html/rfc2097 + + + RFC 2131 + Dynamic Host Configuration Protocol + IETF + RFC + https://tools.ietf.org/html/rfc2131 + + + RFC 2132 + DHCP Options and BOOTP Vendor Extensions + IETF + RFC + https://tools.ietf.org/html/rfc2132 + + + RFC 2225 + Classical IP and ARP over ATM + IETF + RFC + https://tools.ietf.org/html/rfc2225 + + + RFC 2364 + PPP Over AAL5 + IETF + RFC + 1998 + https://tools.ietf.org/html/rfc2364 + + + RFC 2474 + Definition of the Differentiated Services Field (DS Field) in the IPv4 and IPv6 Headers + IETF + RFC + https://tools.ietf.org/html/rfc2474 + + + RFC 2581 + TCP Congestion Control + IETF + RFC + April 1999 + https://tools.ietf.org/html/rfc2581 + + + RFC 2582 + The NewReno Modification to TCP's Fast Recovery Algorithm + IETF + RFC + April 1999 + https://tools.ietf.org/html/rfc2582 + + + RFC 2616 + Hypertext Transfer Protocol -- HTTP/1.1 + IETF + RFC + 1999 + https://tools.ietf.org/html/rfc2616 + + + RFC 2684 + Multiprotocol Encapsulation over ATM Adaptation Layer 5 + IETF + RFC + https://tools.ietf.org/html/rfc2684 + + + RFC 2697 + A Single Rate Three Color Marker + IETF + RFC + https://tools.ietf.org/html/rfc2697 + + + RFC 2698 + A Two Rate Three Color Marker + IETF + RFC + https://tools.ietf.org/html/rfc2698 + + + RFC 2782 + A DNS RR for specifying the location of services (DNS SRV) + IETF + RFC + 2000 + https://tools.ietf.org/html/rfc2782 + + + RFC 2784 + Generic Routing Encapsulation (GRE) + IETF + RFC + November 2000 + https://tools.ietf.org/html/rfc2784 + + + RFC 2818 + HTTP Over TLS + IETF + RFC + May 2000 + https://tools.ietf.org/html/rfc2818 + + + RFC 2819 + Remote Network Monitoring Management Information Base + IETF + RFC + 2000 + https://tools.ietf.org/html/rfc2819 + + + RFC 2863 + The Interfaces Group MIB + IETF + RFC + 2000 + https://tools.ietf.org/html/rfc2863 + + + RFC 2865 + Remote Authentication Dial In User Service (RADIUS) + IETF + RFC + 2000 + https://tools.ietf.org/html/rfc2865 + + + RFC 2866 + RADIUS Accounting + IETF + RFC + 2000 + https://tools.ietf.org/html/rfc2866 + + + RFC 2869 + RADIUS Extensions + IETF + RFC + 2000 + https://tools.ietf.org/html/rfc2869 + + + RFC 2890 + Key and Sequence Number Extensions to GRE + IETF + RFC + November 2000 + https://tools.ietf.org/html/rfc2890 + + + RFC 2898 + PKCS #5: Password-Based Cryptography Specification Version 2.0 + IETF + RFC + https://tools.ietf.org/html/rfc2898 + + + RFC 2974 + Session Announcement Protocol + IETF + RFC + October 2000 + https://tools.ietf.org/html/rfc2974 + + + RFC 3004 + The User Class Option for DHCP + IETF + RFC + https://tools.ietf.org/html/rfc3004 + + + RFC 3066 + Tags for the Identification of Languages + IETF + RFC + https://tools.ietf.org/html/rfc3066 + + + RFC 3232 + "Assigned Numbers: RFC 1700 is Replaced by an On-line Database" + IETF + RFC + 2002 + https://tools.ietf.org/html/rfc3232 + + + RFC 3315 + Dynamic Host Configuration Protocol for IPv6 (DHCPv6) + IETF + RFC + 2003 + https://tools.ietf.org/html/rfc3315 + + + RFC 3339 + Date and Time on the Internet: Timestamps + IETF + Draft Standard + July, 2002 + https://tools.ietf.org/html/rfc3339 + + + RFC 3489 + STUN - Simple Traversal of User Datagram Protocol (UDP) Through Network Address Translators (NATs) + IETF + RFC + https://tools.ietf.org/html/rfc3489 + + + RFC 3596 + DDNS Extensions to Support IP Version 6 + IETF + RFC + 2003 + https://tools.ietf.org/html/rfc3596 + + + RFC 3633 + IPv6 Prefix Options for Dynamic Host Configuration Protocol (DHCP) version 6 + IETF + RFC + 2003 + https://tools.ietf.org/html/rfc3633 + + + RFC 3646 + DNS Configuration options for Dynamic Host Configuration Protocol for IPv6 (DHCPv6) + IETF + RFC + 2003 + https://tools.ietf.org/html/rfc3646 + + + RFC 3775 + Mobility Support in IPv6 + IETF + RFC + 2004 + https://tools.ietf.org/html/rfc3775 + + + RFC 3925 + Vendor-Identifying Vendor Options for Dynamic Host Configuration Protocol version 4 (DHCPv4) + IETF + RFC + https://tools.ietf.org/html/rfc3925 + + + RFC 3926 + FLUTE - File Delivery over Unidirectional Transport + IETF + RFC + October 2004 + https://tools.ietf.org/html/rfc3926 + + + RFC 3927 + Dynamic Configuration of IPv4 Link-Local Addresses + IETF + RFC + 2005 + https://tools.ietf.org/html/rfc3927 + + + RFC 3931 + Layer Two Tunneling Protocol - Version 3 (L2TPv3) + IETF + RFC + March 2005 + https://tools.ietf.org/html/rfc3931 + + + RFC 3948 + UDP Encapsulation of IPsec ESP Packets + IETF + RFC + January 2005 + https://tools.ietf.org/html/rfc3948 + + + RFC 3986 + Uniform Resource Identifier (URI): Generic Syntax + IETF + RFC + https://tools.ietf.org/html/rfc3986 + + + RFC 4122 + A Universally Unique IDentifier (UUID) URN Namespace + IETF + RFC + 2005 + https://tools.ietf.org/html/rfc4122 + + + RFC4180 + Common Format and MIME Type for Comma-Separated Values (CSV) Files + IETF + RFC + October 2005 + https://tools.ietf.org/html/rfc4180 + + + RFC 4191 + Default Router Preferences and More-Specific Routes + IETF + RFC + 2005 + https://tools.ietf.org/html/rfc4191 + + + RFC 4193 + Unique Local IPv6 Unicast Addresses + IETF + RFC + 2005 + https://tools.ietf.org/html/rfc4193 + + + RFC 4242 + Information Refresh Time Option for Dynamic Host Configuration Protocol for IPv6 (DHCPv6) + IETF + RFC + 2005 + https://tools.ietf.org/html/rfc4242 + + + RFC 4291 + IP Version 6 Addressing Architecture + IETF + RFC + 2006 + https://tools.ietf.org/html/rfc4291 + + + RFC 4292 + IP Forwarding Table MIB + IETF + RFC + 2006 + https://tools.ietf.org/html/rfc4292 + + + RFC 4293 + Management Information Base for the Internet Protocol (IP) + IETF + RFC + 2006 + https://tools.ietf.org/html/rfc4293 + + + RFC 4301 + Security Architecture for the Internet Protocol + IETF + RFC + December 2005 + https://tools.ietf.org/html/rfc4301 + + + RFC 4302 + IP Authentication Header + IETF + RFC + December 2005 + https://tools.ietf.org/html/rfc4302 + + + RFC 4303 + IP Encapsulating Security Payload (ESP) + IETF + RFC + December 2005 + https://tools.ietf.org/html/rfc4303 + + + RFC 4389 + Neighbor Discovery Proxies (ND Proxy) + IETF + RFC + 2006 + https://tools.ietf.org/html/rfc4389 + + + RFC 4632 + Classless Inter-domain Routing (CIDR): The Internet Address Assignment and Aggregation Plan + IETF + RFC + 2006 + https://tools.ietf.org/html/rfc4632 + + + RFC 4719 + Transport of Ethernet Frames over Layer 2 Tunneling Protocol Version 3 (L2TPv3) + IETF + RFC + November 2006 + https://tools.ietf.org/html/rfc4719 + + + RFC 4835 + Cryptographic Algorithm Implementation Requirements for Encapsulating Security Payload (ESP) and Authentication Header (AH) + IETF + RFC + 2007 + https://tools.ietf.org/html/rfc4835 + + + RFC 4861 + Neighbor Discovery for IP version 6 (IPv6) + IETF + RFC + 2007 + https://tools.ietf.org/html/rfc4861 + + + RFC 4862 + IPv6 Stateless Address Autoconfiguration + IETF + RFC + 2007 + https://tools.ietf.org/html/rfc4862 + + + RFC 5072 + IP Version 6 over PPP + IETF + RFC + 2007 + https://tools.ietf.org/html/rfc5072 + + + RFC 5139 + Revised Civic Location Format For Presence Information Data Format Location Object (PIDF-LO) + IETF + RFC + February 2008 + https://tools.ietf.org/html/rfc5139 + + + RFC 5280 + Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile + IETF + RFC + May 2008 + https://tools.ietf.org/html/rfc5280 + + + RFC 5491 + GEOPRIV Presence Information Data Format Location Object (PIDF-LO) Usage Clarification, Considerations, and Recommendations + IETF + RFC + March 2009 + https://tools.ietf.org/html/rfc5491 + + + RFC 5625 + DNS Proxy Implementation Guidelines + IETF + RFC + 2009 + https://tools.ietf.org/html/rfc5625 + + + RFC 5969 + IPv6 Rapid Deployment on IPv4 Infrastructures (6rd) - Protocol Specification + IETF + RFC + 2010 + https://tools.ietf.org/html/rfc5969 + + + RFC 5996 + Internet Key Exchange Protocol Version 2 (IKEv2) + IETF + RFC + September 2010 + https://tools.ietf.org/html/rfc5996 + + + RFC 6106 + IPv6 Router Advertisement Option for DNS Configuration + IETF + RFC + 2010 + https://tools.ietf.org/html/rfc6106 + + + RFC 6120 + Extensible Messaging and Presence Protocol (XMPP) : Core + IETF + RFC + 2011 + https://tools.ietf.org/html/rfc6120 + + + RFC 6887 + Port Control Protocol (PCP) + IETF + RFC + 2013 + https://tools.ietf.org/html/rfc6887 + + + RFC 6970 + Universal Plug and Play (UPnP) Internet Gateway Device (IGD) - Port Control Protocol (PCP) Interworking Function + IETF + RFC + 2013 + https://tools.ietf.org/html/rfc6970 + + + RFC7159 + The JavaScript Object Notation (JSON) Data Interchange Format + IETF + RFC + March 2014 + https://tools.ietf.org/html/rfc7159 + + + RFC 7291 + DHCP Options for the Port Control Protocol (PCP) + IETF + RFC + 2014 + https://tools.ietf.org/html/rfc7291 + + + RFC 7348 + Virtual eXtensible Local Area Network (VXLAN) + IETF + RFC + August 2014 + https://tools.ietf.org/html/rfc7348 + + + RFC 7395 + An Extensible Messaging and Presence Protocol (XMPP) Subprotocol for WebSocket + IETF + Standards Track + October 2014 + https://tools.ietf.org/html/rfc7395 + + + RFC 7398 + A Reference Path and Measurement Points for Large-Scale Measurement of Broadband Performance + IETF + Informational RFC + February 2015 + https://tools.ietf.org/html/rfc7398 + + + RFC 7594 + A Framework for Large-Scale Measurement of Broadband Performance (LMAP) + IETF + Informational RFC + September 2015 + https://tools.ietf.org/html/rfc7594 + + + RFC 7597 + Mapping of Address and Port with Encapsulation (MAP) + IETF + RFC + July 2015 + https://tools.ietf.org/html/rfc7597 + + + RFC 7598 + DHCPv6 Options for configuration of Softwire Address and Port Mapped Clients + IETF + RFC + July 2015 + https://tools.ietf.org/html/rfc7598 + + + RFC 7599 + Mapping of Address and Port using Translation (MAP-T) + IETF + RFC + July 2015 + https://tools.ietf.org/html/rfc7599 + + + Simple Object Access Protocol (SOAP) 1.1 + W3C + https://www.w3.org/TR/2000/NOTE-SOAP-20000508 + + + TR-064 Corrigendum 1 + LAN-Side DSL CPE Configuration Specification + Broadband Forum + Technical Report + August 2015 + https://www.broadband-forum.org/technical/download/TR-064.pdf + + + TR-069 Amendment 6 + CPE WAN Management Protocol + Broadband Forum + Technical Report + April 2018 + https://www.broadband-forum.org/technical/download/TR-069.pdf + + + TR-106 Amendment 8 + Data Model Template for CWMP Endpoints and USP Agents + Broadband Forum + Technical Report + May 2018 + https://www.broadband-forum.org/technical/download/TR-106.pdf + + + TR-106 Amendment 8 + Data Model Template for CWMP Endpoints and USP Agents + Broadband Forum + Technical Report + May 2018 + https://www.broadband-forum.org/technical/download/TR-106_Amendment-8.pdf + + + TR-124 Issue 5 + Functional Requirements for Broadband Residential Gateway Devices + Broadband Forum + Technical Report + July 2016 + https://www.broadband-forum.org/technical/download/TR-124_Issue-5.pdf + + + TR-124 Issue 6 + Functional Requirements for Broadband Residential Gateway Devices + Broadband Forum + Technical Report + July 2020 + https://www.broadband-forum.org/technical/download/TR-124_Issue-6.pdf + + + TR-143 Amendment 3 + Enabling Network Throughput Performance Tests and Statistical Monitoring + Broadband Forum + Technical Report + May 2017 + https://www.broadband-forum.org/technical/download/TR-143.pdf + + + TR-159 + Management Framework for xDSL Bonding + Broadband Forum + Technical Report + December 2008 + https://www.broadband-forum.org/technical/download/TR-159.pdf + + + TR-181 Issue 2 Amendment 13 + Device Data Model + Broadband Forum + Technical Report + September 2019 + https://www.broadband-forum.org/technical/download/TR-181_Issue-2.pdf + + + TR-232 + Bulk Data Collection + Broadband Forum + Technical Report + May 2012 + https://www.broadband-forum.org/technical/download/TR-232.pdf + + + TR-262 + Femto Component Objects + Broadband Forum + Technical Report + November 2011 + https://www.broadband-forum.org/technical/download/TR-262.pdf + + + TR-304 + Broadband Access Service Attributes and Performance Metrics + Broadband Forum + Technical Report + February 2015 + https://www.broadband-forum.org/technical/download/TR-304.pdf + + + TR-390 + Performance Measurement from Customer Equipment to IP Edge + Broadband Forum + Technical Report + May 2017 + https://www.broadband-forum.org/technical/download/TR-390.pdf + + + TR-471 + Maximum IP-Layer Capacity Metric, Related Metrics, and Measurements + Broadband Forum + Technical Report + TBD + https://www.broadband-forum.org/technical/download/TR-471.pdf + + + Universal Powerline Association + UPA + https://www.upaplc.org + + + UPnP Device Architecture + UPnP Device Architecture 1.0 + UPnP Forum + April 2008 + https://www.upnp.org/specs/arch/UPnP-arch-DeviceArchitecture-v1.0-20080424.pdf + + + UPnP Device Architecture 1.1 + UPnP Device Architecture 1.1 + UPnP Forum + October, 2008 + https://www.upnp.org/specs/arch/UPnP-arch-DeviceArchitecture-v1.1.pdf + + + UPnP Device Management:1 + UPnP Device Management v1 + https://upnp.org/specs/dm/dm1/ + + + UPnP InternetGatewayDevice:1 + InternetGatewayDevice:1 Device Template Version 1.01 + UPnP + SDCP + 2001 + https://upnp.org/specs/gw/UPnP-gw-InternetGatewayDevice-v1-Device.pdf + + + UPnP InternetGatewayDevice:2 + InternetGatewayDevice:2 Device Template Version 1.01 + UPnP + SDCP + 2010 + https://upnp.org/specs/gw/UPnP-gw-InternetGatewayDevice-v2-Device.pdf + + + USB 1.0 + USB 1.0 Specification + USB-IF + January 1996 + https://www.usb.org/developers/docs/ + + + USB 2.0 + USB 2.0 Specification + USB-IF + April 2000 + https://www.usb.org/developers/docs/usb_20_122208.zip + + + USB 3.0 + USB 3.0 Specification + USB-IF + November 2008 + https://www.usb.org/developers/docs/usb_30_spec.zip + + + WSC 2.0 + Wi-Fi Simple Configuration Technical Specification Version 2.0.x + Wi-Fi Alliance + https://www.wi-fi.org/discover-wi-fi/wi-fi-protected-setup + + + Wi-Fi Protected Setup Specification Version 1.0h + Wi-Fi Alliance + 2006 + https://www.wi-fi.org + + + Z-Wave + Z-Wave website + https://www.z-wave.com + + + ZigBee + ZigBee Alliance website + https://www.zigbee.org + + + ZigBee 2007 Specification + ZigBee 2007 Specification + ZigBee Alliance + October 2007 + https://www.zigbee.org/Specifications/ZigBee/download.aspx + + + + + + + + + + + + + + + + + + + + The top-level object for a Device. + + + + Root data model version, e.g. ''2.4''. For a vendor-defined root data model, this is the standard Broadband Forum model on which the vendor-defined model is based. + + + + + + + + + + + {{numentries}} + + + + + + + + + This object contains general services information. + + + + + This object contains general device information. + + + + Each list item is a device category (e.g. "AV_TV" and "AV_Recorder"), or the value is {{empty}} if no such element is provided by the device. + Note: It is assumed that this list might be used for HTIP (Home-network Topology Identifying Protocol) {{bibref|JJ-300.00}} and {{bibref|G.9973}}. Standard HTIP device categories are defined in {{bibref|JJ-300.01}}. In this case, the maximum length of the list is 127 and of each item is 31, and any non-HTIP device categories SHOULD NOT conflict with standard HTIP device categories. + + + + + + + + + The manufacturer of the CPE (human readable string). + + + + + + + + + + Organizationally unique identifier of the device manufacturer. Represented as a six hexadecimal-digit value using all upper-case letters and including any leading zeros. {{pattern}} + The value MUST be a valid OUI as defined in {{bibref|OUI}}. + This value MUST remain fixed over the lifetime of the device, including across firmware updates. + Any change would indicate that it's a new device and would therefore require a BOOTSTRAP Inform. + + + + + + + + + + + {{numentries}} + + + + + + + + Model name of the CPE (human readable string). + + + + + + + + + + The model number of the device (human readable string), or {{empty}} if no model number is provided by the device. + Note: It is assumed that this string might be used for HTIP (Home-network Topology Identifying Protocol) {{bibref|JJ-300.00}} and {{bibref|G.9973}}. In this case, the maximum length of the string is 31. + + + + + + + + + + A full description of the CPE device (human readable string). + + + + + + + + + + Identifier of the class of product for which the serial number applies. That is, for a given manufacturer, this parameter is used to identify the product or class of product over which the {{param|SerialNumber}} parameter is unique. + This value MUST remain fixed over the lifetime of the device, including across firmware updates. + + + + + + + + + + Identifier of the particular device that is unique for the indicated class of product and manufacturer. + This value MUST remain fixed over the lifetime of the device, including across firmware updates. + + + + + + + + + + A string identifying the particular CPE model and version. + + + + + + + + + + A string identifying the software version currently installed in the CPE (i.e. version of the overall CPE firmware). + To allow version comparisons, this element SHOULD be in the form of dot-delimited integers, where each successive integer represents a more minor category of variation. For example, ''3.0.21'' where the components mean: ''Major.Minor.Build''. + For CPEs that support multiple firmware images, the value for this parameter MUST be the software version of the active firmware image. + + + + + + + + + + {{noreference}}A full path reference to the row in the {{object|FirmwareImage}} table representing the currently running firmware image. + + + + + + + + + + {{noreference}}A full path reference to the row in the {{object|FirmwareImage}} table of the firmware image that is to be loaded the next time the device boots. + This parameter value cannot be empty and must point to a valid and enabled {{object|FirmwareImage}} object where the ({{param|FirmwareImage.{i}.Available}} parameter is set to 'true'). Out of the factory, this parameter should be set to point to the firmware image the CPE will attempt to boot when first powered on. + The firmware image instance referenced by this parameter must also have an Available parameter value of 'true'. Attempting to set this parameter to point to a non-enabled firmware image MUST result in the CPE responding with a CWMP fault (9007). + In situations where the CPE cannot boot the firmware image specified by this parameter and manages to boot a different firmware image, the CPE MUST NOT modify this value to point to the alternate firmware image that is currently active. + + + + + + + + + + {{list}} Each entry is an additional version. Represents any additional hardware version information the vendor might wish to supply. + + + + + + + + + + + {{list}} Each entry is an additional version. Represents any additional software version information the vendor might wish to supply. + + + + + + + + + + + Identifier of the primary service provider and other provisioning information, which MAY be used by the ACS to determine service provider-specific customization and provisioning parameters. + + + + + + + + + + Time in {{units}} since the CPE was last restarted. + + + + + + + + + + Date and time in UTC that the CPE first both successfully established an IP-layer network connection and acquired an absolute time reference using NTP or equivalent over that network connection. The CPE MAY reset this date after a factory reset. + If NTP or equivalent is not available, this parameter, if present, SHOULD be set to the Unknown Time value. + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + Every instance of this object is a Vendor Configuration File, and contains parameters associated with the Vendor Configuration File. + This table of Vendor Configuration Files is for information only and does not allow the Controller to operate on these files in any way. + Whenever the CPE successfully downloads a configuration file as a result of the Download RPC with the FileType argument of ''3 Vendor Configuration File'', the CPE MUST update this table. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Name of the vendor configuration file. + If the CPE is able to obtain the name of the configuration file from the file itself, then the value of this parameter MUST be set to that name. + Otherwise, if the CPE can extract the file name from the URL used to download the configuration file, then the value of this parameter MUST be set to that name. + Otherwise, the value of this parameter MUST be set to the value of the TargetFileName argument of the Download RPC used to download this configuration file. + + + + + + + + + + A string identifying the configuration file version currently used in the CPE. + If the CPE is able to obtain the version of the configuration file from the file itself, then the value of this parameter MUST be set to the obtained value. + Otherwise, the value of this parameter MUST be {{empty}}. + + + + + + + + + + Date and time when the content of the current version of this vendor configuration file was first applied by the CPE. + + + + + + + + A description of the vendor configuration file (human-readable string). + + + + + + + + + + When {{true}}, this parameter indicates that this {{object}} instance is to be used for backup and restoration purposes. + Note: The backup and restore operations may require the use of multiple {{object}} instances. In this scenario the mechanism for detemining the order and combination of {{object}} instances used for backup and restoration purposes is implementation specific. + + + + + + + + + Status of the device's volatile physical memory. + + + + The total physical RAM, in {{units}}, installed on the device. + + + + + + + + + + The free physical RAM, in {{units}}, currently available on the device. + + + + + + + + + + + Status of the processes on the device. + + + + The total amount of the CPU, in {{units}}, rounded up to the nearest whole {{units}}. In the case that multiple CPU are present, this value represents the average of all CPU. + + + + + + + + + + + {{numentries}} + Since a Process can come and go very quickly, the CPE SHOULD place a locally specified limit on the frequency at which it will notify the ACS of value changes, as described in {{bibref|TR-069|Section 3.2.1}}. + + + + + + + + + List of all processes running on the device. + + + + + + + The Process Identifier. + + + + + + + + The name of the command that has caused the process to exist. + + + + + + + + + + The size in {{units}} of the memory occupied by the process. + + + + + + + + + + The priority of the process where 0 is highest. + + + + + + + + + + The amount of time in {{units}} that the process has spent taking up CPU time since the process was started. + + + + + + + + + + The current state that the process is in. + + + + + + + + + + + + + + + + Status of the temperature of the device. + + + + {{numentries}} + + + + + + + + + This object represents information that the device has obtained via sampling an internal temperature sensor. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Indicates whether or not the temperature sensor is enabled. + + + + + + + + The status of this temperature sensor. + + + + + + The sensor is not currently sampling the temperature. + + + + + The sensor is currently sampling the temperature. + + + + + The sensor error currently prevents sampling the temperature. + + + + + + + + When set to {{true}}, resets the temperature sensor. + + + + + + + + The time at which this temperature sensor was reset. + Reset can be caused by: + * {{param|Status}} transition from {{enum|Disabled|Status}} to {{enum|Enabled|Status}} + * {{param|Reset}} set to {{true}}. + * An internal reset of the temperature sensor (including a reboot of the device). + The Unknown Time value, as defined in {{bibref|TR-106}}, indicates that this temperature sensor has never been reset, which can only happen if it has never been enabled. + + + + + + + + Name of this temperature sensor. This text MUST be sufficient to distinguish this temperature sensor from other temperature sensors. + + + + + + + + + + This temperature sensor's last good reading in {{units}}. + A value of -274 (which is below absolute zero) indicates a good reading has not been obtained since last reset. + + + + + + + + + + + The time at which this temperature sensor's last good reading was obtained. + The Unknown Time value, as defined in {{bibref|TR-106}}, indicates a good reading has not been obtained since last reset. + + + + + + + + This temperature sensor's lowest value reading in {{units}} since last reset. + A value of -274 (which is below absolute zero) indicates a good reading has not been obtained since last reset. + + + + + + + + + + + The time at which this temperature sensor's lowest value was read. + The Unknown Time value, as defined in {{bibref|TR-106}}, indicates a good reading has not been obtained since last reset. + + + + + + + + This temperature sensor's highest value reading in {{units}} since last reset. + A value of -274 (which is below absolute zero) indicates a good reading has not been obtained since last reset. + + + + + + + + + + + The time at which this temperature sensor's highest value was read. + The Unknown Time value, as defined in {{bibref|TR-106}}, indicates a good reading has not been obtained since last reset. + + + + + + + + This temperature sensor's low alarm value in {{units}}. + A value of -274 (which is below absolute zero) indicates a non configured value. + A change to this value will cause {{param|LowAlarmTime}} to be reset. + + + + + + + + + + + Initial time at which this temperature sensor's {{param|LowAlarmValue}} was encountered. + This value is only set the first time the alarm is seen and not changed until the next reset. + The Unknown Time value, as defined in {{bibref|TR-106}}, indicates that an alarm has not been encountered since the last reset. + + + + + + + + This temperature sensor's high alarm value in {{units}}. + A value of -274 (which is below absolute zero) indicates a non configured value. + A change to this value will cause {{param|HighAlarmTime}} to be reset. + + + + + + + + + + + The interval, measured in {{units}}, in which the device polls this {{object}}. + If the value is 0 then the device selects its own polling interval. + If the value is greater than 0 then the device MUST use this value as the polling interval. + + + + + + + + + + Initial time at which this temperature sensor's {{param|HighAlarmValue}} was encountered. + This value is only set the first time the alarm is seen and not changed until the next reset. + The Unknown Time value, as defined in {{bibref|TR-106}}, indicates that an alarm has not been encountered since the last reset. + + + + + + + + + This object defines the parameters that describe how the device handles network traffic. + + + + The maximum number of {{units}} of outstanding data a sender can send on a particular connection prior to an acknowledgment {{bibref|RFC793}}. Any scaling factor SHOULD be included in this parameter {{bibref|RFC1323}}. + + + + + + + + + + {{list}} Indicates the TCP congestion control mechanism(s) implemented. {{enum}} + Tahoe, Reno, and New Reno are defined in {{bibref|RFC2582}} + + + + + + + Represents the base TCP implementation in {{bibref|RFC793}} and elements of {{bibref|RFC2582}} + + + + + Represents the base TCP implementation in {{bibref|RFC793}} with the additional algorithms defined in {{bibref|RFC2581}} + + + + + Described as a modification to the Reno algorithms in {{bibref|RFC2582}} + + + + + An emerging TCP congestion control mechanism + + + + + + + + + Each table entry represents a hardware or virtual processor that resides on this device. + + + + + + + {{datatype|expand}} + + + + + + + + The architecture of the processor on the underlying hardware. {{enum}} + For processor architectures not included in this list, the vendor MAY include vendor-specific values, which MUST use the format defined in {{bibref|TR-106|Section 3.3}}. + + + + + + + + + + big-endian + + + + + little-endian + + + + + + big-endian + + + + + little-endian + + + + + + + + + + Each table entry represents a Vendor Log File. + This table of log files is informational only and does not allow the Controller to operate on these files in any way. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Name of the log file. + Typically this will be the full file system path, but provided that it is guaranteed to be unique across current and future log files, it MAY be a shorter name derived from the file system path, or be derived via another mechanism. + + + + + + + + + + The maximum size of the log file in {{units}}. If the device doesn't know the maximum file size then {{param}} will be 0. + + + + + + + + + + When {{true}}, the log file contents are preserved across a device reboot. + When {{false}}, the log file contents will be purged when the device is rebooted. + + + + + + + + + This object contains Location information. + + + + + + + + Identifies the source of the location data. + + + + + + + + + + + + + + The time when the location was acquired. + + + + + + + + URL, MAC address, or other identifier that identifies an "External" source of this location. + Meaningful only if {{param|Source}} has a value of {{enum|External|Source}}, otherwise it MUST be {{empty}}. + If {{param|ExternalProtocol}} has a value of {{enum|CWMP|ExternalProtocol}}, this is the URL or IP address of the Controller. + + + + + + + + Protocol used to acquire a location from an "External" source. {{enum}} + Meaningful only if {{param|Source}} has a value of {{enum|External|Source}}, otherwise it MUST be {{empty}}. + + + + + + {{empty}} + + + + + + + + + + + + + + + + + + + + The currently valid location information. + Writable only when {{param|ExternalProtocol}} has a value of {{enum|CWMP|ExternalProtocol}} or {{enum|USP|ExternalProtocol}}. + If obtained through the local GPS/AGPS then the location information is formatted according to {{bibref|RFC5491}}. + If manually configured then location information will be XML-formatted according to {{bibref|RFC5491}} (geographical information) and {{bibref|RFC5139}} (civic addresses). + If obtained by an external source this is the location information as received. + If it's an XML document (e.g. CWMP, OMA-DM, UPnP, HELD, MLP) the location information will be represented as-is, otherwise it will be converted to base64. + CWMP or USP configured location information will be XML-formatted according to {{bibref|RFC5491}} (geographical information) and {{bibref|RFC5139}} (civic addresses). + Only zero or one Location object instance with value {{enum|CWMP|ExternalProtocol}} or {{enum|USP|ExternalProtocol}} MUST exist at any given time. + + + + + + + + + + + This object describes an image of the device. + + + + + + + + + + {{datatype|expand}} + + + + + + + + The location of the device that represents the image as the user looks at the front of the device in its typical orientation (e.g., on-end, flat). + + + + + + + + + + + + + + + The device image in PNG, JPEG or GIF format. + + + + + + + + + Top-level object for mapping firmware images. + This is a static table – the number of object instances in this table is defined by the firmware that is currently running. + + + + + + + {{datatype|expand}} + + + + + + + + Firmware/software image name. Descriptive text of the image or filename. + The value of {{param}} is {{empty}} if {{param|Status}} is anything other than {{enum|Available|Status}}, {{enum|InstallationFailed|Status}}, or {{enum|ActivationFailed|Status}}. + + + + + + + + + + A string identifying the version of the firmware image represented by this {{object}}. Whenever this firmware image is active (ie, the device has booted this firmware image), the value of the {{param|.DeviceInfo.SoftwareVersion}} parameter MUST be the same as the value contained in this parameter. + To allow version comparisons, this element SHOULD be in the form of dot-delimited integers, where each successive integer represents a more minor category of variation. For example, 3.0.21 where the components mean: ''Major.Minor.Build''. + The value of {{param}} is {{empty}} if {{param|Status}} is anything other than {{enum|Available|Status}}, {{enum|InstallationFailed|Status}}, or {{enum|ActivationFailed|Status}}. + + + + + + + + + + Specifies whether or not this particular firmware image can be used by the Agent. An Agent will only attempt to boot this particular firmware image if this parameter value is set to {{true}}. + This value MUST be set to {{true}} by the device whenever a new firmware image is installed. + This value cannot be set to {{false}} if the firmware image is active or is referenced by the {{param|#.BootFirmwareImage}} parameter. + Firmware image instances cannot be deleted, so a Controller MAY use this parameter to subsequently mark a particular firmware as being invalid, which will prevent the Agent from attempting to boot it. + + + + + + + + Status of the firmware image, as determined by the Agent. {{enum}} + + + + + + This Firmware Image instance is empty. + This value could happen on an Agent that supports multiple firmware images, but only has a single image installed. + + + + + This Firmware Image instance is the currently active image. + + + + + This Firmware Image instance is being downloaded. + + + + + This Firmware Image instance has been downloaded, and is in the process of being validated. + + + + + This Firmware Image instance has been downloaded, validated, and installed, and is ready to be activated. + + + + + The Agent has attempted to download this Firmware Image instance, but ultimately failed while retrieving it from the source URL. + + + + + The Agent has attempted to validate a Firmware Image downloaded to this instance, but ultimately failed while validating it. + + + + + The Agent has attempted to install a Firmware Image downloaded and validated to this instance, but ultimately failed while installing it. + + + + + The Agent has attempted to active this Firmware Image instance, but ultimately failed while being activated. + + + + + + + + If the Agent is unable to boot into this firmware image, when specified, the Agent can use this parameter to record some information as to why the boot failed. + If the Agent successfully boots into this firmware, the value of this parameter SHOULD be {{empty}}. When a new firmware image is installed into this object instance, this parameter MUST be cleared. + The length of this string is defined as implementation-specific by the Agent. + + + + + + + + + This table contains details of the device's Current Supported Data Model. + The table MUST describe the device's entire Supported Data Model. Therefore, if a device's Supported Data Model changes at run-time, entries will need to be added or removed as appropriate. + Each table entry MUST refer to only a single Root Object or Service Object. The device MAY choose to use more than one table entry for a given Root Object or Service Object. + Considering that every device has some form of a data model, this table MUST NOT be empty. + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The {{datatype}} that describes some or all of the device's currently Supported Data Model. + The URL MUST reference an XML file which describes the appropriate part of the Supported Data Model. + The referenced XML file MUST be compliant with the DT (Device Type) Schema that is described in {{bibref|TR-106|Annex B}}, including any additional normative requirements referenced within the Schema. + The XML file referenced by this URL MUST NOT change while the CPE is running, and SHOULD NOT change across a CPE reboot. Note that {{param|UUID}} is a unique key, so the XML file referenced by this URL will never change. + The XML file MAY be located within the CPE. In this scenario the CPE MAY use the value of "localhost" as URL host portion, When the "localhost" value is used, the ACS has the responsibility to substitute the "localhost" value with the host portion of the connection request URL. + Behavior in the event of an invalid URL, failure to access the referenced XML file, or an invalid XML file, is implementation-dependent. + + + + + + + + UUID ({{bibref|RFC4122}}) that is the value of the uuid attribute in the DT Instance referenced by {{param|URL}}. + + + + + + + + URN ({{bibref|RFC3986}}) that is the value of the spec attribute in the DM (data model) Instance that defines the Root Object or Service Object referenced by this table entry. + For example, if this table entry references a DT Instance that refers to the ''Device:2.13'' Root Object, the value of this parameter would be ''urn:broadband-forum-org:tr-181-2-13-0''. If the DT Instance instead referred to a vendor-specific Root Object, e.g. ''X_EXAMPLE_Device:1.0'' (derived from ''Device:1.3''), the value of this parameter would be something like ''urn:example-com:device-1-0-0''. + + + + + + + + + + This parameter MUST list exactly the features that are defined using the top-level ''feature'' element in the DT Instance referenced by {{param|URL}}. + For example, if the DT instance specified the following: + :<feature name="DNSServer"/> + :<feature name="Router"/> + :<feature name="X_MyDeviceFeature"/> + then the value of this parameter might be ''DNSServer,Router,X_MyDeviceFeature''. The order in which the features are listed is not significant. + + + + + + + + + + Represents the associated CPE Proxier for a Proxied Device that utilizes the Virtual CWMP Device Mechanism {{bibref|TR-069|Annex J.1.1}}. + + + + Organizationally unique identifier of the associated CPE Proxier. Represented as a six hexadecimal-digit value using all upper-case letters and including any leading zeros. {{pattern}} + The value MUST be a valid OUI as defined in {{bibref|OUI}}. + + + + + + + + + + + Identifier of the class of product of the associated CPE Proxier for which the serial number applies. + {{empty}} indicates either that the CPE Proxier does not use a product class to differentiate its serial number. + + + + + + + + + + Serial number of the associated CPE Proxier. + + + + + + + + + + The protocol being used to communicate between the CPE Proxier and this Proxied Device. {{enum}} + Vendors can extend the enumerated values with vendor specific extensions, in which case the rules outlined in {{bibref|TR-106|3.3}} MUST be adhered to. + + + + + + see {{bibref|Z-Wave}} + + + + + see {{bibref|ZigBee}} + + + + + see {{bibref|UPnP-DM:1}} + + + + + see {{bibref|ETSIM2MFA}} + + + + + + + + + This object contains parameters relating to the CPE's association with an ACS. + + + + Enables and disables the CPE's support for CWMP. + {{false}} means that CWMP support in the CPE is disabled, in which case the device MUST NOT send any Inform messages to the ACS or accept any Connection Request notifications from the ACS. + {{true}} means that CWMP support on the CPE is enabled. + The subscriber can re-enable the CPE's CWMP support either by performing a factory reset or by using a LAN-side protocol to change the value of this parameter back to {{true}}. + + + + + + + + + The {{datatype}} for the CPE to connect to the ACS using the CPE WAN Management Protocol. + This parameter MUST be in the form of a valid HTTP or HTTPS URL. + The ''host'' portion of this URL is used by the CPE for validating the ACS certificate when using SSL or TLS. + Note that on a factory reset of the CPE, the value of this parameter might be reset to its factory value. If an ACS modifies the value of this parameter, it SHOULD be prepared to accommodate the situation that the original value is restored as the result of a factory reset. + + + + + + + + Username used to authenticate the CPE when making a connection to the ACS using the CPE WAN Management Protocol. + This username is used only for HTTP-based authentication of the CPE. + Note that on a factory reset of the CPE, the value of this parameter might be reset to its factory value. If an ACS modifies the value of this parameter, it SHOULD be prepared to accommodate the situation that the original value is restored as the result of a factory reset. + + + + + + + + + + Password used to authenticate the CPE when making a connection to the ACS using the CPE WAN Management Protocol. + This password is used only for HTTP-based authentication of the CPE. + Note that on a factory reset of the CPE, the value of this parameter might be reset to its factory value. If an ACS modifies the value of this parameter, it SHOULD be prepared to accommodate the situation that the original value is restored as the result of a factory reset. + + + + + + An absolute date and time in UTC at which time the CPE will perform a reboot. + If a CWMP session is in progress at the specified time, the CPE MUST wait until the session has ended before performing the reboot. + If the value specifies a date and time that has already passed (i.e., a past date and time), no reboot will be performed. + + + + + + + + The number of {{units}} from the time the CWMP session in which this parameter value is set is ended until the CPE performs a reboot. + Whenever the CPE reboots, this value MUST be reset by the CPE to -1. + + + + + + + + + + + Whether or not the CPE MUST periodically send CPE information to the ACS using the Inform method call. + + + + + + + + The duration in {{units}} of the interval for which the CPE MUST attempt to connect with the ACS and call the Inform method if {{param|PeriodicInformEnable}} is {{true}}. + + + + + + + + + + + An absolute time reference in UTC to determine when the CPE will initiate the periodic Inform method calls. Each Inform call MUST occur at this reference time plus or minus an integer multiple of the {{param|PeriodicInformInterval}}. + {{param}} is used only to set the ''phase'' of the periodic Informs. The actual value of {{param}} can be arbitrarily far into the past or future. + For example, if {{param|PeriodicInformInterval}} is 86400 (a day) and if {{param}} is set to UTC midnight on some day (in the past, present, or future) then periodic Informs will occur every day at UTC midnight. These MUST begin on the very next midnight, even if {{param}} refers to a day in the future. + The Unknown Time value defined in {{bibref|TR-106|section 3.2}} indicates that no particular time reference is specified. That is, the CPE MAY locally choose the time reference, and needs only to adhere to the specified {{param|PeriodicInformInterval}}. + If absolute time is not available to the CPE, its periodic Inform behavior MUST be the same as if the {{param}} parameter was set to the Unknown Time value. + + + + + + + + {{param}} provides the ACS a reliable and extensible means to track changes made by the ACS. The value of {{param}} MUST be equal to the value of the ParameterKey argument from the most recent successful SetParameterValues, AddObject, or DeleteObject method call from the ACS. + The CPE MUST set {{param}} to the value specified in the corresponding method arguments if and only if the method completes successfully and no fault response is generated. If a method call does not complete successfully (implying that the changes requested in the method did not take effect), the value of {{param}} MUST NOT be modified. + The CPE MUST only modify the value of {{param}} as a result of SetParameterValues, AddObject, DeleteObject, or due to a factory reset. On factory reset, the value of {{param}} MUST be set to {{empty}}. + + + + + + + + + + The HTTP {{datatype}} for an ACS to make a Connection Request notification to the CPE. + In the form: + : http://host:port/path + The ''host'' portion of the URL MAY be the IP address for the management interface of the CPE in lieu of a host name. + Note: If the ''host'' portion of the URL is a literal IPv6 address then it MUST be enclosed in square brackets (see {{bibref|RFC3986|Section 3.2.2}}). + + + + + + + + Username used to authenticate an ACS making a Connection Request to the CPE. + + + + + + + + + + Password used to authenticate an ACS making a Connection Request to the CPE. + + + + + + Indicates whether or not the ACS will manage upgrades for the CPE. If {{true}}, the CPE SHOULD NOT use other means other than the ACS to seek out available upgrades. If {{false}}, the CPE MAY use other means for this purpose. + Note that an autonomous upgrade (reported via an "10 AUTONOMOUS TRANSFER COMPLETE" Inform Event code) SHOULD be regarded as a managed upgrade if it is performed according to ACS-specified policy. + + + + + + + + Present only for a CPE that supports the Kicked RPC method. + LAN-accessible {{datatype}} from which the CPE can be ''kicked'' to initiate the Kicked RPC method call. MUST be an absolute URL including a host name or IP address as would be used on the LAN side of the CPE. + + + + + + + + Present only for a CPE that provides a LAN-side web page to show progress during a file download. + LAN-accessible {{datatype}} to which a web-server associated with the ACS MAY redirect a user's browser on initiation of a file download to observer the status of the download. + + + + + + + + This parameter is used to control throttling of active notifications sent by the CPE to the ACS. It defines the minimum number of {{units}} that the CPE MUST wait since the end of the last session with the ACS before establishing a new session for the purpose of delivering an active notification. + In other words, if CPE needs to establish a new session with the ACS for the sole purpose of delivering an active notification, it MUST delay establishing such a session as needed to ensure that the minimum time since the last session completion has been met. + The time is counted since the last successfully completed session, regardless of whether or not it was used for active notifications or other purposes. However, if connection to the ACS is established for purposes other than just delivering active notifications, including for the purpose of retrying a failed session, such connection MUST NOT be delayed based on this parameter value, and the pending active notifications MUST be communicated during that connection. + The time of the last session completion does not need to be tracked across reboots. + + + + + + + + + + Configures the first session retry wait interval, in {{units}}, as specified in {{bibref|TR-069|section 3.2.1.1}}. + A value of 5 corresponds to the default behavior that is described in {{bibref|TR-069}}. + The device MUST use a random value between {{param}} and ({{param}} * {{param|CWMPRetryIntervalMultiplier}} / 1000) as the first retry wait interval. Other values in the retry pattern MUST be calculated using this value as a starting point. + + + + + + + + + + + Configures the retry interval multiplier as specified in {{bibref|TR-069|section 3.2.1.1}}. + This value is expressed in units of 0.001. Hence the values of the multiplier range between 1.000 and 65.535. + A value of 2000 corresponds to the default behavior that is described in {{bibref|TR-069}}. + The device MUST use a random value between {{param|CWMPRetryMinimumWaitInterval}} and ({{param|CWMPRetryMinimumWaitInterval}} * {{param}} / 1000) as the first retry wait interval. Other values in the retry pattern MUST be calculated using this value as a starting point. + + + + + + + + + + Enables or disables HTTP connection request handling on the CPE. + If HTTP connection request handling is disabled ({{param}} is set to {{false}}), {{param|ConnectionRequestURL}} MUST be set to {{empty}} and the CPE MUST close the port used by the HTTP connection request server. + + + + + + + + + Address and port to which an ACS MAY send a UDP Connection Request to the CPE (see {{bibref|TR-069|Annex G}}). + This parameter is represented in the form of an Authority element as defined in {{bibref|RFC3986}}. The value MUST be in one of the following two forms: + : host:port + : host + * When {{param|STUNEnable}} is {{true}}, the ''host'' and ''port'' portions of this parameter MUST represent the public address and port corresponding to the NAT binding through which the ACS can send UDP Connection Request messages (once this information is learned by the CPE through the use of STUN). + * When {{param|STUNEnable}} is {{false}}, the ''host'' and ''port'' portions of the URL MUST represent the local IP address and port on which the CPE is listening for UDP Connection Request messages. + The second form of this parameter MAY be used only if the port value is equal to ''80''. + Note: If the ''host'' portion of the URL is a literal IPv6 address then it MUST be enclosed in square brackets (see {{bibref|RFC3986|Section 3.2.2}}). + + + + + + + + + + Enables or disables the use of STUN by the CPE. This applies only to the use of STUN in association with the ACS to allow UDP Connection Requests. + + + + + + + + Host name or IP address of the STUN server for the CPE to send Binding Requests if STUN is enabled via {{param|STUNEnable}}. + If is {{empty}} and {{param|STUNEnable}} is {{true}}, the CPE MUST use the address of the ACS extracted from the host portion of the ACS URL. + + + + + + + + + + Port number of the STUN server for the CPE to send Binding Requests if STUN is enabled via {{param|STUNEnable}}. + By default, this SHOULD be the equal to the default STUN port, 3478. + + + + + + + + + + If is not {{empty}}, the value of the STUN USERNAME attribute to be used in Binding Requests (only if message integrity has been requested by the STUN server). + If is {{empty}}, the CPE MUST NOT send STUN Binding Requests with message integrity. + + + + + + + + + + The value of the STUN Password to be used in computing the MESSAGE-INTEGRITY attribute to be used in Binding Requests (only if message integrity has been requested by the STUN server). + + + + + + If STUN Is enabled, the maximum period, in {{units}}, that STUN Binding Requests MUST be sent by the CPE for the purpose of maintaining the binding in the Gateway. This applies specifically to Binding Requests sent from the UDP Connection Request address and port. + A value of -1 indicates that no maximum period is specified. + + + + + + + + + + + If STUN Is enabled, the minimum period, in {{units}}, that STUN Binding Requests can be sent by the CPE for the purpose of maintaining the binding in the Gateway. This limit applies only to Binding Requests sent from the UDP Connection Request address and port, and only those that do not contain the BINDING-CHANGE attribute. This limit does not apply to retransmissions following the procedures defined in {{bibref|RFC3489}}. + + + + + + + + + + When STUN is enabled, this parameter indicates whether or not the CPE has detected address and/or port mapping in use. + A {{true}} value indicates that the received MAPPED-ADDRESS in the most recent Binding Response differs from the CPE's source address and port. + When {{param|STUNEnable}} is {{false}}, this value MUST be {{false}}. + + + + + + + + Indicates whether or not the Alias-Based Addressing Mechanism is supported. + A {{true}} value indicates that the CPE supports the Alias-Based Addressing Mechanism, as defined in {{bibref|TR-069|3.6.1}} and described in {{bibref|TR-069|Appendix II}}. + + + + + + + + Instance identification mode as defined in {{bibref|TR-069|3.6.1}}. When {{param|AliasBasedAddressing}} is {{true}}, {{param}} is used by the ACS to control whether the CPE will use Instance Numbers or Instance Aliases in returned Path Names. {{enum}} + This parameter is REQUIRED for any CPE supporting Alias-Based Addressing. + + + + + + + + + + + + Enable or disable the Auto-Create Instance Mechanism. When {{param|AliasBasedAddressing}} is {{true}}, {{param}} indicates whether or not the CPE will automatically create instances while processing a SetParameterValues RPC (as defined in {{bibref|TR-069|A.3.2.1}}). + *A {{true}} value indicates that the CPE will perform auto-creation of instances when the Alias-Based Addressing Mechanism is used in SetParameterValues RPC. + *A {{false}} value indicates that the CPE will not create new object instances. Instead, it will reject the setting of parameters in unrecognized instances and respond with a fault code. + This parameter is REQUIRED for any CPE supporting Alias-Based Addressing. + + + + + + + + + {{numentries}} + + + + + + + + The minimum time, in seconds, between Active Notifications resulting from changes to the {{param|ManageableDeviceNumberOfEntries}} (if Active Notification is enabled). + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + The connection request methods supported by this {{object}}. {{enum}} + + + + + + + The connection request method as specified in {{bibref|TR-069|Section 3.2.2 ACS Connection Initiation}}, '''REQUIRED''' + + + + + The connection request method as specified in {{bibref|TR-069|Annex G Connection Request via NAT Gateway}} + + + + + The connection request method as specified in {{bibref|TR-069|Annex K XMPP Connection Request}} + + + + + + + + {{reference|the {{object|.XMPP.Connection}} instance that is used for connection requests to this {{object}}}} + + + + + + + + + + When an XMPP Connection Request is sent to a CPE the XMPP IQ Stanza will contian a "from" address that contains the Jabber ID of the initiating entity. + This parameter is a {{list}} Each entry represents a Jabber ID, or address, that is allowed to initiate an XMPP Connection Request. + Each Jabber ID is allowed to be either a "Full JID" (containing a local-part, domain-part, and resource-part in the following format: "local-part@domain-part/resource-part") or a "Bare JID" (containing a local-part and a domain-part in the following format: "local-part@domain-part"). "Full JID" entries require an exact match whereas "Bare JID" entries are a wildcard match and will match any Jabber ID with the same local-part and domain-part independent of the resource-part. + For example, if {{param}} contained "ACS1@tr069.example.com, ACS2@tr-069.example.com/resource1" then the following incoming "from" addresses would be '''allowed''': + * "ACS1@tr069.example.com/resource1" + * "ACS1@tr069.example.com/resource2" + * "ACS2@tr069.example.com/resource1" + And the following incoming "from" addresses '''would not be allowed''': + * "ACS2@tr069.example.com/resource2" + * "ACS@tr069.example.com/resource" + If this Parameter is {{empty}} then all Jabber IDs are allowed and an XMPP Connection Request can not be deemed invalid due to the "from" address. + + + + + + + + + + + The value MUST be the value of the {{param|.XMPP.Connection.{i}.JabberID}} contained in the {{object|.XMPP.Connection}} instance referenced by the {{param|ConnReqXMPPConnection}} parameter. + If the {{param|ConnReqXMPPConnection}} parameter is empty or the {{object|.XMPP.Connection}} instance being reference is disabled, then this value will be empty. + If the {{object|.XMPP.Connection}} instance being referenced by the {{param|ConnReqXMPPConnection}} parameter is lost ({{param|.XMPP.Connection.{i}.Status}} parameter changes from Enabled to some other value), then the value of this parameter MUST remain unchanged until the connection can be reestablished and a new {{param|.XMPP.Connection.{i}.JabberID}} can be established. If the new {{param|.XMPP.Connection.{i}.JabberID}} is identical to the existing value, then the value of this parameter MUST NOT be altered and a VALUE CHANGE event MUST NOT be generated. + + + + + + + + Indicates the HTTP Compression mechanism(s) supported by this CPE. Requirements for the use of HTTP Compression for CWMP can be found in {{bibref|TR-069|Section 3.4.7}}. {{enum}} + Vendors can extend the enumerated values with vendor specific extensions, in which case the rules outlined in {{bibref|TR-106|Section 3.3}} MUST be adhered to. + + + + + + + As defined in {{bibref|RFC2616|Section 3.5}} + + + + + As defined in {{bibref|RFC2616|Section 3.5}} + + + + + As defined in {{bibref|RFC2616|Section 3.5}} + + + + + + + + The value of this parameter represents the HTTP Compression mechanism to be used by the CPE when communicating with the ACS. + + + + + + + + + + + Indicates the Lightweight Notification Protocol(s) supported by this CPE. {{enum}} + Vendors can extend the enumerated values with vendor specific extensions, in which case the rules outlined in {{bibref|TR-106|Section 3.3}} MUST be adhered to. + + + + + + + As defined in {{bibref|TR-069|Annex M}} + + + + + + + + The value of this parameter represents the protocol(s) that will be used by the CPE when sending Lightweight Notifications. + {{empty}} means that Lightweight Notifications are disabled, despite any SetParameterAttributes that have been configured on various parameters. + + + + + + + + + + + The duration in {{units}} of the interval for which the CPE MUST attempt to deliver any pending Passive Lightweight Notifications. + A value of 0 means that the trigger interval is effectively disabled. In this case pending Passive Lightweight Notifications are only sent when triggered by an Active Lightweight Notification. + + + + + + + + + + + An absolute time reference in UTC to determine when the CPE will initiate the Lightweight Notification (in the case that there are pending Passive Lightweight Notifications that need to be delivered). Each Passive Lightweight Notification (that is waiting for the Lightweight Notification Trigger mechanism for delivery) MUST occur at this reference time plus or minus an integer multiple of the {{param|LightweightNotificationTriggerInterval}}. {{param}} is used only to set the ''phase'' of the Passive Lightweight Notification. The actual value of {{param}} can be arbitrarily far into the past or future. + For example, if {{param|LightweightNotificationTriggerInterval}} is 86400 (a day) and if {{param}} is set to UTC midnight on some day (in the past, present, or future) then Lightweight Notifications for pending Passive Lightweight Notifications will occur every day at UTC midnight. These MUST begin on the very next midnight, even if {{param}} refers to a day in the future. The Unknown Time value defined in {{bibref|TR-106|section 3.2}} indicates that no particular time reference is specified. That is, the CPE MAY locally choose the time reference, and needs only to adhere to the specified {{param|LightweightNotificationTriggerInterval}}. If absolute time is not available to the CPE, its Lightweight Notifications behavior MUST be the same as if the {{param}} parameter was set to the Unknown Time value. + + + + + + + + Host name or address to be used when sending the UDP Lightweight Notifications. + {{param}} is only applicable when {{param|LightweightNotificationProtocolsUsed}} contains the {{enum|UDP|LightweightNotificationProtocolsUsed}} enumeration. + If {{param}} is not implemented or is {{empty}}, and UDP Lightweight Notifications are supported, the destination host MUST be the same as the ACS (as contained in the host portion of the {{param|URL}}). + + + + + + + + + + The port number to be used when sending UDP Lightweight Notifications. + {{param}} is only applicable when {{param|LightweightNotificationProtocolsUsed}} contains the {{enum|UDP|LightweightNotificationProtocolsUsed}} enumeration. + If {{param}} is not implemented and UDP Lightweight Notifications are supported, the destination port MUST be 7547. + + + + + + + + Indicates whether or not instance wildcards are supported. + A {{true}} value indicates that the CPE supports instance wildcards for GPV, GPN and GPA RPC calls, as defined in [TR-069]. + + + + + + + + {{numentries}} + + + + + + + + + Each entry in this table corresponds to a distinct LAN Device that supports Device-Gateway Association according to {{bibref|TR-069|Annex F}} as indicated by the presence of the DHCP option specified in that Annex. + + + + + + + + + + + + A non-volatile handle used to reference this instance. {{param}} provides a mechanism for an ACS to label this instance for future reference. An initial unique value MUST be assigned when the CPE creates an instance of this object. + This parameter was DEPRECATED because {{object}} is a transient object. + This parameter is OBSOLETED in 2.14. + + + + + + + + + + Organizationally unique identifier of the Device manufacturer as provided to the Gateway by the Device. Represented as a six hexadecimal-digit value using all upper-case letters and including any leading zeros. {{pattern}} + The value MUST be a valid OUI as defined in {{bibref|OUI}}. + + + + + + + + + + + Serial number of the Device as provided to the Gateway by the Device. + + + + + + + + + + Identifier of the class of product for which the Device's serial number applies as provided to the Gateway by the Device. + If the Device does not provide a Product Class, then this parameter MUST be {{empty}}. + + + + + + + + + + {{list}} {{reference}} References all the {{object|.Hosts.Host}} table entries, whether active or inactive, that correspond to this physical LAN device. There can be multiple such entries if the device has more than one network interface. + For example: ''Device.Hosts.Host.1,Device.Hosts.Host.5'' + + + + + + + + + + + + + + This object allows configuration of CPE policy for notification of AUTONOMOUS TRANSFER COMPLETE events, defined in {{bibref|TR-069}}. + The CPE policy determines the conditions under which the CPE notifies the ACS of the completion of file transfers that were not specifically requested by the ACS. + + + + Enable/disable CPE notification of AUTONOMOUS TRANSFER COMPLETE events to the ACS. + + + + + + + + Indicates the transfer types that MUST be included when the CPE notifies the ACS of AUTONOMOUS TRANSFER COMPLETE events. Transfer types not indicated by this filter MUST NOT be included when the CPE notifies the ACS. {{enum}} + Note that this includes any backup or restore operations that were not specifically requested by the ACS. A backup is regarded as an Upload and a restore is regarded as a Download. + + + + + + + + Upload and Download + + + + + + + + Indicates the transfer results that MUST be included when the CPE notifies the ACS of AUTONOMOUS TRANSFER COMPLETE events. Transfer results omitted from this list MUST NOT be included when the CPE notifies the ACS. + Note that this includes any backup or restore operations that were not specifically requested by the ACS. A backup is regarded as an Upload and a restore is regarded as a Download. + + + + + + The autonomous file transfer completed successfully; i.e., the FaultCode was zero + + + + + The autonomous file transfer did not complete successfully; i.e., the FaultCode was non-zero + + + + + Success and Failure + + + + + + + + {{list}} Indicates the file types that MUST be included when the CPE notifies the ACS of AUTONOMOUS TRANSFER COMPLETE events. File types omitted from this list MUST NOT be included when the CPE notifies the ACS. + {{pattern}} + Additionally, the following format is defined to allow the unique definition of vendor-specific file types: + * ''"X <OUI> <Vendor-specific identifier>"'' + <OUI> is replaced by a 6 hexadecimal-digit OUI (organizationally unique identifier) as defined in {{bibref|OUI}}, with all upper-case letters and any leading zeros included. The OUI used for a given vendor-specific file type MUST be one that is assigned to the organization that defined this file type (which is not necessarily the same as the vendor of the CPE or ACS). + Note that {{empty}} indicates that all file types are excluded from this filter, effectively disabling CPE notification of AUTONOMOUS TRANSFER COMPLETE events to the ACS. + + + + + + + + + Download Only + + + + + Download Only + + + + + Download or Upload + + + + + Upload Only + + + + + For Vendor-Specific File Types, could be for either Download or Upload + + + + + + + + + This object contains multicast announcement and query parameters used for the purpose of downloading files. + + + + + This object contains multicast announcement parameters used to download files. + + + + Enable/disable CPE ability to receive and use multicast announcements from a server for the purpose of downloading files. + + + + + + + + The status of the announcement service. + + + + + + + + MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + {{numentries}} + + + + + + + + + Multicast groups to which the CPE SHOULD listen for announcements. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Enable/disable listening to this multicast group. + + + + + + + + + The status of this group table entry. + + + + + + + + MAY be used by the CPE to indicate a locally defined error condition, e.g. unable to parse received announcements. + + + + + + + + + The {{datatype}} encoding the group address, source and port on which to listen, and other protocol information, e.g. expected announcement format. + Depending on the application, the messages identified by this URL MAY directly contain the data to be downloaded, or alternatively MAY contain information informing the CPE how to obtain the data to be downloaded via a separate mechanism, which itself could involve a unicast or a multicast download protocol. + Refer to {{bibref|DVB-TS.102.824}} for an example of a URL format that identifies a SAP {{bibref|RFC2974}} stream that indicates how to use either FLUTE {{bibref|RFC3926}} or DSM-CC {{bibref|ISO-13818-6:1998}} to perform the download. + + + + + + + + + This object contains multicast query parameters used to download files. + + + + Enable/disable CPE ability to autonomously query a server for the purpose of downloading files. + + + + + + + + The status of the query service. + + + + + + + + MAY be used by the CPE to indicate a locally defined error condition, e.g. unable to contact query response server. + + + + + + + + The {{datatype}} of the query response server. + Depending on the application, the protocol described by this URL MAY be a SOAP interface, or MAY be any other RPC mechanism. + Refer to {{bibref|DVB-TS.102.824}} for an example of a URL format that identifies a SOAP interface running over HTTP or HTTPS. + + + + + + + + + This object allows configuration of CPE policy for notification of "12 AUTONOMOUS DU STATE CHANGE COMPLETE" events defined in {{bibref|TR-069}}. + The CPE policy determines the conditions under which the CPE notifies the ACS of the completion of Deployment Unit state changes that were not specifically requested via CWMP. + + + + Enables/Disables CPE notification of "12 AUTONOMOUS DU STATE CHANGE COMPLETE" events to the ACS. + + + + + + + + Indicates the Deployment Unit operations that MUST be included when the CPE notifies the ACS of "12 AUTONOMOUS DU STATE CHANGE COMPLETE" events. + Operation types not indicated by this list MUST NOT be included when the CPE notifies the ACS. {{empty}} is essentially the same as setting {{param|Enable}} to {{false}}. + + + + + + + + + + + + + Indicates the Deployment Unit state change results that MUST be included when the CPE notifies the ACS of "12 AUTONOMOUS DU STATE CHANGE COMPLETE" events. State change results omitted from this filter MUST NOT be included when the CPE notifies the ACS. + + + + + + The autonomous state change completed successfully; i.e., the FaultCode was zero + + + + + The autonomous state change did not complete successfully; i.e., the FaultCode was non-zero + + + + + All result types independent of Success or Failure + + + + + + + + Indicates the Deployment Unit state change fault codes that MUST be included when the CPE notifies the ACS of "12 AUTONOMOUS DU STATE CHANGE COMPLETE" events. State change fault codes omitted from this filter MUST NOT be included when the CPE notifies the ACS. + This filter has no effect on the notification of a successful autonomous state change. This filter only applies when {{param|ResultTypeFilter}} is set to either {{enum|Failure|ResultTypeFilter}} or {{enum|Both|ResultTypeFilter}}. {{empty}} means that failed autonomous state changes will not be sent to the ACS. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Each entry in this table represents a distinct Proxied Device that utilizes the Embedded Object Mechanism {{bibref|TR-069|Annex J.1.2}} for proxying devices. + + + + + + + + Identifier of the controller that is responsible for a sub-network of Proxied Devices within the LAN. + {{empty}} indicates that this Proxied Device either: + * Isn't part of a sub-network, within the LAN, with a controller entity. + * Doesn't need a {{param}} to ensure its {{param|ProxiedDeviceID}} is unique throughout the LAN. + + + + + + + + + + Idenitfier of the Proxied Device. + This is an opaque string that is unique to the Proxied Device within a specific sub-network within the LAN (identified by the {{param|ControllerID}}). If the {{param|ControllerID}} is {{empty}} this {{param}} is unique across the LAN. + + + + + + + + + + {{noreference}}The value MUST be the path name of a table row. If the referenced object is deleted, this {{object}} instance MUST also be removed. Represents the instance of a multi-instanced object that is directly controlled by, and has come into existence because of, this Proxied Device that utilizes the Embedded Object Mechanism {{bibref|TR-069|Annex J.1.2}}. + + + + + + + + + + Represents the CWMP-DT schema instance(s) that this Proxied Device is utilizing. The CWMP-DT schema instance is also the one being utilized by the object referenced within {{param|Reference}}. + + + + + + + + + + + References the {{object|.Hosts.Host}} table entry(s), whether active or inactive, that corresponds to this proxied LAN device. + + + + + + + + + + + The protocol being used to communicate between the CPE Proxier and this Proxied Device. {{enum}} + Vendors can extend the enumerated values with vendor specific extensions, in which case the rules outlined in {{bibref|TR-106|3.3}} MUST be adhered to. + + + + + + see {{bibref|Z-Wave}} + + + + + see {{bibref|ZigBee}} + + + + + see {{bibref|UPnP-DM:1}} + + + + + see {{bibref|ETSIM2MFA}} + + + + + + + + {{reference|a protocol object that uses the {{param|ProxyProtocol}}}} + + + + + + + + + + {{list|that represents the discovery protocol(s) for this proxied device}} + {{enum}} + Vendors can extend the enumerated values with vendor specific extensions, in which case the rules outlined in {{bibref|TR-106|Section 3.3}} MUST be adhered to. + + + + + + + see {{bibref|Z-Wave}} + + + + + see {{bibref|ZigBee}} + + + + + see {{bibref|UPnP-DAv1}} + + + + + see {{bibref|ETSIM2MFA}} + + + + + + + + {{list}} {{reference|an object discovered using one or more protocols listed in {{param|DiscoveryProtocol}}|ignore}} + For objects discovered by the UPnP discovery protocol, the {{param}} would contain items that are references to instances of the following: + * {{object|.UPnP.Discovery.RootDevice}} + * {{object|.UPnP.Discovery.Device}} + * {{object|.UPnP.Discovery.Service}} + For objects discovered by the ETSI-M2M discovery protocol, the {{param}} would contain items that are references to instances of ETSIM2M.SCL.{i}.AreaNwkDeviceInfoInstance. + + + + + + + + + + + Whether or not the CPE Proxier has successfully communicated all pending configuration commands down to the Proxied Device. + + + + + + + + + + + + + Detailed {{param|CommandProcessed}} error description (vendor specific). + + + + + + + + + + The last time that the CPE Proxier synchronized the state of the Proxied Device. This parameter MUST be updated when a proxy command is executed successfully on the Proxied Device. + The Unknown Time value, as defined in {{bibref|TR-106}}, indicates that the Proxied Device's state has not been synchronized since the CPE Proxier was last rebooted. + + + + + + + + + Each entry in this table represents a distinct Proxied Device that utilizes the Virtual CWMP Device Mechanism {{bibref|TR-069|Annex I.1.1}} for proxying devices. + + + + + + + + + Organizationally unique identifier of the associated Proxied Device. Represented as a six hexadecimal-digit value using all upper-case letters and including any leading zeros. {{pattern}} + The value MUST be a valid OUI as defined in {{bibref|OUI}}. + + + + + + + + + + + Identifier of the class of product of the associated Proxied Device for which the serial number applies. + + + + + + + + + + Serial number of the associated Proxied Device. + + + + + + + + + + {{list}} {{reference}} References all the {{object|.Hosts.Host}} table entries, whether active or inactive, that correspond to this proxied LAN device. There can be multiple such entries if the Proxied Device has more than one network interface. + + + + + + + + + + + The protocol being used to communicate between the CPE Proxier and this Proxied Device. {{enum}} + Vendors can extend the enumerated values with vendor specific extensions, in which case the rules outlined in {{bibref|TR-106|3.3}} MUST be adhered to. + + + + + + see {{bibref|Z-Wave}} + + + + + see {{bibref|ZigBee}} + + + + + see {{bibref|UPnP-DM:1}} + + + + + see {{bibref|ETSIM2MFA}} + + + + + + + + {{reference|a protocol object that uses the {{param|ProxyProtocol}}}} + + + + + + + + + + {{list|that represents the discovery protocol(s) for this proxied device}} + {{enum}} + Vendors can extend the enumerated values with vendor specific extensions, in which case the rules outlined in {{bibref|TR-106|Section 3.3}} MUST be adhered to. + + + + + + + see {{bibref|Z-Wave}} + + + + + see {{bibref|ZigBee}} + + + + + see {{bibref|UPnP-DAv1}} + + + + + see {{bibref|ETSIM2MFA}} + + + + + + + + {{list}} {{reference|an object discovered using one or more protocols listed in {{param|DiscoveryProtocol}}|ignore}} + For objects discovered by the UPnP discovery protocol, the {{param}} would contain items that are references to instances of the following: + * {{object|.UPnP.Discovery.RootDevice}} + * {{object|.UPnP.Discovery.Device}} + * {{object|.UPnP.Discovery.Service}} + For objects discovered by the ETSI-M2M discovery protocol, the {{param}} would contain items that are references to instances of ETSIM2M.SCL.{i}.AreaNwkDeviceInfoInstance. + + + + + + + + + + + + Parameters related to CPE behavior when waking up from standby. If this object is supported then the CPE MUST support the requirements of {{bibref|TR-069|Annex L}}. + NOTE: "CR", as used in the names and descriptions of the parameters defined in this object, refers to the Connection Request concept defined in TR-069. + + + + When waking up from a non CR-Aware Standby that lasted more than this parameter's value (in {{units}}), the CPE MUST issue a WAKEUP Event. + If the value is -1, the CPE MUST NOT ever issue WAKEUP Events for having been non CR-aware. + + + + + + + + + + + + When waking up from a non fully Timer-Aware Standby that made it miss more than this parameter's value Periodic Contacts, the CPE MUST issue a WAKEUP Event. + If the value is -1, the CPE MUST NOT ever issue WAKEUP Events for exceeding that limit. + + + + + + + + + + + When waking up from a non fully Timer-Aware Standby that made it miss at least one Scheduled Contact, the CPE MUST issue a WAKEUP Event if this parameter is {{true}}. + + + + + + + + + Indicates that the CPE is capable of CR-Aware Standby. + + + + + + + + Indicates that the CPE is capable of Timer-Aware Standby. + + + + + + + + If {{param|NetworkAwarenessCapable}} and this parameter are both {{true}}, the CPE MUST NOT go into a non CR-Aware Standby state. + + + + + + + + + If {{param|SelfTimerCapable}} and this parameter are both {{true}}, the CPE MUST NOT go into a standby state that prevents it from honoring Periodic Contacts. + + + + + + + + + If this parameter is true, the CPE MUST NOT go into a standby state that prevents it from honoring Scheduled Contacts. This means that, whenever the ACS has requested a Scheduled Contact: + *if {{param|SelfTimerCapable}} is {{true}} and the CPE chooses to go into Standby before the Scheduled Contact has been honored, it MUST use a Timer-Aware Standby; + *if {{param|SelfTimerCapable}} is {{false}}, the CPE MUST NOT go into Standby before the Scheduled Contact has been honored. + + + + + + + + + This table provides the ACS with the ability to control the Parameters that are delivered by the Inform RPC. + Any Parameter (identified by {{param|ParameterName}}) contained in this table MUST be included within the ParameterList argument of the Inform RPC whenever any Event within the {{param|EventList}} is being delivered. + This table does not include Forced Inform Parameters, and Forced Inform Parameters are not allowed to be inserted into this table. Any attempt by an ACS to configure this table to contain a Forced Inform Parameter MUST result in the failure of the SetParameterValues RPC with error code 9007. + + + + + + + + + + Enables or disables this {{object}}. + + + + + + + + + {{datatype|expand}} + + + + + + + + A pattern that describes the Parameter(s) to be included in the Inform’s ParameterList argument. Specifically, patterns with wildcards (an "*" character) in place of Instance Identifiers are allowed; any attempt to set the value otherwise MUST be rejected by the CPE. + If the pattern does not match any existing Parameters at the time that the CPE is creating the Inform RPC, then this {{object|#.InformParameter}} instance is not included in the Inform’s ParameterList argument. + + + + + + + + + + + Each entry in this list represents an Event for which this Parameter MUST be included within the ParameterList argument of the Inform RPC. + All Inform Events (see {{bibref|TR-069|Section 3.7.1.5}}), except for "4 VALUE CHANGE", are allowed as entries in this list. "4 VALUE CHANGE" is not allowed as that would violate requirements contained in {{bibref|TR-069|Section A.3.3.1}}. + {{empty}} means all events except "4 VALUE CHANGE". + + + + + + + + + + + Parameters related to CPE behavior in order to issue a Heartbeat event to the ACS using the Inform method call. + If this object is supported then the CPE MUST support the requirements of {{bibref|TR-069|Annex O}}. + + + + When {{true}}, Heartbeat events are enabled to be sent to the ACS based on the values of the {{param|ReportingInterval}} and {{param|InitiationTime}} parameters. + + + + + + + + The duration in {{units}} of the interval for which the CPE MUST attempt to connect with the ACS and call the Inform method if {{param|Enable}} is {{true}}. + + + + + + + + + + + An absolute time reference in UTC to determine when the CPE will initiate the Heartbeat event Inform method calls. Each Inform call MUST occur at this reference time plus or minus an integer multiple of the {{param|ReportingInterval}}. + {{param}} is used only to set the ''phase'' of the Heartbeat event Informs. The actual value of {{param}} can be arbitrarily far into the past or future. + For example, if {{param|ReportingInterval}} is 60 (one minute) and if {{param}} is set to UTC midnight on some day (in the past, present, or future) then Heartbeat Informs will occur every minute at the next UTC midnight. These MUST begin on the very next midnight, even if {{param}} refers to a day in the future. + The Unknown Time value defined in {{bibref|TR-106|section 3.2}} indicates that no particular time reference is specified. The CPE MUST locally choose a random time reference. + If absolute time is not available to the CPE, its Heartbeat Inform behavior MUST be the same as if the {{param}} parameter was set to the Unknown Time value. + + + + + + + + + Top level object for dynamically managed software applications. + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + The Execution Environments that are available on the device, along with their properties and configurable settings. + + + + + + + + + + Indicates whether or not this {{object}} is enabled. + Disabling an enabled Execution Environment stops it, while enabling a disabled Execution Environment starts it. + When an Execution Environment is disabled, Deployment Units installed to that Execution Environment will be unaffected, but any Execution Units currently running on that Execution Environment will automatically transition to {{enum|Idle|#.ExecutionUnit.{i}.Status}}. + If a ChangeDUState is attempted on a {{object|#.DeploymentUnit}} that is to be applied against a disabled {{object}}, that ChangeDUState operation fails and the associated DUStateChangeComplete RPC will contain a FaultStruct for that operation. + If a SetParameterValues is attempted against the {{param|#.ExecutionUnit.{i}.RequestedState}} for an {{object|#.ExecutionUnit}} that is associated with a disabled {{object}} a CWMP Fault will be issued in response. + Disabling an Execution Environment could place the device in a non-manageable state. For example, if the operating system itself was modeled as an {{object}} and the ACS disabled it, the CWMP management agent might be terminated leaving the device unmanageable. + + + + + + + + Indicates the status of this {{object}}. + + + + + + + + + + + + Setting this parameter to {{true}} causes this {{object}} to revert back to the state it was in when the device last issued a "0 BOOTSTRAP" Inform event. The following requirements dictate what MUST happen for the reset to be complete: + # All Deployment Units that were installed after the last "0 BOOTSTRAP" Inform event MUST be removed + # All persistent storage, configuration files, and log files that were associated with the removed Deployment Units MUST be removed + # Any Deployment Unit that is still installed against the Execution Environment MUST be restored to the version present when the last "0 BOOTSTRAP" Inform event was issued + # Any Deployment Unit that was present when the last "0 BOOTSTRAP" Inform event was issued, but was subsequently uninstalled and is now not present, MUST be installed with the version that was present when the last "0 BOOTSTRAP" Inform event was issued + # The Execution Environment MUST be restored to the version and configuration present when the last "0 BOOTSTRAP" Inform event was issued + # The Execution Environment MUST be restarted after all other restoration requirements have been met + + + + + + + + {{datatype|expand}} + + + + + + + + A Name provided by the CPE that adequately distinguishes this {{object}} from all other {{object}} instances. + + + + + + + + + + Indicates the complete type and specification version of this {{object}}. + + + + + + + + + + The run level that this {{object}} will be in upon startup (whether that is caused by a CPE Boot or the Execution Environment starting). + Run levels dictate which Execution Units will be started. Execution Units will be started if {{param|CurrentRunLevel}} is greater than or equal to {{param|#.ExecutionUnit.{i}.RunLevel}} and {{param|#.ExecutionUnit.{i}.AutoStart}} is {{true}}. + If the value of {{param|CurrentRunLevel}} is -1, then the value of this parameter is irrelevant when read and setting its value has no impact on the Run Level of this {{object}}. + + + + + + + + + + Provides a mechanism to remotely manipulate the run level of this {{object}}, meaning that altering this parameter's value will change the value of the {{param|CurrentRunLevel}}. + Run levels dictate which Execution Units will be started. Execution Units will be started if {{param|CurrentRunLevel}} is greater than or equal to {{param|#.ExecutionUnit.{i}.RunLevel}} and {{param|#.ExecutionUnit.{i}.AutoStart}} is {{true}}. + Setting this value when {{param|CurrentRunLevel}} is -1 has no impact to the Run Level of this {{object}}. + + + + + + + + + + The run level that this {{object}} is currently operating in. This value is altered by changing the {{param|RequestedRunLevel}} parameter. + Upon startup (whether that is caused by a CPE Boot or the Execution Environment starting) {{param}} will be equal to {{param|InitialRunLevel}}, unless Run Levels are not supported by this {{object}} in which case {{param}} will be -1. + Run levels dictate which Execution Units will be started. Execution Units will be started if {{param}} is greater than or equal to {{param|#.ExecutionUnit.{i}.RunLevel}} and {{param|#.ExecutionUnit.{i}.AutoStart}} is {{true}}. + If {{param}} is -1 then Run Levels are not supported by this {{object}} and setting {{param|InitialRunLevel}} or {{param|RequestedRunLevel}} will not impact the Run Level of this {{object}}. + + + + + + + + + + Indicates the initial value on creation for {{param|#.ExecutionUnit.{i}.RunLevel}} for all Execution Unit instances associated with this {{object}}. + If the value of {{param|CurrentRunLevel}} is -1, then the value of this parameter is irrelevant when read and setting its value has no impact on the Run Level of any Execution Unit. + + + + + + + + + + The vendor that produced this {{object}}. + + + + + + + + + + The Version of this {{object}} as specified by the Vendor that implemented this {{object}}, not the version of the specification. + + + + + + + + + + Represents the parent {{object}} of this {{object}}. + If this value is {{empty}} then this is the Primary Execution Environment. + + + + + + + + + + The amount of disk space measured in {{units}} allocated to this {{object}}. A value of -1 MUST be used for {{object}} instances where this parameter is not applicable. + + + + + + + + + + + The amount of disk space measured in {{units}} currently available to this {{object}}. This value changes as the {{object|#.ExecutionUnit}} instances associated with this {{object}} consumes disk space. A value of -1 MUST be used for {{object}} instances where this parameter is not applicable. + + + + + + + + + + + The amount of physical RAM measured in {{units}} allocated to this {{object}}. A value of -1 MUST be used for {{object}} instances where this parameter is not applicable. + + + + + + + + + + + The amount of physical RAM measured in {{units}} currently available to this {{object}}. This value changes as the {{object|#.ExecutionUnit}} instances associated with this {{object}} are started/stopped and consume the physical RAM. A value of -1 MUST be used for {{object}} instances where this parameter is not applicable. + + + + + + + + + + + Represents the {{object|#.ExecutionUnit}} instances currently running on this {{object}}. This parameter only contains {{object|#.ExecutionUnit}} instances that currently have a {{param|#.ExecutionUnit.{i}.Status}} of {{enum|Active|#.ExecutionUnit.{i}.Status}}. + + + + + + + + + + + Represents the processors that this {{object}} has available to it. + + + + + + + + + + + + This table serves as the Deployment Unit inventory and contains status information about each Deployment Unit. + A new instance of this table gets created during the installation of a Software Module. + + + + + + + + + + + + A Universally Unique Identifier either provided by the ACS, or generated by the CPE, at the time of Deployment Unit Installation. The format of this value is defined by {{bibref|RFC4122}} Version 3 (Name-Based) and {{bibref|TR-181i2|Annex C}}. + This value MUST NOT be altered when the {{object}} is updated. + + + + + + + + + + Deployment Unit Identifier chosen by the targeted {{object|#.ExecEnv}}. The format of this value is Execution Environment specific. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Indicates the Name of this {{object}}, which is chosen by the author of the Deployment Unit. + The value of this parameter is used in the generation of the {{param|UUID}} based on the rules defined in {{bibref|TR-181i2|Annex C}}. + + + + + + + + + + Indicates the status of this {{object}}. + + + + + + This instance is in the process of being Installed and SHOULD transition to the {{enum|Installed}} state. + + + + + This instance has been successfully Installed. The {{param|Resolved}} flag SHOULD also be referenced for dependency resolution. + + + + + This instance is in the process of being Updated and SHOULD transition to the {{enum|Installed}} state. + + + + + This instance is in the process of being Uninstalled and SHOULD transition to the {{enum|Uninstalled}} state. + + + + + This instance has been successfully Uninstalled. This status will typically not be seen within a {{object}} instance. + + + + + + + + Indicates whether or not this {{object}} has resolved all of its dependencies. + + + + + + + + Contains the {{datatype}} used by the most recent ChangeDUState RPC to either Install or Update this {{object}}. + + + + + + + + Textual description of this {{object}}. The format of this value is Execution Environment specific. + + + + + + + + + + The author of this {{object}} formatted as a domain name. + The value of this parameter is used in the generation of the {{param|UUID}} based on the rules defined in {{bibref|TR-181i2|Annex C}}. + + + + + + + + + + Version of this {{object}}. The format of this value is Execution Environment specific. + + + + + + + + + + Represents the vendor log files that have come into existence because of this {{object}}. This does not include any vendor log files that have come into existence because of {{object|#.ExecutionUnit}} instances that are contained within this {{object}}. + When this {{object}} is uninstalled the vendor log files referenced here SHOULD be removed from the CPE. + Not all {{object}} instances will actually have a corresponding vendor log file, in which case the value of this parameter will be {{empty}}. + + + + + + + + + + + Represents the vendor config files that have come into existence because of this {{object}}. This does not include any vendor config files that have come into existence because of {{object|#.ExecutionUnit}} instances that are contained within this {{object}}. + When this {{object}} is uninstalled the vendor config files referenced here SHOULD be removed from the CPE. + Not all {{object}} instances will actually have a corresponding vendor config file, in which case the value of this parameter will be {{empty}}. + + + + + + + + + + + Represents the {{object|#.ExecutionUnit}} instances that are associated with this {{object}} instance. + + + + + + + + + + + Represents the {{object|#.ExecEnv}} instance where this {{object}} instance is installed. + + + + + + + + + + + This table serves as the Execution Unit inventory and contains both status information about each Execution Unit as well as configurable parameters for each Execution Unit. + Each {{object|#.DeploymentUnit}} that is installed can have zero or more Execution Units. + Once a Deployment Unit is installed it populates this table with its contained Execution Units. + When the Deployment Unit (that caused this {{object}} to come into existence) is updated, this instance MAY be removed and new instances MAY come into existence. While the Deployment Unit (that caused this {{object}} to come into existence) is being updated, all {{object}} instances associated with the Deployment Unit will be stopped until the update is complete at which time they will be restored to the state that they were in before the update started. + When the Deployment Unit (that caused this {{object}} to come into existence) is uninstalled, this instance is removed. + Each {{object}} MAY also contain a set of vendor specific parameters displaying status and maintaining configuration that reside under the {{object|Extensions}} object. + + + + + + + + + + Execution Unit Identifier chosen by the {{object|#.ExecEnv}} during installation of the associated {{object|#.DeploymentUnit}}. + The format of this value is Execution Environment specific, but it MUST be unique across {{object|#.ExecEnv}} instances. Thus, it is recommended that this be a combination of the {{param|#.ExecEnv.{i}.Name}} and an Execution Environment local unique value. + + + + + + + + + + {{datatype|expand}} + + + + + + + + The name of this {{object}} as it pertains to its associated {{object|#.DeploymentUnit}}, which SHOULD be unique across all {{object}} instances contained within its associated {{object|#.DeploymentUnit}}. + + + + + + + + + + The name of this {{object}} as provided by the {{object|#.ExecEnv}}, which SHOULD be unique across all {{object}} instances contained within a specific {{object|#.ExecEnv}}. + + + + + + + + + + Indicates the status of this {{object}}. + + + + + + This instance is in an Idle state and not running. + + + + + This instance is in the process of Starting and SHOULD transition to the {{enum|Active}} state. + + + + + This instance is currently running. + + + + + This instance is in the process of Stopping and SHOULD transition to the {{enum|Idle}} state. + + + + + + + + Indicates the state transition that the ACS is requesting for this {{object}}. {{enum}} + If this {{object}} is associated with an Execution Environment that is disabled and an attempt is made to alter this value, then a CWMP Fault MUST be generated. + + + + + + If this {{object}} is currently in {{enum|Starting|Status}} or {{enum|Active|Status}} the CPE will attempt to Stop the Execution Unit; otherwise this requested state is ignored. + + + + + If this {{object}} is currently in {{enum|Idle|Status}} the CPE will attempt to Start the Execution Unit. If this {{object}} is in {{enum|Stopping|Status}} the request is rejected and a fault raised. Otherwise this requested state is ignored. + + + + + + + + If while running or transitioning between states this {{object}} identifies a fault this parameter embodies the problem. The value of {{enum|NoFault}} MUST be used when everything is working as intended. {{enum}} + For fault codes not included in this list, the vendor MAY include vendor-specific values, which MUST use the format defined in {{bibref|TR-106|Section 3.3}}. + + + + + + + + + + + + + + + + If while running or transitioning between states this {{object}} identifies a fault this parameter provides a more detailed explanation of the problem. + If {{param|ExecutionFaultCode}} has the value of {{enum|NoFault|ExecutionFaultCode}} then the value of this parameter MUST be {{empty}} and ignored by the ACS. + + + + + + + + + + If {{true}} and the {{param|RunLevel}} verification is also met, then this {{object}} will be automatically started by the device after its {{object|#.ExecEnv}} is either rebooted or restarted. + If {{false}} this {{object}} will not be started after its {{object|#.ExecEnv}} is either rebooted or restarted until it is explicitly commanded to do so by either the ACS or another Execution Unit. + + + + + + + + Determines when this {{object}} will be started. + If {{param|AutoStart}} is {{true}} and {{param|#.ExecEnv.{i}.CurrentRunLevel}} is greater than or equal to {{param}}, then this {{object}} will be started. + If the value of {{param|#.ExecEnv.{i}.CurrentRunLevel}} is -1, then the associated {{object|#.ExecEnv.}} doesn't support Run Levels, thus the value of this parameter is irrelevant when read and setting its value has no impact to the Run Level of this {{object}}. + + + + + + + + + + Vendor of this {{object}}. + + + + + + + + + + Version of the {{object}}. The format of this value is Execution Environment specific. + + + + + + + + + + Textual description of this {{object}}. The format of this value is Execution Environment specific. + + + + + + + + + + The amount of disk space measured in {{units}} currently being used by this {{object}}. A value of -1 MUST be used for {{object}} instances where this parameter is not applicable. + + + + + + + + + + + The amount of physical RAM measured in {{units}} currently being used by this {{object}}. A value of -1 MUST be used for {{object}} instances where this parameter is not applicable. + + + + + + + + + + + Represents the instances of multi-instanced objects that are directly controlled by, and have come into existence because of, this {{object}}. See {{bibref|TR-069|Appendix VI.3.2}} for more description and some examples. + NOTE: All other objects and parameters (i.e. not multi-instanced objects) that this {{object}} has caused to come into existence can be discovered via the {{object|.DeviceInfo.SupportedDataModel.{i}.}} table. + + + + + + + + + + + Represents the system processes that are active in the system because of this {{object}}. + If {{param|Status}} is not {{enum|Active|Status}} it is expected that this list will be {{empty}}. Some {{object}} instances MIGHT NOT have any system processes irrespective of the value of {{param|Status}}. + + + + + + + + + + + Represents the vendor log files that have come into existence because of this {{object}}. + When the {{object|#.DeploymentUnit}} (that caused this {{object}} to come into existence) is uninstalled the vendor log files referenced here SHOULD be removed from the CPE. + Not all {{object}} instances will actually have a corresponding vendor log file, in which case the value of this parameter will be {{empty}}. + + + + + + + + + + + Represents the vendor config files that have come into existence because of this {{object}}. + When the {{object|#.DeploymentUnit}} (that caused this {{object}} to come into existence) is uninstalled the vendor config files referenced here SHOULD be removed from the CPE. + Not all {{object}} instances will actually have a corresponding vendor config file, in which case the value of this parameter will be {{empty}}. + + + + + + + + + + + Represents the CWMP-DT schema instances that have been introduced to this device because of the existence of this {{object}}. + + + + + + + + + + + Represents the {{object|#.ExecEnv}} that this {{object}} is associated with. + + + + + + + + + + + This object proposes a general location for vendor extensions specific to this Execution Unit, which allows multiple Execution Units to expose parameters without the concern of conflicting parameter names. These vendor extensions are related to displaying status and maintaining configuration for this Execution Unit. + It is also possible for the Execution Unit to expose status and configuration parameters within Service objects or as embedded objects and parameters directly within the root data model, in which case the combination of {{param|#.References}} and {{param|#.SupportedDataModelList}} will be used to determine their locations. + See {{bibref|TR-069|Appendix VI.3.2}} for more description and some examples. + + + + + The {{object}} object represents the management object for the Remote Entity Functions (REM) functions defined in the M2M Functional Architecture {{bibref|ETSIM2MFA}}. + + + + {{numentries}} + + + + + + + + + This object represents an instance of a Service Capability Layer (SCL) for a M2M device or gateway. + The {{object}} MAY be maintained by the ACS or by the CPE. + When the {{object}} provides the administration of an SCL that is represented as a {{object|.SoftwareModules.ExecutionUnit}} the {{object}} is maintained in the {{param|.SoftwareModules.ExecutionUnit.{i}.References}} parameter. + Section 5.1.2 of the M2M Functional Architecture {{bibref|ETSIM2MFA}} describes the high level event flows for SCL registration. + Section 9.3.2.6.2 of the M2M Functional Architecture {{bibref|ETSIM2MFA}} describes the creation/registration of SCLs. + Section 9.3.2.6.4 of the M2M Functional Architecture {{bibref|ETSIM2MFA}} describes the update/re-registration of SCLs. + Section 9.3.2.6.5 of the M2M Functional Architecture {{bibref|ETSIM2MFA}} describes the deletion/deregistration of SCLs. + {{keys}} + + + + + + + Administratively enables or disables this instance. + + + + + + + + + {{datatype|expand}} + + + + + + + + {{list}} The list represents an unordered set of URIs {{bibref|RFC3986}}. + A list item is a URI string that represents a SCL to which the this {{object}} will announce original (local) resources. + The AnnouncedToSCL has an interest in the discovery of the local resource. Section 9.2.1.14 Announced Resource of the M2M Functional Architecture {{bibref|ETSIM2MFA}} provides a description of this behavior of an Announced Resource. + Section 9.3.2.28 of the M2M Functional Architecture {{bibref|ETSIM2MFA}} and Section 10.3.2.7 of the M2M mIa, dIa and mId Interfaces {{bibref|ETSIM2MInterfaces}} describes the process of announcing and deannouncing of resources within a SCL. + + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + This object is represents the administration properties used when a NSCL requests discovery of resources within this {{object|##.SCL}} instance. + Section 9.3.2.27 of the M2M Functional Architecture {{bibref|ETSIM2MFA}} describes the process of discovery of resources within a SCL. + + + + The maximum number of URIs {{bibref|RFC3986}} for discovered resources contained in a discovery result. + This parameter and the {{param|MaxSizeOfDiscovAnswer}} parameter are mutually exclusive in that a result can be limited due to the bounds of either parameter. + A value of 0 indicates that the SCL does not have a limit for this parameter. + + + + + + + + The maximum size in bytes of the Discovery Answer. + This parameter and the {{param|MaxNumberOfDiscovRecords}} parameter are mutually exclusive in that a result can be limited due to the bounds of either parameter. + A value of 0 indicates that the SCL does not have a limit for this parameter. + + + + + + + + + This object represents the properties and status necessary for a SCL to reregister with one or more NSCLs. + + + + {{list}} The list represents a priority ordered set of URIs {{bibref|RFC3986}}. The item that is first in the list has the highest priority. + A list item is a URI {{bibref|RFC3986}} string that represents a NSCL that this {{object|##.SCL}} instance can use in order to attempt registration. + When modified the contents of this parameter replace the {{param}} received during the bootstrap procedure. + + + + + + + + + {{list}} The list represents the string tokens used as keys when searching for this {{object|##.SCL}} instance. + Sections 9.2.3.6.2 and 9.2.3.6.4 of the M2M Functional Architecture {{bibref|ETSIM2MFA}} describe the usage for this parameter. + + + + + + + + + URI {{bibref|RFC3986}} that represents the identifier of the access right resource. The value of this parameter is maintained by the NSCL and used by the SCL as a default access right identifier for re-registration to NSCLs. + + + + + + + + The duration, in {{units}}, that the SCL will use in its next re-registration attempt. Any negative value represents an infinite duration. + + + + + + + + + + + {{command}} When set to {{true}}, triggers an immediate re-registration action where the SCL re-registers with the SCLs in the {{param|RegTargetNSCLList}} . + + + + + + + + + This object represents the status of the Reregistration action. + + + + The progress, in {{units}}, of the Reregistration action. The progress is measured from 0-100%. A value of 0 indicates that the action has not started. A value of 100 indicates that the action has completed. + + + + + + + + + + + The completion status of the Reregistration operation. Enumeration of: + {{enum}} + + + + + + + + + + + + This object describes the parameters necessary to administer the store-and-forward (SAF) handling policies applied to requests to access remotely hosted resources. + Policies are described by instances of {{object}}. Which instances of {{object}} are used by the SCL is determined by the {{param|PolicyScope}} parameter. + Section 9.3.1.5 of the M2M Functional Architecture {{bibref|ETSIM2MFA}} and Section 10.3.1.2.2 of the M2M mIa, dIa and mId Interfaces {{bibref|ETSIM2MInterfaces}} describe the behavior for SAF processing. + There is at most one {{object}} instance with the {{param|PolicyScope}} containing a specific application id (APP-ID) URI value within the list. + There is exactly one {{object}} instance with a {{param|PolicyScope}} value of "default". + + + + + + + Administratively enables or disables this instance. + + + + + + + + + {{datatype|expand}} + + + + + + + + The parameter defines the scope of the policies contained in this instance of a {{object|#.SAFPolicySet}}. + The parameter value is: + *a list of unordered set of URIs {{bibref|RFC3986}} that represents an M2M application id (APP-ID) + *the value of "default" + *{{empty}} + When this parameter is set to a list of application id (APP-ID) URIs {{bibref|RFC3986}}, the scope indicates that the policies are applicable to requests coming from any specific application on that list. + When this parameter is set to a string with the value "default", the scope indicates that the policies are the default policies for this {{object|##.SCL}} instance. + When this parameter is set to {{empty}}, the value represents an unknown {{object|#.SAFPolicySet}} and the {{object|#.SAFPolicySet}} is not to be used. + + + + + + + + + + {{numentries}} + + + + + + + + + This table contains the SAF-handling policies which are controlled by the Access Network Provider(s). + {{keys}} + + + + + + + + + + Administratively enables or disables this instance. + + + + + + + + + {{datatype|expand}} + + + + + + + + This parameter is the name of the access network provider and used to determine for which access network the policies defined in the {{object|#.ANPPolicy}} table will apply. + + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + This table contains a list of block periods for a {{object|##.ANPPolicy}}. + A block period defines how long the device will wait before re-trying to establish connectivity via the access network after the previous attempt has failed. + + + + + + + + + + Administratively enables or disables this instance. + + + + + + + + + {{datatype|expand}} + + + + + + + + Number of consecutively failed access attempts for which the {{param|BlockDuration}} will be used to block the next access attempt. + The SCL will apply the {{object}} entry with the largest number of consecutive failed attempts that is smaller or equal to the actual number of consecutive failed attempts. + + + + + + + + + The duration, in {{units}}, to which to block further access attempts. + + + + + + + + + + + + This table contains the Request Category (RCAT) policy items for defining when it is appropriate to use the access network for processing requests. + + + + + + + + + + Administratively enables or disables this instance. + + + + + + + + + {{datatype|expand}} + + + + + + + + An RCAT is a string that represents a request category used for policy enforcement. + + + + + + + + {{numentries}} + + + + + + + + + This table contains the schedules that define when it is appropriate to use the access network for processing requests for the specified value of the {{param|#.RCAT}}. + The combination of all instances of the {{object|AbsTimeSpan}} along with the {{param|Schedules}} parameter makes up the complete schedule for this instance of a {{object}}. + The {{param|Schedules}} parameter defines a recurrence of the schedule. If instances of {{object|AbsTimeSpan}} exist, these instances places constraints on the schedule recurrence. + If the value of the {{param|Schedules}} parameter is {{empty}}, at least one enabled instance of {{object|AbsTimeSpan}} MUST exist. + Processing behavior for the use of RCAT Schedules is defined in section 10.3.1.2.2 of the M2M mIa, dIa and mId Interfaces {{bibref|ETSIM2MInterfaces}} document. + + + + + + + Administratively enables or disables this instance. + + + + + + + + + {{datatype|expand}} + + + + + + + + The list is a set of schedule strings. + A schedule string is formatted according to the date and time fields defined CRONTAB input file definition in {{bibref|POSIXBase}}. + The {{param}} parameter is used to set the recurrence of the schedule. + The timezone used for this parameter is dependent upon the existence of instances of {{object|AbsTimeSpan}} for this {{object}}. If instances of {{object|AbsTimeSpan}} exist, then the timezone of the {{object|AbsTimeSpan}} is used otherwise the UTC timezone is used for this {{param}} parameter. + Note the command field is not used in this definition and any whitespace or comma characters within a Schedule string MUST be escaped using percent as defined in {{bibref|TR-106|section 3.2.3}} + Example of CRONTAB string: + *"* 0-6 * * 1-5" would mean every minute for the period from 0:00h to 6:00h (inclusive) on any week day (Monday through Friday) and would be represented as "*%200-6%20*%20*%201-5" + *"*/15 22-23,0-4 * * 1-5" would mean every 15 minutes for the period from 22:00h to 04:00h on any week day (Monday through Friday) and would be represented as "*/15%2022-23%2C0-4%20*%20*%201-5" + + + + + + + + + + {{numentries}} + + + + + + + + + This object defines an instance of a time span used for determining an RCAT schedule. + An instance of the {{object}} represents the time span in which the schedule recurrence defined in {{param|#.Schedules}} is constrained. + {{object}} instances with unknown values for the {{param|StartTime}} or {{param|EndTime}} are ignored. + All instances of the {{object}} within this {{object|##.Schedule}} MUST utilize the same time zone. + + + + + + + Administratively enables or disables this instance. + + + + + + + + + {{datatype|expand}} + + + + + + + + Date and time that represents the start of the time span. + The value 0001-01-01T00:00:00Z represents an unknown value. + The device MUST reject requests to set the {{param}} value greater than the {{param|EndTime}} value. + + + + + + + + + Date and time that represents the end of the time span. + The value 9999-12-31T23:59:59Z represents an infinite time span from the start time. + The value 0001-01-01T00:00:00Z represents an unknown value. + The device MUST reject requests to set the {{param}} value less than or equal the {{param|StartTime}} value. + + + + + + + + + + This object maintains the SAF handling policies' properties that are controlled by the M2M service provider for a request. + + + + The default RCAT value to use for requests to remotely hosted resources during SAF-handling when no RCAT value was specified in the request. + + + + + + + + + {{numentries}} + + + + + + + + + This object maintains a list of properties to be used for forwarding requests with a specified {{param|RCAT}}. + Processing behavior for the use of M2M Service Provider policies is defined in section 10.3.1.2.2.1 of the M2M mIa, dIa and mId Interfaces {{bibref|ETSIM2MInterfaces}} document. + + + + + + + + + + Administratively enables or disables this instance. + + + + + + + + + {{datatype|expand}} + + + + + + + + An RCAT is a string that represents a request category used for policy enforcement. + + + + + + + + The tolerable duration, in {{units}}, that a request of the given RCAT category can be pending in SAF handling when a request from an M2M Application does not specify a tolerable delay. + A value of -1 represents an infinite duration. + + + + + + + + + + + + The threshold of maximum number of pending requests permitted to be held for a specified RCAT. + A value of 0 indicates that the request should be transmitted immediately. + + + + + + + + + This parameter defines the maximum size of the request queue for pending requests permitted to be held for a specified RCAT. + The format of the string is an integer with an appended memory unit (B - Bytes, K - 1024 Bytes, M - 1048576 Bytes, G -1073741824, T - 1099511627776 Bytes). + When the value is {{empty}} the memory threshold criteria for the associated RCATList will be ignored in SAF handling. + {{pattern}} + + + + + + + {{empty}} + + + + + + + + The list is a prioritized set of Access Networks where the preference of using an Access Network is based on order of the list items with the lowest order list item as the most preferred Access Network. + + + + + + + + + + + + + The M2M Area Network information provides administration capabilities for remote management (REM) of M2M Devices (D', d) that are attached to this {{object|##.SCL}} instance. + This object provides the administration of the properties needed by the SCL to remotely manage M2M Devices within a specific type of M2M Area network as defined by {{param|AreaNwkType}}. + Multiple instances of {{object}} with the same {{param|AreaNwkType}} is permitted. + Section 5.3.5 of the M2M Functional Architecture {{bibref|ETSIM2MFA}} describes the REM functionality expected of a SCL for an M2M Device. + + + + + + + URI {{bibref|RFC3986}} that represents the identifier of the instance. + + + + + + + + Devices (D' and d) that connect to an SCL are said to be "attached devices" and are organized by M2M Area Networks within the {{object|##.SCL}} instance. The {{param}} is an implementation-chosen string that indicates the type of M2M Area Network. + + + + + + + + {{list}} {{reference}} + The list represents the M2M Devices (D', d) that are attached to this {{object|##.SCL}} instance that are within this {{object}} instance. The list does not contain an instance for this CPE. + + + + + + + + + + + {{numentries}} + + + + + + + + + This object contains an instance of a property extension (name value pair) for this {{object|##.AreaNwkInstance}} instance. + For example, if the {{param|#.AreaNwkType}} is ZigBee the {{object|##.AreaNwkInstance}} will contain ZigBee specific parameters that have not been modeled for the M2M Area network. + At a minimum, a property instance MUST exist that defines an attribute that describes the IP layer address type (e.g., IPv4, IPv6, non-IP) of this M2M Area Network. + + + + The name of the property + + + + + + + + The value of the property. + + + + + + + + + The M2M Area Network Device Information provides the administration capability to the SCL for maintenance of M2M Devices (D', d) that are attached to this {{object|##.SCL}} instance. + While discovery and identification of devices by the M2M Gateway or Device (CPE) is implementation specific, each device is represented by an instance of the {{object|.Hosts.Host}} table. + When the M2M Device is managed by the CWMP endpoint of the CPE, the {{object}} is expected to be referenced by an instance of one of the following tables: + *{{object|.ManagementServer.EmbeddedDevice}} + *{{object|.ManagementServer.VirtualDevice}} + Section 5.3.5 of the M2M Functional Architecture {{bibref|ETSIM2MFA}} describes the REM functionality expected of a SCL to a M2M Device. + This object instance provides the administration properties required by a SCL to remotely manage an instance of a M2M Device within a M2M area network. + A M2M Device is associated with an instance of a {{object|#.AreaNwkInstance}}. + This table contains parameters and information of the M2M Device related to each {{object|#.AreaNwkInstance}} instance. + Instances of this table are created and deleted by the CPE. The ACS MAY modify the writeable parameters of this object instance but it is possible that the value set by the ACS is not retained between reboots of the M2M Device. + + + + {{reference}} + + + + + + + + + + {{list}} {{reference|the {{object|.Hosts.Host}} table entry that represents an active or inactive M2M Device}} + + + + + + + + + + + {{list}} {{reference}} References all the {{object|.Hosts.Host}} table entries, whether active or inactive, that represent the reachable neighbors of this M2M Device (D' or d). + + + + + + + + + + + The list is an unordered set of URIs {{bibref|RFC3986}}. + A list item is an URI string that represents an application id (APP-ID) for the M2M D'A applications residing on the M2M Device for the associated {{object|#.AreaNwkInstance}}. + Table B.58 of the M2M Functional Architecture {{bibref|ETSIM2MFA}} describes this parameter. + + + + + + + + + The interval, in {{units}}, between sleep periods for the device. + A value of 0 represents a device that does not sleep. + Note: When this value is modified, the CPE could modify the {{param}} for this M2M Device in other Area Networks. + + + + + + + + + + The duration, in {{units}}, of a sleep period. + The value 0 represents an unknown value. + Note: When this value is modified, the CPE could modify the {{param}} for this M2M Device in other Area Networks. + + + + + + + + + + The sleep status of the device. + Enumeration of: + {{enum}} + + + + + + + + + + + Whether or not this M2M Device is currently attached to this {{object|##.SCL}} instance. + The ability to list inactive M2M Devices is OPTIONAL. If the CPE includes inactive M2MDevices in this table, {{param}} is set to {{false}} for each inactive M2M Device. The length of time an inactive M2M Device remains listed in this table is a local matter to the CPE. + + + + + + + + {{numentries}} + + + + + + + + + This object contains an instance of a property extension (name value pair) for this {{object|##.AreaNwkDeviceInfoInstance}} instance. + For example, if the {{param|##.AreaNwkInstance.{i}.AreaNwkType}} value is ZigBee, this {{object|##.AreaNwkDeviceInfoInstance}} contains ZigBee-specific parameters that are not formally modeled for this {{object|##.AreaNwkDeviceInfoInstance}} instance. + + + + The name of the property + + + + + + + + The value of the property. + + + + + + + + + This object contains information associated with a connected Internet Gateway Device. + + + + Organizationally unique identifier of the associated Internet Gateway Device. {{pattern}} + {{empty}} indicates that there is no associated Internet Gateway Device that has been detected. + + + + + + + + + + + + Identifier of the product class of the associated Internet Gateway Device. {{empty}} indicates either that there is no associated Internet Gateway Device that has been detected, or the Internet Gateway Device does not support the use of the product-class parameter. + + + + + + + + + + Serial number of the associated Internet Gateway Device. {{empty}} indicates that there is no associated Internet Gateway Device that has been detected. + + + + + + + + + + + This object contains parameters relating an NTP or SNTP time client in the CPE. + + + + Enables or disables the NTP or SNTP time client. + + + + + + + + Status of Time support on the CPE. {{enum}} + The {{enum|Unsynchronized}} value indicates that the CPE's absolute time has not yet been set. + The {{enum|Synchronized}} value indicates that the CPE has acquired accurate absolute time; its current time is accurate. + The {{enum|Error_FailedToSynchronize}} value indicates that the CPE failed to acquire accurate absolute time; its current time is not accurate. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + First NTP timeserver. Either a host name or IP address. + + + + + + + + + + Second NTP timeserver. Either a host name or IP address. + + + + + + + + + + Third NTP timeserver. Either a host name or IP address. + + + + + + + + + + Fourth NTP timeserver. Either a host name or IP address. + + + + + + + + + + Fifth NTP timeserver. Either a host name or IP address. + + + + + + + + + + The current date and time in the CPE's local time zone. + + + + + + + + The local time zone definition, encoded according to IEEE 1003.1 (POSIX). The following is an example value: + : EST+5 EDT,M4.1.0/2,M10.5.0/2 + + + + + + + + + + + This object contains parameters relating to the user interface of the CPE. + + + + Enables and disables the CPE's user interface. + + + + + + + + + Present only if the CPE provides a password-protected LAN-side user interface. + Indicates whether or not the local user interface MUST require a password to be chosen by the user. If {{false}}, the choice of whether or not a password is used is left to the user. + + + + + + + + Present only if the CPE provides a password-protected LAN-side user interface and supports LAN-side Auto-Configuration. + Indicates whether or not a password to protect the local user interface of the CPE MAY be selected by the user directly (i.e. {{param|.Users.User.{i}.Password}}), or MUST be equal to the password used by the LAN-side Auto-Configuration protocol (i.e. {{param|.LANConfigSecurity.ConfigPassword}}). + + + + + + + + Present only if the CPE provides a password-protected LAN-side user interface and supports LAN-side Auto-Configuration. + When set to true, resets {{param|.LANConfigSecurity.ConfigPassword}} to its factory value. + + + + + + + + Indicates that a CPE upgrade is available, allowing the CPE to display this information to the user. + + + + + + + + Indicates the date and time in UTC that the warranty associated with the CPE is to expire. + + + + + + + + The name of the customer's ISP. + + + + + + + + + + The help desk phone number of the ISP. + + + + + + + + + + The {{datatype}} of the ISP's home page. + + + + + + + + The {{datatype}} of the ISP's on-line support page. + + + + + + + + Base64 encoded GIF or JPEG image. The binary image is constrained to 4095 bytes or less. + + + + + + + + + + Un-encoded binary image size in bytes. + If ISPLogoSize input value is 0 then the ISPLogo is cleared. + ISPLogoSize can also be used as a check to verify correct transfer and conversion of Base64 string to image size. + + + + + + + + + + The {{datatype}} of the ISP's mail server. + + + + + + + + The {{datatype}} of the ISP's news server. + + + + + + + + The color of text on the GUI screens in RGB hexadecimal notation (e.g., FF0088). + + + + + + + + + + The color of the GUI screen backgrounds in RGB hexadecimal notation (e.g., FF0088). + + + + + + + + + + The color of buttons on the GUI screens in RGB hexadecimal notation (e.g., FF0088). + + + + + + + + + + The color of text on buttons on the GUI screens in RGB hexadecimal notation (e.g., FF0088). + + + + + + + + + + The server the CPE can check to see if an update is available for direct download to it. + This MUST NOT be used by the CPE if the {{param|.ManagementServer.UpgradesManaged}} parameter is {{true}}. + + + + + + + + + + The server where a user can check via a web browser if an update is available for download to a PC. + This MUST NOT be used by the CPE if the {{param|.ManagementServer.UpgradesManaged}} parameter is {{true}}. + + + + + + + + + + {{list}} List items represent user-interface languages that are available, where each language is specified according to {{bibref|RFC3066}}. + + + + + + + + + + + Current user-interface language, specified according to {{bibref|RFC3066}}. The value MUST be a member of the list reported by the {{param|AvailableLanguages}} parameter. + + + + + + + + + + + This object contains parameters relating to remotely accessing the CPE's user interface. + Remote access is defined as any entity not of a local subnet attempting to connect to the CPE. + Remote access requires user authentication. To provide remote access authentication the CPE MUST support a "User" table with at least one instance that has "RemoteAccessCapable" set to {{true}}. + + + + Enables/Disables remotely accessing the CPE's user interface. + + + + + + + + Destination TCP port required for remote access connection. + + + + + + + + + + {{list}} Indicates the protocols that are supported by the CPE for the purpose of remotely accessing the user interface. + + + + + + + As defined in {{bibref|RFC2616}} + + + + + As defined in {{bibref|RFC2818}} + + + + + + + + This is the protocol currently being used for remote access. + + + + + + + + + + + This object describes how to remotely manage the initial positioning of a user interface on a device's local display. + + + + Controls whether the user is allowed to change the GUI window position on the local CPE's display. + + + + + + + + Controls whether the user is allowed to resize the GUI window on the local CPE's display. + + + + + + + + The horizontal position of the User Interface's top left corner within the local CPE's display measured from the top left corner, expressed in {{units}}. + + + + + + + + + + The vertical position of the User Interface's top left corner within the local CPE's display measured from the top left corner, expressed in {{units}}. + + + + + + + + + + The width of the user interface within the local CPE's display, expressed in {{units}}. + + + + + + + + + + The height of the user interface within the local CPE's display, expressed in {{units}}. + + + + + + + + + + The width of the local CPE's display, expressed in {{units}}. + + + + + + + + + + The height of the local CPE's display, expressed in {{units}}. + + + + + + + + + + + Definition of user information message displays. + + + + Enables and displays the user information message. + + + + + + + + + Message title to be displayed. + + + + + + + + + + Message sub title to be displayed. + + + + + + + + + + Message text. + + + + + + + + Icon to be displayed. + + + + + + + + + + + + + + + + The color of message text in RGB hexadecimal notation (e.g., FF0088). + + + + + + + + + + The color of the message screen background in RGB hexadecimal notation (e.g., FF0088). + + + + + + + + + + The color of the message title in RGB hexadecimal notation (e.g., FF0088). + + + + + + + + + + The color of the sub title in RGB hexadecimal notation (e.g., FF0088). + + + + + + + + + + The number of times the device SHOULD repeat the message. + + + + + + + + The number of times the device repeated the message. + + + + + + + + + This table contains information about the relationships between the multiple layers of interface objects ({{bibref|TR-181i2|Section 4.3}}). In particular, it contains information on which interfaces run ''on top of'' which other interfaces. + This table is auto-generated by the CPE based on the ''LowerLayers'' parameters on individual interface objects. + Each table row represents a "link" between two interface objects, a higher-layer interface object (referenced by {{param|HigherLayer}}) and a lower-layer interface object (referenced by {{param|LowerLayer}}). Consequently, if a referenced interface object is deleted, the CPE MUST delete the corresponding {{object}} row(s) that had referenced it. + + + + + + + + + + + {{datatype|expand}} + + + + + + + + {{noreference}}A reference to the interface object corresponding to the higher layer of the relationship, i.e. the interface which runs on ''top'' of the interface identified by the corresponding instance of {{param|LowerLayer}}. + When the referenced higher layer interface is deleted, the CPE MUST delete the table row. + + + + + + + + + + + {{noreference}}A reference to the interface object corresponding to the lower layer of the relationship, i.e. the interface which runs ''below'' the interface identified by the corresponding instance of {{param|HigherLayer}}. + When the referenced lower layer interface is deleted, the CPE MUST delete the table row. + + + + + + + + + + + The value of the ''Alias'' parameter for the interface object referenced by {{param|HigherLayer}}. + + + + + + + + + + The value of the ''Alias'' parameter for the interface object referenced by {{param|LowerLayer}}. + + + + + + + + + + + This object models DSL lines, DSL channels, DSL bonding, and DSL diagnostics. The specific interface objects defined here are {{object|Line}}, {{object|Channel}}, and {{object|BondingGroup}}. Each {{object|Line}} models a layer 1 DSL Line interface, and each {{object|Channel}} models a layer 1 DSL Channel interface where multiple channels can run over a DSL line. In the case where bonding is configured, it is expected that {{object|BondingGroup}} is stacked above the {{object|Channel}} instances within its group. + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + DSL Line table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). + This table models physical DSL lines. + + + + + + + + + + Enables or disables the DSL line. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + Enables or disables data gathering on the DSL line. + + + + + + + + The current operational state of the DSL line (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the DSL line as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the DSL line entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + Note: Since {{object}} is a layer 1 interface, it is expected that {{param}} will not be used. + + + + + + + + + + + + + Indicates whether the interface points towards the Internet ({{true}}) or towards End Devices ({{false}}). + For example: + * For an Internet Gateway Device, {{param}} will be {{true}} for all WAN interfaces and {{false}} for all LAN interfaces. + * For a standalone WiFi Access Point that is connected via Ethernet to an Internet Gateway Device, {{param}} will be {{true}} for the Ethernet interface and {{false}} for the WiFi Radio interface. + * For an End Device, {{param}} will be {{true}} for all interfaces. + + + + + + + + A string identifying the version of the modem firmware currently installed for this interface. This is applicable only when the modem firmware is separable from the overall CPE software. + + + + + + + + + + Status of the DSL physical link. {{enum}} + When {{param}} is {{enum|Up}}, {{param|Status}} is expected to be {{enum|Up|Status}}. When {{param}} is {{enum|Initializing}} or {{enum|EstablishingLink}} or {{enum|NoSignal}} or {{enum|Disabled}}, {{param|Status}} is expected to be {{enum|Down|Status}}. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + + {{list}} List items indicate which DSL standards and recommendations are supported by the {{object}} instance. {{enum}} + Note: In G.997.1, this parameter is called "xDSL Transmission system capabilities". See ITU-T Recommendation {{bibref|G.997.1}}. + This parameter was DEPRECATED because its entries are out-of-date; {{param|XTSE}} points to a current list. Therefore its value MAY be {{empty}} if (and only if) {{param|XTSE}} is supported. + This parameter is OBSOLETED in 2.14. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + This configuration parameter defines the transmission system types to be allowed by the xTU on this {{object}} instance. Each bit is 0 if not allowed or 1 if allowed, as defined for the xTU transmission system enabling (XTSE) in ITU-T G.997.1. + Note: This parameter is defined as xDSL Transmission system enabling (XTSE) in ITU-T G.997.1. For a full definition, see Clause 7.3.1.1.1 of ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + Indicates the standard that the {{object}} instance is using for the connection. + Note: In G.997.1, this parameter is called "xDSL Transmission system". See ITU-T Recommendation {{bibref|G.997.1}}. + This parameter was DEPRECATED because its entries are out-of-date; {{param|XTSE}} points to a current list. Therefore its value MAY be {{empty}} if (and only if) {{param|XTSUsed}} is supported. + This parameter is OBSOLETED in 2.14. + + + + + + + + + + This parameter indicates which DSL standard and recommendation are currently in use by the {{object}} instance. Only one bit is set, as defined for the xTU transmission system enabling (XTSE) in ITU-T G.997.1. + + + + + + + + + + The line encoding method used in establishing the Layer 1 DSL connection between the CPE and the DSLAM. {{enum}} + Note: Generally speaking, this variable does not change after provisioning. + + + + + + + + + + + + + + + {{list}} List items indicate which VDSL2 profiles are allowed on the line. {{enum}} + Note: In G.997.1, this parameter is called PROFILES. See ITU-T Recommendation {{bibref|G.997.1}}. + Note: This parameter is OPTIONAL at the G and S/T interfaces in G.997.1 Amendment 1. If the parameter is implemented but no value is available, its value MUST be {{empty}}. + + + + + + + + + + + + + + + + + + + + Indicates which VDSL2 profile is currently in use on the line. + Note: This parameter is OPTIONAL at the G and S/T interfaces in G.997.1 Amendment 1. If the parameter is implemented but no value is available, its value MUST be {{empty}}. + + + + + + + + + + The power management state of the line. {{enum}} + Note: See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + + + + + The success failure cause of the initialization. An enumeration of the following integer values: + * 0: Successful + * 1: Configuration error. This error occurs with inconsistencies in configuration parameters, e.g. when the line is initialized in an xDSL Transmission system where an xTU does not support the configured Maximum Delay or the configured Minimum or Maximum Data Rate for one or more bearer channels. + * 2: Configuration not feasible on the line. This error occurs if the Minimum Data Rate cannot be reached on the line with the Minimum Noise Margin, Maximum PSD level, Maximum Delay and Maximum Bit Error Ratio for one or more bearer channels. + * 3: Communication problem. This error occurs, for example, due to corrupted messages or bad syntax messages or if no common mode can be selected in the G.994.1 handshaking procedure or due to a timeout. + * 4: No peer xTU detected. This error occurs if the peer xTU is not powered or not connected or if the line is too long to allow detection of a peer xTU. + * 5: Any other or unknown Initialization Failure cause. + * 6: ITU T G.998.4 retransmission mode was not selected while RTX_MODE = FORCED or with RTX_MODE = RTX_TESTMODE. + Note: In G.997.1, this parameter is called "Initialization success/failure cause". See Clause 7.5.1.6 of ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + This parameter contains the estimated electrical loop length estimated by the VTU-R expressed in {{units}} at 1MHz (see O-UPDATE in section 12.2.4.2.1.2/G.993.2). The value is coded as an unsignedInt in the range 0 (coded as 0) to 128 dB (coded as 1280) in steps of {{units}}. + Note: This parameter is defined as UPBOKLE-R in Clause 7.5.1.23.2 of ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + + VTU-O estimated upstream power back-off electrical length per band. + This parameter is a vector of UPBO electrical length per-band estimates for each supported downstream band, expressed in {{units}} at 1 MHz (kl0) calculated by the VTU-R, based on separate measurements in the supported upstream bands. The value of each list element ranges from 0 to 128 dB in steps of {{units}}, with special value 204.7 which indicates that the estimate is greater than 128 dB. This parameter is required for the alternative electrical length estimation method (ELE-M1). + Note: This parameter is defined as UPBOKLE-pb in Clause 7.5.1.23.3 of ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + + + + VTU-R estimated upstream power back-off electrical length per band. + This parameter is a vector of UPBO electrical length per-band estimates for each supported downstream band, expressed in {{units}} at 1 MHz (kl0) calculated by the VTU-R, based on separate measurements in the supported downstream bands. The value of each list element ranges from 0 to 128 dB in steps of {{units}}, with special value 204.7 which indicates that the estimate is greater than 128 dB. This parameter is required for the alternative electrical length estimation method (ELE-M1). + The value of each list element is coded as an unsigned 16 bit number in the range 0 (coded as 0) to 128 dB (coded as 1280) in steps of {{units}}. + Note: This parameter is defined as UPBOKLE-R-pb in Clause 7.5.1.23.4 of ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + + + + UPBO downstream receiver signal level threshold. + This parameter reports the downstream received signal level threshold value used in the alternative electrical length estimation method (ELE-M1). This parameter represents an offset from -100 dBm/Hz, and ranges from -64 dB to 0 dB in steps of {{units}}. + The value is coded as a 16 bit number in the range -64 (coded as -640) to 0 dB (coded as 0) in steps of {{units}}. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + + This parameter indicates the actual active rate adaptation mode in the downstream direction. + * If {{param}} equals 1, the link is operating in RA-MODE 1 (MANUAL). + * If {{param}} equals 2, the link is operating in RA-MODE 2 (AT_INIT). + * If {{param}} equals 3, the link is operating in RA-MODE 3 (DYNAMIC). + * If {{param}} equals 4, the link is operating in RA-MODE 4 (DYNAMIC with SOS). + Note: This parameter is defined as ACT-RA-MODEds in Clause 7.5.1.33.1 of ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + This parameter indicates the actual active rate adaptation mode in the upstream direction. + * If {{param}} equals 1, the link is operating in RA-MODE 1 (MANUAL). + * If {{param}} equals 2, the link is operating in RA-MODE 2 (AT_INIT). + * If {{param}} equals 3, the link is operating in RA-MODE 3 (DYNAMIC). + * If {{param}} equals 4, the link is operating in RA-MODE 4 (DYNAMIC with SOS). + Note: This parameter is defined as ACT-RA-MODEus in Clause 7.5.1.33.2 of ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + This parameter reports the actual impulse noise protection (INP) of the robust overhead channel (ROC) in the downstream direction. The format and usage is identical to the channel status parameter {{param|#.Channel.{i}.ACTINP}}. + Note: This parameter is defined as ACTINP-ROC-ds in Clause 7.5.1.34.1 of ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + This parameter reports the actual impulse noise protection (INP) of the robust overhead channel (ROC) in the upstream direction. The format and usage is identical to the channel status parameter {{param|#.Channel.{i}.ACTINP}}. + Note: This parameter is defined as ACTINP-ROC-us in Clause 7.5.1.34.2 ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + This parameter reports the actual signal-to-noise margin of the robust overhead channel (ROC) in the downstream direction (expressed in {{units}}). The format is identical to the format of the line status parameter SNRM margin {{param|DownstreamNoiseMargin}}. + Note: This parameter is defined as SNRM-ROC-ds in Clause 7.5.1.35.1 ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + This parameter reports the actual signal-to-noise margin of the robust overhead channel (ROC) in the upstream direction (expressed in {{units}}). The format is identical to the format of the line status parameter SNRM margin ({{param|UpstreamNoiseMargin}}). + Note: This parameter is defined as SNRM-ROC-us in Clause 7.5.1.35.2 ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + This parameter represents the last successful transmitted initialization state in the downstream direction in the last full initialization performed on the line. Initialization states are defined in the individual xDSL Recommendations and are counted from 0 (if G.994.1 is used) or 1 (if G.994.1 is not used) up to Showtime. This parameter needs to be interpreted along with the xDSL Transmission System. + This parameter is available only when, after a failed full initialization, the line diagnostics procedures are activated on the line. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + This parameter represents the last successful transmitted initialization state in the upstream direction in the last full initialization performed on the line. Initialization states are defined in the individual xDSL Recommendations and are counted from 0 (if G.994.1 is used) or 1 (if G.994.1 is not used) up to Showtime. This parameter needs to be interpreted along with the xDSL Transmission System. + This parameter is available only when, after a failed full initialization, the line diagnostics procedures are activated on the line. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + This parameter contains the estimated electrical loop length expressed in {{units}} at 1MHz (see O-UPDATE in section 12.2.4.2.1.2/G.993.2). The value SHALL be coded as an unsigned 16 bit number in the range 0 (coded as 0) to 128 dB (coded as 1280) in steps of 0.1 dB. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + + This parameter SHALL contain the set of breakpoints exchanged in the MREFPSDds fields of the O-PRM message of G.993.2. Base64 encoded of the binary representation defined in Table 12-19/G.993.2 (maximum length is 145 octets, which requires 196 bytes for Base64 encoding). + Note: See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + This parameter SHALL contain the set of breakpoints exchanged in the MREFPSDus fields of the R-PRM message of G.993.2. Base64 encoded of the binary representation defined in Table 12-19/G.993.2 (maximum length is 145 octets, which requires 196 bytes for Base64 encoding). + Note: See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + Indicates the enabled VDSL2 Limit PSD mask of the selected PSD mask class. Bit mask as specified in ITU-T Recommendation G.997.1. + Note: For a VDSL2-capable multimode device operating in a mode other than VDSL2, the value of this parameter SHOULD be set to 0. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + Indicates the allowed VDSL2 US0 PSD masks for Annex A operation. Bit mask as specified in see ITU-T Recommendation G.997.1. + Note: For a VDSL2-capable multimode device operating in a mode other than VDSL2, the value of this parameter SHOULD be set to 0. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + Reports whether trellis coding is enabled in the downstream direction. A value of 1 indicates that trellis coding is in use, and a value of 0 indicates that the trellis is disabled. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to -1. + + + + + + + + Reports whether trellis coding is enabled in the upstream direction. A value of 1 indicates that trellis coding is in use, and a value of 0 indicates that the trellis is disabled. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to -1. + + + + + + + + Reports whether the OPTIONAL virtual noise mechanism is in use in the downstream direction. A value of 1 indicates the virtual noise mechanism is not in use, and a value of 2 indicates the virtual noise mechanism is in use. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 0. + + + + + + + + Reports whether the OPTIONAL virtual noise mechanism is in use in the upstream direction. A value of 1 indicates the virtual noise mechanism is not in use, and a value of 2 indicates the virtual noise mechanism is in use. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 0. + + + + + + + + Reports the virtual noise PSD for the downstream direction. Base64 encoded of the binary representation defined in G.997.1 by the parameter called TXREFVNds (maximum length is 97 octets, which requires 132 bytes for Base64 encoding). + See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to {{empty}}. + + + + + + + + + + Reports the virtual noise PSD for the upstream direction. Base64 encoded of the binary representation defined in G.997.1by the parameter called TXREFVNus (maximum length is 49 octets, which requires 68 bytes for Base64 encoding). + See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to {{empty}}. + + + + + + + + + + Reports the actual cyclic extension, as the value of m, in use for the connection. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 99. + + + + + + + + Signifies the line pair that the modem is using to connection. {{param}} = 1 is the innermost pair. + + + + + + + + + + The current maximum attainable data rate upstream (expressed in {{units}}). + Note: This parameter is related to the G.997.1 parameter ATTNDRus, which is measured in bits/s. See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + The current maximum attainable data rate downstream (expressed in {{units}}). + Note: This parameter is related to the G.997.1 parameter ATTNDRds, which is measured in bits/s. See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + The current signal-to-noise ratio margin (expressed in {{units}}) in the upstream direction. + Note: In G.997.1, this parameter is called SNRMus. See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + The current signal-to-noise ratio margin (expressed in {{units}}) in the downstream direction. + Note: In G.997.1, this parameter is called SNRMds. See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + {{list}} Indicates the current signal-to-noise ratio margin of each upstream band. Interpretation of the values is as defined in ITU-T Rec. G.997.1. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + + {{list}} Indicates the current signal-to-noise ratio margin of each band. Interpretation of the values is as defined in ITU-T Rec. G.997.1. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + + The Impulse Noise Monitoring (INM) Inter Arrival Time (IAT) Offset, measured in DMT symbols, that the xTU receiver uses to determine in which bin of the IAT histogram the IAT is reported. + Note: In G.997.1, this parameter is called INMIATO. See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + The Impulse Noise Monitoring (INM) Inter Arrival Time (IAT) Step that the xTU receiver uses to determine in which bin of the IAT histogram the IAT is reported. + Note: In G.997.1, this parameter is called INMIATS. See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + The Impulse Noise Monitoring (INM) Cluster Continuation value, measured in DMT symbols, that the xTU receiver uses in the cluster indication process. + Note: In G.997.1, this parameter is called INMCC. See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + The Impulse Noise Monitoring (INM) Equivalent Impulse Noise Protection (INP) Mode that the xTU receiver uses in the computation of the Equivalent INP. + Note: In G.997.1, this parameter is called INM_INPEQ_MODE. See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + The current upstream signal loss (expressed in {{units}}). + Doesn't apply to VDSL2 {{bibref|G.993.2}}. Otherwise has the same value as the single element of {{param|TestParams.SATNus}}. + + + + + + + + + + The current downstream signal loss (expressed in {{units}}). + Doesn't apply to VDSL2 {{bibref|G.993.2}}. Otherwise has the same value as the single element of {{param|TestParams.SATNds}}. + + + + + + + + + + The current output power at the CPE's DSL line (expressed in {{units}}). + + + + + + + + + + The current received power at the CPE's DSL line (expressed in {{units}}). + + + + + + + + + + xTU-R vendor identifier as defined in G.994.1 and T1.413. In the case of G.994.1 this corresponds to the four-octet provider code, which MUST be represented as eight hexadecimal digits. + Note: This parameter is OPTIONAL at the G and S/T interfaces in G.997.1 Amendment 1. If the parameter is implemented but no value is available, it MUST have the value "00000000". + Note: In G.997.1, this parameter is called "xTU-R G.994.1 Vendor ID". See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + T.35 country code of the xTU-R vendor as defined in G.994.1, where the two-octet value defined in G.994.1 MUST be represented as four hexadecimal digits. + Note: This parameter is OPTIONAL at the G and S/T interfaces in G.997.1 Amendment 1. If the parameter is implemented but no value is available, it MUST have the value "0000". + Note: In G.997.1, this parameter is called "xTU-R G.994.1 Vendor ID". See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + xTU-R T1.413 Revision Number as defined in T1.413 Issue 2. + When T1.413 modulation is not in use, the parameter value SHOULD be 0. + + + + + + + + xTU-R Vendor Revision Number as defined in T1.413 Issue 2. + When T1.413 modulation is not in use, the parameter value SHOULD be 0. + + + + + + + + xTU-C vendor identifier as defined in G.994.1 and T1.413. In the case of G.994.1 this corresponds to the four-octet provider code, which MUST be represented as eight hexadecimal digits. + Note: This parameter is OPTIONAL at the G and S/T interfaces in G.997.1 Amendment 1. If the parameter is implemented but no value is available, it MUST have the value "00000000". + + + + + + + + + + T.35 country code of the xTU-C vendor as defined in G.994.1, where the two-octet value defined in G.994.1 MUST be represented as four hexadecimal digits. + Note: This parameter is OPTIONAL at the G and S/T interfaces in G.997.1 Amendment 1. If the parameter is implemented but no value is available, it MUST have the value "0000". + + + + + + + + + + xTU-C T1.413 Revision Number as defined in T1.413 Issue 2. + When T1.413 modulation is not in use, the parameter value SHOULD be 0. + + + + + + + + xTU-C Vendor Revision Number as defined in T1.413 Issue 2. + When T1.413 modulation is not in use, the parameter value SHOULD be 0. + + + + + + + + + Throughput statistics for this interface. + The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + The total number of bytes transmitted out of the interface, including framing characters. + + + + + + + + The total number of bytes received on the interface, including framing characters. + + + + + + + + The total number of packets transmitted out of the interface. + + + + + + + + The total number of packets received on the interface. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + DSL-specific statistic. The Number of {{units}} since the beginning of the period used for collection of {{object|Total}} statistics. + Statistics SHOULD continue to be accumulated across CPE reboots, though this might not always be possible. + Note: {{param}} SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + + + + + + + DSL-specific statistic. The Number of {{units}} since the most recent DSL Showtime - the beginning of the period used for collection of {{object|Showtime}} statistics. + Showtime is defined as successful completion of the DSL link establishment process. The ''Showtime'' statistics are those collected since the most recent establishment of the DSL link. + Note: {{param}} SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + + + + + + + DSL-specific statistic. The Number of {{units}} since the second most recent DSL Showtime-the beginning of the period used for collection of {{object|LastShowtime}} statistics. + If the CPE has not retained information about the second most recent Showtime (e.g., on reboot), the start of ''LastShowtime'' statistics MAY temporarily coincide with the start of ''Showtime'' statistics. + Note: {{param}} SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + + + + + + + DSL-specific statistic. The Number of {{units}} since the beginning of the period used for collection of {{object|CurrentDay}} statistics. + The CPE MAY align the beginning of each ''CurrentDay'' interval with days in the UTC time zone, but is not required to do so. + Statistics SHOULD continue to be accumulated across CPE reboots, though this might not always be possible. + Note: {{param}} SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + + + + + + + DSL-specific statistic. The Number of {{units}} since the beginning of the period used for collection of {{object|QuarterHour}} statistics. + The CPE MAY align the beginning of each ''QuarterHour'' interval with real-time quarter-hour intervals, but is not required to do so. + Statistics SHOULD continue to be accumulated across CPE reboots, though this might not always be possible. + Note: {{param}} SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + + + + + + + + This object contains DSL line total statistics. See {{bibref|G.997.1|Chapter 7.2.6}}. + Note: The {{object}} parameters SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + Total number of errored {{units}} (ES-L as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: This parameter is OPTIONAL at the G and S/T interfaces in G.997.1 Amendment 1. If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + + + Total number of severely errored {{units}} (SES-L as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: This parameter is OPTIONAL at the G and S/T interfaces in G.997.1 Amendment 1. If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + + + + This object contains DSL line statistics accumulated since the most recent DSL Showtime. See {{bibref|G.997.1|Chapter 7.2.6}}. + Note: The {{object}} parameters SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + Number of errored {{units}} since the most recent DSL Showtime (ES-L as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: This parameter is OPTIONAL at the G and S/T interfaces in G.997.1 Amendment 1. If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + + + Number of severely errored {{units}} since the most recent DSL Showtime (SES-L as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: This parameter is OPTIONAL at the G and S/T interfaces in G.997.1 Amendment 1. If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + + + + This object contains DSL line statistics accumulated since the second most recent DSL Showtime. See {{bibref|G.997.1|Chapter 7.2.6}}. + Note: The {{object}} parameters SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + Number of errored {{units}} since the second most recent DSL Showtime (ES-L as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: This parameter is OPTIONAL at the G and S/T interfaces in G.997.1 Amendment 1. If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + + + Number of severely errored {{units}} since the second most recent DSL Showtime (SES-L as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: This parameter is OPTIONAL at the G and S/T interfaces in G.997.1 Amendment 1. If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + + + + This object contains DSL line statistics accumulated during the current day. See {{bibref|G.997.1|Chapter 7.2.6}}. + Note: The {{object}} parameters SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + Number of errored {{units}} since the second most recent DSL Showtime (ES-L as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: This parameter is OPTIONAL at the G and S/T interfaces in G.997.1 Amendment 1. If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + + + Number of severely errored {{units}} since the second most recent DSL Showtime (SES-L as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: This parameter is OPTIONAL at the G and S/T interfaces in G.997.1 Amendment 1. If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + + + + This object contains DSL line statistics accumulated during the current quarter hour. See {{bibref|G.997.1|Chapter 7.2.6}}. + Note: The {{object}} parameters SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + Number of errored {{units}} since the second most recent DSL Showtime (ES-L as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: This parameter is OPTIONAL at the G and S/T interfaces in G.997.1 Amendment 1. If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + + + Number of severely errored {{units}} since the second most recent DSL Showtime (SES-L as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: This parameter is OPTIONAL at the G and S/T interfaces in G.997.1 Amendment 1. If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + + + + This object contains the DSL line test parameters that are available during the L0 (i.e., Showtime) state. + + + + Number of sub-carriers per sub-carrier group in the downstream direction for {{param|HLOGpsds}}. Valid values are 1, 2, 4, 8, and 16. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 1. + + + + + + + + Number of sub-carriers per sub-carrier group in the upstream direction for {{param|HLOGpsus}}. Valid values are 1, 2, 4, and 8. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 1. + + + + + + + + {{list}} Indicates the downstream logarithmic line characteristics per sub-carrier group. The maximum number of elements is 256 for G.992.3, and 512 for G.992.5. For G.993.2, the number of elements will depend on the value of {{param|HLOGGds}} but will not exceed 512. Interpretation of the values is as defined in ITU-T Rec. G.997.1. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to ''None''. + Note: {{param}} is measured during initialization and is not updated during Showtime. + + + + + + + + + + + {{list}} Indicates the upstream logarithmic line characteristics per sub-carrier group. The maximum number of elements is 64 for G.992.3 and G.992.5. For G.993.2, the number of elements will depend on the value of {{param|HLOGGus}} but will not exceed 512. Interpretation of the values is as defined in ITU-T Rec. G.997.1. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to ''None''. + Note: {{param}} is measured during initialization and is not updated during Showtime. + + + + + + + + + + + Indicates the number of symbols over which {{param|HLOGpsds}} was measured. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 0. + + + + + + + + Indicates the number of symbols over which {{param|HLOGpsus}} was measured. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 0. + + + + + + + + Number of sub-carriers per sub-carrier group in the downstream direction for {{param|QLNpsds}}. Valid values are 1, 2, 4, 8, and 16. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 1. + + + + + + + + Number of sub-carriers per sub-carrier group in the upstream direction for {{param|QLNpsus}}. Valid values are 1, 2, 4, and 8. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 1. + + + + + + + + {{list}} Indicates the downstream quiet line noise per subcarrier group. The maximum number of elements is 256 for G.992.3 and G.992.5. For G.993.2, the number of elements will depend on the value of {{param|QLNGds}} but will not exceed 512. Interpretation of the values is as defined in ITU-T Rec. G.997.1. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to ''None''. + Note: {{param}} is measured during initialization and is not updated during Showtime. + + + + + + + + + + + {{list}} Indicates the upstream quiet line noise per subcarrier group. The maximum number of elements is 64 for G.992.3 and G.992.5. For G.993.2, the number of elements will depend on the value of {{param|QLNGus}} but will not exceed 512. Interpretation of the values is as defined in ITU-T Rec. G.997.1. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to ''None''. + Note: {{param}} is measured during initialization and is not updated during Showtime. + + + + + + + + + + + Indicates the number of symbols over which {{param|QLNpsds}} was measured. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 0. + + + + + + + + Indicates the number of symbols over which {{param|QLNpsus}} was measured. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 0. + + + + + + + + Number of sub-carriers per sub-carrier group in the downstream direction for {{param|SNRpsds}}. Valid values are 1, 2, 4, 8, and 16. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 1. + + + + + + + + Number of sub-carriers per sub-carrier group in the upstream direction for {{param|SNRpsus}}. Valid values are 1, 2, 4, and 8. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 1. + + + + + + + + {{list}} Indicates the downstream SNR per subcarrier group. The maximum number of elements is 256 for G.992.3, and 512 for G.992.5. For G.993.2, the number of elements will depend on the value of {{param|SNRGds}} but will not exceed 512. Interpretation of the values is as defined in ITU-T Rec. G.997.1. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to ''None''. + Note: {{param}} is first measured during initialization and is updated during Showtime. + + + + + + + + + + + {{list}} Indicates the upstream SNR per subcarrier group. The maximum number of elements is 64 for G.992.3 and G.992.5. For G.993.2, the number of elements will depend on the value of {{param|SNRGus}} but will not exceed 512. Interpretation of the values is as defined in ITU-T Rec. G.997.1. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to ''None''. + Note: {{param}} is first measured during initialization and is updated during Showtime. + + + + + + + + + + + Indicates the number of symbols over which {{param|SNRpsds}} was measured. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 0. + + + + + + + + Indicates the number of symbols over which {{param|SNRpsus}} was measured. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 0. + + + + + + + + {{list}} Indicates the downstream line attenuation averaged across all sub-carriers in the frequency band, as computed during initialization. Number of elements is dependent on the number of downstream bands but will exceed one only for ITU-T G.993.2. Interpretation of {{param}} is as defined in ITU-T Rec. G.997.1. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + + {{list}} Indicates the upstream line attenuation averaged across all sub-carriers in the frequency band, as computed during initialization. Number of elements is dependent on the number of upstream bands but will exceed one only for ITU-T G.993.2. Interpretation of {{param}} is as defined in ITU-T Rec. G.997.1. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + + {{list}} Indicates the downstream signal attenuation averaged across all active sub-carriers in the frequency band, as computed during the L0 (i.e., Showtime) state. Number of elements is dependent on the number of downstream bands but will exceed one only for ITU-T G.993.2. Interpretation of {{param}} is as defined in ITU-T Rec. G.997.1. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + + {{list}} Indicates the upstream signal attenuation averaged across all active sub-carriers in the frequency band, as computed during the L0 (i.e., Showtime) state. Number of elements is dependent on the number of downstream bands but will exceed one only for ITU-T G.993.2. Interpretation of {{param}} is as defined in ITU-T Rec. G.997.1. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + + + This object models the DSL data gathering function at the VTU-R. This only applies to VDSL2. + Note: see ITU-T Recommendation {{bibref|G.993.2}}. + + + + This parameter is the maximum depth of the entire data gathering event buffer at the VTU-R, in number of {{units}}, where each of the {{units}} consists of 6 bytes indicating a data gathering event as defined in {{bibref|G.993.2}}. + Note: This parameter is defined as LOGGING_DEPTH_R in Clause 7.5.3.2 of ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + This parameter is actual logging depth that is used for reporting the VTU-R event trace buffer over the eoc channel, in number of {{units}}, where each of the {{units}} consists of 6 bytes indicating a data gathering event as defined in {{bibref|G.993.2}}. + Note: This parameter is defined as ACT_LOGGING_DEPTH_REPORTING_R in Clause 7.5.3.4 of ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + This parameter identifies the log file of the the data gathering event trace buffer containing the event records that originated at the VTU-R. + This indicates the table entry that represents a Vendor Log File that contains the data gathering buffer at the VTU-R in the {{object|###.DeviceInfo.VendorLogFile}} table. + This data gathering buffer MAY be retrieved wia an upload RPC of the identified Vendor Log File. + Note: This parameter is defined as EVENT_TRACE_BUFFER_R in Clause 7.5.3.6 of ITU-T Recommendation {{bibref|G.997.1}} and Clause 11.5 of ITU-T Recommendation {{bibref|G.993.2}}. + + + + + + + + + + + + DSL Channel table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). + This table models DSL channel(s) on top of physical DSL lines. + + + + + + + + + + Enables or disables the channel. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + The current operational state of the channel (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the channel as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the channel entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + + + + + + + + + + + + + {{list}} List items indicate which link encapsulation standards and recommendations are supported by the {{object}} instance. + + + + + + + + + + + Auto + + + + + + + + Indicates the link encapsulation standard that the {{object}} instance is using for the connection. {{enum}} + When ATM encapsulation is identified then an upper-layer {{object|.ATM.Link}} interface MUST be used. + When PTM encapsulation is identified then an upper-layer {{object|.PTM.Link}} interface MUST be used. + + + + + + + + + + + + + Reports the index of the latency path supporting the bearer channel. + Note: See ITU-T Recommendation {{bibref|G.997.1|Section 7.5.2.7}}. + + + + + + + + + + Reports the interleaver depth D for the latency path indicated in {{param|LPATH}}. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 0. + + + + + + + + Reports the interleaver block length in use on the latency path indicated in {{param|LPATH}}. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to -1. + + + + + + + + Reports the actual delay, in {{units}}, of the latency path due to interleaving. + Note: In G.997.1, this parameter is called "Actual Interleaving Delay." See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + Reports the actual impulse noise protection (INP) provided by the latency path indicated in {{param|LPATH}}. The value is the actual INP in the L0 (i.e., Showtime) state. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to -1. + + + + + + + + Reports whether the value reported in ACTINP was computed assuming the receiver does not use erasure decoding. Valid values are 0 (computed per the formula assuming no erasure decoding) and 1 (computed by taking into account erasure decoding capabilities of receiver). + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to {{false}}. + + + + + + + + Reports the size, in {{units}}, of the Reed-Solomon codeword in use on the latency path indicated in {{param|LPATH}}. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to -1. + + + + + + + + + + Reports the number of redundancy bytes per Reed-Solomon codeword on the latency path indicated in {{param|LPATH}}. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to -1. + + + + + + + + Reports the number of bits per symbol assigned to the latency path indicated in {{param|LPATH}}. This value does not include overhead due to trellis coding. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to -1. + + + + + + + + The current physical layer aggregate data rate (expressed in {{units}}) of the upstream DSL connection. + Note: If the parameter is implemented but no value is available, it MUST have the value 4294967295 (the maximum for its data type). + + + + + + + + + + The current physical layer aggregate data rate (expressed in {{units}}) of the downstream DSL connection. + Note: If the parameter is implemented but no value is available, it MUST have the value 4294967295 (the maximum for its data type). + + + + + + + + + + Actual net data rate expressed in {{units}}. Independent whether retransmission is used or not in a given transmit direction: + * In L0 state, this parameter reports the net data rate (as specified in [ITU T G.992.3], [ITU T G.992.5] or [ITU T G.993.2]) at which the bearer channel is operating. + * In L2 state, the parameter contains the net data rate (as specified in [ITU T G.992.3], [ITU T G.992.5] or [ITU T G.993.2]) in the previous L0 state. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + Actual impulse noise protection against REIN, expressed in {{units}}. + If retransmission is used in a given transmit direction, this parameter reports the actual impulse noise protection (INP) against REIN (under specific conditions detailed in [ITU T G.998.4]) on the bearer channel in the L0 state. In the L2 state, the parameter contains the INP in the previous L0 state. + The value is coded in fractions of DMT symbols with a granularity of 0.1 symbols. + The range is from 0 to 25.4. A special value of 25.5 indicates an ACTINP_REIN of 25.5 or higher. + Note: This parameter is defined as ACTINP_REIN in Clause 7.5.2.9 of ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + + + Throughput statistics for this interface. + The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + The total number of bytes transmitted out of the interface, including framing characters. + + + + + + + + The total number of bytes received on the interface, including framing characters. + + + + + + + + The total number of packets transmitted out of the interface. + + + + + + + + The total number of packets received on the interface. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + DSL-specific statistic. The Number of {{units}} since the beginning of the period used for collection of {{object|Total}} statistics. + Statistics SHOULD continue to be accumulated across CPE reboots, though this might not always be possible. + Note: {{param}} SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + + + + + + + DSL-specific statistic. The Number of {{units}} since the most recent DSL Showtime - the beginning of the period used for collection of {{object|Showtime}} statistics. + Showtime is defined as successful completion of the DSL link establishment process. The ''Showtime'' statistics are those collected since the most recent establishment of the DSL link. + Note: {{param}} SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + + + + + + + DSL-specific statistic. The Number of {{units}} since the second most recent DSL Showtime-the beginning of the period used for collection of {{object|LastShowtime}} statistics. + If the CPE has not retained information about the second most recent Showtime (e.g., on reboot), the start of ''LastShowtime'' statistics MAY temporarily coincide with the start of ''Showtime'' statistics. + Note: {{param}} SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + + + + + + + DSL-specific statistic. The Number of {{units}} since the beginning of the period used for collection of {{object|CurrentDay}} statistics. + The CPE MAY align the beginning of each ''CurrentDay'' interval with days in the UTC time zone, but is not required to do so. + Statistics SHOULD continue to be accumulated across CPE reboots, though this might not always be possible. + Note: {{param}} SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + + + + + + + DSL-specific statistic. The Number of {{units}} since the beginning of the period used for collection of {{object|QuarterHour}} statistics. + The CPE MAY align the beginning of each ''QuarterHour'' interval with real-time quarter-hour intervals, but is not required to do so. + Statistics SHOULD continue to be accumulated across CPE reboots, though this might not always be possible. + Note: {{param}} SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + + + + + + + + This object contains DSL channel total statistics {{bibref|G.997.1}}. + Note: The {{object}} parameters SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + Total number of FEC errors detected (FEC-C as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + Total number of FEC errors detected by the ATU-C (FEC-CFE as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + Total number of HEC errors detected (HEC-P as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + Total number of HEC errors detected by the ATU-C (HEC-PFE as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + Total number of CRC errors detected (CV-C as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + Total number of CRC errors detected by the ATU-C (CV-CFE as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + + This object contains DSL channel statistics accumulated since the most recent DSL Showtime {{bibref|G.997.1}}. + Note: The {{object}} parameters SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + Number of FEC errors detected since the most recent DSL Showtime (FEC-C as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + Number of FEC errors detected by the ATU-C since the most recent DSL Showtime (FEC-CFE as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + Number of HEC errors detected since the most recent DSL Showtime (HEC-P as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + Number of HEC errors detected by the ATU-C since the most recent DSL Showtime (HEC-PFE as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + Number of CRC errors detected since the most recent DSL Showtime (CV-C as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + Number of CRC errors detected by the ATU-C since the most recent DSL Showtime (CV-CFE as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + + This object contains DSL channel statistics accumulated since the second most recent DSL Showtime {{bibref|G.997.1}}. + Note: The {{object}} parameters SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + Number of FEC errors detected since the second most recent DSL Showtime (FEC-C as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + Number of FEC errors detected by the ATU-C since the second most recent DSL Showtime (FEC-CFE as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + Number of HEC errors detected since the second most recent DSL Showtime (HEC-P as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + Number of HEC errors detected by the ATU-C since the second most recent DSL Showtime (HEC-PFE as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + Number of CRC errors detected since the second most recent DSL Showtime (CV-C as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + Number of CRC errors detected by the ATU-C since the second most recent DSL Showtime (CV-CFE as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + + This object contains DSL channel statistics accumulated during the current day {{bibref|G.997.1}}. + Note: The {{object}} parameters SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + Number of FEC errors detected since the second most recent DSL Showtime (FEC-C as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + Number of FEC errors detected by the ATU-C since the second most recent DSL Showtime (FEC-CFE as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + Number of HEC errors detected since the second most recent DSL Showtime (HEC-P as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + Number of HEC errors detected by the ATU-C since the second most recent DSL Showtime (HEC-PFE as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + Number of CRC errors detected since the second most recent DSL Showtime (CV-C as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + Number of CRC errors detected by the ATU-C since the second most recent DSL Showtime (CV-CFE as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + + This object contains DSL channel statistics accumulated during the current quarter hour {{bibref|G.997.1}}. + Note: The {{object}} parameters SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + Number of FEC errors detected since the second most recent DSL Showtime (FEC-C as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + Number of FEC errors detected by the ATU-C since the second most recent DSL Showtime (FEC-CFE as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + Number of HEC errors detected since the second most recent DSL Showtime (HEC-P as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + Number of HEC errors detected by the ATU-C since the second most recent DSL Showtime (HEC-PFE as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + Number of CRC errors detected since the second most recent DSL Showtime (CV-C as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + Number of CRC errors detected by the ATU-C since the second most recent DSL Showtime (CV-CFE as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + + DSL bonding group table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). Each instance is a bonding group, and is expected to be stacked above a {{object|.DSL.Channel}} instance or a {{object|.FAST.Line}} instance for each bonded channel in the group. + Many of the parameters within this object, including {{param|LowerLayers}}, are read-only because bonding is not expected to be configured by a Controller. + The DSL bonding data model is closely aligned with {{bibref|TR-159}}. Corresponds to {{bibref|TR-159}} ''oBondingGroup''. + + + + + + + + + + + + + Enables or disables the bonding group. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + The current operational state of the bonding group (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the bonding group as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the bonding group entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + {{param}} is read-only for this object because bonding is expected to be configured by the CPE, not by the Controller. + + + + + + + + + + + + + {{list}} Indicates the current fault status of the DSL bonding group. {{enum}} + Corresponds to {{bibref|TR-159}} ''oBondingGroup.aGroupStatus''. + + + + + + + Peer physical layer is unreachable + + + + + Local device received a "dying gasp" message (preceding a loss-of-power) from the peer device + + + + + Operating bonding scheme of the peer port is different from the local one + + + + + Upstream or downstream data rate is at or below threshold + + + + + + + + DSL bonding group ID. Corresponds to {{bibref|TR-159}} ''oBondingGroup.aGroupID''. + + + + + + + + {{list}} Supported DSL bonding schemes. {{enum}} + Corresponds to {{bibref|TR-159}} ''oBondingGroup.aGroupBondSchemesSupported''. + + + + + + + {{bibref|G.998.1}} ATM-based bonding + + + + + {{bibref|G.998.2}} Ethernet-based bonding + + + + + {{bibref|G.998.3}} TDIM-based bonding + + + + + + + + Currently operating bonding scheme. Corresponds to {{bibref|TR-159}} ''aGroupOperBondScheme''. + + + + + + + + + + DSL bonding group capacity, i.e. the maximum number of channels that can be bonded in this group. Corresponds to {{bibref|TR-159}} ''oBondingGroup.aGroupCapacity''. + + + + + + + + + + The accumulated time in {{units}} for which this bonding group has been operationally up. Corresponds to {{bibref|G.998.1|section 11.4.2}} ''Group Running Time''. + + + + + + + + + + Desired upstream data rate in {{units}} for this DSL bonding group (zero indicates best effort). Corresponds to {{bibref|TR-159}} ''oBondingGroup.aGroupTargetUpRate''. + + + + + + + + + + Desired downstream data rate in {{units}} for DSL bonding group (zero indicates best effort). Corresponds to {{bibref|TR-159}} ''oBondingGroup.aGroupTargetDownRate''. + + + + + + + + + + Threshold upstream data rate in {{units}} for this DSL bonding group. {{param|GroupStatus}} will include {{enum|LowRate|GroupStatus}} whenever the upstream rate is less than this threshold. Corresponds to {{bibref|TR-159}} ''oBondingGroup.aGroupThreshLowUpRate''. + + + + + + + + + + Threshold downstream data rate in {{units}} for this DSL bonding group. {{param|GroupStatus}} will include {{enum|LowRate|GroupStatus}} whenever the downstream rate is less than this threshold. Corresponds to {{bibref|TR-159}} ''oBondingGroup.aGroupThreshLowDownRate''. + + + + + + + + + + The maximum upstream differential delay in {{units}} among member links in a bonding group. Corresponds to {{bibref|G.998.1|section 11.4.1}} ''Differential Delay Tolerance''. + + + + + + + + + + The maximum downstream differential delay in {{units}} among member links in a bonding group. Corresponds to {{bibref|G.998.1|section 11.4.1}} ''Differential Delay Tolerance''. + + + + + + + + + + {{numentries}} Corresponds to {{bibref|TR-159}} ''oBondingGroup.aGroupNumChannels''. + + + + + + + + + + + DSL bonded channel table. Each table entry represents a bonded channel within the bonding group, and is associated with exactly one {{object|.DSL.Channel}} instance or one {{object|.FAST.Line}} instance. There MUST be an instance of {{object}} for each DSL channel or FAST line that is bonded. + When a {{object|.DSL.Channel}} or {{object|.FAST.Line}} is no longer bonded, then the CPE MUST delete the corresponding {{object}} instance. However, when a bonded {{object|.DSL.Channel}} or {{object|.FAST.Line}} becomes disabled, the channel remains bonded and so the corresponding {{object}} instance MUST NOT be deleted. + + + + + + + + + + {{datatype|expand}} + + + + + + + + {{reference}}This is the channel that is being bonded. + This is read-only because bonding is expected to be configured by the CPE, not by the Controller. + + + + + + + + + + + + Per-channel {{bibref|G.998.2}} Ethernet-based bonding parameters. + This object MUST be present if, and only if, {{param|##.BondScheme}} is {{enum|Ethernet|##.BondScheme}}. + + + + + Per-channel {{bibref|G.998.2}} Ethernet-based bonding statistics. + These relate to the {{bibref|G.998.2}} PME (Physical Medium Entity) Aggregation Function (PAF) lower layer (per-channel) interfaces. + The CPE MUST reset the Stats parameters either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|###.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|###.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + Number of underflow errors sent, i.e. on the transmit side of the interface. + + + + + + + + Number of CRC errors received, i.e. on the receive side of the interface. + + + + + + + + Number of alignment errors received, i.e. on the receive side of the interface. + + + + + + + + Number of short packets received, i.e. on the receive side of the interface. + + + + + + + + Number of long packets received, i.e. on the receive side of the interface. + + + + + + + + Number of overflow errors received, i.e. on the receive side of the interface. + + + + + + + + Number of pause frames received, i.e. on the receive side of the interface. + + + + + + + + Number of frames dropped, e.g. because the receive queue is full. + + + + + + + + + Throughput statistics for this interface. + The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + The total number of bytes transmitted out of the interface, including framing characters. + + + + + + + + The total number of bytes received on the interface, including framing characters. + + + + + + + + The total number of packets transmitted out of the interface. + + + + + + + + The total number of packets received on the interface. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of packets requested for transmission which were not addressed to a multicast or broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were not addressed to a multicast or broadcast address at this layer. + + + + + + + + The total number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a multicast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a multicast address at this layer. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a broadcast address at this layer. + + + + + + + + The total number of packets received via the interface which were discarded because of an unknown or unsupported protocol. + + + + + + + + DSL-specific statistic. The Number of {{units}} since the beginning of the period used for collection of {{object|Total}} statistics. + Statistics SHOULD continue to be accumulated across CPE reboots, though this might not always be possible. + Note: {{param}} SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + + + + + + + DSL-specific statistic. The Number of {{units}} since the beginning of the period used for collection of {{object|CurrentDay}} statistics. + The CPE MAY align the beginning of each CurrentDay interval with days in the UTC time zone, but is not required to do so. + Statistics SHOULD continue to be accumulated across CPE reboots, though this might not always be possible. + Note: {{param}} SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + + + + + + + DSL-specific statistic. The Number of {{units}} since the beginning of the period used for collection of {{object|QuarterHour}} statistics. + The CPE MAY align the beginning of each QuarterHour interval with real-time quarter-hour intervals, but is not required to do so. + Statistics SHOULD continue to be accumulated across CPE reboots, though this might not always be possible. + Note: {{param}} SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + + + + + + + + Total statistics for this bonding group. + Note: The {{object}} parameters SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + {{list}} Indicates the failure conditions that have occurred during the accumulation period. {{enum}} + Corresponds to {{bibref|G.998.1|section 11.4.3}} ''Current Group Failure Reason''. + + + + + + + Minimum data rate not met + + + + + Differential delay tolerance exceeded + + + + + Insufficient buffers on receiver + + + + + Other failure occurred + + + + + + + + The achieved upstream data rate in {{units}} (which might change subject to dynamic link usage conditions). Corresponds to {{bibref|G.998.1|section 11.4.2}} ''Achieved Aggregate Data Rate''. + + + + + + + + + + The achieved downstream data rate in {{units}} (which might change subject to dynamic link usage conditions). Corresponds to {{bibref|G.998.1|section 11.4.2}} ''Achieved Aggregate Data Rate''. + + + + + + + + + + The total number of upstream packets that were lost at aggregation output from a bonding group during the accumulation period. Corresponds to {{bibref|G.998.1|section 11.4.2}} ''Group Rx Cell Loss Count''. + + + + + + + + The total number of downstream packets that were lost at aggregation output from a bonding group during the accumulation period. Corresponds to {{bibref|G.998.1|section 11.4.2}} ''Group Rx Cell Loss Count''. + + + + + + + + The achieved upstream differential delay in {{units}} (which might change subject to dynamic link usage conditions). + + + + + + + + + + The achieved downstream differential delay in {{units}} (which might change subject to dynamic link usage conditions). + + + + + + + + + + The number of times that the group was declared ''Unavailable'' during the accumulation period. Corresponds to {{bibref|G.998.1|Section 11.4.3}} ''Group Failure Count''. + + + + + + + + The time in {{units}} during which the group was declared ''Errored'' during the accumulation period. Corresponds to {{bibref|TR-159}} ''oBondingGroup.aGroupPerf**ES''. + + + + + + + + + + The time in {{units}} during which the group was declared ''SeverelyErrored'' during the accumulation period. Corresponds to {{bibref|TR-159}} ''oBondingGroup.aGroupPerf**SES''. + + + + + + + + + + The time in {{units}} during which the group was declared ''Unavailable'' during the accumulation period. Corresponds to {{bibref|TR-159}} ''oBondingGroup.aGroupPerf**UAS''. + + + + + + + + + + + Current day statistics for this bonding group. + Note: The {{object}} parameters SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + {{list}} Indicates the failure conditions that have occurred during the accumulation period. {{enum}} + Corresponds to {{bibref|G.998.1|section 11.4.3}} ''Current Group Failure Reason''. + + + + + + + Minimum data rate not met + + + + + Differential delay tolerance exceeded + + + + + Insufficient buffers on receiver + + + + + Other failure occurred + + + + + + + + The achieved upstream data rate in {{units}} (which might change subject to dynamic link usage conditions). Corresponds to {{bibref|G.998.1|section 11.4.2}} ''Achieved Aggregate Data Rate''. + + + + + + + + + + The achieved downstream data rate in {{units}} (which might change subject to dynamic link usage conditions). Corresponds to {{bibref|G.998.1|section 11.4.2}} ''Achieved Aggregate Data Rate''. + + + + + + + + + + The total number of upstream packets that were lost at aggregation output from a bonding group during the accumulation period. Corresponds to {{bibref|G.998.1|section 11.4.2}} ''Group Rx Cell Loss Count''. + + + + + + + + The total number of downstream packets that were lost at aggregation output from a bonding group during the accumulation period. Corresponds to {{bibref|G.998.1|section 11.4.2}} ''Group Rx Cell Loss Count''. + + + + + + + + The achieved upstream differential delay in {{units}} (which might change subject to dynamic link usage conditions). + + + + + + + + + + The achieved downstream differential delay in {{units}} (which might change subject to dynamic link usage conditions). + + + + + + + + + + The number of times that the group was declared ''Unavailable'' during the accumulation period. Corresponds to {{bibref|G.998.1|Section 11.4.3}} ''Group Failure Count''. + + + + + + + + The time in {{units}} during which the group was declared ''Errored'' during the accumulation period. Corresponds to {{bibref|TR-159}} ''oBondingGroup.aGroupPerf**ES''. + + + + + + + + + + The time in {{units}} during which the group was declared ''SeverelyErrored'' during the accumulation period. Corresponds to {{bibref|TR-159}} ''oBondingGroup.aGroupPerf**SES''. + + + + + + + + + + The time in {{units}} during which the group was declared ''Unavailable'' during the accumulation period. Corresponds to {{bibref|TR-159}} ''oBondingGroup.aGroupPerf**UAS''. + + + + + + + + + + + Current quarter hour statistics for this bonding group. + Note: The {{object}} parameters SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + {{list}} Indicates the failure conditions that have occurred during the accumulation period. {{enum}} + Corresponds to {{bibref|G.998.1|section 11.4.3}} ''Current Group Failure Reason''. + + + + + + + Minimum data rate not met + + + + + Differential delay tolerance exceeded + + + + + Insufficient buffers on receiver + + + + + Other failure occurred + + + + + + + + The achieved upstream data rate in {{units}} (which might change subject to dynamic link usage conditions). Corresponds to {{bibref|G.998.1|section 11.4.2}} ''Achieved Aggregate Data Rate''. + + + + + + + + + + The achieved downstream data rate in {{units}} (which might change subject to dynamic link usage conditions). Corresponds to {{bibref|G.998.1|section 11.4.2}} ''Achieved Aggregate Data Rate''. + + + + + + + + + + The total number of upstream packets that were lost at aggregation output from a bonding group during the accumulation period. Corresponds to {{bibref|G.998.1|section 11.4.2}} ''Group Rx Cell Loss Count''. + + + + + + + + The total number of downstream packets that were lost at aggregation output from a bonding group during the accumulation period. Corresponds to {{bibref|G.998.1|section 11.4.2}} ''Group Rx Cell Loss Count''. + + + + + + + + The achieved upstream differential delay in {{units}} (which might change subject to dynamic link usage conditions). + + + + + + + + + + The achieved downstream differential delay in {{units}} (which might change subject to dynamic link usage conditions). + + + + + + + + + + The number of times that the group was declared ''Unavailable'' during the accumulation period. Corresponds to {{bibref|G.998.1|Section 11.4.3}} ''Group Failure Count''. + + + + + + + + The time in {{units}} during which the group was declared ''Errored'' during the accumulation period. Corresponds to {{bibref|TR-159}} ''oBondingGroup.aGroupPerf**ES''. + + + + + + + + + + The time in {{units}} during which the group was declared ''SeverelyErrored'' during the accumulation period. Corresponds to {{bibref|TR-159}} ''oBondingGroup.aGroupPerf**SES''. + + + + + + + + + + The time in {{units}} during which the group was declared ''Unavailable'' during the accumulation period. Corresponds to {{bibref|TR-159}} ''oBondingGroup.aGroupPerf**UAS''. + + + + + + + + + + + Ethernet-based bonding parameters {{bibref|G.998.2}}. + This object MUST be present if, and only if, {{param|#.BondScheme}} is {{enum|Ethernet|#.BondScheme}}. + + + + + {{bibref|G.998.2}} Ethernet-based bonding statistics. + These relate to the {{bibref|G.998.2}} PME (Physical Medium Entity) Aggregation Function (PAF) and to its upper layer interface. PAF lower layer interface statistics are in the {{object|##.BondedChannel.{i}.Ethernet.Stats}} objects. + The CPE MUST reset the Stats parameters either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|##.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|##.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + Number of PAF errors. Corresponds to {{bibref|TR-159}} ''oBondETH.aEthRxErrors''. + + + + + + + + Number of PAF Small Fragment events. Corresponds to {{bibref|TR-159}} ''oBondETH.aEthRxSmallFragments''. + + + + + + + + Number of PAF Large Fragment events. Corresponds to {{bibref|TR-159}} ''oBondETH.aEthRxLargeFragments''. + + + + + + + + Number of PAF Bad Fragment events. Corresponds to {{bibref|TR-159}} ''oBondETH.aEthRxBadFragments''. + + + + + + + + Number of PAF Lost Fragment events. Corresponds to {{bibref|TR-159}} ''oBondETH.aEthRxLostFragments''. + + + + + + + + Number of PAF Late Fragment events. + + + + + + + + Number of PAF Lost Start events. Corresponds to {{bibref|TR-159}} ''oBondETH.aEthRxLostStarts''. + + + + + + + + Number of PAF Lost End events. Corresponds to {{bibref|TR-159}} ''oBondETH.aEthRxLostEnds''. + + + + + + + + Number of PAF Overflow events. Corresponds to {{bibref|TR-159}} ''oBondETH.aEthRxOverflows''. + + + + + + + + Number of pause frames sent, i.e. on the transmit side of the interface. + + + + + + + + Number of CRC errors received, i.e. on the receive side of the interface. + + + + + + + + Number of alignment errors received, i.e. on the receive side of the interface. + + + + + + + + Number of short packets received, i.e. on the receive side of the interface. + + + + + + + + Number of long packets received, i.e. on the receive side of the interface. + + + + + + + + Number of overflow errors received, i.e. on the receive side of the interface. + + + + + + + + Number of frames dropped, e.g. because the receive queue is full. + + + + + + + + + The DSL Diagnostics object. + + + + + This object is to provide diagnostic information for a CPE with an ADSL2 or ADSL2+ modem WAN interface, but MAY also be used for ADSL. + + + + {{datatype|expand}} + + + + + + + + + + + + + + + + {{reference}} This is the interface over which the test is to be performed. + + + + + + + + + + + Downstream actual power spectral density. Interpretation of the value is as defined in ITU-T Rec. G.997.1. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + Upstream actual power spectral density. Interpretation of the value is as defined in ITU-T Rec. G.997.1. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + Downstream actual aggregate transmitter power. Interpretation of the value is as defined in ITU-T Rec. G.997.1. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + Upstream actual aggregate transmitter power. Interpretation of the value is as defined in ITU-T Rec. G.997.1. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + Downstream linear representation scale. Interpretation of the value is as defined in ITU-T Rec. G.997.1. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 0. + + + + + + + + Scaling used to represent the upstream linear channel characteristics. Interpretation of the value is as defined in ITU-T Rec. G.997.1. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 0. + + + + + + + + Number of sub-carriers per sub-carrier group in the downstream direction for {{param|HLINpsds}}. Valid values are 1, 2, 4, and 8. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 1. + + + + + + + + Number of sub-carriers per sub-carrier group in the downstream direction for {{param|HLINpsus}}. Valid values are 1, 2, 4, and 8. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 1. + + + + + + + + Number of sub-carriers per sub-carrier group in the downstream direction for {{param|HLOGpsds}}. Valid values are 1, 2, 4, and 8. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 1. + + + + + + + + Number of sub-carriers per sub-carrier group in the upstream direction for {{param|HLOGpsus}}. Valid values are 1, 2, 4, and 8. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 1. + + + + + + + + {{list}} List items represent downstream logarithmic channel characteristics per sub-carrier group. The maximum number of elements is 256 for G.992.3, and 512 for G.992.5. For G.993.2, the number of elements will depend on the value of {{param|HLOGGds}} but will not exceed 512. Interpretation of the values is as defined in ITU-T Rec. G.997.1. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to ''None''. + Note: {{param}} is measured during initialization and is not updated during Showtime. + + + + + + + + + + + {{list}} List items represent upstream logarithmic channel characteristics per sub-carrier group. The maximum number of elements is 64 for G.992.3 and G.992.5. For G.993.2, the number of elements will depend on the value of {{param|HLOGGus}} but will not exceed 512. Interpretation of the values is as defined in ITU-T Rec. G.997.1. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to ''None''. + Note: {{param}} is measured during initialization and is not updated during Showtime. + + + + + + + + + + + Indicates the number of symbols over which {{param|HLOGpsds}} was measured. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 0. + + + + + + + + Indicates the number of symbols over which {{param|HLOGpsus}} was measured. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 0. + + + + + + + + {{list}} List items represent downstream line attenuation per usable band, as computed during initialization. Number of elements is dependent on the number of downstream bands but will exceed one only for G.993.2. Interpretation of {{param}} is as defined in ITU-T Rec. G.997.1. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + + {{list}} List items represent upstream line attenuation per usable band, as computed during initialization. Number of elements is dependent on the number of upstream bands but will exceed one only for G.993.2. Interpretation of {{param}} is as defined in ITU-T Rec. G.997.1. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + + {{list}} List items represent downstream signal attenuation per usable band, as computed during the L0 (i.e., Showtime) state. Number of elements is dependent on the number of downstream bands but will exceed one only for G.993.2. Interpretation of {{param}} is as defined in ITU-T Rec. G.997.1. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + + {{list}} List items represent upstream signal attenuation per usable band, as computed during the L0 (i.e., Showtime) state. Number of elements is dependent on the number of downstream bands but will exceed one only for G.993.2. Interpretation of {{param}} is as defined in ITU-T Rec. G.997.1. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + + {{list}} List items represent downstream linear channel characteristics per subcarrier group. Maximum number of complex pairs is 256 for G.992.3, and 512 for G.992.5. For G.993.2, the number of pairs will depend on the value of {{param|HLINGds}} but will not exceed 512. Interpretation of the value is as defined in ITU-T Rec. G.997.1. + Note: HLIN is not applicable in PLOAM for G.992.1 or G.992.2. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to ''None''. + + + + + + + + + + + {{list}} List items represent upstream linear channel characteristics per sub-carrier group. Maximum number of complex pairs is 64 for G.992.3, and G.992.5. For G.993.2, the number of pairs will depend on the value of {{param|HLINGus}} but will not exceed 512. Interpretation of the values is as defined in ITU-T Rec. G.997.1. + Note: HLIN is not applicable in PLOAM for G.992.1 or G.992.2. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to ''None''. + + + + + + + + + + + Number of sub-carriers per sub-carrier group in the downstream direction for {{param|QLNpsds}}. Valid values are 1, 2, 4, and 8. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 1. + + + + + + + + Number of sub-carriers per sub-carrier group in the upstream direction for {{param|QLNpsus}}. Valid values are 1, 2, 4, and 8. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 1. + + + + + + + + {{list}} List items represent downstream quiet line noise per subcarrier group. Maximum number of elements is 256 for G.992.3, 512 for G.992.5. For G.993.2, the number of elements will depend on the value of {{param|QLNGds}} but will not exceed 512. Interpretation of the value is as defined in ITU-T Rec. G.997.1. + Note: QLN is not applicable in PLOAM for G.992.1 or G.992.2. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to ''None''. + + + + + + + + + + + {{list}} List items represent upstream quiet line noise per subcarrier group. The maximum number of elements is 64 for G.992.3, and G.992.5. For G.993.2, the number of elements will depend on the value of {{param|QLNGus}} but will not exceed 512. Interpretation of the values is as defined in ITU-T Rec. G.997.1. + Note: QLN is not applicable in PLOAM for G.992.1 or G.992.2. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to ''None''. + + + + + + + + + + + Indicates the number of symbols over which {{param|QLNpsds}} was measured. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 0. + + + + + + + + Indicates the number of symbols over which {{param|QLNpsus}} was measured. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 0. + + + + + + + + Number of sub-carriers per sub-carrier group in the downstream direction for {{param|SNRpsds}}. Valid values are 1, 2, 4, and 8. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 1. + + + + + + + + Number of sub-carriers per sub-carrier group in the upstream direction for {{param|SNRpsus}}. Valid values are 1, 2, 4, and 8. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 1. + + + + + + + + {{list}} List items represent downstream SNR per subcarrier group. Maximum number of elements is 256 for G.992.3, 512 for G.992.5. For G.993.2, the number of elements will depend on the value of {{param|SNRGds}} but will not exceed 512. Interpretation of the value is as defined in ITU-T Rec. G.997.1. Interpretation of the value is as defined in ITU-T Rec. G.997.1. + Note: SNRps is not applicable in PLOAM for G.992.1 or G.992.2. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to ''None''. + + + + + + + + + + + {{list}} List items represent upstream SNR per subcarrier group. The maximum number of elements is 64 for G.992.3, and G.992.5. For G.993.2, the number of elements will depend on the value of {{param|SNRGus}} but will not exceed 512. Interpretation of the values is as defined in ITU-T Rec. G.997.1. + Note: SNRps is not applicable in PLOAM for G.992.1 or G.992.2. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to ''None''. + + + + + + + + + + + Indicates the number of symbols over which {{param|SNRpsds}} was measured. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 0. + + + + + + + + Indicates the number of symbols over which {{param|SNRpsus}} was measured. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 0. + + + + + + + + {{list}} List items represent downstream bit allocation per subcarrier group. Maximum number of elements is 256 for G.992.3, 512 for G.992.5. Interpretation of the value is as defined in ITU-T Rec. {{bibref|G.997.1}}. + + + + + + + + + + + {{list}} List items represent upstream bit allocation per subcarrier group. Maximum number of elements is 256 for G.992.3, 512 for G.992.5. Interpretation of the value is as defined in ITU-T Rec. {{bibref|G.997.1}}. + + + + + + + + + + + + This object contains DSL Single Ended Line Test - Physical Medium Dependent (SELT-PMD) Uncalibrated Echo Response (UER) diagnostics parameters. + This object is for the CPE, aka the Transmission Unit - Remote end (TU-R). + Reference: ITU-T Recommendation {{bibref|G.996.2|Clause A.2, SELT-PMD management entity}}. + + + + {{datatype|expand}} + + + + + + + + + + + + + + {{reference}} This is the interface over which the test is to be performed. + + + + + + + + + + + This parameter is the SELT UER maximum measurement duration (MMD) measured in {{units}}. + This parameter is defined as SELT_UER_MMD_R in ITU-T Recommendation {{bibref|G.996.2|Clause A.2.1.1}}. + + + + + + + + + + + This parameter indicates if the option for extended bandwidth SELT is applied ({{true}}) or not applied ({{false}}). + If the option for extended bandwidth SELT is applied to UER, then {{param|UERGroupSize}} has three valid values: 1, 2 and 12. + If the option for extended bandwidth SELT is not applied to UER, then {{param|UERGroupSize}} has two valid values: 1 and 2. + {{param|UERGroupSize}} is reported if the option for extended bandwidth UER SELT is supported; otherwise, reporting of the group size is optional. + + + + + + + + The Uncalibrated Echo Response (UER) [a(0),b(0)], [a(1),b(1)], ... + {{list|with each list item consisting of the following}} + {{datatype|expand}} + The value of UER at frequency i*{{param|UERGroupSize}}*Df = ({{param|UERScaleFactor}}/(2^31))*(a(i)+j*b(i))/(2^31) where Df = 4.3125 kHz. + This parameter is defined as CPE SELT uncalibrated echo response (SELT-UER-R) in ITU-T Recommendation {{bibref|G.996.2|Clause A.2.2.1}}. + + + + + + + + + The Uncalibrated Echo Response (UER) scale factor. + This parameter is defined as part of the CPE SELT uncalibrated echo response (SELT-UER-R) in ITU-T Recommendation {{bibref|G.996.2|Clause A.2.2.1}}. + Note that the scale factor is chosen such that max(abs(a(i)), abs(b(i))) over all i is equal to 2^31 - 1, which doesn't allow {{param}} to be zero. + + + + + + + + The Uncalibrated Echo Response (UER) group size, UER_G. In units of {{units}}. + This parameter is defined as part of the CPE SELT uncalibrated echo response (SELT-UER-R) in ITU-T Recommendation {{bibref|G.996.2|Clause A.2.2.2}}. + + + + + + + + + + + + This parameter represents the variance of the {{param|UER}}. List items represent v(i), for values of i starting at i=0. The variance of the uncalibrated echo response for frequency i*{{param|UERGroupSize}}*Df is VAR(i*{{param|UERGroupSize}}*Df) = 3 - v(i)/2 dB where Df = 4.3125 kHz. + This parameter is defined as SELT variance of uncalibrated echo response R (SELT UER-VAR-R) in {{bibref|G.996.2|Clause A.2.2.2}}. + + + + + + + + + + This object contains DSL Single Ended Line Test - Physical Medium Dependent (SELT-PMD) Quiet Line Noise (QLN) diagnostics parameters. + This object is for the CPE, aka the Transmission Unit - Remote end (TU-R). + Reference: ITU-T Recommendation {{bibref|G.996.2|Clause A.2, SELT-PMD management entity}}. + + + + {{datatype|expand}} + + + + + + + + + + + + + + {{reference}} This is the interface over which the test is to be performed. + + + + + + + + + + + This parameter is the SELT QLN maximum measurement duration (MMD) measured in {{units}}. + This parameter is defined as SELT_QLN_MMD_R in ITU-T Recommendation {{bibref|G.996.2|Clause A.2.1.2}}. + + + + + + + + + + + This parameter indicates if the option for extended bandwidth SELT is applied ({{true}}) or not applied ({{false}}). + If the option for extended bandwidth SELT is applied to QLN, then {{param|QLNGroupSize}} has three valid values: 1, 2 and 12. + If the option for extended bandwidth SELT is not applied to QLN, then {{param|QLNGroupSize}} has two valid values: 1 and 2. + {{param|QLNGroupSize}} is reported if the option for extended bandwidth QLN SELT is supported; otherwise, reporting of the group size is optional. + + + + + + + + {{list}} List items represent SELT quiet line noise (QLN) per subcarrier group. + Each list element is n(i), with i starting at 0. The value of QLN at frequency i*{{param|QLNGroupSize}}*Df with Df=4.3125 kHz is defined as QLN(i*{{param|QLNGroupSize}}*Df) = -23 - (n(i)/2) dBm/Hz. This data format supports a QLN granularity of 0.5 dB and an dynamic range of -150 to -23 dBm/Hz. + Interpretation of the SELT_QLN_R value is defined in {{bibref|G.996.2|Clause A.2.2.3}}. + + + + + + + + + + + This parameter represents the Quiet Line Noise (QLN) group size. In units of {{units}}. + This parameter is defined as part of the SELT_QLN_R in ITU-T Recommendation {{bibref|G.996.2|Clause A.2.2.4}}. + + + + + + + + + + + + + This object contains DSL Single-Ended Line Test - Processed (SELT-P) diagnostics parameters. + This object is for the CPE, aka the Transmission Unit - Remote end (TU-R). + Reference: ITU-T Recommendation {{bibref|G.996.2}}. + + + + {{datatype|expand}} + + + + + + + + + + + + + + {{reference}} This is the interface over which the test is to be performed. + + + + + + + + + + + Capacity estimate calculation enabling: This parameter is expressed as a boolean and takes the value {{false}} if xDSL performance estimation is not required, {{true}} otherwise. + The capacity estimate calculation enabling parameter is defined in {{bibref|G.996.2|Clause B.2.1.1}}. + + + + + + + + The capacity estimate signal Power Spectral Density (PSD): + {{list|with each list item consisting of the following}} + {{datatype|expand}} + This capacity estimate signal PSD parameter is defined in ITU-T Recommendation {{bibref|G.996.2|Clause B.2.1.2}}. + + + + + + + + + The capacity estimate noise Power Spectral Density (PSD): + {{list|with each list item consisting of the following}} + {{datatype|expand}} + This capacity estimate noise PSD parameter is defined in ITU-T Recommendation {{bibref|G.996.2|Clause B.2.1.3}}. + + + + + + + + + The capacity estimate target noise margin. The range of valid values is 0 to 31 dB, in steps of {{units}}. + This capacity estimate target noise margin parameter is defined in ITU-T Recommendation {{bibref|G.996.2|Clause B.2.1.4}}. + + + + + + + + + + + Loop termination indicator. {{enum}} + This parameter is defined as LOOP-TERM in ITU-T Recommendation {{bibref|G.996.2|Clause B.1.1.1}}. + + + + + + + + This value has been removed from the ITU-T Recommendation. + + + + + + + + + + This parameter is the loop length with units of {{units}}. + This parameter is defined as the loop length parameter LOOP_LEN in ITU-T Recommendation {{bibref|G.996.2|Clause B.1.1.2}}. + + + + + + + + + + + {{list}} List items represent paired parameters [LOOP_SEG_LEN, LOOP_SEG_BTAP] representing a concatenation of loop segment types, where LOOP_SEG_LEN represents the length of the segment in meters; and LOOP_SEG_BTAP is a string that identifies the segment type as either "in series" or "bridged tap". + The first loop segment in the list shall be the segment connected to the SELT-PMD block, subsequent loop segments in the list shall describe the loop in the direction toward the far-end loop termination. + This Loop Topology parameter is defined in ITU-T Recommendation {{bibref|G.996.2|Clause B.1.1.3}}. + + + + + + + + + + + Specifies the list of attenuation characteristics. + {{list|with each list item consisting of the following}} + {{datatype|expand}} + TFlog(i * {{param|TFlogGroupSize}} * Df) is represented by an integer k, 0 <= k <= 1022, where TFlog(i * {{param|TFlogGroupSize}} * Df) = 6.0 - k * 0.1. The special value of k of 1023 is used to indicate that no measurement could be done for this subcarrier because the attenuation is out of the range that can be represented. + The attenuation characteristics TFlog(f) parameter is defined in ITU-T Recommendation {{bibref|G.996.2|Clause B.1.1.6}}. + + + + + + + + + This parameter represents the Transfer Function Log (TFlog) group size. In units of {{units}}. + This parameter is defined as part of the SELT attenuation characteristics, {{param|AttenuationCharacteristics}}, defined in ITU-T Recommendation {{bibref|G.996.2|Clause B.1.1.6}}. + + + + + + + + + + + + Missing micro-filter or splitter: This parameter is a binary indication of a missing or incorrectly installed splitter or micro-filter at the U-R reference point. A value of true represents a missing splitter. + The missing micro-filter or splitter parameter is defined in {{bibref|G.996.2|Clause B.1.1.4}}. + + + + + + + + Capacity Estimate: {{list}} This parameter represents the downstream and/or upstream capacity estimates in {{units}}. + If only one value is supplied, then it's not specified whether it's the downstream value, the upstream value or some combination of the two. If two values are supplied, then the first is the downstream value and the second is the upstream value. + The capacity estimate parameters are defined in {{bibref|G.996.2|Clause B.1.1.7}}. + + + + + + + + + + + + The PacketCaptureDiagnostics object. This diagnostic is used to record packet capture data on a valid (layer 2 or above) interface in libpcap or pcapng format. + + + + {{datatype|expand}} + + + + + + + + + + + + + + + + {{numentries}} + + + + + + + + A reference to a (layer 2 or above) interface object that will be the target of this packet capture diagnostic. + + + + + + + + + + + This indicates whether the network trace will be recorded in libpcap {{bibref|LIBPCAP}} or pcapng format, and is dependent on the underlying method of performing a network trace. + + + + + + The packet data is recorded in libpcap {{bibref|LIBPCAP}} format. + + + + + The packet data is recorded in pcapng format. + + + + + + + + The duration in {{units}} to copy packets to the file target. The diagnostic completes when either the {{param}}, {{param|PacketCount}}, or {{param|ByteCount}} conditions are met. + + + + + + + + + + + The maximum number of packets to record to the file target. A value of zero (0) indicates no limit. The diagnostic completes when the {{param|Duration}}, {{param|ByteCount}}, or {{param}} conditions are met. + + + + + + + + The maximum number of bytes to record to the file target. A value of zero (0) indicates no limit. The diagnostic completes when {{param|Duration}}, {{param|PacketCount}} or {{param}} conditions are met. + + + + + + + + The {{datatype}} specifying the destination file location. HTTP and HTTPS transports MUST be supported. Other transports MAY be supported. + + + + + + + + A ({{bibref|BPF}}) formatted expression used to restrict the types of network packets that are recorded to {{param|FileTarget}}. + + + + + + + + + + Username to be used by the Agent to authenticate with the file location. This string is set to {{empty}} if no authentication is required. + + + + + + + + + + Password to be used by the Agent to authenticate with the file location. This string is set to {{empty}} if no authentication is required. When read, this parameter returns an empty string, regardless of the actual value. + + + + + + + Results for individual packet capture diagnostics. Packet capture files whose FileLocation is local to the system SHOULD be deleted when the next diagnostic is run, or upon a system reboot. + + + + The {{datatype}} specifying the resulting file location of the packet capture record that triggered this result. This MAY be different than the location specified in FileTarget. + + + + + + + + The local system time at which the capture was started. + + + + + + + + The local system time at which the capture was completed. + + + + + + + + The number of packets recorded to the file target. + + + + + + + + + This object models FAST (defined in ITU Recommendation {{bibref|G.9701}}) lines. Each {{object|Line}} models a layer 1 FAST Line interface. + + + + {{numentries}} + + + + + + + + + FAST Line table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). + This table models physical FAST lines. + + + + + + + + + + Enables or disables the FAST line. This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + The current operational state of the FAST line (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the FAST line as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the FAST line entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + Note: Since {{object}} is a layer 1 interface, it is expected that {{param}} will not be used. + + + + + + + + + + + + + Indicates whether the interface points towards the Internet ({{true}}) or towards End Devices ({{false}}). + For example: + * For an Internet Gateway Device, {{param}} will be {{true}} for all WAN interfaces and {{false}} for all LAN interfaces. + * For a standalone WiFi Access Point that is connected via Ethernet to an Internet Gateway Device, {{param}} will be {{true}} for the Ethernet interface and {{false}} for the WiFi Radio interface. + * For an End Device, {{param}} will be {{true}} for all interfaces. + + + + + + + + A string identifying the version of the modem firmware currently installed for this interface. This is applicable only when the modem firmware is separable from the overall CPE software. + + + + + + + + + + Status of the FAST physical link. {{enum}} + When {{param}} is {{enum|Up}}, {{param|Status}} is expected to be {{enum|Up|Status}}. When {{param}} is {{enum|Initializing}} or {{enum|EstablishingLink}} or {{enum|NoSignal}} or {{enum|Disabled}}, {{param|Status}} is expected to be {{enum|Down|Status}}. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + + {{list}} List items indicate which FAST profiles are allowed on the line. {{enum}} + Note: In G.997.2, this parameter is called PROFILES. See ITU-T Recommendation {{bibref|G.997.2}}. + + + + + + + + + + + + Indicates which FAST profile is currently in use on the line. + + + + + + + + + + The power management state of the line. {{enum}} + Note: See ITU-T Recommendation {{bibref|G.9701}}. + + + + + + + + + + + + + The success failure cause of the initialization. An enumeration of the following integer values: + * 0: Successful + * 1: Configuration error. Configuration error. This error occurs if the line cannot reach L0 state due to a mismatch of configuration and FTU capabilities. + * 2: Configuration not feasible on the line. This error occurs if the line cannot reach the L0 state due to a mismatch of configuration of line and noise characteristics. + * 3: Communication problem. This error occurs, for example, due to corrupted messages or bad syntax messages or if no common mode can be selected in the G.994.1 handshaking procedure or due to a timeout. + * 4: No far-end FTU detected. This error occurs if the far-end FTU is not powered or not connected or if the line is too long to allow detection of a far-end FTU. + * 5: Any other or unknown initialization failure cause. + Note: In G.997.2, this parameter is called "Initialization success/failure cause". See Clause 7.20.2.1 of ITU-T + Recommendation {{bibref|G.997.2}}. + + + + + + + + + + This parameter reports the estimate of the electrical length expressed in {{units}}, as determined by the FTU-R (see clause 7.3.1.4.2.1/{{bibref|G.9701}}) and conveyed in the R-MSG1 initialization message (see clause 12.3.3.2.3/{{bibref|G.9701}}). The value is coded as an unsignedInt in the range 0 (coded as 0) to 128 dB (coded as 1280) in steps of {{units}}. + Note: This parameter is defined as UPBOKLE-R in Clause 7.10.4.2 of ITU-T Recommendation {{bibref|G.997.2}}. + + + + + + + + + + + This parameter reports the downstream signal count of the last transmitted initialization signal in the last full or short initialization performed on the line. The valid values are 0..21. The downstream signal count is defined in clause 12.3.1/{{bibref|G.9701}}. + Note: See clause 7.10.2.2 ITU-T Recommendation {{bibref|G.997.2}}. + + + + + + + + + + This parameter reports the upstream signal count of the last transmitted initialization signal in the last full or short initialization performed on the line. The valid values are 0..21. The upstream signal count is defined in clause 12.3.1/{{bibref|G.9701}}. + Note: See clause 7.10.2.3 ITU-T Recommendation {{bibref|G.997.2}}. + + + + + + + + + + This parameter reports the electrical length that would have been sent from the FTU-O to the FTU-R if the electrical length was not forced by the DPU-MIB. If the electrical length is not forced by the DPU-MIB, then this object reports the final electrical length, as determined by the FTU-O (see clause 7.3.1.4.2.1/{{bibref|G.9701}}) and conveyed in the O-UPDATE initialization message (see clause 12.3.3.2.4/{{bibref|G.9701}}). + Note: See clause 7.10.4.1 in ITU-T Recommendation {{bibref|G.997.2}}. + + + + + + + + + + + Signifies the line pair that the modem is using to connection. {{param}} = 1 is the innermost pair. + + + + + + + + + + This parameter reports the attainable net data rate expressed in {{units}} as defined in clause 11.4.1.1.2/{{bibref|G.9701}}. + Note: This parameter is related to the G.997.2 parameter ATTNDRus. See clause 7.11.2.1 ITU-T Recommendation {{bibref|G.997.2}}. + + + + + + + + + + This parameter reports the attainable net data rate expressed in {{units}} as defined in clause 11.4.1.1.2/{{bibref|G.9701}}. + Note: This parameter is related to the G.997.2 parameter ATTNDRds. See clause 7.11.2.1 ITU-T Recommendation {{bibref|G.997.2}}. + + + + + + + + + + This parameter reports the signal-to-noise ratio margin (as defined in clause 9.8.3.2/{{bibref|G.9701}} and 11.4.1.3/{{bibref|G.9701}}) in the upstream direction. A special value indicates that the signal-to-noise ratio margin is out of the range to be represented. The parameter is expressed in {{units}}. + Note: In G.997.2, this parameter is called SNRMus. See ITU-T Recommendation {{bibref|G.997.2}}. + + + + + + + + + + This parameter reports the signal-to-noise ratio margin (as defined in clause 9.8.3.2/{{bibref|G.9701}} and 11.4.1.3/{{bibref|G.9701}}) in the upstream direction. A special value indicates that the signal-to-noise ratio margin is out of the range to be represented. The parameter is expressed in {{units}}. + Note: In G.997.2, this parameter is called SNRMds. See ITU-T Recommendation {{bibref|G.997.2}}. + + + + + + + + + + The current upstream signal loss (expressed in {{units}}). + + + + + + + + + + The current downstream signal loss (expressed in {{units}}). + + + + + + + + + + The current output power at the CPE's FAST line (expressed in {{units}}). + + + + + + + + + + The current received power at the CPE's FAST line (expressed in {{units}}). + + + + + + + + + + This parameter reports the signal-to-noise margin for the robust management channel (RMC) in the downstream direction (express in {{units}}). A special value (-512) indicates that the signal-to-noise ratio margin for the RMC is out of the range to be represented. This parameter is defined in clauses 7.10.12.1 of ITU-T Recommendation {{bibref|G.997.2}}. + + + + + + + + + + This parameter reports the signal-to-noise margin for the robust management channel (RMC) in the upstream direction (express in {{units}}). A special value (-512) indicates that the signal-to-noise ratio margin for the RMC is out of the range to be represented. This parameter is defined in clauses 7.10.12.2 of ITU-T Recommendation {{bibref|G.997.2}}. + + + + + + + + + + {{list}} List items report the bit allocation values on RMC sub-carriers in RMC symbols in the downstream direction. Each pair composes of a sub-carrier index from 0..4095 and an 8 bit allocation value. There are maximum 512 pairs. This parameter is defined in clause 7.10.12.3 of ITU-T Recommendation {{bibref|G.997.2}}. + + + + + + + + + + + {{list}} List items report the bit allocation values on RMC sub-carriers in RMC symbols in the upstream direction. Each pair composes of a sub-carrier index from 0..4095 and an 8 bit allocation value. There are maximum 512 pairs. This parameter is defined in clause 7.10.12.4 of ITU-T Recommendation {{bibref|G.997.2}}. + + + + + + + + + + + This indicates whether FEXT cancellation in the downstream direction from all the other vectored lines into the line in the vectored group is enabled (TRUE) or disabled (FALSE). This parameter is defined as FEXT_TO_CANCEL_ENABLEds in clause 7.1.7.1 of ITU Recommendation {{bibref|G.997.2}}. + + + + + + + + This indicates whether FEXT cancellation in the upstream direction from all the other vectored lines into the line in the vectored group is enabled (TRUE) or disabled (FALSE). This parameter is defined as FEXT_TO_CANCEL_ENABLEds in clause 7.1.7.1 of ITU Recommendation {{bibref|G.997.2}}. + + + + + + + + This parameter reports the expected throughput rate expressed in {{units}} as defined in clause 7.11.1.2 of ITU-T Recommendation {{bibref|G.997.2}} + + + + + + + + + + This parameter reports the expected throughput rate expressed in {{units}} as defined in clause 7.11.1.2 of ITU-T Recommendation {{bibref|G.997.2}} + + + + + + + + + + This parameter reports the attainable expected throughput expressed in {{units}} as defined in clause 7.11.2.2 of ITU-T Recommendation {{bibref|G.997.2}} + + + + + + + + + + This parameter reports the attainable expected throughput expressed in {{units}} as defined in clause 7.11.2.2 of ITU-T Recommendation {{bibref|G.997.2}} + + + + + + + + + + This parameter reports the minimum error free throughput value expressed in {{units}} computed from power up as defined in clause 11.4.1.1.3 of ITU-T Recommendation {{bibref|G.9701}} + + + + + + + + + + + Throughput statistics for this interface. + The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + The total number of bytes transmitted out of the interface, including framing characters. + + + + + + + + The total number of bytes received on the interface, including framing characters. + + + + + + + + The total number of packets transmitted out of the interface. + + + + + + + + The total number of packets received on the interface. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + FAST-specific statistic. The Number of {{units}} since the beginning of the period used for collection of {{object|Total}} statistics. + Statistics SHOULD continue to be accumulated across CPE reboots, though this might not always be possible. + Note: {{param}} SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + + + + + + + FAST-specific statistic. The Number of {{units}} since the most recent DSL Showtime - the beginning of the period used for collection of {{object|Showtime}} statistics. + Showtime is defined as successful completion of the DSL link establishment process. The ''Showtime'' statistics are those collected since the most recent establishment of the DSL link. + Note: {{param}} SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + + + + + + + FAST-specific statistic. The Number of {{units}} since the second most recent DSL Showtime-the beginning of the period used for collection of {{object|LastShowtime}} statistics. + If the CPE has not retained information about the second most recent Showtime (e.g., on reboot), the start of ''LastShowtime'' statistics MAY temporarily coincide with the start of ''Showtime'' statistics. + Note: {{param}} SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + + + + + + + FAST-specific statistic. The Number of {{units}} since the beginning of the period used for collection of {{object|CurrentDay}} statistics. + The CPE MAY align the beginning of each ''CurrentDay'' interval with days in the UTC time zone, but is not required to do so. + Statistics SHOULD continue to be accumulated across CPE reboots, though this might not always be possible. + Note: {{param}} SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + + + + + + + FAST-specific statistic. The Number of {{units}} since the beginning of the period used for collection of {{object|QuarterHour}} statistics. + The CPE MAY align the beginning of each ''QuarterHour'' interval with real-time quarter-hour intervals, but is not required to do so. + Statistics SHOULD continue to be accumulated across CPE reboots, though this might not always be possible. + Note: {{param}} SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + + + + + + + + This object contains DSL line total statistics. + Note: The {{object}} parameters SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + Total number of errored {{units}} as defined in ITU-T Rec. {{bibref|G.997.2}}. An errored second (ES) is declared if, during a 1-second interval, there are one or more crc anomalies, or one or more los defects, or one or more lor defects, or one or more lpr primitives. + + + + + + + + + + Total number of severely errored {{units}} as defined in ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + + + Total number of loss of signal {{units}} (LOSS) as defined in ITU-T Rec. {{bibref|G.997.2}}. A LOSS is declared if, during a 1-second interval, there are one or more los defects. + + + + + + + + + + Total number of loss of RMC {{units}} (LORS) as defined in ITU-T Rec. {{bibref|G.997.2}}. A LORS is declared if, during a 1-second interval, there are one or more lor defects. + + + + + + + + + + Total number of unavailable {{units}} (UAS) as defined in ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + + + This parameter reports a count of uncorrected DTU anomalies (rtx_uc). This parameter is defined in clause 7.8.5 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of retransmitted DTU anomalies (rtx_tx). This parameter is defined in clause 7.8.6 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of the successful bit swap (BSW) primitives. This parameter is defined as success_BSW in clause 7.7.20 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of the successful autonomous SRA (seamless rate adaptation) primitives. This parameter is defined as success_SRA in clause 7.7.21 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of the successful FRA (fast rate adaptation) primitives. This parameter is defined as success_FRA in clause 7.7.22 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of the successful RPA (RMC parameter adjustment) primitives. This parameter is defined as success_RPA in clause 7.7.23 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of the successful TIGA (transmitter initiated gain adjustment) primitives. This parameter is defined as success_TIGA in clause 7.7.24 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + + This object contains FAST line statistics since the most recent showtime. + Note: The Total parameters SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + Total number of errored {{units}} as defined in ITU-T Rec. {{bibref|G.997.2}}. An errored second (ES) is declared if, during a 1-second interval, there are one or more crc anomalies, or one or more los defects, or one or more lor defects, or one or more lpr primitives. + + + + + + + + + + Total number of severely errored {{units}} as defined in ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + + + Total number of loss of signal {{units}} (LOSS) as defined in ITU-T Rec. {{bibref|G.997.2}}. A LOSS is declared if, during a 1-second interval, there are one or more los defects. + + + + + + + + + + Total number of loss of RMC {{units}} (LORS) as defined in ITU-T Rec. {{bibref|G.997.2}}. A LORS is declared if, during a 1-second interval, there are one or more lor defects. + + + + + + + + + + Total number of unavailable {{units}} (UAS) as defined in ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + + + This parameter reports a count of uncorrected DTU anomalies (rtx_uc). This parameter is defined in clause 7.8.5 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of retransmitted DTU anomalies (rtx_tx). This parameter is defined in clause 7.8.6 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of the successful bit swap (BSW) primitives. This parameter is defined as success_BSW in clause 7.7.20 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of the successful autonomous SRA (seamless rate adaptation) primitives. This parameter is defined as success_SRA in clause 7.7.21 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of the successful FRA (fast rate adaptation) primitives. This parameter is defined as success_FRA in clause 7.7.22 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of the successful RPA (RMC parameter adjustment) primitives. This parameter is defined as success_RPA in clause 7.7.23 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of the successful TIGA (transmitter initiated gain adjustment) primitives. This parameter is defined as success_TIGA in clause 7.7.24 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + + This object contains FAST line statistics since the second most recent showtime. + Note: The Total parameters SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + Total number of errored {{units}} as defined in ITU-T Rec. {{bibref|G.997.2}}. An errored second (ES) is declared if, during a 1-second interval, there are one or more crc anomalies, or one or more los defects, or one or more lor defects, or one or more lpr primitives. + + + + + + + + + + Total number of severely errored {{units}} as defined in ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + + + Total number of loss of signal {{units}} (LOSS) as defined in ITU-T Rec. {{bibref|G.997.2}}. A LOSS is declared if, during a 1-second interval, there are one or more los defects. + + + + + + + + + + Total number of loss of RMC {{units}} (LORS) as defined in ITU-T Rec. {{bibref|G.997.2}}. A LORS is declared if, during a 1-second interval, there are one or more lor defects. + + + + + + + + + + Total number of unavailable {{units}} (UAS) as defined in ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + + + This parameter reports a count of uncorrected DTU anomalies (rtx_uc). This parameter is defined in clause 7.8.5 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of retransmitted DTU anomalies (rtx_tx). This parameter is defined in clause 7.8.6 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of the successful bit swap (BSW) primitives. This parameter is defined as success_BSW in clause 7.7.20 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of the successful autonomous SRA (seamless rate adaptation) primitives. This parameter is defined as success_SRA in clause 7.7.21 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of the successful FRA (fast rate adaptation) primitives. This parameter is defined as success_FRA in clause 7.7.22 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of the successful RPA (RMC parameter adjustment) primitives. This parameter is defined as success_RPA in clause 7.7.23 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of the successful TIGA (transmitter initiated gain adjustment) primitives. This parameter is defined as success_TIGA in clause 7.7.24 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + + This object contains FAST line statistics accumulated during the current day. + Note: The Total parameters SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + Total number of errored {{units}} as defined in ITU-T Rec. {{bibref|G.997.2}}. An errored second (ES) is declared if, during a 1-second interval, there are one or more crc anomalies, or one or more los defects, or one or more lor defects, or one or more lpr primitives. + + + + + + + + + + Total number of severely errored {{units}} as defined in ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + + + Total number of loss of signal {{units}} (LOSS) as defined in ITU-T Rec. {{bibref|G.997.2}}. A LOSS is declared if, during a 1-second interval, there are one or more los defects. + + + + + + + + + + Total number of loss of RMC {{units}} (LORS) as defined in ITU-T Rec. {{bibref|G.997.2}}. A LORS is declared if, during a 1-second interval, there are one or more lor defects. + + + + + + + + + + Total number of unavailable {{units}} (UAS) as defined in ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + + + This parameter reports a count of uncorrected DTU anomalies (rtx_uc). This parameter is defined in clause 7.8.5 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of retransmitted DTU anomalies (rtx_tx). This parameter is defined in clause 7.8.6 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of the successful bit swap (BSW) primitives. This parameter is defined as success_BSW in clause 7.7.20 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of the successful autonomous SRA (seamless rate adaptation) primitives. This parameter is defined as success_SRA in clause 7.7.21 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of the successful FRA (fast rate adaptation) primitives. This parameter is defined as success_FRA in clause 7.7.22 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of the successful RPA (RMC parameter adjustment) primitives. This parameter is defined as success_RPA in clause 7.7.23 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of the successful TIGA (transmitter initiated gain adjustment) primitives. This parameter is defined as success_TIGA in clause 7.7.24 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + + This object contains FAST line statistics accumulated during the current quarter hour. + Note: The Total parameters SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + Total number of errored {{units}} as defined in ITU-T Rec. {{bibref|G.997.2}}. An errored second (ES) is declared if, during a 1-second interval, there are one or more crc anomalies, or one or more los defects, or one or more lor defects, or one or more lpr primitives. + + + + + + + + + + Total number of severely errored {{units}} as defined in ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + + + Total number of loss of signal {{units}} (LOSS) as defined in ITU-T Rec. {{bibref|G.997.2}}. A LOSS is declared if, during a 1-second interval, there are one or more los defects. + + + + + + + + + + Total number of loss of RMC {{units}} (LORS) as defined in ITU-T Rec. {{bibref|G.997.2}}. A LORS is declared if, during a 1-second interval, there are one or more lor defects. + + + + + + + + + + Total number of unavailable {{units}} (UAS) as defined in ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + + + This parameter reports a count of uncorrected DTU anomalies (rtx_uc). This parameter is defined in clause 7.8.5 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of retransmitted DTU anomalies (rtx_tx). This parameter is defined in clause 7.8.6 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of the successful bit swap (BSW) primitives. This parameter is defined as success_BSW in clause 7.7.20 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of the successful autonomous SRA (seamless rate adaptation) primitives. This parameter is defined as success_SRA in clause 7.7.21 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of the successful FRA (fast rate adaptation) primitives. This parameter is defined as success_FRA in clause 7.7.22 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of the successful RPA (RMC parameter adjustment) primitives. This parameter is defined as success_RPA in clause 7.7.23 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of the successful TIGA (transmitter initiated gain adjustment) primitives. This parameter is defined as success_TIGA in clause 7.7.24 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + + This object contains the FAST line test parameters that are available during the L0 (i.e., Showtime) state. + + + + Reports the number of sub-carriers in any one sub-carrier group used to represent the downstream SNR(f) values. Valid values are 1, 2, 4, and 8. + Note: In ITU-T G.9701-2014, the only valid value is G = 1. See clause 7.10.8.2 ITU-T Recommendation {{bibref|G.997.2}}. + + + + + + + + Reports the number of sub-carriers in any one sub-carrier group used to represent the upstream SNR(f) values. Valid values are 1, 2, 4, and 8. + Note: In ITU-T G.9701-2014, the only valid value is G = 1. See clause 7.10.8.5 ITU-T Recommendation {{bibref|G.997.2}}. + + + + + + + + {{list}} Reports the downstream SNR(f) values. A special value indicates that no measurement could be done for this sub-carrier group because it is out of the downstream MEDLEY set or its transmit power is zero. The number of elements will depend on the value of SNRGds. Interpretation of the values is as defined in clause 11.4.1.2.2.of ITU-T Rec. {{bibref|G.9701}}. + Note: See clause 7.10.8.3 of ITU-T Recommendation {{bibref|G.997.2}}. + + + + + + + + + + + {{list}} Reports the upstream SNR(f) values. A special value indicates that no measurement could be done for this sub-carrier group because it is out of the downstream MEDLEY set or its transmit power is zero. The number of elements will depend on the value of SNRGds. Interpretation of the values is as defined in clause 11.4.1.2.2.of ITU-T Rec. {{bibref|G.9701}}. + Note: See clause 7.10.8.6 of ITU-T Recommendation {{bibref|G.997.2}}. + + + + + + + + + + + Reports the number of symbols used to measure the downstream SNR(f) values. The valid values 0..65535. + Note: See clause 7.10.8.1 of ITU-T Recommendation {{bibref|G.997.2}}. + + + + + + + + Reports the number of symbols used to measure the upstream SNR(f) values. The valid values 0..65535. + Note: See clause 7.10.8.4 of ITU-T Recommendation {{bibref|G.997.2}}. + + + + + + + + Reports the actual INP against SHINE as defined in clause 11.4.1.1.7/{{bibref|G.9701}}. A special value indicates an actual INP against SHINE of 2047 symbols or higher. The valid values are 0..2046 and 2047 is the special value. + Note: See ITU-T Recommendation {{bibref|G.997.2}}. + + + + + + + + Reports the DTU FEC codeword length (expressed in 1 byte unit) as defined in clause 9.3/{{bibref|G.9701}}. The valid range is 32..255. + Note: See clause 7.11.4.1 ITU-T Recommendation {{bibref|G.997.2}}. + + + + + + + + Reports the DTU FEC codeword redundancy as defined in clause 9.3/{{bibref|G.9701}}. + Note: See ITU-T Recommendation {{bibref|G.997.2}}. + + + + + + + + Reports the current physical layer aggregate data rate (expressed in {{units}}) of the upstream FAST as defined in clause 11.4.1.1.1/{{bibref|G.9701}}. + The current physical layer aggregate data rate (expressed in Kbps) of the upstream FAST connection. The valid values are 0..4294967295(0 to 232-1 kbit/s). + + + + + + + + + + Reports the current physical layer aggregate data rate (expressed in {{units}}) of the upstream FAST as defined in clause 11.4.1.1.1/{{bibref|G.9701}}. + The current physical layer aggregate data rate (expressed in Kbps) of the downstream FAST connection. The valid values are 0..4294967295(0 to 232-1 kbit/s). + + + + + + + + + + Reports the actual INP against REIN as defined in clause 11.4.1.1.8/{{bibref|G.9701}}. A special value indicates an actual INP against REIN of 63 symbols or higher. The valid range is 0..62 symbols, and 63 is the special value. + + + + + + + + + This object models optical interface technologies. It defines an {{object|Interface}} object that models a layer 1 optical interface that is capable of transporting Ethernet packets. The data model definition is based on parts of {{bibref|G.988}}. + + + + {{numentries}} + + + + + + + + + Optical interface table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). This table models physical optical interfaces. + + + + + + + + + + Enables or disables the optical interface. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + The current operational state of the optical interface (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the optical interface as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the optical interface entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + Note: Since {{object}} is a layer 1 interface, it is expected that {{param}} will not be used. + + + + + + + + + + + + + Indicates whether the interface points towards the Internet ({{true}}) or towards End Devices ({{false}}). + For example: + * For an Internet Gateway Device, {{param}} will be {{true}} for all WAN interfaces and {{false}} for all LAN interfaces. + * For a standalone WiFi Access Point that is connected via Ethernet to an Internet Gateway Device, {{param}} will be {{true}} for the Ethernet interface and {{false}} for the WiFi Radio interface. + * For an End Device, {{param}} will be {{true}} for all interfaces. + + + + + + + + Current measurement of total downstream optical signal level. + {{datatype|expand}} + Valid values are -65.536 dBm (coded as -65536), to 65.534 dBm (coded as 65534) in 0.002 dB increments. + This parameter is based on ''Optical signal level'' from {{bibref|G.988|Section 9.2.1}}. + + + + + + + + + + Optical level that is used to declare the downstream low received optical power alarm. + {{datatype|expand}} + Valid values are -127.5 dBm (coded as -127500) to 0 dBm (coded as 0) in 0.5 dB increments. The value -127500 indicates the device's internal policy. + This parameter is based on ''Lower optical threshold'' from {{bibref|G.988|section 9.2.1}}. + + + + + + + + + + Optical level that is used to declare the downstream high received optical power alarm. + {{datatype|expand}} + Valid values are -127.5 dBm (coded as -127500) to 0 dBm (coded as 0) in 0.5 dB increments. The value -127500 indicates the device's internal policy. + This parameter is based on ''Upper optical threshold'' from {{bibref|G.988|section 9.2.1}}. + + + + + + + + + + Current measurement of mean optical launch power. + {{datatype|expand}} + Valid values are -65.536 dBm (coded as -65536), to 65.534 dBm (coded as 65534) in 0.002 dB increments. + This parameter is based on ''Transmit optical level'' from {{bibref|G.988|section 9.2.1}}. + + + + + + + + + + Minimum mean optical launch power that is used to declare the low transmit optical power alarm. + {{datatype|expand}} + Valid values are -63.5 dBm (coded as -63500) to +63.5 dBm (coded as 63500) in 0.5 dB increments. The value -63500 indicates the device's internal policy. + This parameter is based on ''Lower transmit power threshold'' from {{bibref|G.988|section 9.2.1}}. + + + + + + + + + + Maximum mean optical launch power that is used to declare the high transmit optical power alarm. + {{datatype|expand}} + Valid values are -63.5 dBm (coded as -63500) to +63.5 dBm (coded as 63500) in 0.5 dB increments. The value -63500 indicates the device's internal policy. + This parameter is based on ''Upper transmit power threshold'' from {{bibref|G.988|section 9.2.1}}. + + + + + + + + + + + Throughput statistics for this interface. + The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + The total number of bytes transmitted out of the interface, including framing characters. + + + + + + + + The total number of bytes received on the interface, including framing characters. + + + + + + + + The total number of packets transmitted out of the interface. + + + + + + + + The total number of packets received on the interface. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + + This object models cellular interfaces and access points. + + + + Enables or disables roaming. + + + + + + + + Current roaming status. + + + + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + Cellular interface table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). Each instance of this object models a cellular modem with a single radio and a single {{object|USIM}}. + + + + + + + + + + Enables or disables the interface. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + The current operational state of the interface (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} + * SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic. + * SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed) + * SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface + * SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + Because the interface includes layer 1 the {{enum|LowerLayerDown}} value SHOULD never be used. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + Corresponds to {{enum|GPRS|CurrentAccessTechnology}}, {{enum|UMTS|CurrentAccessTechnology}}, {{enum|LTE|CurrentAccessTechnology}} etc ''ATTACHED'' status + + + + + + + + Corresponds to {{enum|GPRS|CurrentAccessTechnology}}, {{enum|UMTS|CurrentAccessTechnology}}, {{enum|LTE|CurrentAccessTechnology}} etc ''DETACHED'' status + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the interface as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the interface entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + Note: Since {{object}} is a layer 1 interface, it is expected that {{param}} will not be used. + + + + + + + + + + + + + Indicates whether the interface points towards the Internet ({{true}}) or towards End Devices ({{false}}). + For example: + * For an Internet Gateway Device, {{param}} will be {{true}} for all WAN interfaces and {{false}} for all LAN interfaces. + * For a standalone WiFi Access Point that is connected via Ethernet to an Internet Gateway Device, {{param}} will be {{true}} for the Ethernet interface and {{false}} for the WiFi Radio interface. + * For an End Device, {{param}} will be {{true}} for all interfaces. + + + + + + + + International Mobile Station Equipment Identity number, represented as a 15 digit string (digits 0-9). + + + + + + + + + + + Access technologies supported by the interface. + + + + + + + GSM with GPRS + + + + + GSM with EDGE + + + + + + UMTS with High Speed Packet Access (HSPA {{bibref|3GPP-HSPA}}) + + + + + + + + 5G New Radio + + + + + + + + Preferred access technology. + + + + + + + + + + + Access technology that is currently in use. + + + + + + + + + + List of available networks. + + + + + + + + + + + Name of the network which will be used, or {{empty}} if the network is selected automatically. + + + + + + + + + + + The value is {{empty}} if no network is found, or if the network specified in {{param|NetworkRequested}} is not found. + + + + + + + + + + + The received signal strength in {{units}}. The allowed values depend on {{param|CurrentAccessTechnology}}: + * For {{enum|GPRS|SupportedAccessTechnologies}}, {{enum|EDGE|SupportedAccessTechnologies}} the range is -111 {{units}} to -49 {{units}} + * For {{enum|UMTS|SupportedAccessTechnologies}}, {{enum|UMTSHSPA|SupportedAccessTechnologies}} the range is -117 {{units}} to -54 {{units}} + * For {{enum|LTE|SupportedAccessTechnologies}}, {{enum|NR|SupportedAccessTechnologies}} the range is -117 {{units}} to -25 {{units}} + Note: An undetectable signal is indicated by the appropriate lower limit, e.g. -117 {{units}} for LTE. + + + + + + + + + + The Reference Signal Received Power in {{units}} for {{enum|LTE|SupportedAccessTechnologies}}, {{enum|NR|SupportedAccessTechnologies}} values of {{param|CurrentAccessTechnology}}: + * The valid range of RSRP values from worst to best is -140 {{units}} to -44 {{units}} + + + + + + + + + + The Reference Signal Received Quality in {{units}} for {{enum|LTE|SupportedAccessTechnologies}}, {{enum|NR|SupportedAccessTechnologies}} values of {{param|CurrentAccessTechnology}}: + * RSRQ is calculated using RSSI and RSRP values using RSRQ = (N*RSRP)/RSSI where N is the number of resource blocks (bandwidth). + * The valid range of RSRP values from worst to best is -20 {{units}} to -3 {{units}} + + + + + + + + + + The current maximum attainable data rate upstream (expressed in {{units}}). + + + + + + + + + + The current maximum attainable data rate downstream (expressed in {{units}}). + + + + + + + + + + + USIM (Universal Subscriber Identity Module or SIM card) parameters for the interface. + + + + The current status of the USIM card. + + + + + + No card available + + + + + Card is available but not verified + + + + + Card can be used; either valid PIN was entered, or PIN check is deactivated + + + + + USIM is blocked because the maximum number of invalid PIN entries was exceeded + + + + + An error was detected with the card + + + + + + + + International Mobile Subscriber Identity represented as a string with either 14 or 15 digits (digits 0-9). The first 3 digits are the mobile country code (MCC), which are followed by the mobile network code (MNC), either 2 digits (European standard) or 3 digits (North American standard), followed by the mobile subscription identification number (MSIN). + + + + + + + + + + + Integrated Circuit Card Identifier represented as a string of up to 20 digits (digits 0-9). The number is composed of the following parts: + * Major industry identifier (MII), 2 fixed digits, 89 for telecommunication purposes. + * Country code, 1–3 digits, as defined by ITU-T recommendation {{bibref|ITU-E.164}}. + * identifier, 1–4 digits. + * Individual account identification number. Its length is variable, but every number under one IIN will have the same length. + * Single check digit calculated from the other digits using the Luhn algorithm. + For cards using an ICCID according to {{bibref|ITU-E.118}} the maximum length is 19 Digits, for GSM cards 20 digits. + + + + + + + + + + + Mobile Subscriber Integrated Service Digital Network Number, a number uniquely identifying a subscription in a GSM, UMTS, or LTE mobile network. {{bibref|ITU-E.164}} + + + + + + + + + + + Controls the PIN verification of the USIM card. + + + + + + Check the PIN with each access to a new network + + + + + Check the PIN with first access after (re)boot + + + + + Disable the PIN check + + + + + + + + Allows the Controller to change the USIM PIN used for SIM card activation. + + + + + + + Throughput statistics for this interface. + The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + The total number of bytes transmitted out of the interface, including framing characters. + + + + + + + + The total number of bytes received on the interface, including framing characters. + + + + + + + + The total number of packets transmitted out of the interface. + + + + + + + + The total number of packets received on the interface. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of packets requested for transmission which were not addressed to a multicast or broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were not addressed to a multicast or broadcast address at this layer. + + + + + + + + The total number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a multicast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a multicast address at this layer. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a broadcast address at this layer. + + + + + + + + The total number of packets received via the interface which were discarded because of an unknown or unsupported protocol. + + + + + + + + + Cellular Access Point table. Each entry is identified by an {{param|APN}} (Access Point Name) that identifies a gateway between the mobile network and another computer network. + + + + + + + + + + + + + Enables or disables the Access Point. + + + + + + + + {{datatype|expand}} + + + + + + + + Access Point Name. + + + + + + + + + + Username used to authenticate the CPE when making a connection to the Access Point. + + + + + + + + + + Password used to authenticate the CPE when making a connection to the Access Point. + + + + + + Proxy server IP address. + + + + + + + + Proxy server port. + + + + + + + + + + Reference to the interface with which the access point is associated. + + + + + + + + + + + Asynchronous Transfer Mode (ATM) object that contains the {{object|Link}} interface and {{object|Diagnostics.F5Loopback}} diagnostics. + + + + {{numentries}} + + + + + + + + + ATM link-layer table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). Models an ATM PVC virtual circuit and the ATM Adaption Layer (AAL). An ATM Link entry is typically stacked on top of either a {{object|.DSL.Channel.}} or a {{object|.DSL.BondingGroup.}} object. + When an ''ATM Link'' interface is used, a lower-layer {{object|.DSL.Channel}} interface MUST be configured with ATM encapsulation (see {{param|.DSL.Channel.{i}.LinkEncapsulationUsed}}). + + + + + + + + + + Enables or disables the link. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + + The current operational state of the link (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the link as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the link entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + + + + + + + + + + + + + + Indicates the type of connection and refers to the complete stack of protocol used for this connection. + + + + + + {{bibref|RFC2684}} bridged Ethernet over ATM + + + + + {{bibref|RFC2684}} routed IP over ATM + + + + + {{bibref|RFC2364}} PPP over ATM + + + + + {{bibref|RFC2225}} Classical IP over ATM + + + + + + + + + Indicates if the CPE is currently using some auto configuration mechanisms for this connection. If this variable is {{true}}, all writable variables in this connection instance become read-only. Any attempt to change one of these variables SHOULD fail and an error SHOULD be returned. + + + + + + + + Destination address of this link, in the form "VPI/VCI" (e.g. "8/23" or "0/35"). + + + + + + + + + + + Identifies the connection encapsulation that will be used. + + + + + + + + + + + This flag tells if a checksum SHOULD be added in the ATM payload. It does not refer to the checksum of one of the ATM cells or AALX packets. In case of LLC or VCMUX encapsulation, this ATM checksum is the FCS field described in {{bibref|RFC2684}}. It is only applicable in the upstream direction. + + + + + + + + {{list}} Ordered list of VPI/VCI pairs to search if a link using the {{param|DestinationAddress}} cannot be established. In the form "VPI1/VCI1, VPI2/VCI2, ...". {{pattern}} + Example: + : ''0/35, 8/35, 1/35'' + + + + + + + + + + + + + Describes the ATM Adaptation Layer (AAL) currently in use on the PVC. + + + + + + + + + + + + + + + Throughput statistics for this interface. + The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + The total number of bytes transmitted out of the interface, including framing characters. + + + + + + + + The total number of bytes received on the interface, including framing characters. + + + + + + + + The total number of packets transmitted out of the interface. + + + + + + + + The total number of packets received on the interface. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of packets requested for transmission which were not addressed to a multicast or broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were not addressed to a multicast or broadcast address at this layer. + + + + + + + + The total number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a multicast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a multicast address at this layer. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a broadcast address at this layer. + + + + + + + + The total number of packets received via the interface which were discarded because of an unknown or unsupported protocol. + + + + + + + + The current count of successfully transmitted cells. + + + + + + + + The current count of successfully received cells. + + + + + + + + Count of the ATM layer cyclic redundancy check (CRC) errors. + This refers to CRC errors at the ATM adaptation layer (AAL). The AAL in use is indicated by the {{param|#.AAL}} parameter. The value of the {{param}} parameter MUST be 0 for AAL types that have no CRCs. + + + + + + + + Count of the number of Header Error Check related errors at the ATM layer. + + + + + + + + + The ATM Link QoS object. + + + + Describes the ATM Quality Of Service (QoS) being used on the VC. + + + + + + + + + + + + + + + + Specifies the upstream peak cell rate in {{units}}. + + + + + + + + + + Specifies the upstream maximum burst size in {{units}}. + + + + + + + + + + Specifies the upstream sustainable cell rate, in {{units}}. + + + + + + + + + + + The ATM Diagnostics object. + + + + + This object provides access to an ATM-layer F5 OAM loopback test. + + + + {{datatype|expand}} + + + + + + + + + + + + + + + + {{reference}} This is the interface over which the test is to be performed. + + + + + + + + + + + Number of repetitions of the ping test to perform before reporting the results. + + + + + + + + + + Timeout in {{units}} for the ping test. + + + + + + + + + + + Result parameter indicating the number of successful pings (those in which a successful response was received prior to the timeout) in the most recent ping test. + + + + + + + + Result parameter indicating the number of failed pings in the most recent ping test. + + + + + + + + Result parameter indicating the average response time in {{units}} over all repetitions with successful responses of the most recent ping test. If there were no successful responses, this value MUST be zero. + + + + + + + + + + Result parameter indicating the minimum response time in {{units}} over all repetitions with successful responses of the most recent ping test. If there were no successful responses, this value MUST be zero. + + + + + + + + + + Result parameter indicating the maximum response time in {{units}} over all repetitions with successful responses of the most recent ping test. If there were no successful responses, this value MUST be zero. + + + + + + + + + + + Packet Transfer Mode ({{bibref|G.993.1|Annex H}}). This object contains the {{object|Link}} interface. + + + + {{numentries}} + + + + + + + + + PTM link-layer table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). Models a layer 2 variable-sized packet interface. A PTM Link entry is typically stacked on top of either a {{object|.FAST.Line.}}, {{object|.DSL.Channel.}}, or a {{object|.DSL.BondingGroup.}} object. + When a ''PTM Link'' interface is used, a lower-layer {{object|.DSL.Channel}} interface MUST be configured with PTM encapsulation (see {{param|.DSL.Channel.{i}.LinkEncapsulationUsed}}). + + + + + + + + + + Enables or disables the link. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + + The current operational state of the link (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the link as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the link entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + + + + + + + + + + + + + + The MAC Address of the interface. + Note: This is not necessarily the same as the Ethernet header source or destination MAC address, which is associated with the IP interface and is modeled via the {{param|.Ethernet.Link.{i}.MACAddress}} parameter. + + + + + + + + + Throughput statistics for this interface. + The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + The total number of bytes transmitted out of the interface, including framing characters. + + + + + + + + The total number of bytes received on the interface, including framing characters. + + + + + + + + The total number of packets transmitted out of the interface. + + + + + + + + The total number of packets received on the interface. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of packets requested for transmission which were not addressed to a multicast or broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were not addressed to a multicast or broadcast address at this layer. + + + + + + + + The total number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a multicast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a multicast address at this layer. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a broadcast address at this layer. + + + + + + + + The total number of packets received via the interface which were discarded because of an unknown or unsupported protocol. + + + + + + + + + Ethernet object. This object models several Ethernet interface objects, each representing a different stack layer, including: {{object|Interface}}, {{object|Link}}, and {{object|VLANTermination}}. {{object|Interface}} is media-specific and models a port, the PHY layer, and the MAC layer. {{object|Link}} is media-independent and models the Logical Link Control (LLC) layer. An "outer" {{object|VLANTermination}}, when present, is expected to be stacked on top of {{object|Link}} objects to receive and send frames with a configured VLANID. + + + + Indicates that WoL (Wake on LAN) over Ethernet is supported. + + + + + + + + Indicates that Flow Control over Ethernet is supported, as per {{bibref|802.3-2015}}. + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + Ethernet interface table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). This table models physical Ethernet ports, but in terms of the interface stack it also models the PHY and MAC level Ethernet interface. + + + + + + + + + + Enables or disables the interface. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + The current operational state of the interface (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the interface as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the interface entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + Note: Since {{object}} is a layer 1 interface, it is expected that {{param}} will not be used. + + + + + + + + + + + + + Indicates whether the interface points towards the Internet ({{true}}) or towards End Devices ({{false}}). + For example: + * For an Internet Gateway Device, {{param}} will be {{true}} for all WAN interfaces and {{false}} for all LAN interfaces. + * For a standalone WiFi Access Point that is connected via Ethernet to an Internet Gateway Device, {{param}} will be {{true}} for the Ethernet interface and {{false}} for the WiFi Radio interface. + * For an End Device, {{param}} will be {{true}} for all interfaces. + + + + + + + + The MAC Address of the interface. + Note: This is not necessarily the same as the Ethernet header source or destination MAC address, which is associated with the IP interface and is modeled via the {{param|.Ethernet.Link.{i}.MACAddress}} parameter. + + + + + + + + The maximum upstream and downstream PHY bit rate supported by this interface (expressed in {{units}}). + A value of -1 indicates automatic selection of the maximum bit rate. + + + + + + + + + + + The current upstream and downstream PHY bit rate on this interface (expressed in {{units}}). + A value of 0 indicates that the current bit rate is unknown. + + + + + + + + + + The duplex mode available to this connection. + + + + + + + + + + + + Indicates whether this physical ethernet port supports Energy Efficient Ethernet as specified in {{bibref|802.3-2012_section6|Section 78}}. + + + + + + + + Whether Energy Efficient Ethernet {{bibref|802.3-2012_section6|Section 78}} support is currently enabled. When enabled, this ethernet port will be capable of entering or exiting Low Power Idle (LPI) mode. + + + + + + + + + Throughput statistics for this interface. + The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + The total number of bytes transmitted out of the interface, including framing characters. + + + + + + + + The total number of bytes received on the interface, including framing characters. + + + + + + + + The total number of packets transmitted out of the interface. + + + + + + + + The total number of packets received on the interface. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of packets requested for transmission which were not addressed to a multicast or broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were not addressed to a multicast or broadcast address at this layer. + + + + + + + + The total number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a multicast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a multicast address at this layer. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a broadcast address at this layer. + + + + + + + + The total number of packets received via the interface which were discarded because of an unknown or unsupported protocol. + + + + + + + + + Ethernet link layer table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). Table entries model the Logical Link Control (LLC) layer. It is expected that an ''Ethernet Link'' interface can be stacked above any lower-layer interface object capable of carrying Ethernet frames. + + + + + + + + + + + + + Enables or disables the link. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + + The current operational state of the link (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the link as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the link entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + + + + + + + + + + + + + + The MAC address used for packets sent via this interface. Provides the source MAC address for outgoing traffic and the destination MAC address for incoming traffic. + + + + + + + + Enables or disables priority tagging on this Ethernet Link. + When {{true}}, egress frames leaving this interface will be priority tagged with the frame's associated priority value, which will either be derived directly from the ingress frame or else set via {{param|.QoS.Classification.{i}.EthernetPriorityMark}} or {{param|.QoS.Classification.{i}.InnerEthernetPriorityMark}}. + When {{false}}, egress frames leaving this interface will be untagged. + The parameter does not affect reception of ingress frames. + + + + + + + + + Configures Flow Control on given Ethernet port. When set to {{true}}, it activates the exchange of pause-resume flow control frames. + + + + + + + + + + Throughput statistics for this interface. + The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + The total number of bytes transmitted out of the interface, including framing characters. + + + + + + + + The total number of bytes received on the interface, including framing characters. + + + + + + + + The total number of packets transmitted out of the interface. + + + + + + + + The total number of packets received on the interface. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of packets requested for transmission which were not addressed to a multicast or broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were not addressed to a multicast or broadcast address at this layer. + + + + + + + + The total number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a multicast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a multicast address at this layer. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a broadcast address at this layer. + + + + + + + + The total number of packets received via the interface which were discarded because of an unknown or unsupported protocol. + + + + + + + + + VLAN Termination table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). A VLAN Termination entry is typically stacked on top of a {{object|#.Link}} object to receive and send frames with the configured {{param|VLANID}}. + + + + + + + + + + Enables or disables the VLANTermination entry. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + + The current operational state of the VLANTermination entry (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the VLANTermination entry as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the VLANTermination entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + + + + + + + + + + + + + + The VLAN ID for this {{object}} entry (as defined in {{bibref|802.1Q-2011}}). Only ingress frames with this VLAN ID will be passed to higher protocol layers; frames sent from higher protocol layers will be tagged with this VLAN ID. + + + + + + + + + + The Tag Protocol Identifier (TPID) assigned to this {{object}}. The TPID is an EtherType value used to identify the frame as a tagged frame. + Standard {{bibref|802.1Q-2011|Table 9.1}} TPID values are: + *S-TAG 0x88A8 = 34984 + *C-TAG 0x8100 = 33024 + Non-Standard TPID values are: + *S-TAG 0x9100 = 37120 + + + + + + + + + + Throughput statistics for this interface. + The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + The total number of bytes transmitted out of the interface, including framing characters. + + + + + + + + The total number of bytes received on the interface, including framing characters. + + + + + + + + The total number of packets transmitted out of the interface. + + + + + + + + The total number of packets received on the interface. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of packets requested for transmission which were not addressed to a multicast or broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were not addressed to a multicast or broadcast address at this layer. + + + + + + + + The total number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a multicast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a multicast address at this layer. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a broadcast address at this layer. + + + + + + + + The total number of packets received via the interface which were discarded because of an unknown or unsupported protocol. + + + + + + + + + Ethernet statistics based on the {{bibref|RFC2819}} ''RMON-MIB'' ''etherStatsTable'', with some extensions inspired by {{bibref|G.988|Section 9.3.32}}. + Each instance is associated with an interface capable of transporting Ethernet-encapsulated packets, and contains a set of unidirectional Ethernet statistics. + The statistics are sampled either on ingress or on egress. This is determined as follows: + * If the instance is associated with an egress queue (or queues) via the {{param|Queue}} parameter or by setting {{param|AllQueues}} to {{true}} then data is sampled on egress. In this case {{param|Bytes}} etc measure the data that has been sent on the interface, possibly filtered by {{param|Queue}} or {{param|VLANID}}. + * Otherwise data is sampled on ingress. In this case {{param|Bytes}} etc measure the data that has been received on the interface, possibly filtered by {{param|VLANID}}. + When sampling on egress, the term ''received'' means ''received by the queuing sub-system''. + Multiple instances can be associated with a single interface: individual instances can be configured to collect data associated with the entire interface, or with a particular VLAN and/or queue. + The CPE MUST reset each instances's Stats parameters whenever the instance is disabled and re-enabled. Whether this reset occurs when the instance becomes operationally disabled ({{param|Status}} = {{enum|Disabled|Status}}) or administratively enabled ({{param|Enable}} = {{true}}) is a local matter to the CPE. This is similar to the behavior of interface statistics, e.g. as specified for {{object|Device.Ethernet.Interface.{i}.Stats}}. Furthermore, this instance's Stats parameters MUST be reset whenever the referenced interface's Stats parameters are reset, or when the referenced queue or VLAN is disabled and re-enabled. + For enabled table entries, if {{param|Interface}} references an interface that is not capable of transporting Ethernet-encapsulated packets, or if {{param|Queue}} references a queue that is not instantiated on {{param|Interface}}, or if {{param|Queue}} is not a valid reference and {{param|AllQueues}} is {{false}}, the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + Note: The {{object}} table includes unique key parameters that are strong references. If a strongly referenced object is deleted, the CPE will set the referencing parameter to {{empty}}. However, doing so under these circumstances might cause the updated {{object}} row to then violate the table's unique key constraint; if this occurs, the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}} and disable the offending {{object}} row. + + + + + + + + + + + + Enables or disables this instance. + + + + + + + + + The status of this instance. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the {{object}} entry as assigned by the CPE. + + + + + + + + + + The interface associated with this instance. {{reference|an interface that is capable of transporting Ethernet-encapsulated packets}} + The term "capable of transporting Ethernet-encapsulated packets" means "has an Ethernet header" and therefore refers to any interface that is at or below an ''Ethernet''.{{object|#.Link}} instance in the interface stack. + + + + + + + + + + + Filter criterion. + The VLAN ID for which statistics are to be collected. + A zero value indicates that all packets, whether or not they have a VLAN header, will be considered. + A non-zero value indicates that only packets that have the the specified VLAN ID will be considered. + + + + + + + + + + + Filter criterion. + The egress queue with which this instance is associated. + Only packets that are sent to the referenced queue will be considered. + + + + + + + + + + + Indicates whether this instance applies to all queues. If {{true}}, the value of {{param|Queue}} is ignored since all egress queues are indicated. + + + + + + + + + The total number of events in which packets were dropped due to lack of resources. Note that this number is not necessarily the number of packets dropped; it is just the number of times this condition has been detected. + This parameter is based on ''etherStatsDropEvents'' from {{bibref|RFC2819}}. + + + + + + + + + The total number of {{units}} (including those in bad packets) received (excluding framing bits but including FCS bytes). + This parameter is based on ''etherStatsOctets'' from {{bibref|RFC2819}}. + + + + + + + + + + + The total number of {{units}} (including bad packets, broadcast packets, and multicast packets) received. + This parameter is based on ''etherStatsPkts'' from {{bibref|RFC2819}}. + + + + + + + + + + + The total number of good {{units}} received that were directed to the broadcast address. Note that this does not include multicast packets. + This parameter is based on ''etherStatsBroadcastPkts'' from {{bibref|RFC2819}}. + + + + + + + + + + + The total number of good {{units}} received that were directed to a multicast address. Note that this number does not include packets directed to the broadcast address. + This parameter is based on ''etherStatsMulticastPkts'' from {{bibref|RFC2819}}. + + + + + + + + + + + The total number of {{units}} received that had a length (excluding framing bits, but including FCS bytes) of between 64 and 1518 bytes, inclusive, but had either a bad Frame Check Sequence (FCS) with an integral number of bytes (FCS Error) or a bad FCS with a non-integral number of bytes (Alignment Error). + This parameter is based on ''etherStatsCRCAlignErrors'' from {{bibref|RFC2819}}. + + + + + + + + + + + The total number of {{units}} received that were less than 64 bytes long (excluding framing bits, but including FCS bytes) and were otherwise well formed. + This parameter is based on ''etherStatsUndersizePkts'' from {{bibref|RFC2819}}. + + + + + + + + + + + The total number of {{units}} received that were longer than 1518 bytes (excluding framing bits, but including FCS bytes) and were otherwise well formed. + This parameter is based on ''etherStatsOversizePkts'' from {{bibref|RFC2819}}. + + + + + + + + + + + The total number of {{units}} (including bad packets) received that were 64 bytes in length (excluding framing bits but including FCS bytes). + This parameter is based on ''etherStatsPkts64Octets'' from {{bibref|RFC2819}}. + + + + + + + + + + + The total number of {{units}} (including bad packets) received that were between 65 and 127 bytes in length inclusive (excluding framing bits but including FCS bytes). + This parameter is based on ''etherStatsPkts65to127Octets'' from {{bibref|RFC2819}}. + + + + + + + + + + + The total number of {{units}} (including bad packets) received that were between 128 and 255 bytes in length inclusive (excluding framing bits but including FCS bytes). + This parameter is based on ''etherStatsPkts6128to255Octets'' from {{bibref|RFC2819}}. + + + + + + + + + + + The total number of {{units}} (including bad packets) received that were between 256 and 511 bytes in length inclusive (excluding framing bits but including FCS bytes). + This parameter is based on ''etherStatsPkts256to511Octets'' from {{bibref|RFC2819}}. + + + + + + + + + + + The total number of {{units}} (including bad packets) received that were between 512 and 1023 bytes in length inclusive (excluding framing bits but including FCS bytes). + This parameter is based on ''etherStatsPkts512to1023Octets'' from {{bibref|RFC2819}}. + + + + + + + + + + + The total number of {{units}} (including bad packets) received that were between 1024 and 1518 bytes in length inclusive (excluding framing bits but including FCS bytes). + This parameter is based on ''etherStatsPkts1024to1518Octets'' from {{bibref|RFC2819}}. + + + + + + + + + + + + This object provides access to the WoL (Wake on LAN) funtionality. + + + + When set to {{true}}, the CPE must send a magic packet over its active Ethernet interfaces. + + + + + + + + MAC address target of the magic packet. + + + + + + + + The SecureOn password. The parameter value can be empty or, if present, can contain either 4 bytes or 6 bytes. + + + + + + + + + Ethernet Link Aggregation Group (LAG) table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). Table entries model the Link Aggregation Sub-Layer as defined in {{bibref|802.3-2015}} and {{bibref|802.1AX-2014}}. It is expected that a {{object}} interface can only be stacked above {{object|.Ethernet.Interface}} interfaces. The CPE can reject creation of additional LAG instances if this would exceed its capabilities. + + + + + + + + + + + + + Enables or disables the interface. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + The current operational state of the interface (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the LAG interface as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the interface entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}}. See {{bibref|TR-181i2|Section 4.2.1}}. + {{param}} must reference to Device.Ethernet.Interface instances where Link Aggregation Group is configured by the CPE. + For example, "Device.Ethernet.Interface.1, Device.Ethernet.Interface.2" + + + + + + + + + + + + + MAC address of the Link Aggregation Interface. + + + + + + + + + Throughput statistics for this interface. + The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + The total number of bytes transmitted out of the interface, including framing characters. + + + + + + + + The total number of bytes received on the interface, including framing characters. + + + + + + + + The total number of packets transmitted out of the interface. + + + + + + + + The total number of packets received on the interface. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of packets requested for transmission which were not addressed to a multicast or broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were not addressed to a multicast or broadcast address at this layer. + + + + + + + + The total number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a multicast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a multicast address at this layer. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a broadcast address at this layer. + + + + + + + + The total number of packets received via the interface which were discarded because of an unknown or unsupported protocol. + + + + + + + + + Universal Serial Bus ({{bibref|USB1.0}}, {{bibref|USB2.0}}, {{bibref|USB3.0}}). This object contains the {{object|Interface}}, {{object|Port}}, and {{object|USBHosts}} objects. + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + USB interface table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). This table models master and slave USB physical interfaces that support carrying Ethernet frames, e.g. via the USB Communication Device Class. + + + + + + + + + + Enables or disables the interface. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + The current operational state of the interface (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the interface as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the interface entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + Note: Since {{object}} is a layer 1 interface, it is expected that {{param}} will not be used. + + + + + + + + + + + + + Indicates whether the interface points towards the Internet ({{true}}) or towards End Devices ({{false}}). + For example: + * For an Internet Gateway Device, {{param}} will be {{true}} for all WAN interfaces and {{false}} for all LAN interfaces. + * For a standalone WiFi Access Point that is connected via Ethernet to an Internet Gateway Device, {{param}} will be {{true}} for the Ethernet interface and {{false}} for the WiFi Radio interface. + * For an End Device, {{param}} will be {{true}} for all interfaces. + + + + + + + + The MAC Address of the interface. + Note: This is not necessarily the same as the Ethernet header source or destination MAC address, which is associated with the IP interface and is modeled via the {{param|.Ethernet.Link.{i}.MACAddress}} parameter. + + + + + + + + The maximum PHY bit rate supported by this interface (expressed in {{units}}). + + + + + + + + + + {{reference}} This is the USB port associated with this interface object. + + + + + + + + + + + + Throughput statistics for this interface. + The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + The total number of bytes transmitted out of the interface, including framing characters. + + + + + + + + The total number of bytes received on the interface, including framing characters. + + + + + + + + The total number of packets transmitted out of the interface. + + + + + + + + The total number of packets received on the interface. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of packets requested for transmission which were not addressed to a multicast or broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were not addressed to a multicast or broadcast address at this layer. + + + + + + + + The total number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a multicast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a multicast address at this layer. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a broadcast address at this layer. + + + + + + + + The total number of packets received via the interface which were discarded because of an unknown or unsupported protocol. + + + + + + + + + USB Port table. This table models master and slave USB physical ports on the device. + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the port. + + + + + + + + + + USB specification version supported by the Port. Example: "1.1" + + + + + + + + + + Type of the USB connection. + + + + + + + + + + + + Receptacle of the port. + + + + + + + + + + + + + + Current speed of the USB connection. {{enum}} + + + + + + 1.5 Mbits/sec (187.5 KB/sec) defined in {{bibref|USB1.0}} + + + + + 12 Mbits/sec (1.5 MB/sec) defined in {{bibref|USB1.0}} + + + + + 480 Mbits/sec (60 MB/sec) defined in {{bibref|USB2.0}} + + + + + 5.0 Gbits/sec (625 MB/sec) defined in {{bibref|USB3.0}} + + + + + + + + Power configuration of the USB connection. {{enum}} + Only applies when {{param|Type}} is {{enum|Device|Type}}. In other cases value is {{enum|Unknown}}. + + + + + + + + + + + + + This object models the CPE's USB Host controllers. + See {{bibref|TR-181i2|Appendix XVII}} for Theory of Operation. + + + + {{numentries}} + + + + + + + + + Table of CPE USB Host controllers. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Enables or disables the USB Host controller. + + + + + + + + User-readable host controller name. + + + + + + + + + + Type of USB Host + + + + + + Open Host Controller Interface + + + + + Enhanced Host Controller Interface + + + + + Universal Host Controller Interface + + + + + Extensible Host Controller Interface + + + + + + + + When set to {{true}}, reset the Host Controller and apply the reset signaling (see {{bibref|USB2.0|Chapter 7.1.7.5}}) to all of the Host Controller Hub downstream ports. + The value is not saved in the device's state and setting it to {{false}} has no effect. + + + + + + + + When set to {{true}}, {{param}} enables the Host Controller to invoke Power Management policy, i.e. controlled Suspend (see {{bibref|USB2.0}}, Chapters 4.3.2, 7.1.7.6, and 11.9). + When set to {{false}} {{param}} immediately disables the Host controller Power Management policy. + + + + + + + + USB specification version with which the controller complies. Example: "1.1" + + + + + + + + + + {{numentries}} + + + + + + + + + Table of connected USB devices. + + + + + + + Device number on USB bus. + + + + + + + + USB specification version with which the device complies. Example: "1.1" + + + + + + + + + + Class Code as assigned by USB-IF. + When 0x00, each device specifies its own class code. When 0xFF, the class code is vendor specified. + + + + + + + + + + Subclass code (assigned by USB-IF). + + + + + + + + + + Device release number. + + + + + + + + + + Protocol code (assigned by USB-IF). + + + + + + + + + + Product ID (assigned by manufacturer). + + + + + + + + + + Vendor ID (assigned by USB-IF). + + + + + + + + + + Device Manufacturer string descriptor. + + + + + + + + + + Device Product Class string descriptor. + + + + + + + + + + Device SerialNumber string descriptor. + + + + + + + + + + Hub port on parent device. + 0 when no parent. + + + + + + + + + + {{reference}} This is a reference to the USB host device to which this (external) USB device is connected. + + + + + + + + + + Speed of the USB device. {{enum}} + Internal signaling between the connected USB device and the USB Host Controller provide the information needed to determine the negotiated rate. + + + + + + 1.5 Mbits/sec (187.5 KB/sec) defined in {{bibref|USB1.0}} + + + + + 12 Mbits/sec (1.5 MB/sec) defined in {{bibref|USB1.0}} + + + + + 480 Mbits/sec (60 MB/sec) defined in {{bibref|USB2.0}} + + + + + 5.0 Gbits/sec (625 MB/sec) defined in {{bibref|USB3.0}} + + + + + + + + {{reference}} This is a reference to the parent USB device (e.g. hub device). + This is {{empty}} for a device connected to the Host controller (root hub). + + + + + + + + + + Number of ports. Only applies for hub device, equal to 0 for other devices. + + + + + + + + When {{true}} the associated Device is in a suspended (i.e. low-power) state (see {{bibref|USB2.0|Chapter 11.9}}). + When {{false}} the associated Device is in any of the other states specified by the USB 2.0 Device State Machine (see {{bibref|USB2.0|Chapter 9.1.1}}). + + + + + + + + When {{true}} the associated device is at least partly powered by a local source (see {{bibref|USB2.0|Chapter 9.4.5}}). + When {{false}} the associated device draws all the current it needs from the USB bus. + + + + + + + + {{numentries}} + + + + + + + + + Table of device configurations. + + + + + + + The identifier for each Device Configuration. + + + + + + + + {{numentries}} + + + + + + + + + Table of device interface descriptors. + + + + + + + Number of this interface (from USB interface descriptor). + + + + + + + + + + Class Code as assigned by USB-IF. + When 0x00, each interface specifies its own class code. When 0xFF, the class code is vendor specified. + + + + + + + + + + Subclass code (assigned by USB-IF). + + + + + + + + + + Protocol code (assigned by USB-IF). + + + + + + + + + + + HPNA object that contains the {{object|Interface}} and {{object|Diagnostics}} objects. The HPNA (also known as HomePNA) industry standard {{bibref|G.9954}} defines peer to peer communication for home networking over existing coax cables and telephone wiring within the home. + + + + {{numentries}} + + + + + + + + + HPNA interface table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). Each table entry models the PHY and MAC levels of an HPNA interface {{bibref|G.9954}}. + + + + + + + + + + Enables or disables the interface. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + The current operational state of the interface (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the interface as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the interface entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + Note: Since {{object}} is a layer 1 interface, it is expected that {{param}} will not be used. + + + + + + + + + + + + + Indicates whether the interface points towards the Internet ({{true}}) or towards End Devices ({{false}}). + For example: + * For an Internet Gateway Device, {{param}} will be {{true}} for all WAN interfaces and {{false}} for all LAN interfaces. + * For a standalone WiFi Access Point that is connected via Ethernet to an Internet Gateway Device, {{param}} will be {{true}} for the Ethernet interface and {{false}} for the WiFi Radio interface. + * For an End Device, {{param}} will be {{true}} for all interfaces. + + + + + + + + The MAC Address of the interface. + Note: This is not necessarily the same as the Ethernet header source or destination MAC address, which is associated with the IP interface and is modeled via the {{param|.Ethernet.Link.{i}.MACAddress}} parameter. + + + + + + + + This interface's firmware version. + + + + + + + + + + The Node ID of this interface. + + + + + + + + Whether this interface is the HPNA network master. + + + + + + + + Whether this interface is synchronized with the HPNA network master. If this interface is the HPNA network master, {{param}} MUST be {{true}}. + + + + + + + + Total time in {{units}} (since device reset) that this interface has been up and synchronized to the HPNA network master. + + + + + + + + + + The maximum HPNA PHY bit rate (expressed in {{units}}) of this interface. + + + + + + + + + + Current HPNA network utilization (expressed in {{units}}). + + + + + + + + + + + {{list}} List items indicate the types of connections possible for this interface. {{enum}} + + + + + + + + + + + + {{list}} Connection type(s) for which the HPNA protocol is active. + + + + + + + + + + + {{list}} List items indicate the spectral modes possible for this interface. {{enum}} + + + + + + + 4-20MHz - Phone / Coax + + + + + 12-28MHz - Phone / Coax + + + + + 36-52MHz - Coax only + + + + + 4-36MHz - Coax only + + + + + + + + Spectral mode for which the HPNA protocol is active. + + + + + + + + + + Maximum Transmission Unit for this HPNA interface (expressed in {{units}}). + + + + + + + + + + The desired noise margin for which the local HPNA interface has been configured (expressed in {{units}}). + + + + + + + + + + The desired packet error rate for which the local HPNA interface has been configured (expressed in 1E-8, e.g. PER of 1.27E-6 will be presented as 127). + + + + + + + + Enable or disable the Limited Automatic Repeat Request (LARQ) mechanism. + + + + + + + + The minimum multicast (and broadcast) rate that can be negotiated on the HPNA network directly accessible via this interface (expressed in {{units}}). + + + + + + + + + + The negotiated multicast (and broadcast) rate on the HPNA network directly accessible via this interface (expressed in {{units}}). + + + + + + + + + + Master selection mode. {{enum}} + + + + + + Automatic master selection + + + + + Force local HPNA interface to be end point + + + + + Force local HPNA interface to be master + + + + + + + + {{numentries}} This is the number of HPNA nodes that are directly accessible via this interface. + + + + + + + + + Throughput statistics for this interface. + The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + The total number of bytes transmitted out of the interface, including framing characters. + + + + + + + + The total number of bytes received on the interface, including framing characters. + + + + + + + + The total number of packets transmitted out of the interface. + + + + + + + + The total number of packets received on the interface. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of packets requested for transmission which were not addressed to a multicast or broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were not addressed to a multicast or broadcast address at this layer. + + + + + + + + The total number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a multicast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a multicast address at this layer. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a broadcast address at this layer. + + + + + + + + The total number of packets received via the interface which were discarded because of an unknown or unsupported protocol. + + + + + + + + + QoS configuration object. + + + + {{numentries}} + + + + + + + + + Flow specification table. + The {{object|.QoS.Classification}} table is used to classify ingress traffic, where {{param|.QoS.Classification.{i}.TrafficClass}} is one of the classification result outputs. This ''TrafficClass'' value can be used to look up the appropriate {{object}} entry (i.e. the {{object}} entry whose {{param|TrafficClasses}} list contains a matching traffic class). + For enabled table entries, if {{param|TrafficClasses}} is {{empty}} then the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + + + + + + + Enables or disables the table entry. + + + + + + + + + The status of this entry. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + {{list}} This list identifies the set of traffic classes associated with this flow spec. + + + + + + + + + + + + Flow type. {{enum}} + + + + + + Constant Bit Rate + + + + + Variable Bit Rate + + + + + Variable Bit Rate - Non Real Time + + + + + Best Effort + + + + + + + + + Flow queue network priority. + Priority 0 is the lowest priority. + + + + + + + + + + + Maximum latency of the flow (expressed in {{units}}). + Value 0 means no latency requirements. + + + + + + + + + + + + Maximum jitter of the flow (expressed in {{units}}). + Value 0 means no jitter requirements. + + + + + + + + + + + + Typical packet size. + Value 0 means undefined packet size. + + + + + + + + + + + Minimum required rate in Kbps. + Value 0 means no MinRate requirements. + + + + + + + + + Average required rate in Kbps. + Value 0 means no AvgRate requirements. + + + + + + + + + Maximum required rate in Kbps. + Value 0 means no MaxRate requirements. + + + + + + + + + The desired packet error rate (expressed in 1E-8, e.g. PER of 1.27E-6 will be presented as 127). + Value 0 means no PER requirements. + + + + + + + + + Flow inactivity tear down timeout (expressed in {{units}}). + Value 0 means unlimited timeout. + + + + + + + + + + + + This table provides information about other HPNA devices that are directly accessible via this HPNA interface. + + + + + + + The physical address of this node. + + + + + + + + The Node ID of this node. + + + + + + + + Whether this node is the HPNA network master. + + + + + + + + Whether this node is synchronized with the HPNA network master. If this node is the HPNA network master, {{param}} MUST be {{true}}. + + + + + + + + Total time in {{units}} (since device reset) that this node has been up and synchronized to the HPNA network master. + + + + + + + + + + This node's maximum HPNA PHY bit rate (expressed in {{units}}). + + + + + + + + + + Enable / disable PHY throughput diagnostics mode on this node. All devices that are enabled will participate in the HPNA network PHY throughput diagnostics process. + + + + + + + + Whether or not this node is currently present in the HPNA network. + The ability to list inactive nodes is OPTIONAL. If the CPE includes inactive nodes in this table, {{param}} MUST be set to {{false}} for each inactive node. The length of time an inactive node remains listed in this table is a local matter to the CPE. + + + + + + + + + The HPNA Diagnostics object. + + + + + HPNA PHY throughput diagnostics configuration and results. + When diagnostics are requested, all HPNA nodes for which the {{param|##.Interface.{i}.AssociatedDevice.{i}.PHYDiagnosticsEnable}} parameter is set enter PHY diagnostics mode. + + + + {{datatype|expand}} + + + + + + + + + + + + + + + + + + + + + + + + {{reference}} This is the interface over which the test is to be performed. + + + + + + + + + + + Number of test packet in burst to be send during PHY diagnostics test from each HPNA device to other HPNA device in the HPNA network. + + + + + + + + Test packet burst interval length (expressed in {{units}}). + + + + + + + + + + Payload length in the test packets. + + + + + + + + + + HPNA payload encoding in PHY diagnostics. 0 is used for negotiated payload between devices according to line conditions. + + + + + + + + Test packets payload data generator value. + + + + + + + + Test packets payload type. {{enum}} + In Pattern mode the PayloadDataGen value is repeated pattern in the payload. + In IncrementByte mode LSByte in PayloadDataGen is used as first payload and next bytes in payload are incremented. + + + + + + + + + + + Priority level of PHY diagnostics packets (0 lowest -7 highest). + + + + + + + + + + {{numentries}} This is the number of PHY diagnostics results. + + + + + + + + + PHY throughput diagnostics results. + Each result object corresponds to unidirectional traffic between two PHY diagnostics-enabled nodes (so there are two such objects for each such pair). + + + + + + + + HPNA source MAC address. + + + + + + + + HPNA destination MAC address. + + + + + + + + PHY diagnostics HPNA PHY rate (expressed in {{units}}). + + + + + + + + + + PHY Baud rate (expressed in {{units}}). + + + + + + + + + + PHY diagnostics SNR (expressed in {{units}}). + + + + + + + + + + Number of received packets in PHY diagnostics mode. + + + + + + + + Measured attenuation (expressed in {{units}}). + + + + + + + + + + + HPNA performance monitoring configuration and results. + Performance monitoring results are sampled from all nodes in the HPNA network. All packet related counters are sampled synchronized at all nodes in the HPNA network in order to derive packet loss calculations in the HPNA network. + + + + {{datatype|expand}} + + + + + + + + + + + + + + + {{reference}} This is the interface over which the test is to be performed. + + + + + + + + + + + Time in {{units}} between automatic collection of performance monitoring data. A value of zero disables automatic collection of data. + The CPE MAY impose a minimum sample interval, in which case an attempt to set a (non-zero) interval that is less than this minimum MUST set the interval to the minimum and MUST NOT be regarded as an error. + If SampleInterval is a simple fraction of a day, e.g. 900 (a quarter of an hour) or 3600 (an hour), the CPE MAY choose to align sample intervals with time of day, but is not required to do so. + + + + + + + + + + + Per-node HPNA performance monitoring results. + When automatic collection is enabled, i.e. {{param|#.SampleInterval}} is non-zero, the "current" interval is defined by the most recent automatic sample and the most recent subsequent manual sample, if any. + When automatic collection is disabled, i.e. SampleInterval is zero, the "current" interval is defined by the three most recent manual samples. + Note: Packets in statistics counters are Ethernet packets. + + + + Start time for the current interval. + When automatic collection is enabled, i.e. SampleInterval is non-zero, the current interval started at the most recent automatic sample. + When automatic collection is disabled, i.e. SampleInterval is zero, the current interval started two manual samples ago. + + + + + + + + End time for the current interval. + When automatic collection is enabled, i.e. SampleInterval is non-zero, the current interval ended at the most recent manual sample since the most recent automatic sample. If there has been no such manual sample, the current interval is empty. + When automatic collection is disabled, i.e. SampleInterval is zero, the current interval ended at the most recent manual sample. + + + + + + + + {{numentries}} This is the number of HPNA nodes for which performance monitoring results were collected during the current sample interval. + + + + + + + + + Per-node HPNA performance monitoring results during the current sample interval. Each table entry contains the results collected between an HPNA node (as indicated by {{param|MACAddress}}) and the local HPNA interface (as indicated by {{param|##.Interface}}). + Note: Packet counters indicate the number of packets received between {{param|#.CurrentStart}} and {{param|#.CurrentEnd}}. + + + + + + + The MAC address of the HPNA node. + + + + + + + + The total number of bytes sent by host equipment for transmission on the HPNA interface. + + + + + + + + The total number of received bytes on the HPNA interface destined for the host equipment. + + + + + + + + The total number of packets sent by host equipment for transmission on the HPNA interface. Number includes also short error packets and control packets. + + + + + + + + The total number of good packets received on the HPNA interface destined for the host equipment. + + + + + + + + The number of broadcast packets transmitted on the HPNA interface. + + + + + + + + The number of broadcast packets received on the HPNA interface. + + + + + + + + The number of multicast packets transmitted on the HPNA interface. + + + + + + + + The number of multicast packets received on the HPNA interface. + + + + + + + + The number of packets received on the HPNA interface with CRC errors. + + + + + + + + The number of CRC error packets received on the HPNA interface destined for the host equipment. + + + + + + + + The number of packets received on the HPNA interface that are too short to be valid. + + + + + + + + The number packets sent by the host equipment that are too short to be valid. + + + + + + + + The number of received packets dropped due to lack of resources. + + + + + + + + The number packets sent by the host equipment for transmission on the HPNA interface but dropped due to lack of resources. + + + + + + + + The number of HPNA control request packets from local host. + + + + + + + + The number of HPNA control reply packets to local host. + + + + + + + + The number of HPNA control request packets from remote host. + + + + + + + + The number of HPNA control reply packets to remote host. + + + + + + + + The total number of packets transmitted to wire. + + + + + + + + The total number of broadcast packets transmitted to wire. + + + + + + + + The total number of multicast packets transmitted to wire. + + + + + + + + The number of HPNA control request packets from internal node. + + + + + + + + The number of HPNA broadcast control request packets from internal node. + + + + + + + + The number of received packets queued on host output queues. + + + + + + + + The number of packets received and forwarded to unknown hosts. + + + + + + + + The node utilization (expressed in {{units}}). + + + + + + + + + + + + Per-channel HPNA performance monitoring results. + Note: channels are unidirectional. + + + + Time at which channel data was last collected. + + + + + + + + {{numentries}} This is the number of HPNA channels for which performance monitoring results have been collected. + + + + + + + + + Per-channel HPNA performance monitoring results. + + + + + + + + The host source MAC address associated with the channel. + + + + + + + + The host destination MAC address associated with the channel. + + + + + + + + The HPNA source MAC address associated with the channel. + + + + + + + + The HPNA destination MAC address associated with the channel. + + + + + + + + Channel PHY rate (expressed in {{units}}). + + + + + + + + + + PHY Baud rate (expressed in {{units}}). + + + + + + + + + + Channel actual SNR measured in receiver side (expressed in {{units}}). + + + + + + + + + + Number of packets sent in the channel. + + + + + + + + Pre-LARQ number of packets received in the channel. + + + + + + + + Post-LARQ number of packets received in the channel. Valid only if LARQ is enabled. + + + + + + + + {{reference}} Identifies the ''FlowSpec'' associated with the channel. This parameter is only used for channels that correspond to egress traffic from the local HPNA interface. + {{null}} means that the channel is not associated with any specified flow specification in the QoS object. + + + + + + + + + + + + MoCA object that contains the {{object|Interface}} table {{bibref|MoCAv1.0}} {{bibref|MoCAv1.1}}. + + + + {{numentries}} + + + + + + + + + MoCA interface table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). Each table entry models the PHY and MAC levels of a MoCA interface {{bibref|MoCAv1.0}} {{bibref|MoCAv1.1}}. + + + + + + + + + + Enables or disables the interface. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + The current operational state of the interface (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the interface as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the interface entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + Note: Since {{object}} is a layer 1 interface, it is expected that {{param}} will not be used. + + + + + + + + + + + + + Indicates whether the interface points towards the Internet ({{true}}) or towards End Devices ({{false}}). + For example: + * For an Internet Gateway Device, {{param}} will be {{true}} for all WAN interfaces and {{false}} for all LAN interfaces. + * For a standalone WiFi Access Point that is connected via Ethernet to an Internet Gateway Device, {{param}} will be {{true}} for the Ethernet interface and {{false}} for the WiFi Radio interface. + * For an End Device, {{param}} will be {{true}} for all interfaces. + + + + + + + + The MAC Address of the interface. + Note: This is not necessarily the same as the Ethernet header source or destination MAC address, which is associated with the IP interface and is modeled via the {{param|.Ethernet.Link.{i}.MACAddress}} parameter. + + + + + + + + This interface's firmware version. + This parameter is based on ''mocaIfSoftwareVersion'' from {{bibref|MOCA11-MIB}}. + + + + + + + + + + The maximum MoCA PHY bit rate (expressed in {{units}}). + + + + + + + + + + The maximum bandwidth of this interface for flows onto the MoCA network in {{units}}. + This parameter is based on ''mocaIfMaxIngressNodeBw'' from {{bibref|MOCA11-MIB}}. + + + + + + + + + + The maximum bandwidth of this interface for flows from the MoCA network in {{units}}. + This parameter is based on ''mocaIfMaxEgressNodeBw'' from {{bibref|MOCA11-MIB}}. + + + + + + + + + + Identifies the highest MoCA version that this interface supports. + This element MUST be in the form of dot-delimited integers, where each successive integer represents a more minor category of variation. For example, 1.0, where the components mean major.minor revision number. {{pattern}} + This parameter is based on ''mocaIfMocaVersion'' from {{bibref|MOCA11-MIB}}. + + + + + + + + + + + Identifies the MoCA version that the MoCA network is currently running. + This element MUST be in the form of dot-delimited integers, where each successive integer represents a more minor category of variation. For example, 1.0, where the components mean major.minor revision number. {{pattern}} + This parameter is based on ''mocaIfNetworkVersion'' from {{bibref|MOCA11-MIB}}. + + + + + + + + + + + The Node ID of the current Network Coordinator (NC) for the MoCA network. + This parameter is based on ''mocaIfNC'' from {{bibref|MOCA11-MIB}}. + + + + + + + + The Node ID of this interface. + This parameter is based on ''mocaIfNodeID'' from {{bibref|MOCA11-MIB}}. + + + + + + + + The maximum network node capability supported by the interface. If {{param}} is {{true}} then the interface supports 16 nodes (the maximum for a MoCA 1.1 network). If {{param}} is false then the interface supports 8 nodes (the maximum for a MoCA 1.0 network). + + + + + + + + Whether this interface is a preferred Network Coordinator (NC). + This parameter is based on ''mocaIfPreferredNC'' from {{bibref|MOCA11-MIB}}. + + + + + + + + The Node ID of the backup Network Coordinator node. + This parameter is based on ''mocaIfBackupNC'' from {{bibref|MOCA11-MIB}}. + + + + + + + + The configured privacy mode. This indicates whether link-layer security is enabled ({{true}}) or disabled ({{false}}) for network admission. + The configured privacy setting MAY NOT match the current operational state ({{param|PrivacyEnabled}}), since this setting is only applied during network formation or admission. + + + + + + + + Indicates whether link-layer security is enabled or disabled. + This parameter is based on ''mocaIfPrivacyEnable'' from {{bibref|MOCA11-MIB}}. + + + + + + + + Hexadecimal encoded 64-bit mask of supported frequencies. This is the bit map of the spectrum that the interface supports, and each bit represents 25 MHz of spectrum. The least significant bit of the rightmost character corresponds to 800MHz, which is the lowest frequency. + For example, an interface that supports 1150 MHz through 1500 MHz would have a value of 0x000000001FFFC000. + This parameter is based on ''mocaIfCapabilityMask'' from {{bibref|MOCA11-MIB}}. + + + + + + + + + + The configured hexadecimal encoded 64-bit mask of enabled frequencies for network admission. + The configured frequencies MAY NOT match the current operational state ({{param|FreqCurrentMask}}), since this setting is only applied during network formation or admission. + + + + + + + + + + Hexadecimal encoded 64-bit mask of used frequencies. This is the bit map of the spectrum that can be used and is a subset of the {{param|FreqCapabilityMask}}. Each bit represents 25 MHz of spectrum. The least significant bit of the rightmost character corresponds to 800MHz, which is the lowest frequency. + This parameter is based on ''mocaIfChannelMask'' from {{bibref|MOCA11-MIB}}. + + + + + + + + + + Current Operational Frequency. The RF frequency in Hz to which the MoCA interface is currently tuned. This parameter is only valid when {{param|Status}} is {{enum|Up|Status}}. + This parameter is based on ''mocaIfRFChannel'' from {{bibref|MOCA11-MIB}}. + + + + + + + + Last Operational Frequency. The RF frequency in Hz to which the MoCA interface was tuned when last in the {{enum|Up|Status}} state. + This parameter is based on ''mocaIfLOF'' from {{bibref|MOCA11-MIB}}. + + + + + + + + MoCA Password. The value consists of numeric characters (0-9). {{pattern}} + This parameter is based on ''mocaIfPassword'' from {{bibref|MOCA11-MIB}}. + + + + + + Transmit Power attenuation in dB relative to the maximum transmit power. + The MoCA interface SHOULD have {{param|Enable}} set to {{false}} for any change in this configuration. If the parameter is modified when {{param|Enable}} is {{true}} then this change might take several minutes to complete. + This parameter is based on ''mocaIfTxPowerLimit'' from {{bibref|MOCA11-MIB}}. + + + + + + + + Target PHY rate in Mbps for the power control algorithm. + The MoCA interface SHOULD have {{param|Enable}} set to {{false}} for any change in this configuration. If the parameter is modified when {{param|Enable}} is {{true}} then this change might take several minutes to complete. + This parameter is based on ''mocaIfPowerControlTargetRate'' from {{bibref|MOCA11-MIB}}. + + + + + + + + Beacon Transmit Power attenuation in {{units}} relative to the maximum transmit power. + The MoCA interface SHOULD have {{param|Enable}} set to {{false}} for any change in this configuration. If the parameter is modified when {{param|Enable}} is {{true}} then this change might take several minutes to complete. + This parameter is based on ''mocaIfBeaconPowerLimit'' from {{bibref|MOCA11-MIB}}. + + + + + + + + + + Hexadecimal encoded 64-bit mask of MoCA taboo channels identified for the home network. This is the bit map of the spectrum that the interface supports, and each bit represents 25 MHz of spectrum. The least significant bit of the rightmost character corresponds to 800MHz, which is the lowest frequency. + This parameter is based on ''mocaIfTabooChannelMask'' from {{bibref|MOCA11-MIB}}. + + + + + + + + + + Hexadecimal encoded 64-bit mask of supported frequencies. This is the bit map of the spectrum that the interface supports, and each bit represents 25 MHz of spectrum. The least significant bit of the rightmost character corresponds to 800MHz, which is the lowest frequency. + This parameter is based on ''mocaIfNodeTabooChannelMask'' from {{bibref|MOCA11-MIB}}. + + + + + + + + + + The broadcast PHY transmit rate in {{units}} for this interface. + This parameter is based on ''mocaIfTxGcdRate'' from {{bibref|MOCA11-MIB}}. + + + + + + + + + + Transmit Power attenuation in {{units}} relative to the maximum transmit power for broadcast transmissions. + This parameter is based on ''mocaIfTxGcdPowerReduction'' from {{bibref|MOCA11-MIB}}. + + + + + + + + + + Whether this interface supports the 256 QAM feature. + This parameter is based on ''mocaIfQAM256Capable'' from {{bibref|MOCA11-MIB}}. + + + + + + + + The packet aggregation capability supported by the interface. Standard values are 0 (no support), 6 (6 {{units}}) or 10 (10 {{units}}). + This parameter is based on ''mocaIfPacketsAggrCapability'' from {{bibref|MOCA11-MIB}}. + + + + + + + + + + + {{numentries}} + + + + + + + + + Throughput statistics for this interface. + The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + The total number of bytes transmitted out of the interface, including framing characters. + + + + + + + + The total number of bytes received on the interface, including framing characters. + + + + + + + + The total number of packets transmitted out of the interface. + + + + + + + + The total number of packets received on the interface. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of packets requested for transmission which were not addressed to a multicast or broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were not addressed to a multicast or broadcast address at this layer. + + + + + + + + The total number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a multicast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a multicast address at this layer. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a broadcast address at this layer. + + + + + + + + The total number of packets received via the interface which were discarded because of an unknown or unsupported protocol. + + + + + + + + + The QoS object provides information on MoCA parameterized QoS for this interface {{bibref|MoCAv1.1}}. + + + + The number of QoS flows that this interface has from the MoCA network. + This parameter is based on ''mocaIfEgressNodeNumFlows'' from {{bibref|MOCA11-MIB}}. + + + + + + + + The number of QoS flows that this interface has onto the MoCA network. + This parameter is based on ''mocaIfIngressNodeNumFlows'' from {{bibref|MOCA11-MIB}}. + + + + + + + + {{numentries}} + + + + + + + + + The flow statistics table provides information on the MoCA parameterized QoS flows this interface has allocated onto the MoCA network. + + + + + + + The flow ID used to identify a flow in the network. + This parameter is based on ''mocaIfFlowID'' from {{bibref|MOCA11-MIB}}. + + + + + + + + The Destination Address (DA) for the packets in this flow. + This parameter is based on ''mocaIfPacketDA'' from {{bibref|MOCA11-MIB}}. + + + + + + + + Maximum required rate in {{units}}. + This parameter is based on ''mocaIfPeakDataRate'' from {{bibref|MOCA11-MIB}}. + + + + + + + + + + Maximum burst size. + This parameter is based on ''mocaIfBurstSize'' from {{bibref|MOCA11-MIB}}. + + + + + + + + Flow lease time (expressed in {{units}}). + A {{param}} of 0 means unlimited lease time. + This parameter is based on ''mocaIfLeaseTime'' from {{bibref|MOCA11-MIB}}. + + + + + + + + + + Flow lease time remaining (expressed in {{units}}). + If {{param|LeaseTime}} is 0 then a {{param}} of 0 means unlimited lease time; otherwise, a {{param}} of 0 means expired. + This parameter is based on ''mocaIfLeaseTimeLeft'' from {{bibref|MOCA11-MIB}}. + + + + + + + + + + The number of packets transmitted for this flow. + This parameter is based on ''mocaIfTxPacketsFlow'' from {{bibref|MOCA11-MIB}}. + + + + + + + + + This table contains information about other MoCA devices currently associated with this MoCA interface. + + + + + + + The MAC address of the associated device's MoCA interface. + + + + + + + + The Node ID of this remote device. + This parameter is based on ''mocaNodeIndex'' from {{bibref|MOCA11-MIB}}. + + + + + + + + Whether this remote device is a preferred Network Coordinator (NC). + This parameter is based on ''mocaNodePreferredNC'' from {{bibref|MOCA11-MIB}}. + + + + + + + + Identifies the highest MoCA version that this remote device supports. + This element MUST be in the form of dot-delimited integers, where each successive integer represents a more minor category of variation. For example, 1.0, where the components mean major.minor revision number. {{pattern}} + This parameter is based on ''mocaNodeMocaVersion'' from {{bibref|MOCA11-MIB}}. + + + + + + + + + + + The PHY transmit rate (in {{units}}) to this remote device. + This parameter is based on ''mocaMeshTxRate'' from {{bibref|MOCA11-MIB}}. + + + + + + + + + + The PHY receive rate (in {{units}}) from this remote device. + + + + + + + + + + The reduction in transmitter level (in {{units}}) due to power control. + This parameter is based on ''mocaNodeTxPowerReduction'' from {{bibref|MOCA11-MIB}}. + + + + + + + + + + The power level (in {{units}}) received at the MoCA interface from this remote device. + This parameter is based on ''mocaNodeRxPower'' from {{bibref|MOCA11-MIB}}. + + + + + + + + + + The broadcast PHY transmit rate (in {{units}}) from this remote device. + This parameter is based on ''mocaNodeTxGcdRate'' from {{bibref|MOCA11-MIB}}. + + + + + + + + + + The power level (in {{units}}) received at the MoCA interface from this remote device. + This parameter is based on ''mocaNodeRxGcdPower'' from {{bibref|MOCA11-MIB}}. + + + + + + + + + + The number of packets transmitted to this remote device (Note: Includes Broadcast, Multicast and Unicast packets). + + + + + + + + The number of packets received from this remote device (Note: Includes Broadcast, Multicast and Unicast packets). + This parameter is based on ''mocaNodeRxPackets'' from {{bibref|MOCA11-MIB}}. + + + + + + + + The number of errored and missed packets received from this remote device. + This parameter is based on ''mocaNodeRxDrops'' from {{bibref|MOCA11-MIB}}. + + + + + + + + Whether this remote device supports the 256 QAM feature. + This parameter is based on ''mocaNodeQAM256Capable'' from {{bibref|MOCA11-MIB}}. + + + + + + + + The packet aggregation capability supported by the remote device. Standard values are 0 (no support), 6 (6 {{units}}) or 10 (10 {{units}}). + This parameter is based on ''mocaNodePacketsAggrCapability'' from {{bibref|MOCA11-MIB}}. + + + + + + + + + + + The signal to noise level (in {{units}}) received at this interface from this remote device. + This parameter is based on ''mocaNodeSNR'' from {{bibref|MOCA11-MIB}}. + + + + + + + + + + Whether or not this remote device is currently present in the MoCA network. + The ability to list inactive nodes is OPTIONAL. If the CPE includes inactive nodes in this table, {{param}} MUST be set to {{false}} for each inactive node. The length of time an inactive node remains listed in this table is a local matter to the CPE. + + + + + + + + + G.hn object that contains an {{object|Interface}} table for G.hn supported CPE. The ITU-T G.hn specifications {{bibref|G.9960}} and {{bibref|G.9961}} define Physical and MAC Layers for communication between two or more G.hn nodes in the home network over multiple wired media such as power line, phone line and coaxial cable. + + + + {{numentries}} + + + + + + + + + G.hn interface table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). Each table entry models the PHY {{bibref|G.9960}} and MAC {{bibref|G.9961}} layers of a G.hn interface. + + + + + + + + + + Enables or disables the interface. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + The current operational state of the interface (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the interface as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the interface entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + Note: Since {{object}} is a layer 1 interface, it is expected that {{param}} will not be used. + + + + + + + + + + + + + Indicates whether the interface points towards the Internet ({{true}}) or towards End Devices ({{false}}). + For example: + * For an Internet Gateway Device, {{param}} will be {{true}} for all WAN interfaces and {{false}} for all LAN interfaces. + * For a standalone WiFi Access Point that is connected via Ethernet to an Internet Gateway Device, {{param}} will be {{true}} for the Ethernet interface and {{false}} for the WiFi Radio interface. + * For an End Device, {{param}} will be {{true}} for all interfaces. + + + + + + + + The MAC Address of the interface, denoted as node MAC address or REGID in {{bibref|G.9961}}. + Note: This is not necessarily the same as the Ethernet header source or destination MAC address, which is associated with the IP interface and is modeled via the {{param|.Ethernet.Link.{i}.MACAddress}} parameter. + + + + + + + + The firmware version of the interface. + + + + + + + + + + This parameter was DEPRECATED because it has been replaced by {{param|MediumType}}. + This parameter is OBSOLETED in 2.14. + + + + + + + + + + + + The maximum PHY data rate that the interface is capable of transmitting (expressed in {{units}}). + + + + + + + + + + {{list}} Identifies the target domains configured by the user, as described in {{bibref|G.9961|Section 8.6.1}}. When registering or re-registering, the G.hn interface SHOULD try to register to one of these domains in the given order. + + + + + + + + + + + + + This is the domain name to which the interface is currently registered. + {{empty}} indicates that the interface is currently not registered. + + + + + + + + + + The Domain Name Identifier, a shortened version of {{param|DomainName}}, denoted as DNI in {{bibref|G.9961|Section 8.6.11.2.1}}. + + + + + + + + The Domain Identifier of the domain to which the interface is registered, denoted as DOD in {{bibref|G.9961}}. + + + + + + + + The Device Identifier assigned by the Domain Master, denoted as DEVICE_ID in {{bibref|G.9961}}. + The value 0 indicates that the device is not currently registered. + + + + + + + + The maximum PHY bit rate supported by this interface (expressed in {{units}}). + + + + + + + + + + Indicates whether this interface has the capability to act as Domain Master in the G.hn domain. + + + + + + + + Indicates a request to force the role of the G.hn interface to Domain Master (DM) for the G.hn domain it is connected to. The selection of the Domain Master follows the procedures described in {{bibref|G.9961|Clause 8.6.6}}. + + + + + + + + Indicates whether this G.hn interface is currently the Domain Master (DM) for the G.hn domain it is connected to, as described in {{bibref|G.9961|Clause 8.6}}. + + + + + + + + Indicates whether this interface has the capability to act as Security Controller in the G.hn domain. + + + + + + + + Indicates a request to force the role of the G.hn interface to Security Controller (SC) for the G.hn domain it is connected to. The selection of the Security Controller follows the procedures described in {{bibref|G.9961|Clause 9.2}}. + + + + + + + + Indicates whether this G.hn interface is currently the Security Controller (SC) for the G.hn domain it is connected to, as described in {{bibref|G.9961|Clause 9.2}}. + + + + + + + + The standard versions that the interface supports. The list MUST have an even number of items. The first item of each pair represents an ITU-T G.hn Recommendation while the second element of each pair represents the amendment version of the indicated Recommendation that this interface supports (the value 0 corresponds to the base Recommendation). + For example, to indicate support for the G.9960 base document and G.9961 amendment 1, the corresponding list would be "G9960,0,G9961,1". + + + + + + + + + The largest bandplan that the interface can support, as defined in {{bibref|G.9961|Clause 8.8.5.5}}. + + + + + + + + The medium type that the interface currently operates on. Refer to {{bibref|G.9962|Table 7-5}}. + + + + + + + + + + + + + + The Acknowledgement InterFrame Gap, or TAIFG, as defined in {{bibref|G.9961|Clause 8.4}}. It is represented as multiples of {{units}}. + + + + + + + + + + A bit map representing usage of international amateur bands (0 = masked, 1 = unmasked). The LSB represents the lowest band (1.8-2.0 MHz), the second LSB represents the second lowest band (3.5-4.0 MHz), and so on. The maximum value for this parameter is 0x03FF, i.e. it is a 10-bit quantity represented in 16 bits and the top 6 bits are always zero. + International Radio amateur bands are described in {{bibref|G.9964|Table D-1}} and conveyed by the Domain Master in the Amateur radio band descriptor (see {{bibref|G.9961|Table 8-77}}). + + + + + + + + + + Comma-separated list of DeviceIDs of nodes that need to enable their PHY throughput diagnostics mode. All devices that are enabled will participate in the G.hn network PHY throughput diagnostics process. + + + + + + + + Comma-separated list of DeviceIDs of nodes that need to enable their Performance Monitoring diagnostics mode on this node. All devices that are enabled will participate in the G.hn network Performance Monitoring diagnostics process. + + + + + + + + {{numentries}} + + + + + + + + Requests the interface to become the Domain Master in the G.hn domain. + This parameter is valid only if {{param|NodeTypeDMCapable}} is {{true}}. + Note that, if more than one node is configured to act as Domain Master, G.hn specifies a protocol to ensure only one device actually becomes DM. + + + + + + + + Indicates whether the interface is acting as Domain Master ({{true}}) or not ({{false}}). + See Note in {{param|NodeTypeDMConfig}} regarding the possibility of more than one node being configured with {{param|NodeTypeDMConfig}} = {{true}}. + + + + + + + + Indicates whether the interface is acting as Security Controller ({{true}}) or not ({{false}}). + + + + + + + + {{numentries}} + + + + + + + + Specifies the list of PSD shaping mask (PSM) breakpoints to be applied to the G.hn interface. + {{list|with each list item consisting of the following}} + {{datatype|expand}} + The PSM level is 0.1*(the value of the level of the PSM) - 140 dBm/Hz. + For example, a PSM defined by two breakpoints (subcarrier 450, PSM level -80 dBm/Hz) and (subcarrier 1050, PSM level -90 dBm/Hz) is represented by PSM [450,600],[1050,500] . + + + + + + + + + + Throughput statistics for this interface at the different G.hn reference points described in {{bibref|G.9961|Clause 8.1}}. + The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + The total number of bytes transmitted out of the interface, including framing characters. + More specifically, this is the total number of MPDU bytes transmitted or retransmitted by the node through a physical medium (i.e., PMI defined in {{bibref|G.9960|Clause 5.2.1}}), which correspond to data LPDUs (i.e., data packets) and framing overhead (e.g., LFH, LPH, LPCS defined in {{bibref|G.9961|Clause 8.1}}). It does not include transmitted bytes contributed by management LPDUs (i.e., management packets). + Note: LPDUs in mixed LLC frame blocks are considered data LPDUs. + + + + + + + + The total number of bytes received on the interface, including framing characters. + More specifically, this is the total number of MPDU bytes received by the node through a physical medium, which correspond to data LPDUs and framing overhead. It does not include received bytes contributed by management LPDUs. It can include blocks with errors. + Note: LPDUs in mixed LLC frame blocks are considered data LPDUs. + + + + + + + + The total number of packets transmitted out of the interface. + More specifically, this is the total number of APDUs requested for transmission by a higher layer (i.e., outbound APDUs at the x1 reference point defined in {{bibref|G.9960|Clause 5.2.1}}) that were transmitted by the node through the physical medium. It does not include transmitted LCDUs. + + + + + + + + The total number of packets received on the interface. + More specifically, this is the total number of APDUs delivered to a higher layer (i.e., inbound APDUs at the x1 reference point) that were received by the node through the physical medium. It does not include received LCDUs. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. + More specifically, this is the total number of APDUs that were requested for transmission by a higher layer (i.e., outbound APDUs at the x1 reference point defined in {{bibref|G.9960|Clause 5.2.1}}) but could not be transmitted because of errors (e.g., APDUs containing CRC errors). + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + More specifically, this is the total number of received APDUs that contained errors preventing them from being delivered to a higher layer (i.e., inbound APDUs at the x1 reference point defined in {{bibref|G.9960|Clause 5.2.1}}). The possible causes of error are: incorrect CRC, incorrect MIC, incorrect MIC size, and incorrect size of packet. + + + + + + + + The total number of packets requested for transmission which were not addressed to a multicast or broadcast address at this layer, including those that were discarded or not sent. + More specifically, this is the total number of APDUs that were requested for transmission by a higher layer (i.e., outbound APDUs at the x1 reference point) and which were addressed to a unicast address at this layer. It includes APDUs that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were not addressed to a multicast or broadcast address at this layer. + More specifically, this is the total number of received APDUs that were delivered to a higher layer (i.e., inbound APDUs at the x1 reference point) and which were addressed to a unicast address at this layer. + + + + + + + + The total number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + More specifically, this is the total number of APDUs that were requested for transmission by a higher layer (i.e., outbound APDUs at the x1 reference point) but chosen to be discarded even though no errors had been detected to prevent their being transmitted (e.g., buffer overflow). + + + + + + + + The total number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + More specifically, this is the total number of received APDUs that were chosen to be discarded even though no errors had been detected to prevent their being delivered. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a multicast address at this layer, including those that were discarded or not sent. + More specifically, this is the total number of APDUs that were requested for transmission by a higher layer (i.e., outbound APDUs at the x1 reference point) and which were addressed to a multicast address at this layer. It includes APDUs that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a multicast address at this layer. + More specifically, this is the total number of received APDUs that were delivered to a higher layer (i.e., inbound APDUs at the x1 reference point) and which were addressed to a multicast address at this layer. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a broadcast address at this layer, including those that were discarded or not sent. + More specifically, this is the total number of APDUs that were requested for transmission by a higher layer (i.e., outbound APDUs at the x1 reference point) and which were addressed to a broadcast address at this layer. It includes APDUs that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a broadcast address at this layer. + More specifically, this is the total number of received APDUs that were delivered to a higher layer (i.e., inbound APDUs at the x1 reference point) and which were addressed to a broadcast address at this layer. + + + + + + + + The total number of packets received via the interface which were discarded because of an unknown or unsupported protocol. + More specifically, this is the total number of APDUs received by the management that were discarded because of an unknown or unsupported protocol. + + + + + + + + The total number of MPDU bytes transmitted by the node through a physical medium, which correspond to management LPDUs and framing overhead. + + + + + + + + The total number of MPDU bytes received by the node through a physical medium, which correspond to management LPDUs and framing overhead. + + + + + + + + The total number of LCDUs requested for transmission by a management layer (i.e., outbound LCDUs generated in LLC defined in {{bibref|G.9961|Clause 8.1.3}}) that were transmitted by the node through a physical medium. + + + + + + + + The total number of LCDUs delivered to a management layer (i.e., inbound LCDUs) that were received by the node through a physical medium. + + + + + + + + The total number of LPDUs that were transmitted by the node through a physical medium, regardless of new or retransmitted LPDUs. + + + + + + + + The total number of LPDUs that were received by the node through a physical medium, with or without errors. + + + + + + + + The total number of LPDUs that were retransmitted. + + + + + + + + The total number of received LPDUs that contained errors. + Note the following relationships hold: + * PacketsSent + ErrorsSent + DiscardPacketsSent = UnicastPacketsSent + MulticastPacketsSent + BroadcastPacketsSent. + * PacketsReceived = UnicastPacketsReceived + MulticastPacketsReceived + BroadcastPacketsReceived. + * Retransmission rate = BlocksResent / BlocksSent. + * Block error rate = BlocksErrorReceived / BlocksReceived. + + + + + + + + + This table contains information about other G.hn devices connected to this G.hn interface. + + + + + + + MAC address of remote G.hn device. + This is denoted as REGID in {{bibref|G.9961}}. + + + + + + + + Device Id (as defined in G.hn) for the remote G.hn device, denoted as DEVICE_ID in {{bibref|G.9961}}. + + + + + + + + The PHY transmit Rate (expressed in {{units}}) to this remote device, denoted as PHY data rate in {{bibref|G.9961}}. + Refer to Note 1 of {{bibref|G.9961|Table 8-48}}. To convert from the value in the table, divide by 32K (32768) and round down. + + + + + + + + + + The PHY receive Rate (expressed in {{units}}) from this remote device, denoted as PHY data rate in {{bibref|G.9961}}. + Refer to Note 1 of {{bibref|G.9961|Table 8-48}}. To convert from the value in the table, divide by 32K (32768) and round down. + + + + + + + + + + Whether or not this device is currently present in the G.hn domain. + The ability to list inactive nodes is OPTIONAL. If the CPE includes inactive nodes in this table, {{param}} MUST be set to {{false}} for each inactive node. The length of time an inactive node remains listed in this table is a local matter to the CPE. + If {{param}} is {{true}}, it indicates that the Status of the remote device is 0, 1, or 2 (see {{bibref|G.9961|Table 7-3}}). + + + + + + + + + This object specifies management parameters pertaining to the domain functionality (Domain Master function; see {{bibref|G.9961|Clause 8.6}}). The object exists only on G.hn interfaces that are currently the Domain Master, i.e. for which parameter {{param|#.IsDM}} is {{true}}. + + + + This is the domain name to which the interface is currently registered. {{empty}} indicates that the interface is currently not registered. + + + + + + + + + + The Domain Name Identifier, a shortened version of {{param|DomainName}}, denoted as DNI in {{bibref|G.9961|Section 8.6.11.2.1}}. + + + + + + + + + + The Domain Identifier of the domain to which the interface is registered, denoted as DOD in {{bibref|G.9961}}. + + + + + + + + The MAC cycle duration, as specified in {{bibref|G.9961|Clause 8.4}}. It is represented as multiples of {{units}}. In the case of power line, writing to this parameter has no effect and it reads back as 0, which is a special value indicating that the MAC cycle is synchronized with 2 AC cycles as defined in {{bibref|G.9961|Clause 8.6.3.1}}. + + + + + + + + + + + + The DEVICE_ID of the Security Controller selected by the Domain Master. + + + + + + + + The REGID of the Security Controller selected by the Domain Master. + + + + + + + + The time interval for periodic re-registration, as specified in {{bibref|G.9961|Clause 8.8.5.8}}. It is represented as multiples of {{units}}. + + + + + + + + + + + The time interval that a node sends out the periodic topology update using TM_NodeTopologyChange.ind message, as specified in {{bibref|G.9961|Clause 8.8.5.8.1}}. It is represented as multiples of {{units}}. The special value 0 represents an infinite interval (i.e., no periodic topology update). + + + + + + + + + + + Indicates the value of the minimal bandplan capability for a node that is allowed to register to the domain. + + + + + + + + Indicates the value of the minimal bandplan capability for a node that is allowed to register to the domain. + + + + + + + + + This object specifies management parameters pertaining to the Security Controller functionality (Security Controller function; see {{bibref|G.9961|Clause 9.2}}). The object exists only on G.hn interfaces that are currently the Security Controller, i.e. for which parameter {{param|#.IsSC}} is {{true}}. + + + + The security modes that the Security Controller can support. Refer to {{bibref|G.9961|Clause 9.2}}. + + + + + + + Node-to-Node + + + + + Network Membership Key + + + + + + + + The security mode in which the Security Controller is operating. + + + + + + + + + + The selected MIC size used in the domain. + + + + + + + + + + + + Indicates whether the Security Controller is above the L1 reference point. It is set to {{true}} if the Security Controller is above the L1 reference point, and set to {{false}} otherwise. + + + + + + + + + Specifies the list of masked bands to be applied to the G.hn interface. This information is conveyed by the Domain Master in the SM descriptor as specified in {{bibref|G.9961|Table 8-77}}. + Instances of this object are expected to exist only on G.hn interfaces that are currently the Domain Master, i.e. for which parameter {{param|#.IsDM}} is {{true}}. + + + + + + + Enables or disables the {{object}}. + + + + + + + + The masked band number. + + + + + + + + Index of the lowest frequency sub-carrier in the band to be masked as specified in {{bibref|G.9961|Table 8-79}}. This parameter is writable only on the interface which acts as the Domain Master. + + + + + + + + Index of the highest frequency sub-carrier in the band to be masked as specified in Table 8-79 in {{bibref|G.9961}}. This parameter is writable only on the interface which acts as the Domain Master. + + + + + + + + + The G.hn Diagnostics object. + + + + + G.hn PHY throughput diagnostics configuration and results. + When diagnostics are requested, all G.hn nodes for which the {{param|##.Interface.{i}.PHYThroughputDiagnosticsEnable}} parameter is set enter PHY diagnostics mode. + + + + {{datatype|expand}} + + + + + + + + + + + + + + + G.hn Performance Monitoring diagnostics configuration and results. + When diagnostics are requested, all G.hn nodes for which the {{param|##.Interface.{i}.PerformanceMonitoringDiagnosticsEnable}} parameter is set enter PHY diagnostics mode. + + + + {{datatype|expand}} + + + + + + + + + + + + + + The interface over which the test is to be performed. + + + + + + + + + + The MAC address of the originating G.hn interface of the link that is being diagnosed. + Note: This MAC address might belong to another node of the domain. + + + + + + + + Time in {{units}} between automatic collection of performance monitoring data. A value of zero disables automatic collection of data. + The node MAY impose a minimum sample interval, in which case an attempt to set a (non-zero) interval that is less than this minimum MUST set the interval to the minimum and MUST NOT be regarded as an error. + If SampleInterval is a simple fraction of a day, e.g. 900 (a quarter of an hour) or 3600 (an hour), the device MAY choose to align sample intervals with time of day, but is not required to do so. + + + + + + + + + + The number of sub-carriers in a group to be used for averaging SNR values when providing SNR information for a channel. + + + + + + + + + + + + + + + + + + + Per-node G.hn performance monitoring results. + When automatic collection is enabled, i.e. {{param|#.SampleInterval}} is non-zero, the "current" interval is defined by the most recent automatic sample and the most recent subsequent manual sample, if any. + When automatic collection is disabled, i.e. SampleInterval is zero, the "current" interval is defined by the three most recent manual samples. + Note: Packets in statistics counters are Ethernet packets. + + + + Start time for the current interval. + When automatic collection is enabled, i.e. SampleInterval is non-zero, the current interval started at the most recent automatic sample. + When automatic collection is disabled, i.e. SampleInterval is zero, the current interval started two manual samples ago. + + + + + + + + End time for the current interval. + When automatic collection is enabled, i.e. SampleInterval is non-zero, the current interval ended at the most recent manual sample since the most recent automatic sample. If there has been no such manual sample, the current interval is empty. + When automatic collection is disabled, i.e. SampleInterval is zero, the current interval ended at the most recent manual sample. + + + + + + + + {{numentries}} This is the number of G.hn nodes for which performance monitoring results were collected during the current sample interval. + + + + + + + + + Per-node G.hn performance monitoring results during the current sample interval. Each table entry contains the results collected between the G.hn nodes with MAC addresses {{param|##.DiagnoseMACAddress}}) and {{param|DestinationMACAddress}}). + Note: Packet counters indicate the number of packets received between {{param|#.CurrentStart}} and {{param|#.CurrentEnd}}. + + + + + + + MAC address of the destination node of the link being measured. + + + + + + + + The total number of MPDU bytes transmitted or retransmitted by the node through a physical medium (i.e., PMI defined in {{bibref|G.9960|Clause 5.2.1}}), which correspond to data LPDUs (i.e., data packets) and framing overhead (e.g., LFH, LPH, LPCS defined in {{bibref|G.9961|Clause 8.1}}). It does not include transmitted bytes contributed by management LPDUs (i.e., management packets). + Note: LPDUs in mixed LLC frame blocks are considered data LPDUs. + + + + + + + + The total number of MPDU bytes received by the node through a physical medium, which correspond to data LPDUs and framing overhead. It does not include received bytes contributed by management LPDUs. It might include blocks with errors. + Note: LPDUs in mixed LLC frame blocks are considered data LPDUs. + + + + + + + + The total number of APDUs requested for transmission by a higher layer (i.e., outbound APDUs at the x1 reference point defined in {{bibref|G.9960|Clause 5.2.1}}) that were transmitted by the node through the physical medium. It does not include transmitted LCDUs. + + + + + + + + The total number of APDUs delivered to a higher layer (i.e., inbound APDUs at the x1 reference point) that were received by the node through the physical medium. It does not include received LCDUs. + + + + + + + + The total number of APDUs that were requested for transmission by a higher layer (i.e., outbound APDUs at the x1 reference point defined in {{bibref|G.9960|Clause 5.2.1}}). This parameter represents the total number of LCDUs requested for transmission by a management layer (i.e., outbound LCDUs generated in LLC defined in in {{bibref|G.9961|Clause 8.1.3}}) that were transmitted by the node through a physical medium) but could not be transmitted because of errors (e.g., APDUs containing CRC errors). + + + + + + + + The total number of received APDUs that contained errors preventing them from being delivered to a higher layer (i.e., inbound APDUs at the x1 reference point defined in {{bibref|G.9960|Clause 5.2.1}}). The possible causes of error are: incorrect CRC, incorrect MIC, incorrect MIC size, and incorrect size of packet. + + + + + + + + The total number of APDUs that were requested for transmission by a higher layer (i.e., outbound APDUs at the x1 reference point) and which were addressed to a unicast address at this layer. It includes APDUs that were discarded or not sent. + + + + + + + + The total number of received APDUs that were delivered to a higher layer (i.e., inbound APDUs at the x1 reference point) and which were addressed to a unicast address at this layer. + + + + + + + + The total number of APDUs that were requested for transmission by a higher layer (i.e., outbound APDUs at the x1 reference point) but chosen to be discarded even though no errors had been detected to prevent their being transmitted (e.g., buffer overflow). + + + + + + + + The total number of received APDUs that were chosen to be discarded even though no errors had been detected to prevent their being delivered. + + + + + + + + The total number of APDUs that were requested for transmission by a higher layer (i.e., outbound APDUs at the x1 reference point) and which were addressed to a multicast address at this layer. It includes APDUs that were discarded or not sent. + + + + + + + + The total number of received APDUs that were delivered to a higher layer (i.e., inbound APDUs at the x1 reference point) and which were addressed to a multicast address at this layer. + + + + + + + + The total number of APDUs that were requested for transmission by a higher layer (i.e., outbound APDUs at the x1 reference point) and which were addressed to a broadcast address at this layer. It includes APDUs that were discarded or not sent. + + + + + + + + The total number of received APDUs that were delivered to a higher layer (i.e., inbound APDUs at the x1 reference point) and which were addressed to a broadcast address at this layer. + + + + + + + + The total number of APDUs received by the management that were discarded because of an unknown or unsupported protocol. + + + + + + + + The total number of MPDU bytes transmitted by the node through a physical medium, which correspond to management LPDUs and framing overhead. + + + + + + + + The total number of MPDU bytes received by the node through a physical medium, which correspond to management LPDUs and framing overhead. + + + + + + + + The total number of LCDUs requested for transmission by a management layer (i.e., outbound LCDUs generated in LLC defined in {{bibref|G.9961|Clause 8.1.3}}) that were transmitted by the node through a physical medium. + + + + + + + + The total number of LCDUs delivered to a management layer (i.e., inbound LCDUs) that were received by the node through a physical medium. + + + + + + + + The total number of LPDUs that were transmitted by the node through a physical medium, regardless of new or retransmitted LPDUs. + + + + + + + + The total number of LPDUs that were received by the node through a physical medium, with or without errors. + + + + + + + + The total number of LPDUs that were retransmitted. + + + + + + + + The total number of received LPDUs that contained errors. + Note the following relationships hold: + * PacketsSent + ErrorsSent + DiscardPacketsSent = UnicastPacketsSent + MulticastPacketsSent + BroadcastPacketsSent. + * PacketsReceived = UnicastPacketsReceived + MulticastPacketsReceived + BroadcastPacketsReceived. + * Retransmission rate = BlocksResent / BlocksSent. + * Block error rate = BlocksErrorReceived / BlocksReceived. + + + + + + + + + Per-channel G.hn performance monitoring results. + Note: channels are unidirectional. + + + + Time at which channel data was last collected. + + + + + + + + {{numentries}} + + + + + + + + + Per-channel G.hn performance monitoring results during the current sample interval. Each table entry contains the results collected from the channel between a G.hn interface (as indicated by {{param|##.DiagnoseMACAddress}}) and a G.hn interface indicated by {{param|DestinationMACAddress}}) + + + + + + + MAC address of the destination node of the link being measured. + + + + + + + + The result of an SNR test performed over the channel. It is formatted as a comma-separated list of N/M unsigned integers that represents the result of Signal-to-Noise-Ratio measurement averaging in groups of M subcarriers. The number N depends on the bandplan used by the node and corresponds to the OFDM control parameter N of each medium as defined in {{bibref|G.9964}}. The number M corresponds to the parameter {{param|##.SNRGroupLength}}. + + + + + + + + + + + + HomePlug object that contains the {{object|Interface}} table. The HomePlug industry standard {{bibref|HPAV1.1}} defines peer to peer communication over powerline medium. + + + + {{numentries}} + + + + + + + + + HomePlug interface table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). Each table entry models the PHY and MAC levels of a HomePlug interface {{bibref|HPAV1.1}}. + + + + + + + + + + Enables or disables the interface. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + The current operational state of the interface (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the interface as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the interface entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + Note: Since {{object}} is a layer 1 interface, it is expected that {{param}} will not be used. + + + + + + + + + + + + + Indicates whether the interface points towards the Internet ({{true}}) or towards End Devices ({{false}}). + For example: + * For an Internet Gateway Device, {{param}} will be {{true}} for all WAN interfaces and {{false}} for all LAN interfaces. + * For a standalone WiFi Access Point that is connected via Ethernet to an Internet Gateway Device, {{param}} will be {{true}} for the Ethernet interface and {{false}} for the WiFi Radio interface. + * For an End Device, {{param}} will be {{true}} for all interfaces. + + + + + + + + The MAC Address of the interface. + Note: This is not necessarily the same as the Ethernet header source or destination MAC address, which is associated with the IP interface and is modeled via the {{param|.Ethernet.Link.{i}.MACAddress}} parameter. + + + + + + + + The textual name of the HomePlug Logical Network. + + + + + + + + + + Indicates the HomePlug version of the interface. This element SHOULD be in the form of dot-delimited integers, where each successive integer represents a more minor category of variation. For example: + : "1.0" + : "1.1" + + + + + + + + + + The firmware version of the interface. + + + + + + + + + + Central Coordinator (CCo) selection mode. + If {{false}}, CCo selection is automatic. If {{true}}, the local HomePlug interface is forced to be CCo and all other devices in the Logical Network MUST be set to automatic CCo selection. + Typically {{param}} is set to automatic CCo selection ({{false}}). + + + + + + + + + The network password of the device. This is a human readable ASCII string that is hashed per the HomePlug specification to generate the Network Membership Key (NMK). Note that care needs to be taken when setting this parameter as it might prohibit communication with other adapters or equipment connected via the powerline network. + + + + + + {{list}} Indicates whether any other HomePlug networks are currently visible via this interface. Examples of valid list items include, but are not limited to: + : "HomePlugAV" + : "HomePlug1.0" + : "Other" + + + + + + + + + + + The maximum PHY bit rate supported by this interface (expressed in {{units}}). + + + + + + + + + + {{numentries}} + + + + + + + + + Throughput statistics for this interface. + The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + The total number of bytes transmitted out of the interface, including framing characters. + + + + + + + + The total number of bytes received on the interface, including framing characters. + + + + + + + + The total number of packets transmitted out of the interface. + + + + + + + + The total number of packets received on the interface. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of packets requested for transmission which were not addressed to a multicast or broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were not addressed to a multicast or broadcast address at this layer. + + + + + + + + The total number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a multicast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a multicast address at this layer. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a broadcast address at this layer. + + + + + + + + The total number of packets received via the interface which were discarded because of an unknown or unsupported protocol. + + + + + + + + HomePlug-specific statistic. The Number of MAC Protocol Data Units (MPDUs) Transmitted and Acknowledged. + + + + + + + + HomePlug-specific statistic. The Number of MAC Protocol Data Units (MPDUs) Transmitted and Collided + + + + + + + + HomePlug-specific statistic. The Number of MAC Protocol Data Units (MPDUs) Transmitted and Failed + + + + + + + + HomePlug-specific statistic. The Number of MAC Protocol Data Units (MPDUs) Received and Acknowledged + + + + + + + + HomePlug-specific statistic. The Number of MAC Protocol Data Units (MPDUs) Received and Failed + + + + + + + + + This table contains information about other HomePlug devices connected to this HomePlug interface. + + + + + + + MAC address of remote HomePlug device. It is used to uniquely identify and easily correlate with the connected remote HomePlug device. + + + + + + + + The PHY transmit Rate (expressed in {{units}}) to this remote device. + + + + + + + + + + The PHY receive Rate (expressed in {{units}}) from this remote device. + + + + + + + + + + {{list}} List items indicate Signal to Noise Ratio (SNR) per tone from this remote device (expressed in {{units}}). + + + + + + + + + + + Average attenuation from this remote device (expressed in {{units}}). + + + + + + + + + + {{list}} List items represent MAC addresses of end stations bridged by the remote HomePlug device. + For example: "11:22:33:AA:BB:CC, 22:33:44:DD:EE:66" + + + + + + + + + Whether or not this device is currently present in the HomePlug network. + The ability to list inactive nodes is OPTIONAL. If the CPE includes inactive nodes in this table, {{param}} MUST be set to {{false}} for each inactive node. The length of time an inactive node remains listed in this table is a local matter to the CPE. + + + + + + + + + Universal Powerline Association {{bibref|UPA-PLC}}. This object contains the {{object|Interface}} and {{object|Diagnostics}} objects. + + + + {{numentries}} + + + + + + + + + UPA interface table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). Each table entry models the PHY and MAC levels of a UPA interface {{bibref|UPA-PLC}}. + + + + + + + + + + Enables or disables the interface. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + The current operational state of the interface (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the interface as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the interface entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + Note: Since {{object}} is a layer 1 interface, it is expected that {{param}} will not be used. + + + + + + + + + + + + + Indicates whether the interface points towards the Internet ({{true}}) or towards End Devices ({{false}}). + For example: + * For an Internet Gateway Device, {{param}} will be {{true}} for all WAN interfaces and {{false}} for all LAN interfaces. + * For a standalone WiFi Access Point that is connected via Ethernet to an Internet Gateway Device, {{param}} will be {{true}} for the Ethernet interface and {{false}} for the WiFi Radio interface. + * For an End Device, {{param}} will be {{true}} for all interfaces. + + + + + + + + The MAC Address of the interface. + Note: This is not necessarily the same as the Ethernet header source or destination MAC address, which is associated with the IP interface and is modeled via the {{param|.Ethernet.Link.{i}.MACAddress}} parameter. + + + + + + + + This interface's firmware version. + + + + + + + + + + The maximum PHY bit rate supported by this interface (expressed in {{units}}). + + + + + + + + + + Type of UPA device role. It can be Fixed Access Point (master) or End Point (slave) of the PLC network. {{enum}} + + + + + + + + + + + The name (network ID) of the logical PLC network in which the local interface is a member (human readable string). + + + + + + + + + + Encryption Method used by UPA device. {{enum}} + + + + + + + + + + + + + + + Encryption key for secure PLC communications. + This a human readable string used by the system to generate the encryption key to encrypt communications in powerline. It takes non extended ASCII characters (i.e. printable 7-bit ASCII character codes 32-126, which includes SPACE but excludes TAB, LF and CR). For example: bvjPekZiYUf9kjNKJASkgJ09adfoP01Fjvgd + + + + + + Power back-off management feature status in the UPA device. Boolean can be {{true}} for "enabled" and {{false}} for "disabled". + + + + + + + + Show if power back-off mechanism is active at that time in the UPA device. Boolean can be {{true}} for "active" and {{false}} for "not active". + + + + + + + + The estimated application throughput (expressed in {{units}}), received from the PLC link. This value can be used to indicate link quality. + + + + + + + + + + Enables or disables the {{object|ActiveNotch}} table for this interface. + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + Throughput statistics for this interface. + The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + The total number of bytes transmitted out of the interface, including framing characters. + + + + + + + + The total number of bytes received on the interface, including framing characters. + + + + + + + + The total number of packets transmitted out of the interface. + + + + + + + + The total number of packets received on the interface. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of packets requested for transmission which were not addressed to a multicast or broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were not addressed to a multicast or broadcast address at this layer. + + + + + + + + The total number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a multicast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a multicast address at this layer. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a broadcast address at this layer. + + + + + + + + The total number of packets received via the interface which were discarded because of an unknown or unsupported protocol. + + + + + + + + + This table contains information about PLC connections running between this UPA interface and other UPA devices. + + + + + + + Remote UPA device MAC address. + + + + + + + + The PLC port number. + + + + + + + + + + The name of the logical PLC network (human readable string). + In the case where the associated device belongs to a different powerline network than the UPA interface, the actual network identifier of the neighboring network is not shown in {{param}}. Rather, only a generic string, e.g. "Network 1", "Network 2", etc is stored here due to security/privacy implications. + + + + + + + + + + Physical transmission throughput (in {{units}}). + + + + + + + + + + Physical reception throughput (in {{units}}). + + + + + + + + + + Real Physical reception throughput (in {{units}}). + + + + + + + + + + Estimated PDU Loss Rate measurement between two devices (i.e. estimated {{units}} of MPDUs that have been received with errors). + + + + + + + + + + + Mean estimated attenuation (i.e. channel loss between the local interface and the remote device). It is measured in {{units}}. + + + + + + + + + + Intermediate UPA adapter MAC address of the device that is acting as a relay to increase coverage in mesh scenarios. This is the MAC address of a third UPA device, with which the UPA interface is doing smart repeating in order to transmit data to the associated {{param|MACAddress}} UPA device. {{param}} will be empty when {{param|DirectRoute}} is {{true}}. + + + + + + + + Route status, where {{true}} indicates ''direct'' and {{false}} indicates ''indirect''. + + + + + + + + Whether or not this node is currently present in the UPA network. + The ability to list inactive nodes is OPTIONAL. If the CPE includes inactive nodes in this table, {{param}} MUST be set to {{false}} for each inactive node. The length of time an inactive node remains listed in this table is a local matter to the CPE. + + + + + + + + + This object contains the list of active notches of the UPA interface. + A UPA device can have notches in its spectrum, where no power is transmitted in a given part of the spectrum. These notches are typically located in amateur radio bands, to avoid interference. + Note: All {{object}} entries can be enabled/disabled as a group using the {{param|#.ActiveNotchEnable}} parameter. + + + + + + + Enables or disables the active notch entry. + + + + + + + + + {{datatype|expand}} + + + + + + + + The initial frequency (in {{units}}) of a notch enabled in the spectrum of the local interface. + + + + + + + + + + The final frequency (in {{units}}) of a notch enabled in the spectrum of the local interface. + + + + + + + + + + The depth (in {{units}}) of a notch enabled in the spectrum of the local interface. + + + + + + + + + + + This object represents the bridge table of the UPA interface. Each instance is a bridge table entry. + It shows the MAC addresses of the remote UPA devices with their associated port number, and the MAC addresses of the end-devices (PCs, STBs, routers, etc) connected to Ethernet port of the powerline adapters with their associated logical port. In this way the system identifies to which UPA device an external device is connected to. + + + + + + + + + + {{datatype|expand}} + + + + + + + + MAC address of the device. + + + + + + + + Internal bridge associated port. + + + + + + + + + + + The UPA Diagnostics object. + + + + + This object provides access to either a Signal-to-Noise-Ratio (SNR) Port Measurement test or a Channel Frequency Response (CFR) Port Measurement test. The {{param|Type}} parameter is used to select which type of test to perform. + CFR and SNR measurements are done between a two UPA devices (a local interface and a remote device belonging to the same network). + + + + {{datatype|expand}} + + + + + + + + + + + + + + + Indicates the type of port measurement test to be carried out. {{enum}}. + + + + + + Signal-to-Noise-Ratio + + + + + Channel Frequency Response + + + + + + + + {{reference}} This is the local UPA interface from which the test is to be performed. + + + + + + + + + + + PLC port being measured. This identifies which PLC connection to measure between the local interface (indicated by {{param|Interface}}) and the remote device (implied by {{param}}). + + + + + + + + + + {{list}} Result of Signal-to-Noise-Ratio measurement (if {{param|Type}} is {{enum|SNR|Type}}) or Channel Frequency Response measurement (if {{param|Type}} is {{enum|CFR|Type}}). + List items indicate measurements per carrier for a PLC port (expressed in {{units}}). + + + + + + + + + + + Reception gain of the adapter (expresssed in {{units}}). + + + + + + + + + + + The WiFi object is based on the WiFi Alliance 802.11 specifications ({{bibref|802.11-2007}}). It defines interface objects ({{object|Radio}} and {{object|SSID}}), and application objects ({{object|AccessPoint}} and {{object|EndPoint}}). + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + This parameter counts the number of WiFi host or driver resets since the last device reset. This parameter is reset to zero after the device resets, and increments with each successive WiFi host or driver reset. + + + + + + + + Reports the cause for the previous Wi-Fi driver reset. + + + + + + Indicates that the host processor intentionally performed the reset. This can be due to an external instruction. + + + + + Indicates that the reset was spontaneous. This can be due to an error condition. + + + + + Indicates that the reset was due to a loss of mains power on the device. + + + + + + + + This parameter represents a request to reset or reboot the WiFi sub-system without resetting or rebooting the device. + + + + + + + + + This object describes a Wi-Fi network containing 1 or more Access Point devices. + This object is related to a Wi-Fi network that contains multiple Access Points (Multi-AP) and utilizes software logic to optimize that Wi-Fi network (typically via steering STAs, also known as Associated Devices, to the best Access Point). This object exposes the view of the Wi-Fi netwtork from the perspective of the Multi-AP Controller. The Wi-Fi Alliance EasyMesh solution is one example of managing a Multi-AP network. + + + + {{numentries}} + + + + + + + + + The summary of statistics related to Multi-AP Steering for the Wi-Fi network. + The counters contained in {{object}} are all reset on reboot. + + + + Number of times Associated Devices should have been steered but weren't because a better candidate AP couldn't be found. + + + + + + + + Number of times a Blacklist steer was attempted. + + + + + + + + Number of times an attempted Blacklist steer succeeded. + + + + + + + + Number of times an attempted Blacklist steer failed. + + + + + + + + Number of times a BTM (BSS Transition Management; 802.11k) steer was attempted. + + + + + + + + Number of times an attempted BTM (BSS Transition Management; 802.11k) steer succeeded. + + + + + + + + Number of times an attempted BTM (BSS Transition Management; 802.11k) steer failed. + + + + + + + + Number of asynchronous BTM (BSS Transition Management; 802.11k) Queries for which a BTM Request was issued. + + + + + + + + + Each instance of this object represents an individual Access Point device in the Wi-Fi network. + + + + + + + A unique identifier for this particular device within the Wi-Fi network. + + + + + + + + The manufacturer of the Access Point device (human readable string). + + + + + + + + Organizationally unique identifier of the Access Point device manufacturer. Represented as a six hexadecimal-digit value using all upper-case letters and including any leading zeros. {{pattern}} + The value MUST be a valid OUI as defined in {{bibref|OUI}}. + This value MUST remain fixed over the lifetime of the device, including across firmware updates. + + + + + + + + + + + Identifier of the class of product for which the serial number applies. That is, for a given manufacturer, this parameter is used to identify the product or class of product over which the {{param|SerialNumber}} parameter is unique. + This value MUST remain fixed over the lifetime of the device, including across firmware updates. + + + + + + + + + + Identifier of the particular Access Point device that is unique for the indicated class of product and manufacturer. + This value MUST remain fixed over the lifetime of the device, including across firmware updates. + + + + + + + + + + A string identifying the software version currently installed in the Access Point device (i.e. version of the overall firmware). + To allow version comparisons, this element SHOULD be in the form of dot-delimited integers, where each successive integer represents a more minor category of variation. For example, ''3.0.21'' where the components mean: ''Major.Minor.Build''. + + + + + + + + + + The last time that the Access Point device was contacted via the Multi-AP control protocol. + + + + + + + + {{param}} is a reference to the IEEE 1905.1 Network Topology Device. Since IEEE 1905.1 is a common protocol used by Multi-AP Controllers for communications, this parameter allows the MultiAP portion of the data model to reference the associated IEEE 1905.1 portion of the data model. + + + + + + + + + + The medium being used to backhaul this Access Point Device to the Multi-AP Controller. The {{enum|None}} value is reserved for the {{object}} instance that represents the Multi-AP Controller. {{enum}} + + + + + + + + + + + + + + + + + The MAC Address of the Device on the network that is providing a Backhaul Link for this Access Point Device. + The {{empty}} value is reserved for the {{object}} instance that represents the Multi-AP Controller. + + + + + + + + The total number of bytes transmitted across the backhaul medium (as identified by the value of the {{param|BackhaulLinkType}} parameter), including framing characters. + + + + + + + + The total number of bytes received across the backhaul medium (as identified by the value of the {{param|BackhaulLinkType}} parameter), including framing characters. + + + + + + + + Current utilization (expressed in {{units}}) of the medium (as identified by the value of the {{param|BackhaulLinkType}} parameter) being used to backhaul this Access Point device to the Multi-AP Controller. A value of 0 is used for the {{object}} instance that represents the Access Point on the Multi-AP Controller. + + + + + + + + + + + An indicator of radio signal strength of the backhaul link of the Access Point (AP) to the Multi-AP Controller, measured in {{units}}. RCPI threshold is encoded per Table 9-154 of {{bibref|802.11-2016}}. The value of this parameter is indeterminate if the value of the {{param|BackhaulLinkType}} parameter is anything other than {{enum|Wi-Fi|BackhaulLinkType}}. + + + + + + + + + + + {{numentries}} + + + + + + + + {{list}} List items represent channels in the non-occupancy list due to radars detected by Dynamic Frequency Selection (DFS) Channel Availability Check (CAC). + + + + + + + + + + + Enables or disables Dynamic Frequency Selection (DFS). + + + + + + + + + This object represents all of the individual Radios contained within the identified Access Point device known to the controller. + + + + + + + A unique identifier for this particular Radio within the identified Access Point. + + + + + + + + Indicates the frequency band at which the radio is operating. {{enum}} + + + + + + + + + + + {{list}} List items indicate which IEEE 802.11 standard this {{object}} instance is configured for. {{enum}} + If {{param|OperatingFrequencyBand}} is set to {{enum|2.4GHz|OperatingFrequencyBand}}, only values {{enum|b}}, {{enum|g}}, {{enum|n}}, {{enum|ax}} are applicable. + If {{param|OperatingFrequencyBand}} is set to {{enum|5GHz|OperatingFrequencyBand}}, only values {{enum|a}}, {{enum|n}}, {{enum|ac}}, {{enum|ax}} are applicable. + For example, a value of "g,b" (or "b,g" - order is not important) means that the 802.11g standard {{bibref|802.11g-2003}} is used with a backwards-compatible mode for 802.11b {{bibref|802.11b-1999}}. A value of "g" means that only the 802.11g standard is in use. + + + + + + + {{bibref|802.11a-1999}} + + + + + {{bibref|802.11b-1999}} + + + + + {{bibref|802.11g-2003}} + + + + + {{bibref|802.11n-2009}} + + + + + {{bibref|802.11ac-2013}} + + + + + {{bibref|802.11ax}} + + + + + + + + The current radio channel used by the connection. + To request automatic channel selection, set {{param|Device.WiFi.Radio.{i}.AutoChannelEnable}} to {{true}}. + Whenever {{param|Device.WiFi.Radio.{i}.AutoChannelEnable}} is {{true}}, the value of the {{param}} parameter MUST be the channel selected by the automatic channel selection procedure. + For channels in "wide mode" (where a channel bandwidth strictly greater than 20 MHz is used), this parameter is used for Primary Channel only. The secondary or extension channel information is available through {{param|ExtensionChannel}}. + Note: Valid {{param}} values depend on the {{param|OperatingFrequencyBand}} value specified and the regulatory domain. + + + + + + + + + + The secondary extension channel position, applicable when operating in wide channel mode (i.e. when {{param|CurrentOperatingChannelBandwidth}} is {{enum|40MHz|CurrentOperatingChannelBandwidth}} + If not operating in wide channel mode (i.e. when {{param|CurrentOperatingChannelBandwidth}} is something other than {{enum|40MHz|CurrentOperatingChannelBandwidth}}, then the value of {{param}} is {{enum|None}}. {{enum}} + + + + + + + + + + + + {{list}} List items represent possible radio channels for the wireless standard (a, b, g, n, ac, ax) and the regulatory domain. + Ranges in the form "n-m" are permitted. + For example, for 802.11b and North America, would be "1-11". + + + + + + + + + + + The channel bandwidth currently in use. {{enum}} + + + + + + + + + + + + + The Modulation Coding Scheme index (applicable to 802.11n and 802.11ac specifications only). Values from 0 to 15 MUST be supported ({{bibref|802.11n-2009}}). Values from 0 to 9 MUST be supported for {{bibref|802.11ac-2013}}. + + + + + + + + + + + Indicates the current transmit power level as a {{units}} of full power. + + + + + + + + + + + Indicates the maximum Effective Isotropic Radiated Power (EIRP) per 20 MHz bandwidth representing the nominal transmit power limit for this radio. The field is coded in units of {{units}} relative to 1 mW. {{bibref|MAPv1.0|Clause 17.2.15}} + + + + + + + + + + + {{numentries}} + + + + + + + + + A single logical Access Point operating on this radio. + + + + + + + The MAC Address of the logical BSS (BSSID). + + + + + + + + The SSID in use for this BSS. + + + + + + + + Number of times a Blacklist steer was attempted for this Access Point. + Blacklist steering is the process of forcing a connected STA to move to another Access Point by temporarily blocking its access to the current Access Point. + + + + + + + + Number of times a BTM (BSS Transition Management; 802.11k) steer was attempted for this Access Point. + + + + + + + + Number of asynchronous BTM (BSS Transition Management; 802.11k) Queries for which a BTM Request was issued by this Access Point. + + + + + + + + {{numentries}} + + + + + + + + + Object describing a single Associated Device (STA). + + + + + + + The MAC address of an associated device. + + + + + + + + The operating standard that this associated device is connected with. {{enum}} + + + + + + {{bibref|802.11a-1999}} + + + + + {{bibref|802.11b-1999}} + + + + + {{bibref|802.11g-2003}} + + + + + {{bibref|802.11n-2009}} + + + + + {{bibref|802.11ac-2013}} + + + + + {{bibref|802.11ax}} + + + + + + + + Whether or not this associated device is currently present on the Wi-Fi Access Point device. + The ability to list inactive nodes is OPTIONAL. If the Access Point devices includes inactive nodes in this table, {{param}} MUST be set to {{false}} for each inactive node. The length of time an inactive node remains listed in this table is a local matter to the CPE. + + + + + + + + Date and time in UTC when the device was associated. + + + + + + + + The data transmit rate in {{units}} that was most recently used for transmission of data from the access point to the associated device. + + + + + + + + + + The data transmit rate in {{units}} that was most recently used for transmission of data from the associated device to the access point. + + + + + + + + + + An indicator of radio signal strength of the uplink from the Associated Device (STA) to the Access Point (AP) measured in {{units}}. RCPI threshold is encoded per Table 9-154 of {{bibref|802.11-2016}}. + + + + + + + + + + + An indicator of the average radio noise plus interference power measured on the uplink from the Associated Device (STA) to the Access Point (AP). + Encoded as defined for ANPI in {{bibref|802.11-2016|Section 10.11.9.4}}. + + + + + + + + + + {{numentries}} + + + + + + + + + Object describing the Statistics for a single Associated Device (STA). + + + + The total number of bytes transmitted to the Associated Device. + + + + + + + + The total number of bytes received from the Associated Device. + + + + + + + + The total number of packets transmitted to the Associated Device. + + + + + + + + The total number of packets received from the Associated Device. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. These might be due to the number of retransmissions exceeding the retry limit, or from other causes. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of transmitted packets which were retransmissions. Two retransmissions of the same packet results in this counter incrementing by two. + + + + + + + + + The summary of statistics related to Multi-AP Steering for an individual STA on the Wi-Fi network. + The counters contained in {{object}} are all reset on reboot. + + + + Number of times this Associated Device should have been steered but wasn't because a better candidate AP couldn't be found. + + + + + + + + Number of times a Blacklist steer was attempted on this Associated Device. + + + + + + + + Number of times an attempted Blacklist steer succeeded for this Associated Device. + + + + + + + + Number of times an attempted Blacklist steer failed for this Associated Device. + + + + + + + + Number of times a BTM (BSS Transition Management; 802.11k) steer was attempted on this Associated Device. + + + + + + + + Number of times an attempted BTM (BSS Transition Management; 802.11k) steer succeeded for this Associated Device. + + + + + + + + Number of times an attempted BTM (BSS Transition Management; 802.11k) steer failed for this Associated Device. + + + + + + + + Number of asynchronous BTM (BSS Transition Management; 802.11k) Queries for which a BTM Request was issued to this Associated Device. + + + + + + + + The number of {{units}} since this Associated Device was last attempted to be steered. + + + + + + + + + + + The history of Multi-AP Steering for an individual STA on the Wi-Fi network. + The contents of this multi-instance object are reset on reboot. + + + + + + + + + The date/time when steering was initiated for the Associated Device. + + + + + + + + The BSSID of the Access Point that initiated the steering. + + + + + + + + The type of event that caused the steering to be initiaited. {{enum}} + NOTE: This might be Unknown for BTM Query Response steers. + + + + + + + + + + + + + The type of steering that was attempted. {{enum}} + + + + + + + + + + + + The BSSID of the destination Access Point of a successful steer. + A failed steering attempt will leave this parameter {{empty}}. + + + + + + + + The amount of time in {{units}} required for the steer to complete successfully. + A failed steering attempt will leave this parameter 0. + + + + + + + + + + + This object represents the Wi-Fi Alliance Data Elements as defined in {{bibref|DataElements-v1.0}}. + + + + + This object describes a Wi-Fi network containing 1 or more Access Point devices. + + + + A unique identifier for this particular Wi-Fi network. + + + + + + + + The time this group was collected. + + + + + + + + A unique identifier for a Multi-AP controller. + + + + + + + + {{numentries}} + + + + + + + + + Each instance of this object represents an individual Access Point device in the Wi-Fi network. + + + + + + + A unique identifier for this particular device within the Wi-Fi network as defined in {{bibref|DataElements-v1.0|Section 3.1}}. + + + + + + + + The Multi-AP capabilities supported by this device as defined by the APCapability TLV in {{bibref|MAPv1.0|Section 17.2.6}}. + + + + + + + + + + The interval between the collection of consecutive measurements of the most frequently updated Data Element from this device in {{units}}. + + + + + + + + + + {{numentries}} + + + + + + + + + This object represents all of the individual Radios contained within the identified Access Point device known to the controller. + + + + + + + A unique identifier for this particular Radio within the identified Access Point as defined in {{bibref|DataElements-v1.0|Section 3.1}}. + + + + + + + + + + Indicates whether this radio is enabled or disabled. + + + + + + + + An indicator of the average radio noise plus interference power measured for the primary operating channel. + Encoded as defined for ANPI in {{bibref|802.11-2016|Section 11.11.9.4}}. + + + + + + + + + + (Total Channel Utililzation) The percentage of time (linearly scaled with 255 representing 100%) that the Access Point device sensed the medium was busy, as indicated by either the physical or virtual carier sense (CS) mechanism. This is essentially the amount of time spent transmiting (both successful and failed transmissions), receiving (both local and non-local transmissions), and processing noise. + When more than one channel is in use for the BSS operating on the radio, the {{param}} value is calculated only for the primary channel. + + + + + + + + + + (Transmit Channel Utilization) The percentage of time (linearly scaled with 255 representing 100%) that the radio has spent on sending individually or group addressed transmissions (successful and failed). + When more than one channel is in use for the BSS operating on the radio, the {{param}} value is calculated only for the primary channel. + + + + + + + + + + (Receive Local Channel Utilization) The percentage of time (linearly scaled with 255 representing 100%) that the radio has spent on receiving individually or group addressed local transmissions (i.e. transmissions from any STA associated with any BSS operating on this radio). + When more than one channel is in use for the BSS operating on the radio, the {{param}} value is calculated only for the primary channel. + + + + + + + + + + (Receive Non-Local Channel Utilization) The percentage of time (linearly scaled with 255 representing 100%) that the radio has spent on receiving individually or group addressed non-local transmissions (i.e. valid IEEE 802.11 PPDUs that are not associated with any BSS operatin gon this radio). + When more than one channel is in use for the BSS operating on the radio, the {{param}} value is calculated only for the primary channel. + + + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + Contains the MACAddress of the STA on this radio providing Wi-Fi backhaul to this device. + + + + The MAC address of the logical STA sharing the radio for Wi-Fi backhaul. + + + + + + + + + This object represents the capabilities of the radio which may be different from the current operational configuration. + + + + Describes the HT capabilities of the radio as defined by the HTCapabilities TLV {{bibref|MAPv1.0|Section 17.2.8}}. + + + + + + + + + + Describes the VHT capabilities of the radio as defined by the VHTCapabilities TLV {{bibref|MAPv1.0|Section 17.2.9}}. + + + + + + + + + + Describes the HE capabilities of the radio as defined by the HECapabilities TLV {{bibref|MAPv1.0|Section 17.2.10}}. + + + + + + + + + + {{numentries}} + + + + + + + + + Describes one of the possible Operating Classes supported by this Radio. + + + + + + + The Operating Class per Table E-4 in {{bibref|802.11-2016}} that this radio is capable of operating on. + + + + + + + + + + Maximum Transmit Power EIRP that this radio is capable of transmitting in the current regulatory domain for the Operating Class. + Represented as 2's complement signed integer in units of decibels relative to 1 mW ({{units}}). + + + + + + + + + + + {{list}} The channel numbers which are statically non-operable in the Operating Class (i.e. the Radio is never able to operate on these channels). + Other channels from this Operating Class which are not listed here are supported for the Radio. + + + + + + + + + + + The number of non-operable channels contained in {{param|NonOperable}}. + + + + + + + + + Describes one of the current Operating Classes in use by this Radio. One Opeating Class is indicated for each current Operating Channel Bandwidth. + The Channel indicated for the 20 MHz Operating Class is equal to the current primary channel. + + + + + + + The Operating Class per Table E-4 in {{bibref|802.11-2016}} that this radio is currently operating on. + + + + + + + + + + This Channel number in the Operating Class that this Radio is currently operating on. + + + + + + + + + + Nominal Transmit Power EIRP that this radio is currently using for the current Channel in the Opeating Class. + Represented as 2's complement signed integer in units of decibels relative to 1 mW ({{units}}). + + + + + + + + + + + The time this group was collected. + + + + + + + + + A single logical BSS operating on this radio. + + + + + + + The MAC Address of the logical BSS (BSSID). + + + + + + + + The SSID in use for this BSS. + + + + + + + + Whether the BSSID is currently enabled (beaconing frames are being sent) or disabled. + + + + + + + + Time in {{units}} since the last change to the {{param|Enabled}} value. + + + + + + + + + + The time this group was collected. + + + + + + + + Access Point (BSS) wide statistics for total unicast bytes transmitted. + + + + + + + + Access Point (BSS) wide statistics for total unicast bytes received. + + + + + + + + Access Point (BSS) wide statistics for total multicast bytes transmitted. + + + + + + + + Access Point (BSS) wide statistics for total multicast bytes received. + + + + + + + + Access Point (BSS) wide statistics for total broadcast bytes transmitted. + + + + + + + + Access Point (BSS) wide statistics for total broadcast bytes received. + + + + + + + + Estimated Service Parameters information field for AC=BE, defined per Figure 9-588 in {{bibref|802.11-2016}} and referenced in {{bibref|MAPv1.0|Section 17.2.22}}. + + + + + + + + + + Estimated Service Parameters information field for AC=BK, defined per Figure 9-588 in {{bibref|802.11-2016}} and referenced in {{bibref|MAPv1.0|Section 17.2.22}}. + + + + + + + + + + Estimated Service Parameters information field for AC=VI, defined per Figure 9-588 in {{bibref|802.11-2016}} and referenced in {{bibref|MAPv1.0|Section 17.2.22}}. + + + + + + + + + + Estimated Service Parameters information field for AC=VO, defined per Figure 9-588 in {{bibref|802.11-2016}} and referenced in {{bibref|MAPv1.0|Section 17.2.22}}. + + + + + + + + + + {{numentries}} + + + + + + + + + Object describing a single Associated Device (STA). + + + + + + + The MAC address of an associated device. + + + + + + + + The time this group was collected. + + + + + + + + Describes the HT capabilities of the Associated Device (STA). + + + + + + + + + + Describes the VHT capabilities of the Associated Device (STA). + + + + + + + + + + Describes the HE capabilities of the Associated Device (STA). + + + + + + + + + + The data transmit rate in {{units}} that was most recently used for transmission of data from the access point to the associated device. + + + + + + + + + + The data transmit rate in {{units}} that was most recently used for transmission of data from the associated device to the access point. + + + + + + + + + + The amount of time in {{units}} that the Radio has spent on the Channel receiving data from this Associated Device (STA). + + + + + + + + + + The amount of time in {{units}} that the Radio has spent on the Channel transmitting data to this Associated Device (STA). + + + + + + + + + + Estimate of the MAC layer throughput in {{units}} achievable in the downlink direction if 100% of channel airtime and BSS operating bandwidth were available, as defined in {{bibref|MAPv1.0|Section 10.3.1}}. + + + + + + + + + + Estimate of the MAC layer throughput in {{units}} achievable in the uplink direction if 100% of channel airtime and BSS operating bandwidth were available, as defined in {{bibref|MAPv1.0|Section 10.3.1}}. + + + + + + + + + + An indicator of radio signal strength of the uplink from the associated STA to the access point - measured in {{units}}. RCPI threshold (encoded per Table 9-154 of {{bibref|802.11-2016}}, and described in 10.3.1 of {{bibref|MAPv1.0}}). Reserved: 221 - 255. + NOTE: The underlying WFA specification is in the process of being reviewed for possible clarification. Please refer to that specification for more details. + + + + + + + + + + + The time in {{units}} since this Assocated Device (STA) was associated. + + + + + + + + + + The total number of bytes transmitted to the Associated Device. + + + + + + + + The total number of bytes received from the Associated Device. + + + + + + + + The total number of packets transmitted to the Associated Device. + + + + + + + + The total number of packets received from the Associated Device. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. These might be due to the number of retransmissions exceeding the retry limit, or from other causes. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of transmitted packets which were retransmissions. Two retransmissions of the same packet results in this counter incrementing by two. + + + + + + + + {{list}} Measurement Report element(s) received from the Associated Device (STA) that constitute the latest Beacon report as defined in Figure 9-199 of {{bibref|802.11-2016}}. + + + + + + + + + The number of measurement report elements contained in {{param|MeasurementReport}}. + + + + + + + + IPV4 Address assigned to the client. + + + + + + + + IPV6Address assigned to the client. + + + + + + + + Hostname assigned to the client. + + + + + + + + + The list of neighboring Access Points discovered by a Radio organized per Operating Class and Channel tuple. + + + + The timestamp of the last scan. + + + + + + + + {{numentries}} + + + + + + + + + The Operating Class of neighboring Access Points discovered by a Radio during a channel scan. + + + + + + + The Operating Class per Table E-4 in {{bibref|802.11-2016}} of the OpClass and Channel tuple scanned by the Radio. For 2.4GHz and 5GHz bands, only 20MHz Operating Classes are valid. + Note that the Operating Class identifies the band and channel width. + + + + + + + + + + {{numentries}} + + + + + + + + + The Channel associated with an Operating Class of neighboring Access Points discovered by a Radio during a channel scan. + + + + + + + The channel number of the Channel scanned by the Radio given the Operating Class. + + + + + + + + + + The timestamp of the last scan of the channel. + + + + + + + + The current Channel Utilization measured by the Radio on the scanned 20MHz channel, as defined by {{bibref|802.11-2016|Section 9.4.2.28}}. + + + + + + + + + + An indicator of the average radio noise plus interference power measured for the primary operating channel. + Encoded as defined for ANPI in {{bibref|802.11-2016|Section 11.11.9.4}}. + + + + + + + + + + {{numentries}} + + + + + + + + + The neighboring BSS discovered by a Radio during a channel scan. + + + + + + + The BSSID indicated by the neighboring BSS. + + + + + + + + The SSID indicated by the neighboring BSS. + + + + + + + + An indicator of radio signal strength (RSSI) of the Beacon or Probe Response frames of the neighboring BSS as received by the radio measured in {{units}}. (RSSI is encoded per Table 9-154 of {{bibref|802.11-2016}}). Reserved: 221 - 255. + NOTE: The underlying WFA specification is in the process of being reviewed for possible clarification. Please refer to that specification for more details. + + + + + + + + + + + Indicates the maximum bandwidth at which the neighboring BSS is operating. e.g. "20" or "40" or "80" or "80+80" or "160" MHz. + + + + + + + + The channel utilization reported by the neighboring BSS per the BSS Load element if present in Beacon or Probe Response frames, as defined by Section 9.4.2.28 in {{bibref|802.11-2016}}. + + + + + + + + + + The number of Associated Devices (STA) reported by this neighboring BSS per the BSS Load element if present in Beacon or Probe Response frames as defined by {{bibref|802.11-2016|Section 9.4.2.28}}. + + + + + + + + + Each instance represents a Non-AP STA that has been discovered by the Radio but is not associated to any of the BSS operating on the Radio. + + + + + + + The MAC address of the Non-AP STA. + + + + + + + + An indicator of radio signal strength (RCPI) of the uplink from the Non-AP STA - measured in {{units}}. (RCPI threshold is encoded per Table 9-154 of {{bibref|802.11-2016}}, and described in 103.2 of {{bibref|MAPv1.0}}). Reserved: 221 - 255. + NOTE: The underlying WFA specification is in the process of being reviewed for possible clarification. Please refer to that specification for more details. + + + + + + + + + + + + This object contains the events generated when a STA associates to a BSS. + + + + {{numentries}} + + + + + + + + + The events generated when an Associated Device (STA) associates to a BSS. + + + + The MAC Address of the logical BSS ( BSSID) which is reporting the Association Event. + + + + + + + + The MAC Address of the Associated Device (STA). + + + + + + + + The status code sent to the Associated Device (STA) in the Association Response frame as defined by Table 9-46 in {{bibref|802.11-2016}}. + + + + + + + + Describes the HT capabilities of the Associated Device (STA). + + + + + + + + + + Describes the VHT capabilities of the Associated Device (STA). + + + + + + + + + + Describes the HE capabilities of the Associated Device (STA). + + + + + + + + + + The time this event was collected. + + + + + + + + + This object contains the events generated when an Associated Device (STA) disassociates from a BSS. + + + + {{numentries}} + + + + + + + + + The events generated when an Associated Device (STA) disassociates from a BSS. + + + + The MAC Address of the logical BSS ( BSSID) which is reporting the Disassociation Event. + + + + + + + + The MAC address of the Associated Device (STA). + + + + + + + + The Reason Code received by the AP from the Associated Device (STA) in the most recent Disassociation or Deauthentication frame or sent by the AP to the Associated Device (STA) in the most recent Disassociation or Deauthenticaiton frame as defined in Table 9-45 in {{bibref|802.11-2016}}. + + + + + + + + The total number of bytes transmitted to the Associated Device (STA). + + + + + + + + The total number of bytes received from the Associated Device (STA). + + + + + + + + The total number of packets transmitted to the Associated Device (STA). + + + + + + + + The total number of packets received from the Associated Device (STA). + + + + + + + + The total number of outbound packets that could not be transmitted to the Associated Device (STA) because of errors. These might be due to the number of retransmissions exceeding the retry limit or from other causes. + + + + + + + + The total number of inbound packets from the Associated Device (STA) that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of transmitted packets to the Associated Device (STA) which were retransmissions. + N retransmissions of the same packet results in this counter incrementing by N. + + + + + + + + The time this event was collected. + + + + + + + + + This object models an 802.11 wireless radio on a device (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). + If the device can establish more than one connection simultaneously (e.g. a dual radio device), a separate {{object}} instance MUST be used for each physical radio of the device. See {{bibref|TR-181i2|Appendix III.1}} for additional information. + Note: A dual-band single-radio device (e.g. an 802.11a/b/g radio) can be configured to operate at 2.4 or 5 GHz frequency bands, but only a single frequency band is used to transmit/receive at a given time. Therefore, a single {{object}} instance is used even for a dual-band radio. + + + + + + + + + + Enables or disables the radio. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + The current operational state of the radio (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the radio as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the radio entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + Note: Since {{object}} is a layer 1 interface, it is expected that {{param}} will not be used. + + + + + + + + + + + + + Indicates whether the interface points towards the Internet ({{true}}) or towards End Devices ({{false}}). + For example: + * For an Internet Gateway Device, {{param}} will be {{true}} for all WAN interfaces and {{false}} for all LAN interfaces. + * For a standalone WiFi Access Point that is connected via Ethernet to an Internet Gateway Device, {{param}} will be {{true}} for the Ethernet interface and {{false}} for the WiFi Radio interface. + * For an End Device, {{param}} will be {{true}} for all interfaces. + This parameter was DEPRECATED because it gives a wrong indication for multiple SSIDs. Use the {{param|#.SSID.{i}.Upstream}} parameter instead. + This parameter is OBSOLETED in 2.14. + + + + + + + + The maximum PHY bit rate supported by this interface (expressed in {{units}}). + + + + + + + + + + {{list}} List items indicate the frequency bands at which the radio can operate. + + + + + + + + + + + + Indicates the frequency band at which the radio is operating. + If the radio supports multiple bands, and {{param}} is changed, then all parameters whose value is not valid for the new frequency band (e.g. {{param|Channel}}) MUST be set to a valid value (according to some CPE vendor-specific behavior). + + + + + + + + + + {{list}} List items indicate which IEEE 802.11 standards this {{object}} instance can support simultaneously, in the frequency band specified by {{param|OperatingFrequencyBand}}. {{enum}} + Each value indicates support for the indicated standard. + If {{param|OperatingFrequencyBand}} is set to {{enum|2.4GHz|OperatingFrequencyBand}}, only values {{enum|b}}, {{enum|g}}, {{enum|n}}, {{enum|ax}} are allowed. + If {{param|OperatingFrequencyBand}} is set to {{enum|5GHz|OperatingFrequencyBand}}, only values {{enum|a}}, {{enum|n}}, {{enum|ac}}, {{enum|ax}} are allowed. + + + + + + + {{bibref|802.11a-1999}} + + + + + {{bibref|802.11b-1999}} + + + + + {{bibref|802.11g-2003}} + + + + + {{bibref|802.11n-2009}} + + + + + {{bibref|802.11ac-2013}} + + + + + {{bibref|802.11ax}} + + + + + + + + {{list}} List items indicate which IEEE 802.11 standard this {{object}} instance is configured for. + Each value indicates support for the indicated standard. + If {{param|OperatingFrequencyBand}} is set to {{enum|2.4GHz|OperatingFrequencyBand}}, only values {{enum|b}}, {{enum|g}}, {{enum|n}}, {{enum|ax}} are allowed. + If {{param|OperatingFrequencyBand}} is set to {{enum|5GHz|OperatingFrequencyBand}}, only values {{enum|a}}, {{enum|n}}, {{enum|ac}}, {{enum|ax}} are allowed. + For example, a value of "g,b" (or "b,g" - order is not important) means that the 802.11g standard {{bibref|802.11g-2003}} is used with a backwards-compatible mode for 802.11b {{bibref|802.11b-1999}}. A value of "g" means that only the 802.11g standard can be used. + + + + + + + + + + + {{list}} List items represent possible radio channels for the wireless standard (a, b, g, n, ac, ax) and the regulatory domain. + Ranges in the form "n-m" are permitted. + For example, for 802.11b and North America, would be "1-11". + + + + + + + + + + + {{list}} List items represent channels that the radio determines to be currently in use (including any that it is using itself). + Ranges in the form "n-m" are permitted. + + + + + + + + + + + The current radio channel used by the connection. To request automatic channel selection, set {{param|AutoChannelEnable}} to {{true}}. + Whenever {{param|AutoChannelEnable}} is {{true}}, the value of the {{param}} parameter MUST be the channel selected by the automatic channel selection procedure. + For channels in "wide mode" (802.11n where a 40MHz channel bandwidth is used), this parameter is used for Primary Channel only. The secondary or extension channel information is available through {{param|ExtensionChannel}}. + Note: Valid {{param}} values depend on the {{param|OperatingFrequencyBand}} value specified and the {{param|RegulatoryDomain}}. + + + + + + + + + + Indicates whether automatic channel selection is supported by this radio. If {{false}}, then {{param|AutoChannelEnable}} MUST be {{false}}. + + + + + + + + Enable or disable automatic channel selection. + Set to {{false}} to disable the automatic channel selection procedure, in which case the currently selected channel remains selected. + Set to {{true}} to enable the automatic channel selection procedure. This procedure MUST automatically select the channel, and MAY also change it subsequently. + {{param}} MUST automatically change to {{false}} whenever the channel is manually selected, i.e. whenever the {{param|Channel}} parameter is written. + Whenever {{param}} is {{true}}, the value of the {{param|Channel}} parameter MUST be the channel selected by the automatic channel selection procedure. + + + + + + + + The time period in {{units}} between two consecutive automatic channel selections. A value of 0 means that the automatic channel selection is done only at boot time. + This parameter is significant only if {{param|AutoChannelEnable}} is set to {{true}}. + + + + + + + + + + The accumulated time in {{units}} since the current {{param|Channel}} came into use. + + + + + + + + + + The cause of the last channel selection. + + + + + + Manual selection of the {{param|Channel}}. + + + + + Automatic channel selection procedure launched at radio startup. + + + + + Automatic channel selection procedure triggered by the user (e.g. via a GUI). + + + + + Automatic channel selection procedure triggered by the {{param|AutoChannelRefreshPeriod}} timer. + + + + + Automatic channel selection procedure dynamically triggered to adjust to environmental interference. + + + + + Automatic channel selection procedure triggered by Dynamic Frequency Selection (DFS) {{bibref|ETSIBRAN}}. + + + + + + + + + Maximum number of SSIDs supported on this radio. + + + + + + + + + + Maximum number of associated devices supported. + + + + + + + + + + This radio's WiFi firmware version. + + + + + + + + + + {{list}} These are the valid writable values for {{param|OperatingChannelBandwidth}}. + + + + + + + + wide mode + + + + + 802.11ac and 802.11ax only + + + + + 802.11ac and 802.11ax only + + + + + 802.11ac and 802.11ax only + + + + + + + + + The preferred channel bandwidth to be used (applicable to 802.11n, 802.11ac, and 802.11ax specifications only). + + + + + + + + + + The channel bandwidth currently in use. + + + + + + + + + + + + + + The secondary extension channel position (applicable to the 802.11n specification only), applicable when operating in wide channel mode (i.e. when {{param|OperatingChannelBandwidth}} is set to {{enum|40MHz|OperatingChannelBandwidth}} or {{enum|Auto|OperatingChannelBandwidth}}). + + + + + + + + + + + + The guard interval value between OFDM symbols. + + + + + + applicable to 802.11n and 802.11ac specifications only + + + + + applicable to 802.11n and 802.11ac specifications only + + + + + applicable to 802.11ax specification only + + + + + applicable to 802.11ax specification only + + + + + applicable to 802.11ax specification only + + + + + applicable to 802.11ax specification only + + + + + applicable to 802.11ax specification only + + + + + applicable to 802.11ax specification only + + + + + + + + + When operating in {{enum|80+80MHz|CurrentOperatingChannelBandwidth}}, this parameter determines the Center Frequency Segment 0 for the first 80 MHz channel. See {{bibref|802.11-2016|Section 9.4.2.161}} and Table 9-252. + This parameter is DEPRECATED in 2.14 due to a typo. Use {{param|CenterFrequencySegment0}} instead. + + + + + + + + When operating in {{enum|80+80MHz|CurrentOperatingChannelBandwidth}}, this parameter determines the Center Frequency Segment 1 for the second 80 MHz channel. See {{bibref|802.11-2016|Section 9.4.2.161}} and Table 9-252. + This parameter is DEPRECATED in 2.14 due to a typo. Use {{param|CenterFrequencySegment1}} instead. + + + + + + + + When operating in {{enum|80+80MHz|CurrentOperatingChannelBandwidth}}, this parameter determines the Center Frequency Segment 0 for the first 80 MHz channel. See {{bibref|802.11-2016|Section 9.4.2.161}} and Table 9-252. + + + + + + + + When operating in {{enum|80+80MHz|CurrentOperatingChannelBandwidth}}, this parameter determines the Center Frequency Segment 1 for the second 80 MHz channel. See {{bibref|802.11-2016|Section 9.4.2.161}} and Table 9-252. + + + + + + + + The Modulation Coding Scheme index (applicable to 802.11n, 802.11ac, and 802.11ax specifications only). Values from 0 to 15 MUST be supported for ({{bibref|802.11n-2009}}). Values from 0 to 9 MUST be supported for {{bibref|802.11ac-2013}}. Values from 0 to 11 MUST be supported for {{bibref|802.11ax}}. A value of -1 indicates automatic selection of the MCS index. + + + + + + + + + + + {{list}} List items represent supported transmit power levels as {{units}} of full power. For example, "0,25,50,75,100". + A -1 item indicates auto mode (automatic decision by CPE). Auto mode allows the ''Radio'' to adjust transmit power accordingly. For example, this can be useful for power-save modes such as EU-CoC, where the ''Radio'' can adjust power according to activity in the CPE. + + + + + + + + + + + + + + Indicates the current transmit power level as a {{units}} of full power. The value MUST be one of the values reported by the {{param|TransmitPowerSupported}} parameter. A value of -1 indicates auto mode (automatic decision by CPE). + + + + + + + + + + + Indicates whether IEEE 802.11h {{bibref|802.11h-2003}} functionality is supported by this radio. The value can be {{true}} only if the 802.11a or the 802.11n@5GHz standard is supported (i.e. {{param|SupportedFrequencyBands}} includes {{enum|5GHz|SupportedFrequencyBands}} and {{param|SupportedStandards}} includes {{enum|a|SupportedStandards}} and/or {{enum|n|SupportedStandards}}). + + + + + + + + Indicates whether IEEE 802.11h functionality is enabled on this radio. The value can be {{true}} only if the 802.11a or the 802.11n@5GHz standard is supported and enabled (i.e. {{param|OperatingFrequencyBand}} is {{enum|5GHz|OperatingFrequencyBand}} and {{param|OperatingStandards}} includes {{enum|a|OperatingStandards}} and/or {{enum|n|OperatingStandards}}). + + + + + + + + The 802.11d Regulatory Domain. First two octets are {{bibref|ISO3166-1}} two-character country code. The third octet is either " " (all environments), "O" (outside) or "I" (inside). + + + + + + + + + + + The maximum number of retransmissions of a short packet i.e. a packet that is no longer than the {{param|RTSThreshold}}. This corresponds to IEEE 802.11 parameter ''dot11ShortRetryLimit'' {{bibref|802.11-2012}}. + + + + + + + + + + A request for the clear channel assessment (CCA) report in the format specified in {{bibref|802.11-2012|Clause 8.4.2.23.3}}. + + + + + + + + + + The clear channel assessment (CCA) report in the format specified in {{bibref|802.11-2012|Clause 8.4.2.24.3}}. + When read, the value of this parameter MUST correspond to {{param|CCARequest}}. How this is achieved is a local matter to the CPE. + If this parameter is read before a CCARequest has been issued, then its value is {{empty}}. + + + + + + + + + + A request for a received power indicator (RPI) histogram in the format specified in {{bibref|802.11-2012|Clause 8.4.2.23.4}}. + + + + + + + + + + Received power indicator (RPI) histogram report in the format specified in {{bibref|802.11-2012|Clause 8.4.2.24.4}}. + + + + + + + + + + This specifies the current maximum size, in {{units}}, of the MPDU that can be delivered to the PHY. This parameter is based on ''dot11FragmentationThreshold'' from {{bibref|802.11-2012}}. + + + + + + + + + + This indicates the number of {{units}} in an MPDU, below which an RTS/CTS handshake is not performed. This parameter is based on ''dot11RTSThreshold'' from {{bibref|802.11-2012}}. + + + + + + + + + + This indicates the maximum number of transmission attempts of a frame, the length of which is greater than {{param|RTSThreshold}}, that will be made before a failure condition is indicated. This parameter is based on ''dot11LongRetryLimit'' from {{bibref|802.11-2012}}. + + + + + + + + Time interval between transmitting beacons (expressed in {{units}}). This parameter is based on ''dot11BeaconPeriod'' from {{bibref|802.11-2012}}. + + + + + + + + + + This specifies the number of beacon intervals that elapse between transmission of Beacon frames containing a TIM element whose DTIM Count field is 0. This parameter is based on ''dot11DTIMPeriod'' from {{bibref|802.11-2012}}. + + + + + + + + This determines whether or not packet aggregation (commonly called "frame aggregation") is enabled. This applies only to 802.11n. + + + + + + + + The type of preamble. Longer preambles (more overhead) are needed by 802.11g to coexist with legacy systems 802.11 and 802.11b. + + + + + + + + + + + + {{list}} The set of data rates, in ''Mbps'', that have to be supported by all stations that desire to join this BSS. The stations have to be able to receive and transmit at each of the data rates listed in {{param}}. For example, a value of "1,2", indicates that stations support 1 Mbps and 2 Mbps. Most control packets use a data rate in {{param}}. + + + + + + + + + {{list}} Maximum access point data transmit rates in ''Mbps'' for unicast frames (a superset of {{param|BasicDataTransmitRates}}). Given the value of {{param|BasicDataTransmitRates}} from the example above, {{param}} might be "1,2,5.5,11", indicating that unicast frames can additionally be transmitted at 5.5 Mbps and 11 Mbps. + + + + + + + + + {{list}} Data transmit rates in ''Mbps'' for unicast frames at which the access point will permit a station to connect (a subset of {{param|OperationalDataTransmitRates}}). Given the values of {{param|BasicDataTransmitRates}} and {{param|OperationalDataTransmitRates}} from the examples above, {{param}} might be "1,2,5.5", indicating that the AP will only permit connections at 1 Mbps, 2 Mbps and 5.5 Mbps, even though it could theoretically accept connections at 11 Mbps. + + + + + + + + + Enables or disables 802.11k Radio Resource Management (RRM). + + + + + + + + + Throughput statistics for this interface. Packet counters here count 802.11 WiFi frames. See {{bibref|TR-181i2|Appendix III}} for further details. The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|Section 4.2.2}}. + + + + The total number of Request To Send (RTS) control frames that received a Clear To Send (CTS) response. + + + + + + + + The total number of Request To Send (RTS) control frames that did not receive a Clear To Send (CTS) response. + + + + + + + + The total number of received packets for which the PHY was able to correlate the preamble but not the header. + + + + + + + + The total number of received frames with a good Physical Layer Convergence Protocol (PLCP) header. + + + + + + + + The total number of Wi-Fi data packets received from other Basic Service Sets (BSSs), with a good Frame Check Sequence (FCS) and not matching the receiver address, meaning that that the frame is received at the MAC layer but is addressed to a different MAC. + + + + + + + + The total number of Wi-Fi management packets received from other Basic Service Sets (BSSs), with a good Frame Check Sequence (FCS) and not matching the receiver address, meaning that that the frame is received at the MAC layer but is addressed to a different MAC. + + + + + + + + The total number of Wi-Fi control packets received from other Basic Service Sets (BSSs), with a good Frame Check Sequence (FCS) and not matching the receiver address, meaning that that the frame is received at the MAC layer but is addressed to a different MAC. + + + + + + + + The total number of received Clear to Send (CTS) packets not addressed to the MAC address of this receiver. + + + + + + + + The total number of received Request to Send (RTS) frames not addressed to the MAC address of this receiver. + + + + + + + + The total number of bytes transmitted out of the interface, including framing characters. + + + + + + + + The total number of bytes received on the interface, including framing characters. + + + + + + + + The total number of packets transmitted out of the interface. + + + + + + + + The total number of packets received on the interface. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The number of packets that were received with a detected Physical Layer Convergence Protocol (PLCP) header error. + + + + + + + + The number of packets that were received with a detected FCS error. This parameter is based on dot11FCSErrorCount from {{bibref|802.11-2012|Annex C}}. + + + + + + + + The number of packets that were received with a detected invalid MAC header error. + + + + + + + + The number of packets that were received, but which were destined for a MAC address that is not associated with this interface. + + + + + + + + An indicator of average noise strength received at this radio, measured in {{units}}. This measurement of non-IEEE 802.11 noise power is made by sampling the channel when virtual carrier sense indicates idle and this radio is neither transmitting nor receiving a frame. + + + + + + + + + + The total number of times that the {{param|#.Channel}} has changed since the {{object|.WiFi.Radio}} entered its current operating state. + + + + + + + + The number of times that the {{param|#.Channel}} has changed due to manual channel selection since the {{object|.WiFi.Radio}} entered its current operating state. + + + + + + + + The number of times that the {{param|#.Channel}} has changed due to automatic channel selection procedure launched at radio startup since the {{object|.WiFi.Radio}} entered its current operating state. + + + + + + + + The number of times that the {{param|#.Channel}} has changed due to automatic channel selection procedure triggered by the user (e.g. via a GUI) since the {{object|.WiFi.Radio}} entered its current operating state. + + + + + + + + The number of times that the {{param|#.Channel}} has changed due to automatic channel selection procedure triggered by the {{param|#.AutoChannelRefreshPeriod}} timer since the {{object|.WiFi.Radio}} entered its current operating state. + + + + + + + + The number of times that the {{param|#.Channel}} has changed due to automatic channel selection procedure dynamically triggered to adjust to environmental interference since the {{object|.WiFi.Radio}} entered its current operating state. + + + + + + + + The number of times that the {{param|#.Channel}} has changed due to automatic channel selection procedure triggered by DFS {{bibref|ETSIBRAN}} since the {{object|.WiFi.Radio}} entered its current operating state. + + + + + + + + + This object defines access to other WiFi SSIDs that this device is able to receive. + + + + {{datatype|expand}} + + + + + + + + + + + + + + + {{numentries}} + + + + + + + + + Neighboring SSID table. This table models the other WiFi SSIDs that this device is able to receive. + + + + + + + The Radio that detected the neighboring WiFi SSID. + + + + + + + + + + The current service set identifier in use by the neighboring WiFi SSID. The value MAY be empty for hidden SSIDs. + + + + + + + + + + The BSSID used for the neighboring WiFi SSID. + + + + + + + + The mode the neighboring WiFi radio is operating in. + + + + + + + + + + + The current radio channel used by the neighboring WiFi radio. + + + + + + + + + + An indicator of radio signal strength (RSSI) of the neighboring WiFi radio measured in {{units}}, as an average of the last 100 packets received. + + + + + + + + + + + The type of encryption the neighboring WiFi SSID advertises. + The {{enum|WEP}} value indicates either WEP-64 or WEP-128. + The {{enum|WPA}} value is the same as WPA-Personal. + The {{enum|WPA2}} value is the same as WPA2-Personal. + The {{enum|WPA-WPA2}} value is the same as WPA-WPA2-Personal. + The {{enum|WPA3-SAE}} value is the same as WPA3-Personal. + The {{enum|WPA2-PSK-WPA3-SAE}} value is the same as WPA3-Personal-Transition. + + + + + + + + + + + + + + + + + + + + The type of encryption the neighboring WiFi SSID advertises. + When {{param|SecurityModeEnabled}} is one of {{enum|WPA3-SAE|SecurityModeEnabled}}, {{enum|WPA2-PSK-WPA3-SAE|SecurityModeEnabled}}, or {{enum|WPA3-Enterprise|SecurityModeEnabled}}, {{enum|TKIP}} is not valid, and should not be in the list. + + + + + + + + + + + + Indicates the frequency band at which the radio this SSID instance is operating. + + + + + + + + + + + {{list}} List items indicate which IEEE 802.11 standards this {{object}} instance can support simultaneously, in the frequency band specified by {{param|OperatingFrequencyBand}}. {{enum}} + Each value indicates support for the indicated standard. + If {{param|OperatingFrequencyBand}} is set to {{enum|2.4GHz|OperatingFrequencyBand}}, only values {{enum|b}}, {{enum|g}}, {{enum|n}}, {{enum|ax}} are allowed. + If {{param|OperatingFrequencyBand}} is set to {{enum|5GHz|OperatingFrequencyBand}}, only values {{enum|a}}, {{enum|n}}, {{enum|ac}}, {{enum|ax}} are allowed. + + + + + + + {{bibref|802.11a-1999}} + + + + + {{bibref|802.11b-1999}} + + + + + {{bibref|802.11g-2003}} + + + + + {{bibref|802.11n-2009}} + + + + + {{bibref|802.11ac-2013}} + + + + + {{bibref|802.11ax}} + + + + + + + + {{list}} List items indicate which IEEE 802.11 standard that is detected for this {{object}}. + Each value indicates support for the indicated standard. + If {{param|OperatingFrequencyBand}} is set to {{enum|2.4GHz|##.Radio.{i}.SupportedFrequencyBands}}, only values {{enum|b}}, {{enum|g}}, {{enum|n}}, {{enum|ax}} are allowed. + If {{param|OperatingFrequencyBand}} is set to {{enum|5GHz|##.Radio.{i}.SupportedFrequencyBands}}, only values {{enum|a}}, {{enum|n}}, {{enum|ac}}, {{enum|ax}} are allowed. + For example, a value of "g,b" (or "b,g" - order is not important) means that the 802.11g standard {{bibref|802.11g-2003}} is used with a backwards-compatible mode for 802.11b {{bibref|802.11b-1999}}. A value of "g" means that only the 802.11g standard can be used. + + + + + + + + + + + Indicates the bandwidth at which the channel is operating. + + + + + + + + + + + + + + Time interval (in {{units}}) between transmitting beacons. + + + + + + + + + + Indicator of average noise strength (in {{units}}) received from the neighboring WiFi radio. + + + + + + + + + + + {{list}} Basic data transmit rates (in Mbps) for the SSID. For example, if {{param}} is "1,2", this indicates that the SSID is operating with basic rates of 1 Mbps and 2 Mbps. + + + + + + + + + + + {{list}} Data transmit rates (in Mbps) for unicast frames at which the SSID will permit a station to connect. For example, if {{param}} is "1,2,5.5", this indicates that the SSID will only permit connections at 1 Mbps, 2 Mbps and 5.5 Mbps. + + + + + + + + + + + The number of beacon intervals that elapse between transmission of Beacon frames containing a TIM element whose DTIM count field is 0. This value is transmitted in the DTIM Period field of beacon frames. {{bibref|802.11-2012}} + + + + + + + + + + + WiFi SSID table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}), where table entries model the MAC layer. A WiFi SSID entry is typically stacked on top of a {{object|#.Radio}} object. + WiFi SSID is also a multiplexing layer, i.e. more than one {{object}} can be stacked above a single {{object|#.Radio}}. + + + + + + + + + + + + + Enables or disables the SSID entry. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + + The current operational state of the SSID entry (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the SSID entry as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the SSID entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + + + + + + + + + + + + + + The Basic Service Set ID. + This is the MAC address of the access point, which can either be local (when this instance models an access point SSID) or remote (when this instance models an end point SSID). + + + + + + + + The MAC address of this interface. + If this instance models an access point SSID, {{param}} is the same as {{param|BSSID}}. + Note: This is not necessarily the same as the Ethernet header source or destination MAC address, which is associated with the IP interface and is modeled via the {{param|.Ethernet.Link.{i}.MACAddress}} parameter. + + + + + + + + The current service set identifier in use by the connection. The SSID is an identifier that is attached to packets sent over the wireless LAN that functions as an ID for joining a particular radio network (BSS). + + + + + + + + + + Indicates whether the interface points towards the Internet ({{true}}) or towards End Devices ({{false}}). + For example: + * For an Internet Gateway Device, {{param}} will be {{true}} for all WAN interfaces and {{false}} for all LAN interfaces. + * For a standalone WiFi Access Point that is connected via Ethernet to an Internet Gateway Device, {{param}} will be {{true}} for the Ethernet interface and {{false}} for the WiFi Radio interface. + * For an End Device, {{param}} will be {{true}} for all interfaces. + This parameter supersedes the deprecated {{param|#.Radio.{i}.Upstream}} parameter. If both exist, the parameter {{param|#.Radio.{i}.Upstream}} is ignored. + + + + + + + + Enables or disables Air Time Fairness (ATF). + + + + + + + + After this parameter is set to true, the ATF configuration of the interface will be reset. + + + + + + + + Configures the ATF setting for all associated devices on an individual SSID. Expressed as percentage of airtime, such that no station should exceed this percentage. + + + + + + + + + + + + Throughput statistics for this interface. Packet counters here count 802.11 WiFi frames. See {{bibref|TR-181i2|Appendix III}} for further details. The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|Section 4.2.2}}. + + + + The total number of bytes transmitted out of the interface, including framing characters. + + + + + + + + The total number of bytes received on the interface, including framing characters. + + + + + + + + The total number of packets transmitted out of the interface. + + + + + + + + The total number of packets received on the interface. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. These can be due to the number of retransmissions exceeding the retry limit, or from other causes. + + + + + + + + The total number of transmitted packets which were retransmissions. Two retransmissions of the same packet results in this counter incrementing by two. + + + + + + + + The number of packets that were not transmitted successfully due to the number of retransmission attempts exceeding an 802.11 retry limit. This parameter is based on dot11FailedCount from {{bibref|802.11-2012}}. + + + + + + + + The number of packets that were successfully transmitted after one or more retransmissions. This parameter is based on dot11RetryCount from {{bibref|802.11-2012}}. + + + + + + + + The number of packets that were successfully transmitted after more than one retransmission. This parameter is based on dot11MultipleRetryCount from {{bibref|802.11-2012}}. + + + + + + + + The number of expected ACKs that were never received. This parameter is based on dot11ACKFailureCount from {{bibref|802.11-2012}}. + + + + + + + + The number of aggregated packets that were transmitted. This applies only to 802.11n and 802.11ac. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of packets requested for transmission which were not addressed to a multicast or broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were not addressed to a multicast or broadcast address at this layer. + + + + + + + + The total number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a multicast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a multicast address at this layer. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a broadcast address at this layer. + + + + + + + + The total number of packets received via the interface which were discarded because of an unknown or unsupported protocol. + + + + + + + + The total number of discarded packets during transmission caused by transmit buffer overflow. + + + + + + + + The total number of discarded packets due to the station not being associated. + + + + + + + + The total number of frame-fragments transmitted out of the interface. + + + + + + + + The total number of transmitted data packets that did not receive an ACK when expected. + + + + + + + + The total number of received packets whose Sequence Control field indicates it is a duplicate. + + + + + + + + The total number of received packets longer than the maximum allowed packet length. + + + + + + + + The total number of received packets that did not contain enough bytes for the packet type. + + + + + + + + The total number of unicast ACKs received, with good Frame Check Sequence (FCS). + + + + + + + + + This object models an 802.11 connection from the perspective of a wireless access point. Each {{object}} entry is associated with a particular {{object|#.SSID}} interface instance via the {{param|SSIDReference}} parameter. + For enabled table entries, if {{param|SSIDReference}} is not a valid reference then the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + Note: The {{object}} table includes a unique key parameter that is a strong reference. If a strongly referenced object is deleted, the CPE will set the referencing parameter to {{empty}}. However, doing so under these circumstances might cause the updated {{object}} row to then violate the table's unique key constraint; if this occurs, the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}} and disable the offending {{object}} row. + + + + + + + + + + Enables or disables this access point. + + + + + + + + + Indicates the status of this access point. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + {{reference}} + + + + + + + + + + + + Indicates whether or not beacons include the SSID name. + + + + + + + + The maximum number of retransmission for a packet. This corresponds to IEEE 802.11 parameter ''dot11ShortRetryLimit''. + This parameter was DEPRECATED because it is really a {{object|#.Radio}} attribute. Use {{param|#.Radio.{i}.RetryLimit}}. + This parameter is OBSOLETED in 2.14. + + + + + + + + + + Indicates whether this access point supports WiFi Multimedia (WMM) Access Categories (AC). + + + + + + + + Indicates whether this access point supports WMM Unscheduled Automatic Power Save Delivery (U-APSD). + Note: U-APSD support implies WMM support. + + + + + + + + Whether WMM support is currently enabled. When enabled, this is indicated in beacon frames. + + + + + + + + Whether U-APSD support is currently enabled. When enabled, this is indicated in beacon frames. + Note: U-APSD can only be enabled if WMM is also enabled. + + + + + + + + {{numentries}} + + + + + + + + The maximum number of devices that can simultaneously be connected to the access point. + A value of 0 means that there is no specific limit. + This parameter has been DEPRECATED in favor of {{param|MaxAllowedAssociations}}. + This parameter is OBSOLETED in 2.14. + + + + + + + + + Enables or disables device isolation. + A value of {{true}} means that the devices connected to the Access Point are isolated from all other devices within the home network (as is typically the case for a Wireless Hotspot). + + + + + + + + Indicates whether or not MAC Address Control is enabled on this {{object|#}}. MAC Address Control limits client devices to those whose hardware addresses match the {{param|AllowedMACAddress}} list. + + + + + + + + Hardware addresses of client devices that are allowed to associate with this {{object|#}} if {{param|MACAddressControlEnabled}} is {{true}}. + + + + + + + + + Maximum number of associated devices allowed for this SSID. If the number is reached new device connections to this access point will be rejected. + If the number is changed to a value less than the actual number of associated devices, new device connections will be rejected until the number of devices is below this number. It is not expected that any connections are dropped. + If the parameter {{param|#.Radio.{i}.MaxSupportedAssociations}} exists, the value MUST be less than or equal to the maximum number specified in {{param|#.Radio.{i}.MaxSupportedAssociations}}. + + + + + + + + Reports information about the CPE operation mode (router or bridge/range extender). + + + + + + Indicates indicates operation as a router. + + + + + Indicates operation as a range extender or acess point in bridge mode. + + + + + + + + + + This object contains security related parameters that apply to a CPE acting as an Access Point {{bibref|802.11-2007}}. + + + + {{list}} Indicates which security modes this {{object|#}} instance is capable of supporting. + The {{enum|WPA3-Personal}} value is the same as WPA3-SAE. + The {{enum|WPA3-Personal-Transition}} value is the same as WPA2-PSK-WPA3-SAE. + + + + + + + + + + + + + + + + + + + + + + Indicates which security mode is enabled. + + + + + + + + + + The type of encryption in use. + When {{param|ModeEnabled}} is one of {{enum|WPA3-Personal|ModesSupported}}, {{enum|WPA3-Personal-Transition|ModesSupported}}, or {{enum|WPA3-Enterprise|ModesSupported}}, {{enum|TKIP}} is not valid, and should not be in the list. + + + + + + + + + + + + A WEP key expressed as a hexadecimal string. + {{param}} is used only if {{param|ModeEnabled}} is set to {{enum|WEP-64|ModeEnabled}} or {{enum|WEP-128|ModeEnabled}}. + A 5 byte {{param}} corresponds to security mode {{enum|WEP-64|ModeEnabled}} and a 13 byte {{param}} corresponds to security mode {{enum|WEP-128|ModeEnabled}}. + + + + + + A literal PreSharedKey (PSK) expressed as a hexadecimal string. + {{param}} is only used if {{param|ModeEnabled}} is set to {{enum|WPA-Personal|ModeEnabled}} or {{enum|WPA2-Personal|ModeEnabled}} or {{enum|WPA-WPA2-Personal|ModeEnabled}}. + If {{param|KeyPassphrase}} is written, then {{param}} is immediately generated. The Controller SHOULD NOT set both the {{param|KeyPassphrase}} and the {{param}} directly (the result of doing this is undefined). + + + + + + A passphrase from which the {{param|PreSharedKey}} is to be generated, for {{enum|WPA-Personal|ModeEnabled}} or {{enum|WPA2-Personal|ModeEnabled}} or {{enum|WPA-WPA2-Personal|ModeEnabled}} security modes. + If {{param}} is written, then {{param|PreSharedKey}} for WPA2 is immediately generated. The Controller SHOULD NOT set both the {{param}} and the {{param|PreSharedKey}} directly (the result of doing this is undefined). The key is generated as specified by WPA, which uses PBKDF2 from PKCS #5: Password-based Cryptography Specification Version 2.0 ({{bibref|RFC2898}}). + + + + + + The interval (expressed in {{units}}) in which the keys are re-generated. + This is applicable to WPA, WPA2 and Mixed (WPA-WPA2) modes in Personal or Enterprise mode (i.e. when {{param|ModeEnabled}} is set to a value other than {{enum|None|ModeEnabled}} or {{enum|WEP-64|ModeEnabled}} or {{enum|WEP-128|ModeEnabled}}. + + + + + + + + + + + A passphrase for {{enum|WPA3-Personal|ModeEnabled}} or {{enum|WPA3-Personal-Transition|ModeEnabled}} security modes. + NOTE: this parameter is for WPA3. WPA2 {{param|PreSharedKey}} is generated from {{param|KeyPassphrase}}. + + + + + + The IP Address of the RADIUS server used for WLAN security. {{param}} is only applicable when {{param|ModeEnabled}} is an Enterprise type (i.e. {{enum|WPA-Enterprise|ModeEnabled}}, {{enum|WPA2-Enterprise|ModeEnabled}}, {{enum|WPA3-Enterprise|ModeEnabled}}, or {{enum|WPA-WPA2-Enterprise|ModeEnabled}}). + + + + + + + + The IP Address of a secondary RADIUS server used for WLAN security. {{param}} is only applicable when {{param|ModeEnabled}} is an Enterprise type (i.e. {{enum|WPA-Enterprise|ModeEnabled}}, {{enum|WPA2-Enterprise|ModeEnabled}}, {{enum|WPA3-Enterprise|ModeEnabled}}, or {{enum|WPA-WPA2-Enterprise|ModeEnabled}}). + The client can forward requests to the secondary server in the event that the primary server is down or unreachable, or after a number of tries to the primary server fail, or in a round-robin fashion {{bibref|RFC2865}}. + + + + + + + + The port number of the RADIUS server used for WLAN security. {{param}} is only applicable when {{param|ModeEnabled}} is an Enterprise type (i.e. {{enum|WPA-Enterprise|ModeEnabled}}, {{enum|WPA2-Enterprise|ModeEnabled}}, {{enum|WPA3-Enterprise|ModeEnabled}}, or {{enum|WPA-WPA2-Enterprise|ModeEnabled}}). + + + + + + + + + The port number of the secondary RADIUS server used for WLAN security. {{param}} is only applicable when {{param|ModeEnabled}} is an Enterprise type (i.e. {{enum|WPA-Enterprise|ModeEnabled}}, {{enum|WPA2-Enterprise|ModeEnabled}}, {{enum|WPA3-Enterprise|ModeEnabled}}, or {{enum|WPA-WPA2-Enterprise|ModeEnabled}}). + If this parameter is not implemented, the secondary RADIUS server will use the same port number as the primary RADIUS server. + + + + + + + + + The secret used for handshaking with the RADIUS server {{bibref|RFC2865}}. + + + + + + The secret used for handshaking with the secondary RADIUS server {{bibref|RFC2865}}. + If this parameter is not implemented, the secondary RADIUS server will use the same secret as the primary RADIUS server. + + + + + + Management Frame Protection configuration applicable when {{param|ModeEnabled}} is set to {{enum|WPA2-Personal|ModeEnabled}}, {{enum|WPA2-Enterprise|ModeEnabled}}, {{enum|WPA3-Personal|ModeEnabled}}, or {{enum|WPA3-Enterprise|ModeEnabled}}. When in WPA3 modes, {{param}} MUST be set to {{enum|Required}}. + + + + + + + + + + + + + When set to {{true}}, this {{object|#}} instance's WiFi security settings are reset to their factory default values. The affected settings include {{param|ModeEnabled}}, {{param|WEPKey}}, {{param|PreSharedKey}}, {{param|KeyPassphrase}}, {{param|SAEPassphrase}}, and {{param|#.WPS.PIN}} (if applicable). + If the parameter cannot be set, the CPE MUST reject the request as an invalid parameter value. Possible failure reasons include a lack of default values or if {{param|ModeEnabled}} is an Enterprise type, i.e. {{enum|WPA-Enterprise|ModesSupported}}, {{enum|WPA2-Enterprise|ModesSupported}}, {{enum|WPA3-Enterprise|ModesSupported}}, or {{enum|WPA-WPA2-Enterprise|ModesSupported}}. + + + + + + + + + This object contains parameters related to Wi-Fi Protected Setup for this access point (as specified in {{bibref|WPSv1.0}} or {bibref|WPSv2.0}}). + + + + Enables or disables WPS functionality for this access point. + + + + + + + + + WPS configuration methods supported by the device. {{enum}} + This parameter corresponds directly to the "Config Methods" attribute of {{bibref|WPS 2.0}}. + The {{enum|USBFlashDrive}} and {{enum|Ethernet}} are only applicable in WPS 1.0 and are deprecated in WPS 2.x. The {{enum|PhysicalPushButton}}, {{enum|VirtualPushButton}}, {{enum|PhysicalDisplay}} and {{enum|VirtualDisplay}} are applicable to WPS 2.x only. + + + + + + + + + + + + + + + + + + + + + + + {{list}} Indicates WPS configuration methods enabled on the device. + + + + + + + + + + + {{list}} Indicates the current status of WPS. If the device goes to {{enum|SetupLocked}} the WPS needs to be disabled and re-enabled to come out of state. + + + + + + + + + + + + + + The Wi-Fi Simple Configuration version supported by the device, a string of the form ''m.n'' where ''m'' is the major version and ''n'' is the minor version. + For example, a value of ''1.0'' denotes WSC 1.0 and a value of ''2.0'' denotes WSC 2.0. + + + + + + + + Represents the Device PIN used for PIN based pairing between WPS peers. This PIN is either a four digit number or an eight digit number. + {{hidden}} + + + + + + + A table of the devices currently associated with the access point. + + + + + + + Associated device type (Laptop, iPhone, Android, etc.). + + + + + + + + Configures the Air Time Fairness (ATF) setting of this individual associated device. Expressed as percentage of airtime, such that this associated device should not exceed this percentage. Setting this value overrides {{param|Device.WiFi.SSID.{i}.SetATF}} for this associated device. + + + + + + + + + + + The MAC address of an associated device. + + + + + + + + The operating standard that this associated device is connected with. + + + + + + {{bibref|802.11a-1999}} + + + + + {{bibref|802.11b-1999}} + + + + + {{bibref|802.11g-2003}} + + + + + {{bibref|802.11n-2009}} + + + + + {{bibref|802.11ac-2013}} + + + + + {{bibref|802.11ax}} + + + + + + + + Whether an associated device has authenticated ({{true}}) or not ({{false}}). + + + + + + + + The data transmit rate in {{units}} that was most recently used for transmission from the access point to the associated device. + + + + + + + + + + + The data transmit rate in {{units}} that was most recently used for transmission from the associated device to the access point. + + + + + + + + + + + Date and time in UTC when the device was associated + + + + + + + + An indicator of radio signal strength of the uplink from the associated device to the access point, measured in {{units}}, as an average of the last 100 packets received from the device. + + + + + + + + + + + An indicator of radio noise on the uplink from the associated device to the access point, measured in {{units}}, as an average of the last 100 packets received from the device (see ANPI definition in {{bibref|802.11-2012|Clause 10.11.9.4}}) + + + + + + + + + + + The number of {{units}} that had to be re-transmitted, from the last 100 packets sent to the associated device. Multiple re-transmissions of the same packet count as one. + + + + + + + + + + + Whether or not this node is currently present in the WiFi AccessPoint network. + The ability to list inactive nodes is OPTIONAL. If the CPE includes inactive nodes in this table, {{param}} MUST be set to {{false}} for each inactive node. The length of time an inactive node remains listed in this table is a local matter to the CPE. + + + + + + + + + These count bytes or packets sent to, or received from, this Associated Device, which is a WiFi station associated to this access point. Packet counters here count 802.11 WiFi frames. + The CPE MUST reset these {{object}} parameters (unless otherwise stated in individual object or parameter descriptions) either when the {{param|##.Status}} of the parent {{object|##}} object transitions from {{enum|Disabled|##.Status}} to {{enum|Enabled|##.Status}}, or when it transitions from {{enum|Enabled|##.Status}} to {{enum|Disabled|##.Status}}. + + + + The total number of bytes transmitted to the Associated Device, including framing characters. + + + + + + + + The total number of bytes received from the Associated Device, including framing characters. + + + + + + + + The total number of packets transmitted to the Associated Device. + + + + + + + + The total number of packets received from the Associated Device. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. These might be due to the number of retransmissions exceeding the retry limit, or from other causes. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of transmitted packets which were retransmissions. Two retransmissions of the same packet results in this counter incrementing by two. + + + + + + + + The number of packets that were not transmitted successfully due to the number of retransmission attempts exceeding an 802.11 retry limit. This parameter is based on ''dot11FailedCount'' from {{bibref|802.11-2012}}. + + + + + + + + The number of packets that were successfully transmitted after one or more retransmissions. This parameter is based on ''dot11RetryCount'' from {{bibref|802.11-2012}}. + + + + + + + + The number of packets that were successfully transmitted after more than one retransmission. This parameter is based on ''dot11MultipleRetryCount'' from {{bibref|802.11-2012}}. + + + + + + + + + This object contains parameters related to WiFi QoS for different 802.11e access categories (priorities). Access categories are: BE, BK, VI, and VO. These parameters can help control and monitor 802.11e Enhanced distributed channel access (EDCA). The size of this table is fixed, with four entries which are identified by the {{param|AccessCategory}} parameter as follows: + * BE (Best Effort) + * BK (Background) + * VI (Video) + * VO (Voice) + + + + + + + This identifies the access category. + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Arbitration Inter Frame Spacing (Number). This is the number of time slots in the arbitration interframe space. + + + + + + + + + + Exponent of Contention Window (Minimum). This encodes the values of CWMin as an exponent: CWMin = 2^ECWMin - 1. For example, if ECWMin is 8, then CWMin is 2^8 - 1, or 255, (expressed in {{units}}). + + + + + + + + + + + Exponent of Contention Window (Maximum). This encodes the values of CWMax as an exponent: CWMax = 2^ECWMax - 1. For example, if ECWMax is 8, then CWMax is 2^8 - 1, or 255, (expressed in {{units}}). + + + + + + + + + + + Maximum transmit opportunity, in multiples of {{units}}. A TXOP time interval of 0 means it is limited to a single MAC protocol data unit (MPDU). + + + + + + + + + + + Ack Policy, where False="Do Not Acknowledge" and True="Acknowledge" + + + + + + + + {{list}} Definition of the histogram intervals for counting the transmit queue length in packets. Each value indicates the maximum value of the interval. For example, "0,1,4,8," defines the five intervals: 0 packets in queue, 1 packet in queue, 2 to 4 packets in queue, 5 to 8 packets in queue, and 9 or more packets in queue. (No value after the last comma means no upper bound.) If this parameter is set to {{empty}}, no {{param|Stats.OutQLenHistogram}} stats will be collected. + + + + + + + + + The time between recording samples of the current transmit queue in {{units}}. + + + + + + + + + + + This object contains statistics for different 802.11e access categories (priorities). + Packet counters here count 802.11 WiFi frames. + If there are not separate stats for each access category, (e.g., 802.11e is not used and there is only one queue), then only access category 0 = BE applies (e.g., the statistics for the single queue are in access category 0 = BE). + The CPE MUST reset the Access Point's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the Access Point becomes operationally down due to a previous administrative down (i.e. the Access Point's Status parameter transitions to a Disabled state) or when the Access Point becomes administratively up (i.e. the Access Point's Enable parameter transitions from false to true). Administrative and operational status is discussed in {{bibref|TR-181i2|Section 4.2.2}}. + + + + The total number of {{units}} transmitted in this access category, including framing characters. + + + + + + + + + + The total number of {{units}} received in this access category, including framing characters. + + + + + + + + + + The total number of {{units}} transmitted in this access category. + + + + + + + + + + The total number of {{units}} received in this access category. + + + + + + + + + + The total number of outbound {{units}} in this access category that could not be transmitted because of errors. These might be due to the number of retransmissions exceeding the retry limit, or from other causes. + + + + + + + + + + The total number of inbound {{units}} in this access category that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + + + The total number of outbound {{units}} in this access category which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + + + The total number of inbound {{units}} in this access category which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + + + The total number of transmitted {{units}} in this access category which were retransmissions. Two retransmissions of the same packet results in this counter incrementing by two. + + + + + + + + + + {{list}} Histogram of the total length of the transmit queue of this access category in packets (1 packet, 2 packets, etc.) according to the intervals defined by {{param|#.OutQLenHistogramIntervals}}, with samples taken each {{param|#.OutQLenHistogramSampleInterval}}. Example: "12,5,1,0,2,0,0,1". + + + + + + + + + + This object contains the parameters related to RADIUS accounting functionality for the access point. + + + + Enables or disables accounting functionality for the access point. + + + + + + + + The IP Address of the RADIUS accounting server. + + + + + + + + The IP Address of a secondary RADIUS accounting server. + The client can forward requests to the secondary server in the event that the primary server is down or unreachable, or after a number of tries to the primary server fail, or in a round-robin fashion. {{bibref|RFC2866}} + + + + + + + + The port number of the RADIUS server used for accounting. The default port is 1813 as defined in {{bibref|RFC2866}}. + + + + + + + + + The port number of the secondary RADIUS server used for accounting. The default port is 1813 as defined in {{bibref|RFC2866}}. + If this parameter is not implemented, the secondary RADIUS server will use the same port number as the primary RADIUS server. + + + + + + + + + The secret used for handshaking with the RADIUS accounting server {{bibref|RFC2865}}. + + + + + + The secret used for handshaking with the secondary RADIUS accounting server {{bibref|RFC2865}}. + If this parameter is not implemented, the secondary RADIUS server will use the same secret as the primary RADIUS server. + + + + + + Specifies the default interim accounting interval in {{units}}, which is used for service accounting when the ''Acct-Interim-Interval'' attribute is not configured. {{bibref|RFC2869|Section 2.1}} + The value MUST NOT be smaller than 60. The value SHOULD NOT be smaller than 600, and careful consideration should be given to its impact on network traffic {{bibref|RFC2869|Section 5.16}}. + A value of 0 means no interim accounting messages are sent. + + + + + + + + + + + + + + This object models an 802.11 connection from the perspective of a wireless end point. Each {{object}} entry is associated with a particular {{object|#.SSID}} interface instance via the {{param|SSIDReference}} parameter, and an associated active {{object|Profile}} instance via the {{param|ProfileReference}} parameter. The active profile is responsible for specifying the actual SSID and security settings used by the end point. + For enabled table entries, if {{param|SSIDReference}} or {{param|ProfileReference}} is not a valid reference then the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + Note: The {{object}} table includes a unique key parameter that is a strong reference. If a strongly referenced object is deleted, the CPE will set the referencing parameter to {{empty}}. However, doing so under these circumstances might cause the updated {{object}} row to then violate the table's unique key constraint; if this occurs, the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}} and disable the offending {{object}} row. + + + + + + + + + + Enables or disables this end point. + + + + + + + + + Indicates the status of this end point. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + {{reference}} This is the currently active profile, which specifies the SSID and security settings to be used by the end point. + + + + + + + + + + + + {{reference}} {{param}} is determined based on the {{param|Profile.{i}.SSID}} within the associated {{param|ProfileReference}}) endpoint profile. {{param}} MUST be {{empty}} if {{param|ProfileReference}} is {{empty}} (i.e. only when an active profile is assigned can the associated SSID interface be determined). + + + + + + + + + + + + {{numentries}} + + + + + + + + + Throughput statistics for this end point. + + + + The data transmit rate in {{units}} that was most recently used for transmission from the access point to the end point device. + + + + + + + + + + + The data transmit rate in {{units}} that was most recently used for transmission from the end point to the access point device. + + + + + + + + + + + An indicator of radio signal strength of the downlink from the access point to the end point, measured in {{units}}, as an average of the last 100 packets received from the device. + + + + + + + + + + + The number of {{units}} that had to be re-transmitted, from the last 100 packets sent to the access point. Multiple re-transmissions of the same packet count as one. + + + + + + + + + + + + + This object contains security related parameters that apply to a WiFi end point {{bibref|802.11-2007}}. + + + + {{list}} Indicates which security modes this {{object|#}} instance is capable of supporting. + + + + + + + + + + + + + + + + + + + + + + + EndPoint Profile table. + + + + + + + + + + + + Enables or disables this Profile. + When there are multiple WiFi EndPoint Profiles, e.g. each instance supports a different SSID and/or different security configuration, this parameter can be used to control which of the instances are currently enabled. + + + + + + + + + Indicates the status of this Profile. {{enum}} + The {{enum|Active}} value is reserved for the instance that is actively connected. The {{enum|Available}} value represents an instance that is not currently active, but is also not disabled or in error. The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The profile identifier in use by the connection. The SSID is an identifier that is attached to packets sent over the wireless LAN that functions as an ID for joining a particular radio network (BSS). + + + + + + + + + + Location of the profile. This value serves as a reminder from the user, describing the location of the profile. For example: "Home", "Office", "Neighbor House", "Airport", etc. An empty string is also valid. + + + + + + + + The profile Priority defines one of the criteria used by the End Point to automatically select the "best" AP when several APs with known profiles are simultaneously available for association. + In this situation, the End Point has to select the AP with the higher priority in its profile. If there are several APs with the same priority, providing different SSID or the same SSID, then the wireless end point has to select the APs according to other criteria like signal quality, SNR, etc. + 0 is the highest priority. + + + + + + + + + + + + This object contains security related parameters that apply to a WiFi End Point profile {{bibref|802.11-2007}}. + + + + Indicates which security mode is enabled. + + + + + + + + + + A WEP key expressed as a hexadecimal string. + {{param}} is used only if {{param|ModeEnabled}} is set to {{enum|WEP-64|ModeEnabled}} or {{enum|WEP-128|ModeEnabled}}. + A 5 byte {{param}} corresponds to security mode {{enum|WEP-64|ModeEnabled}} and a 13 byte {{param}} corresponds to security mode {{enum|WEP-128|ModeEnabled}}. + + + + + + A literal PreSharedKey (PSK) expressed as a hexadecimal string. + {{param}} is only used if {{param|ModeEnabled}} is set to {{enum|WPA-Personal|ModeEnabled}} or {{enum|WPA2-Personal|ModeEnabled}} or {{enum|WPA-WPA2-Personal|ModeEnabled}}. + If {{param|KeyPassphrase}} is written, then {{param}} is immediately generated. The Controller SHOULD NOT set both the {{param|KeyPassphrase}} and the {{param}} directly (the result of doing this is undefined). + + + + + + A passphrase from which the {{param|PreSharedKey}} is to be generated, for {{enum|WPA-Personal|ModeEnabled}} or {{enum|WPA2-Personal|ModeEnabled}} or {{enum|WPA-WPA2-Personal|ModeEnabled}} security modes. + If {{param}} is written, then {{param|PreSharedKey}} is immediately generated. The Controller SHOULD NOT set both the {{param}} and the {{param|PreSharedKey}} directly (the result of doing this is undefined). The key is generated as specified by WPA, which uses PBKDF2 from PKCS #5: Password-based Cryptography Specification Version 2.0 {{bibref|RFC2898}}. + + + + + + A passphrase for {{enum|WPA3-Personal|ModeEnabled}} or {{enum|WPA3-Personal-Transition|ModeEnabled}} security modes. + NOTE: this parameter is for WPA3. WPA2 {{param|PreSharedKey}} is generated from {{param|KeyPassphrase}}. + + + + + + Management Frame Protection configuration applicable when {{param|ModeEnabled}} is set to {{enum|WPA2-Personal|ModeEnabled}}, {{enum|WPA2-Enterprise|ModeEnabled}}, {{enum|WPA3-Personal|ModeEnabled}}, or {{enum|WPA3-Enterprise|ModeEnabled}}. When in WPA3 modes, {{param}} MUST be set to {{enum|Required}}. + + + + + + + + + + + + + + This object contains parameters related to Wi-Fi Protected Setup {{bibref|WPSv1.0}} for this end point. + + + + Enables or disables WPS functionality for this end point. + + + + + + + + + WPS configuration methods supported by the device. {{enum}} + This parameter corresponds directly to the "Config Methods" attribute of {{bibref|WPS 2.0}}. + The {{enum|USBFlashDrive}} and {{enum|Ethernet}} are only applicable in WPS 1.0 and are deprecated in WPS 2.x. The {{enum|PhysicalPushButton}}, {{enum|VirtualPushButton}}, {{enum|PhysicalDisplay}} and {{enum|VirtualDisplay}} are applicable to WPS 2.x only. + + + + + + + + + + + + + + + + + + + + + + + {{list}} Indicates the WPS configuration methods enabled on the device. + + + + + + + + + + + {{list}} Indicates the current status of WPS in EndPoint. + + + + + + + + + + + + + The Wi-Fi Simple Configuration version supported by the device, a string of the form ''m.n'' where ''m'' is the major version and ''n'' is the minor version. + For example, a value of ''1.0'' denotes WSC 1.0 and a value of ''2.0'' denotes WSC 2.0. + + + + + + + + Represents the Device PIN used for PIN based pairing between WPS peers. This PIN is either a four digit number or an eight digit number. + {{hidden}} + + + + + + + This object contains parameters related to WiFi QoS for different 802.11e access categories (priorities). Access categories are: BE, BK, VI, and VO. These parameters can help control and monitor 802.11e Enhanced distributed channel access (EDCA). The size of this table is fixed, with four entries which are identified by the {{param|AccessCategory}} parameter as follows: + * BE (Best Effort) + * BK (Background) + * VI (Video) + * VO (Voice) + + + + + + + This identifies the access category. + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Arbitration Inter Frame Spacing (Number). This is the number of time slots in the arbitration interframe space. + + + + + + + + + + Exponent of Contention Window (Minimum). This encodes the values of CWMin as an exponent: CWMin = 2^ECWMin - 1. For example, if ECWMin is 8, then CWMin is 2^8 - 1, or 255, (expressed in {{units}}). + + + + + + + + + + + Exponent of Contention Window (Maximum). This encodes the values of CWMax as an exponent: CWMax = 2^ECWMax - 1. For example, if ECWMax is 8, then CWMax is 2^8 - 1, or 255, (expressed in {{units}}). + + + + + + + + + + + Maximum transmit opportunity, in multiples of {{units}}. A TXOP time interval of 0 means it is limited to a single MAC protocol data unit (MPDU). + + + + + + + + + + + Ack Policy, where False="Do Not Acknowledge" and True="Acknowledge" + + + + + + + + {{list}} Definition of the histogram intervals for counting the transmit queue length in packets. Each value indicates the maximum value of the interval. For example, "0,1,4,8," defines the five intervals: 0 packets in queue, 1 packet in queue, 2 to 4 packets in queue, 5 to 8 packets in queue, and 9 or more packets in queue. (No value after the last comma means no upper bound.) If this parameter is set to an empty string, no {{param|Stats.OutQLenHistogram}} stats will be collected. + + + + + + + + + The time between recording samples of the current transmit queue {{units}}. + + + + + + + + + + + This object contains statistics for different 802.11e access categories (priorities). + Packet counters here count 802.11 WiFi frames. + If there are not separate stats for each access category, (e.g., 802.11e is not used and there is only one queue), then only access category 0 = BE applies (e.g., the statistics for the single queue are in access category 0 = BE). + The CPE MUST reset the EndPoint's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the EndPoint becomes operationally down due to a previous administrative down (i.e. the EndPoint's Status parameter transitions to a Disabled state) or when the EndPoint becomes administratively up (i.e. the EndPoint's Enable parameter transitions from false to true). Administrative and operational status is discussed in {{bibref|TR-181i2|Section 4.2.2}}. + + + + The total number of {{units}} transmitted in this access category, including framing characters. + + + + + + + + + + The total number of {{units}} received in this access category, including framing characters. + + + + + + + + + + The total number of {{units}} transmitted in this access category. + + + + + + + + + + The total number of {{units}} received in this access category. + + + + + + + + + + The total number of outbound {{units}} in this access category that could not be transmitted because of errors. These might be due to the number of retransmissions exceeding the retry limit, or from other causes. + + + + + + + + + + The total number of inbound {{units}} in this access category that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + + + The total number of outbound {{units}} in this access category which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + + + The total number of inbound {{units}} in this access category which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + + + The total number of transmitted {{units}} in this access category which were retransmissions. Two retransmissions of the same packet results in this counter incrementing by two. + + + + + + + + + + {{list}} Histogram of the total length of the transmit queue of this access category in packets (1 packet, 2 packets, etc.) according to the intervals defined by {{param|#.OutQLenHistogramIntervals}}, with samples taken each {{param|#.OutQLenHistogramSampleInterval}}. Example: "12,5,1,0,2,0,0,1" + + + + + + + + + + Top level object for ZigBee capabilities based on the {{bibref|ZigBee2007}} specification. + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + ZigBee interface table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). This table models the ZigBee interface of a ZigBee end device, ZigBee router or ZigBee coordinator. + + + + + + + + + + + + + Enables or disables the interface. This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + The current operational state of the interface (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the interface as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the interface entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + + + + + + + + + + + + + The IEEE address assigned to this interface. A value of "FF:FF:FF:FF:FF:FF:FF:FF" indicates that this address is unknown. This parameter has the same value as the {{param|.ZigBee.ZDO.{i}.IEEEAddress}} parameter of the ZDO instance {{param|ZDOReference}} is pointing to. + + + + + + + + The ZigBee network address assigned to this interface. This parameter has the same value as the {{param|.ZigBee.ZDO.{i}.NetworkAddress}} parameter of the ZDO instance {{param|ZDOReference}} is pointing to. + + + + + + + + The ZigBee Device Object assigned to this interface. + + + + + + + + + + + {{numentries}} + + + + + + + + + Throughput statistics for this interface. + The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + The total number of {{units}} transmitted out of the interface, including framing characters. + + + + + + + + + + The total number of {{units}} received on the interface, including framing characters. + + + + + + + + + + The total number of {{units}} sent transmitted out of the interface. + + + + + + + + + + The total number of {{units}} received by the interface. + + + + + + + + + + The total number of {{units}} discarded by interface due to any error. + + + + + + + + + + The total number of {{units}} received that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + + + The total number of {{units}} requested for transmission which were not addressed to a multicast or broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + + + The total number of {{units}} received which were not addressed to a multicast or broadcast address at this layer. + + + + + + + + + + The total number of {{units}} requested for transmission which were chosen to be discarded even though no errors had been detected to prevent the {{units}} being transmitted. + + + + + + + + + + The total number of {{units}} received which were chosen to be discarded even though no errors had been detected to prevent their being delivered. + + + + + + + + + + The total number of {{units}} requested for transmission which were addressed to a multicast address at this layer, including those that were discarded or not sent. + + + + + + + + + + The total number of {{units}} received which were addressed to a multicast address at this layer and delivered by this layer to a higher layer. + + + + + + + + + + The total number of {{units}} requested for transmission which were addressed to a broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + + + The total number of {{units}} received which were addressed to a broadcast address at this layer and delivered by this layer to a higher layer. + + + + + + + + + + The total number of {{units}} received which were discarded because of an unknown or unsupported protocol. + + + + + + + + + + + This table provides information about other ZigBee devices that are directly accessible via this interface. + {{keys}} + It is possible that instances of this object have the same key value when the value of {{param|IEEEAddress}} parameter is "FF:FF:FF:FF:FF:FF:FF:FF" and the ZigBee Coordinators on two or more separate area networks assign the same value for the {{param|NetworkAddress}}. This is because the ZigBee specification describes only intra-area network topologies {{bibref|ZigBee2007|Section 1.1.4 Network Topology}}. As such if two or more {{object}} instances have the same key value the implemenation is undefined. + + + + + + + + The IEEE address assigned to this device. A value of "FF:FF:FF:FF:FF:FF:FF:FF" indicates that this address is unknown. + + + + + + + + The ZigBee network address assigned to this device. + + + + + + + + Whether or not this device is currently present in the ZigBee network as defined in {{bibref|ZigBee2007|section 2.4.4.1}}. + The ability to list inactive devices is OPTIONAL. If the CPE includes inactive devices in this table, {{param}} MUST be set to {{false}} for each inactive device. The length of time an inactive device remains listed in this table is a local matter to the CPE. + + + + + + + + The ZigBee Device Object assigned to this interface. + + + + + + + + + + + + ZigBee Device Object (ZDO) provides management capabilities of the ZigBee Application Support (APS) and Network (NWK) layers of a ZigBee Device as defined in {{bibref|ZigBee2007|section 2.5}}. + {{keys}} + It is possible that instances of this object have the same key value when the value of {{param|IEEEAddress}} parameter is "FF:FF:FF:FF:FF:FF:FF:FF" and the ZigBee Coordinators on two or more separate area networks assign the same value for the {{param|NetworkAddress}}. This is because the ZigBee specification describes only intra-area network topologies {{bibref|ZigBee2007|Section 1.1.4 Network Topology}}. As such if two or more {{object}} instances have the same key value the implemenation is undefined + + + + + + + + {{datatype|expand}} + + + + + + + + The IEEE address assigned to this device. A value of "FF:FF:FF:FF:FF:FF:FF:FF" indicates that this address is unknown. + + + + + + + + The ZigBee network address assigned to this device. + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + The {{object}} object describes the node capabilities of the ZigBee device as defined in {{bibref|ZigBee2007|section 2.3.2.3 Node Descriptor}}. + + + + The type of ZigBee device that is extracted from the Logical Type Field as defined in {{bibref|ZigBee2007|Table 2.29}}. + {{enum}} + + + + + + ZigBee Coordinator + + + + + ZigBee Router + + + + + ZigBee End Device + + + + + + + + When {{true}}, specifies that the {{object|#.ComplexDescriptor}} object is supported for this ZigBee device. + + + + + + + + When {{true}}, specifies that the {{object|#.UserDescriptor}} object is supported for this ZigBee device. + + + + + + + + Specifies the frequency bands that are supported by the underlying IEEE 802.15.4 radio utilized by the ZigBee device. + {{list}} {{enum}} + + + + + + + The 868-868.6 MHz Band + + + + + The 902-928 MHz Band + + + + + The 2400-2483.5 MHz Band + + + + + + + + Specifies the IEEE 802.15.4-2003 MAC sub-layer capabilities for this ZigBee device. + {{list}} {{enum}} + + + + + + + Alternate PAN Coordinator + + + + + Full Function Device + + + + + The current power source is mains power + + + + + The receiver is on when idle + + + + + Secure communication is enabled + + + + + + + + Specifies a manufacturer code that is allocated by the ZigBee Alliance, relating the manufacturer to the device. + + + + + + + + + + Specifies the maximum buffer size, in {{units}}, of the network sub-layer data unit (NSDU) for this ZigBee device. + + + + + + + + + + + Specifies the maximum size, in {{units}}, of the application sub-layer data unit (ASDU) that can be transferred to this ZigBee device in one single message transfer. + + + + + + + + + + + Specifies the maximum size, in {{units}}, of the application sub-layer data unit (ASDU) that can be transferred from this ZigBee device in one single message transfer. + + + + + + + + + + + Specifies the system server capabilities of this ZigBee device. + {{list}} {{enum}} + + + + + + + + + + + + + + + + Specifies the descriptor capabilities of this ZigBee device. + {{list}} {{enum}} + + + + + + + + + + + + + The {{object}} object describes the power capabilities of the ZigBee device as defined in {{bibref|ZigBee2007|section 2.3.2.4 Node Power Descriptor}}. + + + + Specifies the current sleep/power-saving mode of the ZigBee device. + {{enum}} + + + + + + + + + + + + Specifies the power sources available on this ZigBee device. + {{list}} {{enum}} + + + + + + + Constant (mains) power + + + + + Rechargable battery + + + + + Disposable battery + + + + + + + + The current power source field specifies the current power source being utilized by the node. + {{enum}} + + + + + + Constant (mains) power + + + + + Rechargable battery + + + + + Disposable battery + + + + + + + + Specifies the level of charge of the current power source. + {{enum}} + + + + + + Critical battery state + + + + + Battery state is 33 percent + + + + + Battery state is 66 percent + + + + + Battery state is 100 percent + + + + + + + + + The {{object}} object is an optional descriptor that describes user defined capabilities of the ZigBee device as defined in {{bibref|ZigBee2007|section 2.3.2.7 User Descriptor}}. The {{object}} object contains information that allows the user to identify the device using a user-friendly character string, such as "Bedroom TV" or "Stairs Light". + + + + When {{true}}, the User Descriptor recorded has been received from the target device. + + + + + + + + Specifies the information that allows the user to identify the ZigBee device using a user-friendly character string, such as "Bedroom TV" or "Stairs light". + + + + + + + + + + + The {{object}} object is an optional descriptor that describes extended capabilities of the ZigBee device as defined in {{bibref|ZigBee2007|section 2.3.2.6 Complex Descriptor}}. + + + + When {{true}}, the Complex Descriptor recorded has been received from the target device. + + + + + + + + Specifies the ISO 639-1 language code as defined in {{bibref|ISO639-1}}. + + + + + + + + Specifies the ISO 646 character set as defined in {{bibref|ISO646-1991}}. + + + + + + + + Specifies the name of the manufacturer of the ZigBee device. + + + + + + + + Specifies the name of the manufacturer's model of the ZigBee device. + + + + + + + + Specifies the manufacturer's serial number of the ZigBee device. + + + + + + + + Specifies the {{datatype}} through which more information relating to the ZigBee device can be obtained. + + + + + + + + The icon field contains an octet string which carries the data for an icon that can represent the ZigBee device. The format of the icon MUST be a 32-by-32-pixel PNG image. + + + + + + + + + + Specifies the {{datatype}} through which the icon for the ZigBee device can be obtained. + + + + + + + + + The {{object}} object provides the configuration capabilities needed to perform the Security Management functionality defined in {{bibref|ZigBee2007|section 4 Security Management}}. + + + + Specifies the IEEE address of a special device trusted by devices within a ZigBee network to distribute keys for the purpose of network and end-to-end application configuration management. + + + + + + + + Specifies how an outgoing frame is to be secured, how an incoming frame purportedly has been secured; it also indicates whether or not the payload is encrypted and to what extent data authenticity over the frame is provided, as reflected by the length of the message integrity code (MIC). + {{enum}} + + + + + + + + + + + + + + + + + The period of time, in {{units}}, that this ZigBee device will wait for an expected security protocol frame. + + + + + + + + + + + + The {{object}} object provides the configuration capabilities needed to by a ZigBee Device to operate within a ZigBee Area Network as defined in {{bibref|ZigBee2007|section 2.5.2.4 Network Manager}}. + + + + {{numentries}} + + + + + + + + + The {{object}} object provides the configuration capabilities needed to by a ZigBee Device to operate within a ZigBee Area Network as defined in {{bibref|ZigBee2007|section 2.5.2.4 Network Manager}}. + + + + + + + Neighbor of this ZigBee device. The value MUST be the path name of a row in the ZigBee.ZDO table. If the referenced row is deleted then this entry MUST be deleted. + + + + + + + + + + The LQI field specified link quality identification (LQI) for neighbor ZigBee device. + + + + + + + + + + The relationship between the neighbor and this device.{{enum}} + + + + + + + + + + + + + + An indication of whether the neighbor device is accepting join requests.{{enum}} + + + + + + + + + + + + The tree depth of the neighbor device. A value of 0x00 indicates that the device is the ZigBee coordinator for the network. + + + + + + + + + The {{object}} object describes the configuration capabilities related for remote management of the ZigBee Area Network as defined in {{bibref|ZigBee2007|section 2.5.2.6 Node Manager}}. + + + + {{numentries}} + + + + + + + + + The {{object}} object describes the route table as defined in {{bibref|ZigBee2007|table 3.51 Routing Table Entry}}. + + + + + + + The ZigBee network address of this route. + + + + + + + + + + + Specifies the network address of the next hop ZigBee device on the way to the destination ZigBee device. + + + + + + + + The status of the route entry. {{enum}} + + + + + + + + + + + + + + A flag indicating whether the device is a memory constrained concentrator. + + + + + + + + A flag indicating that the destination is a concentrator that issued a many to-one request. + + + + + + + + A flag indicating that a route record command frame should be sent to the destination prior to the next data packet. + + + + + + + + + The {{object}} object describes the configuration capabilities related to maintaining a ZigBee Device's Binding Table as defined in {{bibref|ZigBee2007|section 2.2.8.2 Binding}}. + + + + + + + Enables or disables the use of this binding on the device. + + + + + + + + {{datatype|expand}} + + + + + + + + Specifies the source endpoint used in this binding entry. + + + + + + + + + + Specifies the source address used in this binding entry. + + + + + + + + Specifies the cluster identifier used in this binding entry. + + + + + + + + + + Specifies the type of destination address used for this binding entry. {{enum}} + + + + + + + + + + + Specifies the destination endpoint for the binding entry. The value of this field is valid when the value of the {{param|DestinationAddressMode}} is {{enum|Endpoint|DestinationAddressMode}}. + + + + + + + + + + Specifies the IEEE destination address for this binding entry. The value of this field is valid when the value of the {{param|DestinationAddressMode}} is {{enum|Endpoint|DestinationAddressMode}}. + + + + + + + + Specifies the group destination address for this binding entry. The value of this field is valid when the value of the {{param|DestinationAddressMode}} is {{enum|Group|DestinationAddressMode}}. + + + + + + + + + The {{object}} object describes the configuration capabilities related to maintaining a ZigBee Device's Group Table as defined in {{bibref|ZigBee2007|section 2.5.2.7 Group Manager}}. + + + + + + + + + + Enables or disables the use of this group on the device. + + + + + + + + {{datatype|expand}} + + + + + + + + The Group Identifier for this object as defined in {{bibref|ZigBee2007|table 2.25 Group Table Entry Format}}. + + + + + + + + The list of application endpoints assigned as a member of this {{object}} object. + + + + + + + + + + + + + The {{object}} object describes the application endpoint as defined in {{bibref|ZigBee2007|section 2.1.2 Application Framework}}. + + + + + + + + + + Enables or disables the use of this application endpoint on the device. + + + + + + + + {{datatype|expand}} + + + + + + + + The Endpoint Identifier for this object as defined in {{bibref|ZigBee2007|section 2.1.2 Application Framework}}. + An {{object}} with an {{param}} value of 0 is designated as the device application: This is a special application that is responsible for device operation and contains logic to manage the device's networking and general maintenance features. + + + + + + + + + + + The {{object}} object contains the attributes of the Simple Descriptor of an application endpoint, as defined in {{bibref|ZigBee2007|section 2.3.2.5 Simple Descriptor}}. + + + + Specifies the application profile that is supported on this endpoint. Application profiles are agreements for messages, message formats, andprocessing actions that enable developers to create an interoperable, distributed application employing application entities that reside on separate ZigBee devices. These application profiles enable applications to send commands, request data, and process commands and requests as defined in {{bibref|ZigBee2007|section 2.1.2.1 Application Profiles}}. + + + + + + + + + + Application device identifier, as defined in {{bibref|ZigBee2007|section 2.3.2.5.3 Application Device Identifier Field}}. + + + + + + + + + + Application device version, as defined in {{bibref|ZigBee2007|section 2.3.2.5.4 Application Device Version Field}}. + + + + + + + + + + {{list}} Specifies the input cluster identifiers to be matched by the ZigBee coordinator by remote Zigbee device's output cluster list for this {{object}} object. + + + + + + + + + + + {{list}} Specifies the output cluster identifiers to be matched by the ZigBee coordinator by remote Zigbee device's input cluster list for this {{object}} object. + + + + + + + + + + + + This object is used for managing the discovery of ZigBee devices within a ZigBee Area Network. ZigBee Devices are discovered via the {{object|#.ZDO}} instance associated with the ZigBee Coordinator of an Area Network. + + + + {{numentries}} + + + + + + + + + This object specifies the ZigBee devices that are discovered by the {{param|Coordinator}}. + As the ZigBee specification does not provide a discovery protocol between the CWMP proxy and the ZigBee coordinator, the {{object}} object is provisioned and not discovered. + + + + + + + + + + Enables or disables discovery of the ZigBee devices in this {{object}}. + + + + + + + + The date and time when this {{object}} or its member devices (i.e., the devices with ZDOs listed in {{param|ZDOList}}) were updated due to a discovery operation. + + + + + + + + The status of the current discovery operation. + {{enum}} + + + + + + The discovery operation has not been executed and there are no valid discovery results available) + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The Fully Qualified Domain Name (FQDN) or IP address of the ZigBee Coordinator. The coordinator MAY be located within the CPE. In this scenario the Controller or CPE MAY use the value of "localhost". + + + + + + + + + + The ZDO object for this device that is used to discover the ZigBee capabilities of attached devices. + {{reference}} + + + + + + + + + + + The list of ZDO objects discovered in this Area Network by the ZigBee Coordinator. + {{reference}} + + + + + + + + + + + + + Layer 2 bridging configuration. Specifies bridges between different layer 2 interfaces. Bridges can be defined to include layer 2 filter criteria to selectively bridge traffic between interfaces. + This object can be used to configure both 802.1D {{bibref|802.1D-2004}} and 802.1Q {{bibref|802.1Q-2011}} bridges. + Not all 802.1D and 802.1Q features are modeled, and some additional features not present in either 802.1D or 802.1Q are modeled. + 802.1Q {{bibref|802.1Q-2011}} bridges incorporate 802.1Q {{bibref|802.1Q-2005}} customer and 802.1ad {{bibref|802.1ad-2005}} provider bridges. + + + + The maximum number of entries available in the {{object|.Bridging.Bridge}} table. + + + + + + + + The maximum number of 802.1D {{bibref|802.1D-2004}} entries available in the {{object|.Bridging.Bridge}} table. A positive value for this parameter implies support for 802.1D. + There is no guarantee that this many 802.1D Bridges can be configured. For example, the CPE might not be able simultaneously to support both 802.1D and 802.1Q Bridges. + + + + + + + + The maximum number of 802.1Q {{bibref|802.1Q-2011}} entries available in the {{object|.Bridging.Bridge}} table. A non-zero value for this parameter implies support for 802.1Q. + There is no guarantee that this many 802.1Q Bridges can be configured. For example, the CPE might not be able simultaneously to support both 802.1D and 802.1Q Bridges. + + + + + + + + The maximum number of 802.1Q {{bibref|802.1Q-2011}} VLANs supported per {{object|.Bridging.Bridge}} table entry. + + + + + + + + The maximum number of entries available in the {{object|.Bridging.ProviderBridge}} table. A non-zero value for this parameter implies support for 802.1Q Provider Bridges. + + + + + + + + {{numentries}} + + + + + + + + The maximum number of entries available in the {{object|Filter}} table. + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + Bridge table. + + + + + + + Enables or disables this {{object}}. + + + + + + + + + The status of this {{object}}. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Selects the standard supported by this Bridge table entry. + + + + + + {{bibref|802.1D-2004}} + + + + + {{bibref|802.1Q-2005}} + + + + + The {{object}} provides support for at least one feature defined in {{bibref|802.1Q-2011}} that was not defined in {{bibref|802.1Q-2005}}. + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + Bridge Port table, which MUST contain an entry for each bridge port (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). + There are two types of bridge ports: management (upward facing) and non-management (downward facing). This is determined by configuring the Boolean {{param|ManagementPort}} parameter. The CPE will automatically configure each management bridge port to appear in the interface stack above all non-management bridge ports that share the same {{object|##.Bridge}} instance. + + + + + + + + + + Enables or disables the bridge port. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + + The current operational state of the bridge port (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then this parameter SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then this parameter SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the bridge port as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the bridge port entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + When {{param|ManagementPort}} is set to {{true}} the CPE MUST set {{param}} to reference all non-management bridge ports that are within the same {{object|##.Bridge}} instance (and update {{param}} when subsequent non-management bridge ports are added or deleted on that ''Bridge''). The Controller SHOULD NOT set {{param}} in this case. + + + + + + + + + + + + + + If {{true}} then the entry is a management (upward facing) bridge port rather than a non-management (downward facing) bridge port. For a given {{object|##.Bridge}} instance, each management bridge port appears in the interface stack above all non-management bridge ports. The concept of Management Port is discussed in {{bibref|802.1Q-2005|chapter 8}}. + + + + + + + + + The type of bridge port as defined in 802.1Q {{bibref|802.1Q-2011|Section 17 IEEE8021BridgePortType}}. + Enumeration of: + {{enum}} + + + + + + Indicates this {{object}} is an S-TAG aware port of a {{object|##.ProviderBridge}}. + + + + + Indicates this {{object}} is an S-TAG aware port of a {{object|##.ProviderBridge}}. + + + + + Indicates this {{object}} is an C-TAG aware port of a {{object|##.ProviderBridge}}. + + + + + Indicates this {{object}} is an C-TAG aware port of a Customer Bridge. + + + + + Indicates this {{object}} is a VLAN unaware member of an {{enum|802.1D-2004|#.Standard}} bridge. + + + + + + + + Bridge Port Default User Priority. + + + + + + + + + + {{list}} List items represent user priority regeneration values for each ingress user priority on this Bridge Port. + + + + + + + + + + + + Bridge Port state as defined in 802.1D {{bibref|802.1D-2004}} and 802.1Q {{bibref|802.1Q-2011}}. + + + + + + + + + + + + + + + + PVID (or Port VID) is the VLAN ID with which an untagged or priority tagged frame that arrives on this port will be associated (i.e. default Port VLAN ID as defined in 802.1Q {{bibref|802.1Q-2011}}). + For an 802.1D Bridge {{bibref|802.1D-2004}}, this parameter MUST be ignored. + + + + + + + + + + + The Tag Protocol Identifier (TPID) assigned to this {{object}}. The TPID is an EtherType value used to identify the frame as a tagged frame. + Standard {{bibref|802.1Q-2011|Table 9.1}} TPID values are: + *S-TAG 0x88A8 = 34984 + *C-TAG 0x8100 = 33024 + Non-Standard TPID values are: + *S-TAG 0x9100 = 37120 + + + + + + + + + Indicates which types of frame arriving on this port will be admitted to the bridge (i.e. Bridge Port acceptable frame types as defined in 802.1Q {{bibref|802.1Q-2011}}). {{enum}} + For an 802.1D {{bibref|802.1D-2004}} Bridge, the value of this parameter MUST be {{enum|AdmitAll}}. + + + + + + + + + + + + + Enables or disables Ingress Filtering as defined in 802.1Q {{bibref|802.1Q-2011}}. If enabled ({{true}}), causes frames arriving on this port to be discarded if the port is not in the VLAN ID's member set (which is configured via the {{object|#.VLANPort}} table). + For an 802.1D {{bibref|802.1D-2004}} Bridge, the value of this parameter MUST be {{false}}. + + + + + + + + + This parameter controls the Service Access Priority selection function as described in {{bibref|802.1Q-2011|section 6.13}}. + The parameter is applicable to deployments of {{object|##.Bridge}} instances that are referenced by {{param|###.Bridging.ProviderBridge.{i}.SVLANcomponent}}. + + + + + + + + + {{list}} List items represent service access priority translation values for each ingress priority on this {{object}} as described in {{bibref|802.1Q-2011|section 6.13}}. + The parameter is applicable to deployments of {{object|##.Bridge}} instances that are referenced by {{param|###.Bridging.ProviderBridge.{i}.SVLANcomponent}}. + + + + + + + + + + + + Enables or disables priority tagging on this Bridge Port. + When {{true}}, egress frames leaving this interface will be priority tagged with the frame's associated priority value, which will either be derived directly from the ingress frame or else set via {{param|.QoS.Classification.{i}.EthernetPriorityMark}}. + When {{false}}, egress frames leaving this interface will be untagged. + The parameter does not affect reception of ingress frames. + Only applies on bridge ports that are untagged member of one or more VLAN's. + + + + + + + + + + Throughput statistics for this interface. + The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + The total number of bytes transmitted out of the interface, including framing characters. + + + + + + + + The total number of bytes received on the interface, including framing characters. + + + + + + + + The total number of packets transmitted out of the interface. + + + + + + + + The total number of packets received on the interface. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of packets requested for transmission which were not addressed to a multicast or broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were not addressed to a multicast or broadcast address at this layer. + + + + + + + + The total number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a multicast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a multicast address at this layer. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a broadcast address at this layer. + + + + + + + + The total number of packets received via the interface which were discarded because of an unknown or unsupported protocol. + + + + + + + + + {{object}} provides the management control for the processing of the Priority Code Point (PCP) field for the 802.1Q header as defined in {{bibref|802.1Q-2011|section 6.9.3 Priority Code Point Encoding}}. + The object is applicable to deployments of {{object|####.Bridging.ProviderBridge}} where the {{object|###.Bridge}} instance is referenced by {{param|####.Bridging.ProviderBridge.{i}.SVLANcomponent}} or {{param|####.Bridging.ProviderBridge.{i}.CVLANcomponents}} parameters. + + + + This parameter identifies the row in the {{param|PCPEncoding}} and {{param|PCPDecoding}} parameter lists. The value of 1 points to the 8P0D row in the corresponding parameter lists. + + + + + + + + + + + This parameter controls the processing of the drop_eligible field and is described in {{bibref|802.1Q-2011|section 6.9.3}}. + + + + + + + + + This parameter controls the processing of the encoding or decoding of the drop_eligible component in the PCP field and is described in {{bibref|802.1Q-2011|section 8.6.7}}. + + + + + + + + + This parameter provides the management control for the processing of the encoding of the Priority Code Point (PCP) field for the 802.1Q header as defined in {{bibref|802.1Q-2011|section 6.9.3 Priority Code Point Encoding}} and {{bibref|802.1Q-2011|Table 6-3}}. + The list is an ordered list that contains entries for the following 4 PCP Values: "8P0D","7P1D", "6P2D" "5P3D". Each list entry matches the following pattern: + {{pattern}} + The value of this parameter MUST use square brackets to protect comma separators within nested lists. For example, this corresponds to Table 6-3 (mentioned above): + : [7,7,6,6,5,5,4,4,3,3,2,2,1,1,0,0],[7,7,6,6,5,4,5,4,3,3,2,2,1,1,0,0],[7,7,6,6,5,4,5,4,3,2,3,2,1,1,0,0],[7,7,6,6,5,4,5,4,3,2,3,2,1,0,1,0] + + + + + + + + PCP for each priority and drop_eligible field (7, 7DE, 6, 6DE, ..., 1, 1DE, 0, 0DE) + + + + + + + + This parameter provides the management control for the processing of the decoding of the Priority Code Point (PCP) field for the 802.1Q header as defined in {{bibref|802.1Q-2011|section 6.9.3 Priority Code Point Encoding}} and {{bibref|802.1Q-2011|Table 6-4}}. + The list is an ordered list that contains entries for the following 4 PCP Values: "8P0D","7P1D", "6P2D" "5P3D". Each list entry matches the following pattern: + {{pattern}} + The value of this parameter MUST use square brackets to protect comma separators within nested lists. For example, this corresponds to Table 6-4 (mentioned above): + : [7,0,6,0,5,0,4,0,3,0,2,0,1,0,0,0],[7,0,6,0,4,0,4,1,3,0,2,0,1,0,0,0],[7,0,6,0,4,0,4,1,2,0,2,1,1,0,0,0],[7,0,6,0,4,0,4,1,2,0,2,1,0,0,0,1] + + + + + + + + Priority (0-7) and drop_eligible field (0-1) for each PCP value (7, 6, ..., 1, 0). + + + + + + + + + Bridge VLAN table. If this table is supported, if MUST contain an entry for each VLAN known to the Bridge. + This table only applies to an 802.1Q {{bibref|802.1Q-2011}} Bridge. + + + + + + + + + + Enables or disables this VLAN table entry. + + + + + + + + + {{datatype|expand}} + + + + + + + + Human-readable name for this VLAN table entry. + + + + + + + + + + + VLAN ID of the entry. + + + + + + + + + + + Bridge VLAN egress port and untagged port membership table. + This table only applies to an 802.1Q {{bibref|802.1Q-2011}} Bridge. + Note: The {{object}} table includes unique key parameters that are strong references. If a strongly referenced object is deleted, the CPE will set the referencing parameter to {{empty}}. However, doing so under these circumstances might cause the updated {{object}} row to then violate the table's unique key constraint; if this occurs, the CPE MUST disable the offending {{object}} row. + + + + + + + + + + + Enables or disables this {{object}} entry. + + + + + + + + + {{datatype|expand}} + + + + + + + + {{reference}} Specifies the VLAN for which port membership is expressed. + + + + + + + + + + + + {{reference}} Specifies the bridge port that is member of the VLAN. + + + + + + + + + + + + Enables or disables untagged port membership to the VLAN and determines whether egress frames for this VLAN are sent untagged or tagged. + + + + + + + + + Filter table containing classification filter entries, each of which expresses a set of classification criterion to classify ingress frames as member of a {{object|#.Bridge}} instance or a {{object|#.Bridge.{i}.VLAN}} instance. + Bridge VLAN classification only applies for 802.1Q {{bibref|802.1Q-2011}} Bridges. + For enabled table entries, if {{param|Bridge}} or {{param|Interface}} is {{empty}} then the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + Several of this object's parameters specify DHCP option values. Some cases are version neutral (the parameter can apply to both DHCPv4 and DHCPv6), but in other cases the representation of the option is different for DHCPv4 and DHCPv6, so it is necessary to define separate DHCPv4-specific and DHCPv6-specific parameters. Therefore, an instance of this object that uses DHCP option values as filter criteria will be associated with either DHCPv4 or DHCPv6, as indicated by the {{param|DHCPType}} parameter. + + + + + + + Enables or disables this Filter table entry. + + + + + + + + + {{datatype|expand}} + + + + + + + + The status of this Filter table entry. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + If the Bridge Port table is supported, but none of its entries correspond to {{param|Interface}}, or if such an entry exists but is disabled, {{param}} MUST NOT indicate {{enum|Enabled}}. + If the Bridge VLAN table is supported, but none of its entries correspond to {{param|VLANIDFilter}}, or if such an entry exists but is disabled, {{param}} MUST NOT indicate {{enum|Enabled}}. + + + + + + + + + + + + + + {{reference|a {{object|.Bridging.Bridge}} object in case of a 802.1D bridge or a {{object|.Bridging.Bridge.{i}.VLAN}} object in case of a 802.1Q bridge}} Note: either way, this identifies the bridge (because each bridge has a VLAN table). + Defines the Bridge or Bridge VLAN to which ingress frames will be classified based upon matches of the classification criteria. + + + + + + + + + + + + Position of the {{object}} entry in the order of precedence. A value of ''1'' indicates the first entry considered (highest precedence). For each ingress frame on the {{param|Interface}}, the highest ordered entry that matches the filter criteria is applied. All lower order entries are ignored. + When this value is modified, if the value matches that of an existing entry, the {{param}} value for the existing entry and all lower {{param}} entries is incremented (lowered in precedence) to ensure uniqueness of this value. A deletion causes {{param}} values to be compacted. When a value is changed, incrementing occurs before compaction. + The value of {{param}} on creation of a {{object}} table entry MUST be one greater than the largest current value (initially assigned the lowest precedence). + + + + + + + + + + {{reference}} This MUST relate to the same bridge as does {{param|Bridge}}. + Defines the Bridge Port on which ingress frame classification will occur. + + + + + + + + + + + + The DHCP protocol associated with the {{object}} instance. Affects only parameters that specify DHCP option values as filter criteria (all such parameter descriptions note this fact). {{enum}} + If {{param}} is {{enum|DHCPv4}}, then {{object}} parameters that are DHCPv6-specific are ignored. If {{param}} is {{enum|DHCPv6}}, then {{object}} parameters that are DHCPv4-specific are ignored. + + + + + + + + + + + + Classification criterion. + The 802.1Q {{bibref|802.1Q-2011}} VLAN ID. + For an 802.1D {{bibref|802.1D-2004}} Bridge, which has no concept of VLANs, the VLAN ID MUST be ''0''. + + + + + + + + + + + Classification criterion. + {{list}} Each list item represents an Ethertype value. + Note that neither 802.1D {{bibref|802.1D-2004}} nor 802.1Q {{bibref|802.1Q-2011}} support classification based on Ethertype. + + + + + + + + + + + + If {{false}}, on ingress to the interfaces associated with this Filter, the Bridge is defined to admit only those packets that match one of the {{param|EthertypeFilterList}} entries (in either the Ethernet or SNAP Type header). If the {{param|EthertypeFilterList}} is empty, no packets are admitted. + If {{true}}, on ingress to the interfaces associated with this Filter, the Bridge is defined to admit all packets except those packets that match one of the {{param|EthertypeFilterList}} entries (in either the Ethernet or SNAP Type header). If the {{param|EthertypeFilterList}} is empty, packets are admitted regardless of Ethertype. + Note that neither 802.1D {{bibref|802.1D-2004}} nor 802.1Q {{bibref|802.1Q-2011}} support classification based on Ethertype. + + + + + + + + + Classification criterion. + {{list|each representing a MAC Address}} + Each list entry MAY optionally specify a bit-mask, where matching of a packet's MAC address is only to be done for bit positions set to one in the mask. If no mask is specified, all bits of the MAC Address are to be used for matching. + For example, the list might be: ''01:02:03:04:05:06, 1:22:33:00:00:00/FF:FF:FF:00:00:00, 88:77:66:55:44:33'' + Note that neither 802.1D {{bibref|802.1D-2004}} nor 802.1Q {{bibref|802.1Q-2011}} support classification based on source MAC address. + + + + + + + + + + + + If {{false}}, on ingress to the interfaces associated with this Filter, the Bridge admits only those packets whose source MAC Address matches one of the {{param|SourceMACAddressFilterList}} entries. If the {{param|SourceMACAddressFilterList}} is empty, no packets are admitted. + If {{true}}, on ingress to the interfaces associated with this Filter, the Bridge admits all packets except those packets whose source MAC Address matches one of the {{param|SourceMACAddressFilterList}} entries. If the {{param|SourceMACAddressFilterList}} is empty, packets are admitted regardless of MAC address. + Note that neither 802.1D {{bibref|802.1D-2004}} nor 802.1Q {{bibref|802.1Q-2011}} support classification based on source MAC address. + + + + + + + + + Classification criterion. + {{list}} Each list item specifies a MAC Address. List items MAY optionally specify a bit-mask after the MAC Address, where matching of a packet's MAC address is only to be done for bit positions set to one in the mask. If no mask is specified, all bits of the MAC Address are to be used for matching. + For example, the list might be: ''01:02:03:04:05:06, 1:22:33:00:00:00/FF:FF:FF:00:00:00, 88:77:66:55:44:33'' + + + + + + + + + + + + If {{false}}, on ingress to the interfaces associated with this Filter, the Bridge admits only those packets whose destination MAC Address matches one of the {{param|DestMACAddressFilterList}} entries. If the {{param|DestMACAddressFilterList}} is empty, no packets are admitted. + If {{true}}, on ingress to the interfaces associated with this Filter, the Bridge admits all packets except those packets whose destination MAC Address matches one of the {{param|DestMACAddressFilterList}} entries. If the {{param|DestMACAddressFilterList}} is empty, packets are admitted regardless of MAC address. + + + + + + + + + Classification criterion. + A string used to identify one or more devices via DHCP for which MAC address filtering would subsequently apply. A device is considered matching if its DHCPv4 Vendor Class Identifier (Option 60 as defined in {{bibref|RFC2132}}) in the most recent DHCP lease acquisition or renewal matches the specified value according to the match criterion in {{param|SourceMACFromVendorClassIDMode}}. Case sensitive. + This is a normal string, e.g. "abc" is represented as "abc" and not "616263" hex. However, if the value includes non-printing characters then such characters have to be represented using XML escapes, e.g. #x0a for line-feed. + Note that neither 802.1D {{bibref|802.1D-2004}} nor 802.1Q {{bibref|802.1Q-2011}} support classification based on source MAC address. + Note: This parameter is DHCPv4-specific. It only applies when {{param|DHCPType}} is {{enum|DHCPv4|DHCPType}}. + + + + + + + + + + + Classification criterion. + A hexbinary string used to identify one or more devices via DHCP for which MAC address filtering would subsequently apply. A device is considered matching if the most recent DHCPv6 Vendor Class Identifier (Option 16 as defined in {{bibref|RFC3315}}) was equal to the specified value. The option value is binary, so an exact match is REQUIRED. + Note that neither 802.1D {{bibref|802.1D-2004}} nor 802.1Q {{bibref|802.1Q-2011}} support classification based on source MAC address. + Note: This parameter is DHCPv6-specific. It only applies when {{param|DHCPType}} is {{enum|DHCPv6|DHCPType}}. + + + + + + + + + + + If {{false}}, on ingress to the interfaces associated with this Filter, the Bridge admits only those packets whose source MAC Address matches that of a LAN device previously identified as described in {{param|SourceMACFromVendorClassIDFilter}} (for {{enum|DHCPv4|DHCPType}}) or {{param|SourceMACFromVendorClassIDFilterv6}} (for {{enum|DHCPv6|DHCPType}}). If this corresponding filter parameter is {{empty}}, no packets are admitted. + If {{true}}, on ingress to the interfaces associated with this Filter, the Bridge admits all packets except those packets whose source MAC Address matches that of a LAN device previously identified as described in {{param|SourceMACFromVendorClassIDFilter}} (for {{enum|DHCPv4|DHCPType}}) or {{param|SourceMACFromVendorClassIDFilterv6}} (for {{enum|DHCPv6|DHCPType}}). If this corresponding filter parameter is {{empty}}, packets are admitted regardless of MAC address. + Note that neither 802.1D {{bibref|802.1D-2004}} nor 802.1Q {{bibref|802.1Q-2011}} support classification based on source MAC address + + + + + + + + + {{param|SourceMACFromVendorClassIDFilter}} pattern match criterion. {{enum}} + For example, if {{param|SourceMACFromVendorClassIDFilter}} is "Example" then an Option 60 value of "Example device" will match with this parameter values of {{enum|Prefix}} or {{enum|Substring}}, but not with {{enum|Exact}} or {{enum|Suffix}}. + Note that neither 802.1D {{bibref|802.1D-2004}} nor 802.1Q {{bibref|802.1Q-2011}} support classification based on source MAC address. + + + + + + + + + + + + + + Classification criterion. + A string used to identify one or more devices via DHCP for which MAC address filtering would subsequently apply. A device is considered matching if its DHCPv4 Vendor Class Identifier (Option 60 as defined in {{bibref|RFC2132}}) in the most recent DHCP lease acquisition or renewal matches the specified value according to the match criterion in {{param|DestMACFromVendorClassIDMode}}. Case sensitive. + This is a normal string, e.g. "abc" is represented as "abc" and not say "616263" hex. However, if the value includes non-printing characters then such characters have to be represented using XML escapes, e.g. #x0a for line-feed. + Note: This parameter is DHCPv4-specific. It only applies when {{param|DHCPType}} is {{enum|DHCPv4|DHCPType}}. + + + + + + + + + + + Classification criterion. + A hexbinary string used to identify one or more devices via DHCP for which MAC address filtering would subsequently apply. A device is considered matching if the most recent DHCPv6 Vendor Class Identifier (Option 16 as defined in {{bibref|RFC3315}}) was equal to the specified value. The option value is binary, so an exact match is REQUIRED. + Note: This parameter is DHCPv6-specific. It only applies when {{param|DHCPType}} is {{enum|DHCPv6|DHCPType}}. + + + + + + + + + + + If {{false}}, on ingress to the interfaces associated with this Filter, the Bridge admits only those packets whose destination MAC Address matches that of a LAN device previously identified as described in {{param|DestMACFromVendorClassIDFilter}} (for {{enum|DHCPv4|DHCPType}}) or {{param|DestMACFromVendorClassIDFilterv6}} (for {{enum|DHCPv6|DHCPType}}). If this corresponding filter parameter is {{empty}}, no packets are admitted. + If {{true}}, on ingress to the interfaces associated with this Filter, the Bridge admits all packets except those packets whose destination MAC Address matches that of a LAN device previously identified as described in {{param|DestMACFromVendorClassIDFilter}} (for {{enum|DHCPv4|DHCPType}}) or {{param|DestMACFromVendorClassIDFilterv6}} (for {{enum|DHCPv6|DHCPType}}). If this corresponding filter parameter is {{empty}}, packets are admitted regardless of MAC address. + + + + + + + + + {{param|DestMACFromVendorClassIDFilter}} pattern match criterion. {{enum}} + For example, if {{param|DestMACFromVendorClassIDFilter}} is ''Example'' then an Option 60 value of "Example device" will match with {{param}} values of {{enum|Prefix}} or {{enum|Substring}}, but not with {{enum|Exact}} or {{enum|Suffix}}. + + + + + + + + + + + + + + Classification criterion. + A hexbinary string used to identify one or more devices via DHCP for which MAC address filtering would subsequently apply. A device is considered matching if the most recent DHCP Client Identifier (via DHCP lease acquisition or renewal for DHCPv4) was equal to the specified value. The DHCP Client Identifier is Option 61 (as defined in {{bibref|RFC2132}}) for {{enum|DHCPv4|DHCPType}}, or is Option 1 (as defined in {{bibref|RFC3315}}) for {{enum|DHCPv6|DHCPType}}. The option value is binary, so an exact match is REQUIRED. + Note that neither 802.1D {{bibref|802.1D-2004}} nor 802.1Q {{bibref|802.1Q-2011}} support classification based on source MAC address. + Note: DHCPv4 Option values are limited to a length of 255, while DHCPv6 Option values can have a maximum length of 65535. + Note: This parameter is DHCP version neutral. The specific DHCP version in use with this parameter is indicated by {{param|DHCPType}}. + Note: DHCPv6 Option 1 (Client Identifier) is sometimes referred to as ''DUID''. + + + + + + + + + + + If {{false}}, on ingress to the interfaces associated with this Filter, the Bridge admits only those packets whose source MAC Address matches that of a LAN device previously identified as described in {{param|SourceMACFromClientIDFilter}}. If {{param|SourceMACFromClientIDFilter}} is {{empty}}, no packets are admitted. + If {{true}}, on ingress to the interfaces associated with this Filter, the Bridge admits all packets except those packets whose source MAC Address matches that of a LAN device previously identified as described in {{param|SourceMACFromClientIDFilter}}. If the {{param|SourceMACFromClientIDFilter}} is {{empty}}, packets are admitted regardless of MAC address. + Note that neither 802.1D {{bibref|802.1D-2004}} nor 802.1Q {{bibref|802.1Q-2011}} support classification based on source MAC address. + + + + + + + + + Classification criterion. + A hexbinary string used to identify one or more devices via DHCP for which MAC address filtering would subsequently apply. A device is considered matching if the most recent DHCP Client Identifier (via DHCP lease acquisition or renewal for DHCPv4) was equal to the specified value. The DHCP Client Identifier is Option 61 (as defined in {{bibref|RFC2132}}) for {{enum|DHCPv4|DHCPType}}, or is Option 1 (as defined in {{bibref|RFC3315}}) for {{enum|DHCPv6|DHCPType}}. The option value is binary, so an exact match is REQUIRED. + Note: DHCPv4 Option values are limited to a length of 255, while DHCPv6 Option values can have a maximum length of 65535. + Note: This parameter is DHCP version neutral. The specific DHCP version in use with this parameter is indicated by {{param|DHCPType}}. + Note: DHCPv6 Option 1 (Client Identifier) is sometimes referred to as ''DUID''. + + + + + + + + + + + If {{false}}, on ingress to the interfaces associated with this Filter, the Bridge admits only those packets whose destination MAC Address matches that of a LAN device previously identified as described in {{param|DestMACFromClientIDFilter}}. If {{param|DestMACFromClientIDFilter}} is {{empty}}, no packets are admitted. + If {{true}}, on ingress to the interfaces associated with this Filter, the Bridge admits all packets except those packets whose destination MAC Address matches that of a LAN device previously identified as described in {{param|DestMACFromClientIDFilter}}. If the {{param|DestMACFromClientIDFilter}} is {{empty}}, packets are admitted regardless of MAC address. + + + + + + + + + Classification criterion. + A hexbinary string used to identify one or more devices via DHCP for which MAC address filtering would subsequently apply. A device is considered matching if the most recent DHCP User Class Identifier (via DHCP lease acquisition or renewal for DHCPv4) was equal to the specified value. The DHCP User Class Identifier is Option 77 (as defined in {{bibref|RFC3004}}) for {{enum|DHCPv4|DHCPType}}, or is Option 15 (as defined in {{bibref|RFC3315}}) for {{enum|DHCPv6|DHCPType}}. The option value is binary, so an exact match is REQUIRED. + Note that neither 802.1D {{bibref|802.1D-2004}} nor 802.1Q {{bibref|802.1Q-2011}} support classification based on source MAC address. + Note: DHCPv4 Option values are limited to a length of 255, while DHCPv6 Option values can have a maximum length of 65535. + Note: This parameter is DHCP version neutral. The specific DHCP version in use with this parameter is indicated by {{param|DHCPType}}. + + + + + + + + + + + If {{false}}, on ingress to the interfaces associated with this Filter, the Bridge admits only those packets whose source MAC Address matches that of a LAN device previously identified as described in {{param|SourceMACFromUserClassIDFilter}}. If {{param|SourceMACFromUserClassIDFilter}} is {{empty}}, no packets are admitted. + If {{true}}, on ingress to the interfaces associated with this Filter, the Bridge admits all packets except those packets whose source MAC Address matches that of a LAN device previously identified as described in {{param|SourceMACFromUserClassIDFilter}}. If the {{param|SourceMACFromUserClassIDFilter}} is {{empty}}, packets are admitted regardless of MAC address. + Note that neither 802.1D {{bibref|802.1D-2004}} nor 802.1Q {{bibref|802.1Q-2011}} support classification based on source MAC address. + + + + + + + + + Classification criterion. + A hexbinary string used to identify one or more devices via DHCP for which MAC address filtering would subsequently apply. A device is considered matching if the most recent DHCP User Class Identifier (via DHCP lease acquisition or renewal for DHCPv4) was equal to the specified value. The DHCP User Class Identifier is Option 77 (as defined in {{bibref|RFC3004}}) for {{enum|DHCPv4|DHCPType}}, or is Option 15 (as defined in {{bibref|RFC3315}}) for {{enum|DHCPv6|DHCPType}}. The option value is binary, so an exact match is REQUIRED. + Note: DHCPv4 Option values are limited to a length of 255, while DHCPv6 Option values can have a maximum length of 65535. + Note: This parameter is DHCP version neutral. The specific DHCP version in use with this parameter is indicated by {{param|DHCPType}}. + + + + + + + + + + + If {{false}}, on ingress to the interfaces associated with this Filter, the Bridge admits only those packets whose destination MAC Address matches that of a LAN device previously identified as described in {{param|DestMACFromUserClassIDFilter}}. If {{param|DestMACFromUserClassIDFilter}} is {{empty}}, no packets are admitted. + If {{true}}, on ingress to the interfaces associated with this Filter, the Bridge admits all packets except those packets whose destination MAC Address matches that of a LAN device previously identified as described in {{param|DestMACFromUserClassIDFilter}}. If the {{param|DestMACFromUserClassIDFilter}} is {{empty}}, packets are admitted regardless of MAC address. + + + + + + + + + Classification criterion. + Destination IP address. {{empty}} indicates this criterion is not used for classification. + + + + + + + + + Destination IP address mask, represented as an IP routing prefix using CIDR notation [RFC4632]. The IP address part MUST be {{empty}} (and, if specified, MUST be ignored). + + + + + + + + + If {{false}}, the class includes only those packets that match the (masked) DestIP entry, if specified. + If {{true}}, the class includes all packets except those that match the (masked) DestIP entry, if specified. + + + + + + + + + Classification criterion. + Source IP address. {{empty}} indicates this criterion is not used for classification. + + + + + + + + + Source IP address mask, represented as an IP routing prefix using CIDR notation [RFC4632]. The IP address part MUST be an empty string (and, if specified, MUST be ignored). + + + + + + + + + If {{false}}, the class includes only those packets that match the (masked) {{param|SourceIP}} entry, if specified. + If {{true}}, the class includes all packets except those that match the (masked) {{param|SourceIP}} entry, if specified. + + + + + + + + + Classification criterion. + Protocol number. A value of -1 indicates this criterion is not used for classification. + + + + + + + + + + + If {{false}}, the class includes only those packets that match the {{param|Protocol}} entry, if specified. + If {{true}}, the class includes all packets except those that match the {{param|Protocol}} entry, if specified. + + + + + + + + + Classification criterion. + Destination port number. A value of -1 indicates this criterion is not used for classification. + + + + + + + + + + + Classification criterion. + If specified, indicates the classification criterion is to include the port range from {{param|DestPort}} through {{param}} (inclusive). If specified, {{param}} MUST be greater than or equal to {{param|DestPort}}. + A value of -1 indicates that no port range is specified. + + + + + + + + + + + If {{false}}, the class includes only those packets that match the {{param|DestPort}} entry (or port range), if specified. + If {{true}}, the class includes all packets except those that match the {{param|DestPort}} entry (or port range), if specified. + + + + + + + + + Classification criterion. + Source port number. A value of -1 indicates this criterion is not used for classification. + + + + + + + + + + + Classification criterion. + If specified, indicates the classification criterion is to include the port range from {{param|SourcePort}} through {{param}} (inclusive). If specified, {{param}} MUST be greater than or equal to SourcePort. + A value of -1 indicates that no port range is specified. + + + + + + + + + + + If {{false}}, the class includes only those packets that match the {{param|SourcePort}} entry (or port range), if specified. + If {{true}}, the class includes all packets except those that match the {{param|SourcePort}} entry (or port range), if specified. + + + + + + + + + + Provider Bridge table. + A Provider Bridge is described in {{bibref|802.1Q-2011|section 5.10 Provider Bridge conformance}} as an entity that is comprised of one S-VLAN component and zero or more C-VLAN components. S-VLAN and C-VLAN components are modelled as instances of {{object|#.Bridge}} objects. + When {{param|Type}} is configured with value of {{enum|PE|Type}} VLAN tags from the S-VLAN component (outer of 2 VLAN tags) are stacked on top of the VLAN tag from the C-VLAN component (inner of 2 VLAN tags). + When {{param|Type}} is configured with value of {{enum|S-VLAN|Type}} only VLAN tags from the S-VLAN component are utilized. + + + + + + + Enables or disables this {{object}}. + + + + + + + + + The status of this {{object}}. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. For example when the {{param|Type}} is configured with value of {{enum|PE|Type}} but {{param|CVLANcomponents}} is {{empty}}. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Selects the standard supported by this {{object}} table entry. + + + + + + Provider Bridge conforming to {{bibref|802.1Q-2011|5.10.1 S-VLAN Bridge conformance}} + + + + + Provider Bridge conforming to {{bibref|802.1Q-2011|5.10.2 Provider Edge Bridge conformance}} + + + + + + + + {{reference|a {{object|#.Bridge}} instance that specifies the S-VLAN component for the {{object}}}} + + + + + + + + + + + + {{list}} {{reference|a {{object|#.Bridge}} instance that specifies a C-VLAN component for the {{object}}}} + + + + + + + + + + + + + + Point-to-Point Protocol {{bibref|RFC1661}}. This object contains the {{object|Interface}} table. + + + + {{numentries}} + + + + + + + + The Network Control Protocols (NCPs) that are supported by the device. {{enum}} + Note that {{enum|IPv6CP}} is an IPv6 capability. + + + + + + + AppleTalk Control Protocol {{bibref|RFC1378}} + + + + + {{bibref|RFC1332}} + + + + + {{bibref|RFC1552}} + + + + + {{bibref|RFC2097}} + + + + + {{bibref|RFC5072}} + + + + + + + + + PPP interface table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). + + + + + + + + + + Enables or disables the interface. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + + The current operational state of the interface (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the interface as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the interface entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + + + + + + + + + + + + + + When set to {{true}}, the device MUST tear down the existing PPP connection represented by this object and establish a new one. + The device MUST initiate the reset after completion of the current CWMP session. The device MAY delay resetting the connection in order to avoid interruption of a user service such as an ongoing voice call. + Reset on a disabled interface is a no-op (not an error). + + + + + + + + + Current status of the connection. + + + + + + + + + + + + + + + + The cause of failure for the last connection setup attempt. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The time in {{units}} since the establishment of the connection after which connection termination is automatically initiated by the CPE. This occurs irrespective of whether the connection is being used or not. A value of 0 (zero) indicates that the connection is not to be shut down automatically. + + + + + + + + + + The time in {{units}} that if the connection remains idle, the CPE automatically terminates the connection. A value of 0 (zero) indicates that the connection is not to be shut down automatically. + + + + + + + + + + Time in {{units}} the {{param|ConnectionStatus}} remains in the {{enum|PendingDisconnect|ConnectionStatus}} state before transitioning to disconnecting state to drop the connection. + + + + + + + + + + Username to be used for authentication. + + + + + + + + + + Password to be used for authentication. + + + + + + Describes the PPP encryption protocol. + + + + + + + + + + + Describes the PPP compression protocol. + + + + + + + {{bibref|RFC1332}} + + + + + {{bibref|RFC1974}} + + + + + + + + Describes the PPP authentication protocol. + + + + + + + + + + + + The maximum allowed size of frames sent from the remote peer. + + + + + + + + + + + The current MRU in use over this connection. + + + + + + + + + + Trigger used to establish the PPP connection. {{enum}} + Note that the reason for a PPP connection becoming disconnected to begin with might be either external to the CPE, such as termination by the BRAS or momentary disconnection of the physical interface, or internal to the CPE, such as use of the {{param|IdleDisconnectTime}} and/or {{param|AutoDisconnectTime}} parameters in this object. + + + + + + If this PPP connection is disconnected for any reason, it is to remain disconnected until the CPE has one or more packets to communicate over this connection, at which time the CPE automatically attempts to reestablish the connection. + + + + + If this PPP connection is disconnected for any reason, the CPE automatically attempts to reestablish the connection (and continues to attempt to reestablish the connection as long it remains disconnected). + + + + + If this PPP connection is disconnected for any reason, it is to remain disconnected until the user of the CPE explicitly instructs the CPE to reestablish the connection. + + + + + + + + PPP LCP Echo period in {{units}}. + + + + + + + + + + Number of PPP LCP Echo retries within an echo period. + + + + + + + + Enables or disables IPCP ({{bibref|RFC1332}}) on this interface. If this parameter is present, {{enum|IPCP|#.SupportedNCPs}} MUST be included in {{param|#.SupportedNCPs}}. + + + + + + + + Enables or disables IPv6CP ({{bibref|RFC5072}}) on this interface. If this parameter is present, {{enum|IPv6CP|#.SupportedNCPs}} MUST be included in {{param|#.SupportedNCPs}}. + + + + + + + + + PPPoE object that functionally groups PPPoE related parameters. + PPPoE is only applicable when the lower layer provides Ethernet frames, e.g. ATM with EoA, PTM, or anything else that supports an Ethernet MAC. + + + + Represents the PPPoE Session ID. + + + + + + + + + + PPPoE Access Concentrator. + + + + + + + + + + PPPoE Service Name. + + + + + + + + + + + IP Control Protocol (IPCP) client object for this PPP interface {{bibref|RFC1332}}. {{object}} only applies to IPv4. + + + + The local IPv4 address for this connection received via IPCP. + + + + + + + + + The remote IPv4 address for this connection received via IPCP. + + + + + + + + + {{list}} Items represent DNS Server IPv4 address(es) received via IPCP {{bibref|RFC1877}}. + + + + + + + + + + If {{false}}, the PPP Interface retrieved information is configured on the IP Interface stacked on top of this PPP Interface. + If {{true}}, the PPP Interface retrieved information is propagated to the parameters in the referenced {{param|PassthroughDHCPPool}} object, replacing any existing configuration (including ''MinAddress'', ''MaxAddress'', ''SubnetMask'', ''IPRouters'', and ''DNSServers''). + + + + + + + + + {{reference}}When {{param}} is set to {{empty}}, {{param|PassthroughEnable}} MUST be set to {{false}} (i.e. passthrough can not be enabled without a pool reference specified). + + + + + + + + + + + + + IPv6 Control Protocol (IPv6CP) client object for this PPP interface {{bibref|RFC5072}}. {{object}} only applies to IPv6. + + + + The interface identifier for the local end of the PPP link, negotiated using the IPv6CP ''Interface-Identifier'' option {{bibref|RFC5072|Section 4.1}}. + The identifier is represented as the rightmost 64 bits of an IPv6 address (the leftmost 64 bits MUST be zero and MUST be ignored by the recipient). + + + + + + + + The interface identifier for the remote end of the PPP link, negotiated using the IPv6CP ''Interface-Identifier'' option {{bibref|RFC5072|Section 4.1}}. + The identifier is represented as the rightmost 64 bits of an IPv6 address (the leftmost 64 bits MUST be zero and MUST be ignored by the recipient). + + + + + + + + + Throughput statistics for this interface. + The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + The total number of bytes transmitted out of the interface, including framing characters. + + + + + + + + The total number of bytes received on the interface, including framing characters. + + + + + + + + The total number of packets transmitted out of the interface. + + + + + + + + The total number of packets received on the interface. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of packets requested for transmission which were not addressed to a multicast or broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were not addressed to a multicast or broadcast address at this layer. + + + + + + + + The total number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a multicast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a multicast address at this layer. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a broadcast address at this layer. + + + + + + + + The total number of packets received via the interface which were discarded because of an unknown or unsupported protocol. + + + + + + + + + PPPoA object that functionally groups PPPoA related parameters. + This object is OBSOLETED because it contains no standard parameters and its existence causes confusion. + + + + + IP object that contains the {{object|Interface}}, {{object|ActivePort}}, and {{object|Diagnostics}} objects. + + + + Indicates whether the device is IPv4 capable. + + + + + + + + Enables or disables the IPv4 stack, and so the use of IPv4 on the device. This affects only layer 3 and above. + When {{false}}, IP interfaces that had been operationally up and passing IPv4 packets will now no longer be able to do so, and will be operationally down (unless also attached to an enabled IPv6 stack). + + + + + + + + Indicates the status of the IPv4 stack. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + Indicates whether the device is IPv6 capable. + Note: If {{false}}, it is expected that IPv6-related parameters, enumeration values, etc will not be implemented by the device. + + + + + + + + Enables or disables the IPv6 stack, and so the use of IPv6 on the device. This affects only layer 3 and above. + When {{false}}, IP interfaces that had been operationally up and passing IPv6 packets will now no longer be able to do so, and will be operationally down (unless also attached to an enabled IPv4 stack). + + + + + + + + Indicates the status of the IPv6 stack. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + The ULA /48 prefix {{bibref|RFC4193|Section 3}}. + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + IP interface table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). This table models the layer 3 IP interface. + Each IP interface can be attached to the IPv4 and/or IPv6 stack. The interface's IP addresses and prefixes are listed in the {{object|IPv4Address}}, {{object|IPv6Address}} and {{object|IPv6Prefix}} tables. + Note that support for manipulating {{param|Loopback}} interfaces is OPTIONAL, so the implementation MAY choose not to create (or allow the Controller to create) {{object}} instances of type {{enum|Loopback|Type}}. + When the Controller administratively disables the interface, i.e. sets {{param|Enable}} to {{false}}, the interface's automatically-assigned IP addresses and prefixes MAY be retained. When the Controller administratively enables the interface, i.e. sets {{param|Enable}} to {{true}}, these IP addresses and prefixes MUST be refreshed. It's up to the implementation to decide exactly what this means: it SHOULD take all reasonable steps to refresh everything but if it is unable, for example, to refresh a prefix that still has a significant lifetime, it might well choose to retain rather than discard it. + Any {{enum|Tunneled|Type}} IP interface instances instantiated by the CPE MUST NOT have any statistics, writable parameters, IP addresses or IPv6 prefixes. Any read-only parameters, e.g. {{param|Status}}, MUST return the same information as for the corresponding {{enum|Tunnel|Type}} interface. The reason for these rules is that {{enum|Tunneled|Type}} IP interfaces exist only in order to be the targets of references (within the data model) and do not model any concepts over and above those already modeled by the {{enum|Tunnel|Type}} IP interfaces. + Note that {{enum|Tunnel|Type}} and {{enum|Tunneled|Type}} IP interfaces are part of a legacy mechanism that is only used for {{object|##.IPv6rd}}, {{object|##.DSLite}} and {{object|##.IPsec}} tunnels and MUST NOT be used in any other context. For all other tunneling mechanisms {{enum|Normal|Type}} IP interfaces are stacked above technology-specific Tunnel Interfaces, e.g. above {{object|##.GRE.Tunnel.{i}.Interface}} or {{object|##.MAP.Domain.{i}.Interface}} objects. + + + + + + + + + + Enables or disables the interface (regardless of {{param|IPv4Enable}} and {{param|IPv6Enable}}). + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + + If set to {{true}}, attaches this interface to the IPv4 stack. If set to {{false}}, detaches this interface from the IPv4 stack. + Once detached from the IPv4 stack, the interface will now no longer be able to pass IPv4 packets, and will be operationally down (unless also attached to an enabled IPv6 stack). + For an IPv4 capable device, if {{param}} is not present this interface SHOULD be permanently attached to the IPv4 stack. + Note that {{param}} is independent of {{param|Enable}}, and that to administratively enable an interface for IPv4 it is necessary for both {{param|Enable}} and {{param}} to be {{true}}. + + + + + + + + If set to {{true}}, attaches this interface to the IPv6 stack. If set to {{false}}, detaches this interface from the IPv6 stack. + Once detached from the IPv6 stack, the interface will now no longer be able to pass IPv6 packets, and will be operationally down (unless also attached to an enabled IPv4 stack). + For an IPv6 capable device, if {{param}} is not present this interface SHOULD be permanently attached to the IPv6 stack. + Note that {{param}} is independent of {{param|Enable}}, and that to administratively enable an interface for IPv6 it is necessary for both {{param|Enable}} and {{param}} to be {{true}}. + + + + + + + + Controls whether or not ULAs {{bibref|RFC4193}} are generated and used on this interface. + + + + + + + + + The current operational state of the interface (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the interface as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the interface entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + {{param}} MUST be {{empty}} and read-only when {{param|Type}} is {{enum|Loopback|Type}}, {{enum|Tunnel|Type}}, or {{enum|Tunneled|Type}}. + + + + + + + + + + + + + + {{reference}} The ''Router'' instance that is associated with this IP Interface entry. + + + + + + + + + + + + When set to {{true}}, the device MUST tear down the existing IP connection represented by this object and establish a new one. + The device MUST initiate the reset after completion of the current CWMP session. The device MAY delay resetting the connection in order to avoid interruption of a user service such as an ongoing voice call. + Reset on a disabled interface is a no-op (not an error). + + + + + + + + + The maximum transmission unit (MTU); the largest allowed size of an IP packet (including IP headers, but excluding lower layer headers such as Ethernet, PPP, or PPPoE headers) that is allowed to be transmitted by or through this device. + + + + + + + + + + IP interface type. {{enum}} + For {{enum|Loopback}}, {{enum|Tunnel}}, and {{enum|Tunneled}} IP interface objects, the {{param|LowerLayers}} parameter MUST be {{empty}}. + + + + + + + + Only used with legacy ({{enum|Tunnel}},{{enum|Tunneled}}) IP interface pairs + + + + + Only used with legacy ({{enum|Tunnel}},{{enum|Tunneled}}) IP interface pairs + + + + + + + + + When set to {{true}}, the IP interface becomes a loopback interface and the CPE MUST set {{param|Type}} to {{enum|Loopback|Type}}. In this case, the CPE MUST also set {{param|LowerLayers}} to {{empty}} and fail subsequent attempts at setting {{param|LowerLayers}} until the interface is no longer a loopback. + Support for manipulating loopback interfaces is OPTIONAL. + + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + If {{true}}, enables auto-IP on the interface {{bibref|RFC3927}}. This mechanism is only used with IPv4. + When auto-IP is enabled on an interface, an {{object|IPv4Address}} object will dynamically be created and configured with auto-IP parameter values. The exact conditions under which an auto-IP address is created (e.g. always when enabled or only in absence of dynamic IP addressing) is implementation specific. + + + + + + + + + {{numentries}} + + + + + + + + + IPv4 address table. Entries are auto-created and auto-deleted as IP addresses are added and deleted via DHCP, auto-IP, or IPCP. Static entries are created and configured by the Controller. + + + + + + + + + + + Enables or disables this IPv4 address. + + + + + + + + + The status of this {{object}} table entry. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + {{datatype|expand}} + This parameter can only be modified if {{param|AddressingType}} is {{enum|Static|AddressingType}}. + + + + + + + + IPv4 address. + This parameter can only be modified if the {{param|AddressingType}} is {{enum|Static|AddressingType}}. + + + + + + + + Subnet mask. + This parameter can only be modified if the {{param|AddressingType}} is {{enum|Static|AddressingType}}. + + + + + + + + + Addressing method used to assign the IP address. {{enum}} + + + + + + + Assigned by IKEv2 {{bibref|RFC5996}}. + + + + + + + + + + + + + Throughput statistics for this interface. + The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + The total number of bytes transmitted out of the interface, including framing characters. + + + + + + + + The total number of bytes received on the interface, including framing characters. + + + + + + + + The total number of packets transmitted out of the interface. + + + + + + + + The total number of packets received on the interface. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of packets requested for transmission which were not addressed to a multicast or broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were not addressed to a multicast or broadcast address at this layer. + + + + + + + + The total number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a multicast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a multicast address at this layer. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a broadcast address at this layer, including those that were discarded or not sent. + Note that IPv6 does not define broadcast addresses, so IPv6 packets will never cause this counter to increment. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a broadcast address at this layer. + Note that IPv6 does not define broadcast addresses, so IPv6 packets will never cause this counter to increment. + + + + + + + + The total number of packets received via the interface which were discarded because of an unknown or unsupported protocol. + + + + + + + + + This object contains parameters associated with the configuration that permits this interface to be used as Two-Way Active Measurement Protocol (TWAMP) reflector as defined in {{bibref|TR-390}}. + + + + + + + + + + Enables or disables the TWAMP reflector. + + + + + + + + The current operational state of the TWAMP reflector. + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The port used to listen for the TWAMP test packets. + + + + + + + + + + + The maximum TTL of a received packet that this TWAMP reflector will reflect to the TWAMP controller. + + + + + + + + + + + {{list}} List items represent source IP addresses and subnets from which test packets MUST always be received. {{empty}} list will allow test packets to be received from any source IP address. + Each entry in the list MUST be either an IP address, or an IP prefix specified using Classless Inter-Domain Routing (CIDR) notation {{bibref|RFC4632}}. + An IP prefix is specified as an IP address followed (with no intervening white space) by "/n", where ''n'' (the prefix size) is an integer in the range 0-32 (for IPv4) or 0-128 (for IPv6) that indicates the number of (leftmost) '1' bits of the prefix. + IPv4 example: + * 1.2.3.4 specifies a single IPv4 address, and 1.2.3.4/24 specifies a class C subnet with subnet mask 255.255.255.0. + * 1.2.0.0/22 represents the 1024 IPv4 addresses from 1.2.0.0 to 1.2.3.255. + IPv6 example: + * fec0::220:edff:fe6a:f76 specifies a single IPv6 address. + * 2001:edff:fe6a:f76::/64 represents the IPv6 addresses from 2001:edff:fe6a:f76:0:0:0:0 to 2001:edff:fe6a:f76:ffff:ffff:ffff:ffff. + + + + + + + + + + + {{list}} List items represent source port ranges from which test packets MUST always be received. {{empty}} list will allow test packets to be received from any source port. + Each entry in the list MUST be either a port number or a range of port numbers separated by a hypen (-). + For example, an entry with the value: '2-40' accepts test packets from any allowed source IP addresses with a source port between 2 and 40 inclusive. An entry of '3' accepts test packets from allow source IP addresses with a port of 3. + + + + + + + + + + + + This table contains the IP interface's IPv6 unicast addresses. There MUST be an entry for each such address, including anycast addresses. + There are several ways in which entries can be added to and deleted from this table, including: + * Automatically via SLAAC {{bibref|RFC4862}}, which covers generation of link-local addresses (for all types of device) and global addresses (for non-router devices). + * Automatically via DHCPv6 {{bibref|RFC3315}}, which covers generation of any type of address (subject to the configured DHCP server policy). + * Manually via a GUI or some other local management interface. + * Manually via factory default configuration. + * By the Controller. + This table MUST NOT include entries for the Subnet-Router anycast address {{bibref|RFC4291|Section 2.6.1}}. Such entries would be identical to others but with a zero interface identifier, and would add no value. + A loopback interface will always have address ''::1'' {{bibref|RFC4291|Section 2.5.3}} and MAY also have link-local address ''fe80::1''. + This object is based on ''ipAddressTable'' from {{bibref|RFC4293}}. + + + + + + + + + + Enables or disables this {{object}} entry. + + + + + + + + + The status of this {{object}} table entry. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + The status of {{param|IPAddress}}, indicating whether it can be used for communication. See also {{param|PreferredLifetime}} and {{param|ValidLifetime}}. {{enum}} + This parameter is based on ''ipAddressStatus'' and ''ipAddressStatusTC'' from {{bibref|RFC4293}}. + + + + + + Valid address that can appear as the destination or source address of a packet. + + + + + Valid but deprecated address that is not intended to be used as a source address. + + + + + Invalid address that is not intended to appear as the destination or source address of a packet. + + + + + Valid address that is not accessible because the interface to which it is assigned is not operational. + + + + + Address status cannot be determined for some reason. + + + + + The uniqueness of the address on the link is being verified. + + + + + Invalid address that has been determined to be non-unique on the link. + + + + + Valid address that is available for use, subject to restrictions, while its uniqueness on a link is being verified. + + + + + + + + + {{datatype|expand}} + This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + IPv6 address. + This parameter can only be modified if the {{param|Origin}} is {{enum|Static|Origin}}. + This parameter is based on ''ipAddressAddr'' from {{bibref|RFC4293}}. + + + + + + + + + Mechanism via which the IP address was assigned. {{enum}} + This parameter is based on ''ipOrigin'' from {{bibref|RFC4293}}. + + + + + + Automatically generated. For example, a link-local address as specified by SLAAC {{bibref|RFC4862|Section 5.3}}, a global address as specified by SLAAC {{bibref|RFC4862|Section 5.5}}, or generated via CPE logic (e.g. from delegated prefix as specified by {{bibref|RFC3633}}), or from ULA /48 prefix as specified by {{bibref|RFC4193}}. + + + + + Assigned by DHCPv6 {{bibref|RFC3315}}. + + + + + Assigned by IKEv2 {{bibref|RFC5996}}. + + + + + Assigned by MAP {{bibref|RFC7597}}, i.e. is this interface's ''MAP IPv6 address'' + + + + + Specified by a standards organization, e.g. the ''::1'' loopback address, which is defined in {{bibref|RFC4291}}. + + + + + For example, present in the factory default configuration (but not {{enum|WellKnown}}), created by the Controller, or created by some other management entity (e.g. via a GUI). + + + + + + + + + IPv6 address prefix. + Some addresses, e.g. addresses assigned via the DHCPv6 IA_NA option, are not associated with a prefix, and some {{enum|WellKnown|#.IPv6Prefix.{i}.Origin}} prefixes might not be modeled. In both of these cases {{param}} will be {{null}}. + This parameter can only be modified if the {{param|Origin}} is {{enum|Static|Origin}}. + This parameter is based on ''ipAddressPrefix'' from {{bibref|RFC4293}}. + + + + + + + + + + + The time at which this address will cease to be preferred (i.e. will become deprecated), or {{null}} if not known. For an infinite lifetime, the parameter value MUST be 9999-12-31T23:59:59Z. + This parameter can only be modified if the {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + + The time at which this address will cease to be valid (i.e. will become invalid), or {{null}} if unknown. For an infinite lifetime, the parameter value MUST be 9999-12-31T23:59:59Z. + This parameter can only be modified if the {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + + Indicates whether this is an anycast address {{bibref|RFC4291|Section 2.6}}. Anycast addresses are syntactically identical to unicast addresses and so need to be configured explicitly. + This parameter can only be modified if the {{param|Origin}} is {{enum|Static|Origin}}. + This parameter is based on ''ipAddressType'' from {{bibref|RFC4293}}. + + + + + + + + + + This table contains the interface's IPv6 prefixes. There MUST be an entry for each such prefix, not only for prefixes learned from router advertisements. + There are several ways in which entries can be added to and deleted from this table, including: + * Automatically via {{bibref|RFC4861}} Router Advertisements. See also {{object|.RouterAdvertisement}}. + * Automatically via DHCPv6 {{bibref|RFC3315}} prefix delegation {{bibref|RFC3633}}. See also {{object|.DHCPv6.Client}}. + * Automatically via internal CPE logic, e.g. creation of child prefixes derived from a parent prefix. + * Manually via a GUI or some other local management interface. + * Manually via factory default configuration. + * By the Controller. + The CPE MAY choose not to create {{object}} entries for {{enum|WellKnown|Origin}} prefixes or for the ULA /48 prefix {{bibref|RFC4193}}. If an {{object}} entry exists for the ULA /48 prefix, it MUST be on a downstream interface (i.e. an interface for which the physical layer interface object has ''Upstream'' = {{false}}). + This object is based on ''ipAddressPrefixTable'' from {{bibref|RFC4293}}. + + + + + + + + + + Enables or disables this {{object}} entry. + + + + + + + + + The status of this {{object}} table entry. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + The status of {{param|Prefix}}, indicating whether it can be used for communication. See also {{param|PreferredLifetime}} and {{param|ValidLifetime}}. {{enum}} + This parameter is based on ''ipAddressStatus'' and ''ipAddressStatusTC'' from {{bibref|RFC4293}}. + + + + + + Valid prefix. + + + + + Valid but deprecated prefix. + + + + + Invalid prefix. + + + + + Valid prefix that is not accessible because the interface to which it is assigned is not operational. + + + + + Prefix status cannot be determined for some reason. + + + + + + + + + {{datatype|expand}} + This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + IPv6 address prefix. + This parameter can only be modified if the {{param|Origin}} is {{enum|Static|Origin}}. + This parameter is based on ''ipAddressPrefixPrefix'' from {{bibref|RFC4293}}. + + + + + + + + + Mechanism via which the prefix was assigned or most recently updated. {{enum}} + Note that: + * {{enum|PrefixDelegation}} and {{enum|RouterAdvertisement}} prefixes can exist only on upstream interfaces (i.e. interfaces for which the physical layer interface object has ''Upstream'' = {{true}}), + * {{enum|AutoConfigured}} and {{enum|WellKnown}} prefixes can exist on any interface, and + * {{enum|Static}} and {{enum|Child}} prefixes can exist only on downstream interfaces (i.e. interfaces for which the physical layer interface object has ''Upstream'' = {{false}}). + Also note that a {{enum|Child}} prefix's {{param|ParentPrefix}} will always be an {{enum|AutoConfigured}}, {{enum|PrefixDelegation}}, or {{enum|RouterAdvertisement}} prefix. + This parameter is based on ''ipAddressOrigin'' from {{bibref|RFC4293}}. + + + + + + Generated via internal CPE logic (e.g. the ULA /48 prefix) or derived from an internal prefix that is not modeled in any {{object}} table. + + + + + Delegated via DHCPv6 {{bibref|RFC3633}} or some other protocol, e.g. IPv6rd {{bibref|RFC5969}}. Also see {{param|StaticType}}. + + + + + Discovered via router advertisement {{bibref|RFC4861}} Prefix Information Option. + + + + + Specified by a standards organization, e.g. ''fe80::/10'' for link-local addresses, or ''::1/128'' for the loopback address, both of which are defined in {{bibref|RFC4291}}. + + + + + Created by the Controller, by some other management entity (e.g. via a GUI), or present in the factory default configuration (but not {{enum|WellKnown}}). Unrelated to any shorter length prefix that might exist on the CPE. Also see {{param|StaticType}}. Can be used for RA (Prefix Information), DHCPv6 address assignment (IA_NA) or DHCPv6 prefix delegation (IA_PD). + + + + + Derived from an associated {{enum|AutoConfigured}} or {{enum|PrefixDelegation}} parent prefix. Also see {{param|StaticType}}, {{param|ParentPrefix}} and {{param|ChildPrefixBits}}. Can be used for RA (Prefix Information), DHCPv6 address assignment (IA_NA) or DHCPv6 prefix delegation (IA_PD). + + + + + + + + + Static prefix sub-type. For a {{enum|Static|Origin}} prefix, this can be set to {{enum|PrefixDelegation}} or {{enum|Child}}, thereby creating an unconfigured prefix of the specified type that will be populated in preference to creating a new instance. This allows the Controller to pre-create "prefix slots" with known path names that can be referenced from elsewhere in the data model before they have been populated. {{enum}} + This mechanism works as follows: + * When this parameter is set to {{enum|PrefixDelegation}} or {{enum|Child}}, the instance becomes a "prefix slot" of the specified type. + * Such an instance can be administratively enabled ({{param|Enable}} = {{true}}) but will remain operationally disabled ({{param|Status}} = {{enum|Disabled|Status}}) until it has been populated. + * When a new prefix of of type T is needed, the CPE will look for a matching unpopulated instance, i.e. an instance with ({{param|Origin}},{{param}},{{param|Prefix}}) = ({{enum|Static|Origin}},T,""). If the CPE finds at least one such instance it will choose one and populate it. If already administratively enabled it will immediately become operationally enabled. If the CPE finds no such instances, it will create and populate a new instance with ({{param|Origin}},{{param}}) = (T,T). If the CPE finds more than one such instance, the algorithm via which it chooses which instance to populate is implementation-specific. + * When a prefix that was populated via this mechanism becomes invalid, the CPE will reset {{param|Prefix}} to {{empty}}. This does not affect the value of the {{param|Enable}} parameter. + The prefix {{param}} can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + Prefix is a "normal" {{enum|Static|Origin}} prefix. + + + + + Prefix is not {{enum|Static|Origin}}, so this parameter does not apply. + + + + + Prefix will be populated when a {{enum|PrefixDelegation|Origin}} prefix needs to be created. + + + + + Prefix will be populated when a {{enum|Child|Origin}} prefix needs to be created. In this case, the Controller needs also to set {{param|ParentPrefix}} and might want to set {{param|ChildPrefixBits}} (if parent prefix is not set, or goes away, then the child prefix will become operationally disabled). + + + + + + + + + Indicates the parent prefix from which this prefix was derived. The parent prefix is relevant only for {{enum|Child|Origin}} prefixes and for {{enum|Static|Origin}} {{enum|Child|StaticType}} prefixes (both of which will always be on downstream interfaces), i.e. for {{param|Origin}}={{enum|Child|Origin}} and for ({{param|Origin}},{{param|StaticType}}) = ({{enum|Static|Origin}},{{enum|Child|StaticType}}) prefixes. + This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}} (which makes sense only for a prefix whose {{param|StaticType}} is already or will be changed to {{enum|Child|StaticType}}). + + + + + + + + + + + A prefix that specifies the length of {{enum|Static|Origin}} {{enum|Child|StaticType}} prefixes and how they are derived from their {{param|ParentPrefix}}. It will be used if and only if it is not {{empty}} and is longer than the parent prefix (if it is not used, derivation of such prefixes is implementation-specific). Any bits to the right of the parent prefix are set to the bits in this prefix. + For example, for a parent prefix of fedc::/56, if this parameter had the value 123:4567:89ab:cdef::/64, the child /64 would be fedc:0:0:ef::/64. For a parent prefix of fedc::/60, the child /64 would be fedc:0:0:f::/64. + This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + + On-link flag {{bibref|RFC4861|Section 4.6.2}} as received (in the RA) for RouterAdvertisement. Indicates whether this prefix can be used for on-link determination. + This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + This parameter is based on ''ipAddressPrefixOnLinkFlag'' from {{bibref|RFC4293}}. + + + + + + + + + Autonomous address configuration flag {{bibref|RFC4861|Section 4.6.2}} as received (in the RA) for RouterAdvertisement. Indicates whether this prefix can be used for generating global addresses as specified by SLAAC {{bibref|RFC4862}}. + This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + This parameter is based on ''ipAddressPrefixAutonomousFlag'' from {{bibref|RFC4293}}. + + + + + + + + + This parameter is based on ''ipAddressPrefixAdvPreferredLifetime'' from {{bibref|RFC4293}}. The time at which this prefix will cease to be preferred (i.e. will become deprecated), or {{null}} if not known. For an infinite lifetime, the parameter value MUST be 9999-12-31T23:59:59Z. + This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + + This parameter is based on ''ipAddressPrefixAdvValidLifetime'' from {{bibref|RFC4293}}. The time at which this prefix will cease to be valid (i.e. will become invalid), or {{null}} if not known. For an infinite lifetime, the parameter value MUST be 9999-12-31T23:59:59Z. + This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + + + This table lists the ports on which TCP connections are listening or established. + + + + + + + + + + Connection local IP address. + + + + + + + + Connection local port. + + + + + + + + + + The remote IP address of the source of inbound packets. + This will be {{null}} for listening connections (only connections in {{enum|ESTABLISHED|Status}} state have remote addresses). + + + + + + + + The remote port of the source of inbound packets. + This will be {{null}} for listening connections (only connections in {{enum|ESTABLISHED|Status}} state have remote addresses). + + + + + + + + + + Current operational status of the connection. {{enum}} + + + + + + + + + + + + The IP Diagnostics object. + + + + Indicates that Ping over IPv4 is supported. + + + + + + + + Indicates that Ping over IPv6 is supported. + + + + + + + + Indicates that TraceRoute over IPv4 is supported. + + + + + + + + Indicates that TraceRoute over IPv6 is supported. + + + + + + + + Indicates that Download Diagnostics over IPv4 is supported. + + + + + + + + Indicates that Download Diagnostics over IPv6 is supported. + + + + + + + + Indicates that Upload Diagnostics over IPv4 is supported. + + + + + + + + Indicates that Upload Diagnostics over IPv6 is supported. + + + + + + + + Indicates that UDPEcho Diagnostics over IPv4 is supported. + + + + + + + + Indicates that UDPEcho Diagnostics over IPv6 is supported. + + + + + + + + Indicates that IP Layer Capacity measurement is supported. + + + + + + + + Indicates that ServerSelection Diagnostics over IPv4 is supported. + + + + + + + + Indicates that ServerSelection Diagnostics over IPv6 is supported. + + + + + + + + + This object provides access to an IP-layer ping test. + + + + {{datatype|expand}} + + + + + + + + + + + + The CPE can not reach the requested Ping host address + + + + + + + + + + {{reference}} The layer 2 or layer 3 interface over which the test is to be performed. Example: ''Device.IP.Interface.1'', ''Device.Bridge.1.Port.2'' + If {{empty}} is specified, the CPE MUST use the interface as directed by its bridging or routing policy (''Forwarding'' table entries) to determine the appropriate interface. + + + + + + + + + + + Indicates the IP protocol to be used. + + + + + + Use either IPv4 or IPv6 depending on the system preference + + + + + Use IPv4 for the Ping requests + + + + + Use IPv6 for the Ping requests + + + + + + + + Host name or address of the host to ping. + In the case where {{param}} is specified by name, and the name resolves to more than one address, it is up to the device implementation to choose which address to use. + + + + + + + + + + Number of repetitions of the ping test to perform before reporting the results. + + + + + + + + + + Timeout in {{units}} for the ping test. + + + + + + + + + + + Size of the data block in bytes to be sent for each ping. + + + + + + + + + + DiffServ codepoint to be used for the test packets. By default the CPE SHOULD set this value to zero. + + + + + + + + + + Indicates which IP address was used to send the Ping request. The parameter is only valid if the {{param|DiagnosticsState}} is {{enum|Complete|DiagnosticsState}}. + + + + + + + + Result parameter indicating the number of successful pings (those in which a successful response was received prior to the timeout) in the most recent ping test. + + + + + + + + Result parameter indicating the number of failed pings in the most recent ping test. + + + + + + + + Result parameter indicating the average response time in {{units}} over all repetitions with successful responses of the most recent ping test. If there were no successful responses, this value MUST be zero. + + + + + + + + + + Result parameter indicating the minimum response time in {{units}} over all repetitions with successful responses of the most recent ping test. If there were no successful responses, this value MUST be zero. + + + + + + + + + + Result parameter indicating the maximum response time in {{units}} over all repetitions with successful responses of the most recent ping test. If there were no successful responses, this value MUST be zero. + + + + + + + + + + Result parameter indicating the average response time in {{units}} over all repetitions with successful responses of the most recent ping test. If there were no successful responses, this value MUST be zero. + + + + + + + + + + Result parameter indicating the minimum response time in {{units}} over all repetitions with successful responses of the most recent ping test. If there were no successful responses, this value MUST be zero. + + + + + + + + + + Result parameter indicating the maximum response time in {{units}} over all repetitions with successful responses of the most recent ping test. If there were no successful responses, this value MUST be zero. + + + + + + + + + + + This object defines access to an IP-layer trace-route test for the specified IP interface. + + + + {{datatype|expand}} + + + + + + + + + + + + The CPE can not reach the requested TraceRoute host address + + + + + + + + + + + {{reference}} The layer 2 or layer 3 interface over which the test is to be performed. Example: ''Device.IP.Interface.1'', ''Device.Bridge.1.Port.2'' + If {{empty}} is specified, the CPE MUST use the interface as directed by its bridging or routing policy (''Forwarding'' table entries) to determine the appropriate interface. + + + + + + + + + + + Indicates the IP protocol to be used. + + + + + + Use either IPv4 or IPv6 depending on the system preference + + + + + Use IPv4 for the TraceRoute + + + + + Use IPv6 for the TraceRoute + + + + + + + + Host name or address of the host to find a route to. + In the case where {{param}} is specified by name, and the name resolves to more than one address, it is up to the device implementation to choose which address to use. + + + + + + + + + + Number of tries per hop. Set prior to running Diagnostic. By default, the CPE SHOULD set this value to 3. + + + + + + + + + + Timeout in {{units}} for each hop of the trace route test. By default the CPE SHOULD set this value to 5000. + + + + + + + + + + + Size of the data block in bytes to be sent for each trace route. By default, the CPE SHOULD set this value to 38. + + + + + + + + + + DiffServ codepoint to be used for the test packets. By default the CPE SHOULD set this value to 0. + + + + + + + + + + The maximum number of hop used in outgoing probe packets (max TTL). By default the CPE SHOULD set this value to 30. + + + + + + + + + + Indicates which IP address was used for TraceRoute. The parameter is only valid if the {{param|DiagnosticsState}} is {{enum|Complete|DiagnosticsState}}. + + + + + + + + Result parameter indicating the response time in {{units}} the most recent trace route test. If a route could not be determined, this value MUST be zero. + + + + + + + + + + {{numentries}} + + + + + + + + + Contains the array of hop results returned. If a route could not be determined, this array will be empty + + + + Result parameter indicating the Host Name if DNS is able to resolve or IP Address of a hop along the discovered route. + + + + + + + + + + If this parameter is not {{empty}} it will contain the last IP address of the host returned for this hop and the {{param|Host}} will contain the Host Name returned from the reverse DNS query. + + + + + + + + Contains the error code returned for this hop. This code is directly from the ICMP CODE field. + + + + + + + + {{list}} Each list item contains one or more round trip times in {{units}} (one for each repetition) for this hop. + A list item of 0 indicates that the corresponding response was not received. Round trip times of less than 1 {{units}} MUST be rounded up to 1. + The number of list entries is determined by the value of {{param|#.NumberOfTries}}. + + + + + + + + + + + + + + This object defines the diagnostics configuration for a HTTP and FTP DownloadDiagnostics Test. + Files received in the DownloadDiagnostics do not require file storage on the CPE device. + + + + {{datatype|expand}} + + + + + + + + + + + + + + + + + + + + + + + + + + {{reference}} The IP-layer interface over which the test is to be performed. Example: Device.IP.Interface.1 + If {{empty}} is specified, the CPE MUST use the interface as directed by its routing policy (''Forwarding'' table entries) to determine the appropriate interface. + + + + + + + + + + + The {{datatype}} for the CPE to perform the download on. This parameter MUST be in the form of a valid HTTP {{bibref|RFC2616}} or FTP {{bibref|RFC959}} URL. + * When using FTP transport, FTP binary transfer MUST be used. + * When using HTTP transport, persistent connections MUST be used and pipelining MUST NOT be used. + * When using HTTP transport the HTTP Authentication MUST NOT be used. + Note: For time based tests ({{param|TimeBasedTestDuration}} > 0) the Controller MAY add a hint to duration of the test to the URL. See {{bibref|TR-143|Section 4.3}} for more details. + + + + + + + + Supported ''DownloadDiagnostics'' transport protocols for a CPE device. + + + + + + + + + + + + Indicates the maximum number of connections that are supported by Download Diagnostics. + + + + + + + + + + The maximum number of rows in {{object|IncrementalResult}} that the CPE will store. + + + + + + + + + + The DiffServ code point for marking packets transmitted in the test. + The default value SHOULD be zero. + + + + + + + + + + Ethernet priority code for marking packets transmitted in the test (if applicable). + The default value SHOULD be zero. + + + + + + + + + + Controls time based testing {{bibref|TR-143|Section 4.3}}. When {{param}} > 0, {{param}} is the duration in {{units}} of a time based test. If {{param}} is 0, the test is not based on time, but on the size of the file to be downloaded. The default value SHOULD be 0. + + + + + + + + + + + The measurement interval duration in {{units}} for objects in {{object|IncrementalResult}} for a time based FTP/HTTP download test (when {{param|TimeBasedTestDuration}} > 0). The default value SHOULD be 0, which implies {{object|IncrementalResult}} collection is disabled. + For example if {{param|TimeBasedTestDuration}} is 90 {{units}} and {{param}} is 10 {{units}}, there will be 9 results in {{object|IncrementalResult}}, each with a 10 {{units}} duration. + + + + + + + + + + + This {{param}} works in conjunction with {{param|TimeBasedTestMeasurementInterval}} to allow the interval measurement to start a number of {{units}} after {{param|BOMTime}}. The test measurement interval in {{object|IncrementalResult}} starts at time {{param|BOMTime}} + {{param}} to allow for slow start window removal of file transfers. + This {{param}} is in {{units}}. The default value SHOULD be 0. + + + + + + + + + + + Indicates the IP protocol version to be used. The default value SHOULD be {{enum|Any}}. + + + + + + Use either IPv4 or IPv6 depending on the system preference. + + + + + Use IPv4 for the requests + + + + + Use IPv6 for the requests. + + + + + + + + The number of connections to be used in the test. The default value SHOULD be 1. {{param}} MUST NOT be set to a value greater than {{param|DownloadDiagnosticMaxConnections}}. + + + + + + + + + + Indicates which IP address was used to send the request. + + + + + + + + Request time in UTC, which MUST be specified to microsecond precision. + For example: 2008-04-09T15:01:05.123456Z + * For HTTP this is the time at which the client sends the GET command. + * For FTP this is the time at which the client sends the RTRV command. + If multiple connections are used, then {{param}} is set to the earliest {{param}} across all connections. + + + + + + + + Begin of transmission time in UTC, which MUST be specified to microsecond precision + For example: 2008-04-09T15:01:05.123456Z + * For HTTP this is the time at which the first data packet is received. + * For FTP this is the time at which the client receives the first data packet on the data connection. + If multiple connections are used, then {{param}} is set to the earliest {{param}} across all connections. + + + + + + + + End of transmission in UTC, which MUST be specified to microsecond precision. + For example: 2008-04-09T15:01:05.123456Z + * For HTTP this is the time at which the last data packet is received. + * For FTP this is the time at which the client receives the last packet on the data connection. + If multiple connections are used, then {{param}} is set to the latest {{param}} across all connections. + + + + + + + + The number of {{units}} received during the FTP/HTTP transaction including FTP/HTTP headers, between {{param|BOMTime}} and {{param|EOMTime}} across all connections. + + + + + + + + + + The total number of {{units}} (at the IP layer) received on the Interface between {{param|BOMTime}} and {{param|EOMTime}}. This MAY be calculated by sampling Stats.bytesReceived on the {{param|Interface}} object at {{param|BOMTime}} and at {{param|EOMTime}} and subtracting. + + + + + + + + + + The total number of {{units}} (at the IP layer) sent on the Interface between {{param|BOMTime}} and {{param|EOMTime}}. This MAY be calculated by sampling Stats.bytesSent on the {{param|Interface}} object at {{param|BOMTime}} and at {{param|EOMTime}} and subtracting. + + + + + + + + + + The number of {{units}} of the test file received between the latest {{param|PerConnectionResult.{i}.BOMTime}} and the earliest {{param|PerConnectionResult.{i}.EOMTime}} across all connections. + + + + + + + + + + The total number of {{units}} (at the IP layer) received in between the latest {{param|PerConnectionResult.{i}.BOMTime}} and the earliest {{param|PerConnectionResult.{i}.EOMTime}}. This MAY be calculated by sampling Stats.bytesReceived on the {{param|Interface}} object at the latest {{param|PerConnectionResult.{i}.BOMTime}} and at the earliest {{param|PerConnectionResult.{i}.EOMTime}} and subtracting. + + + + + + + + + + The total number of {{units}} (at the IP layer) sent between the latest {{param|PerConnectionResult.{i}.BOMTime}} and the earliest {{param|PerConnectionResult.{i}.EOMTime}}. This MAY be calculated by sampling Stats.bytesSent on the {{param|Interface}} object at the latest {{param|PerConnectionResult.{i}.BOMTime}} and at the earliest {{param|PerConnectionResult.{i}.EOMTime}} and subtracting. + + + + + + + + + + The period of time in {{units}} between the latest {{param|PerConnectionResult.{i}.BOMTime}} and the earliest {{param|PerConnectionResult.{i}.EOMTime}} of the test. + + + + + + + + + + Request time in UTC, which MUST be specified to microsecond precision. + For example: 2008-04-09T15:01:05.123456Z + * For HTTP this is the time at which the TCP socket open (SYN) was sent for the HTTP connection. + * For FTP this is the time at which the TCP socket open (SYN) was sent for the data connection. + Note: Interval of 1 microsecond SHOULD be supported. + If multiple connections are used, then {{param}} is set to the latest {{param}} across all connections. + + + + + + + + Response time in UTC, which MUST be specified to microsecond precision. + For example: 2008-04-09T15:01:05.123456Z + * For HTTP this is the time at which the TCP ACK to the socket opening the HTTP connection was received. + * For FTP this is the time at which the TCP ACK to the socket opening the data connection was received. + Note: Interval of 1 microsecond SHOULD be supported. + If multiple connections are used, then {{param}} is set to the latest {{param}} across all connections. + + + + + + + + {{numentries}} + + + + + + + + The results must be returned in the {{object|PerConnectionResult}} table for every connection when set to {{true}}. The default value SHOULD be {{false}}. + + + + + + + + {{numentries}} + + + + + + + + + Results for individual connections. This table is only populated when {{param|#.EnablePerConnectionResults}} is {{true}}. A new object is created for each connection specified in {{param|#.NumberOfConnections}}. Instance numbers MUST start at 1 and sequentially increment as new instances are created. All instances are removed when {{param|#.DiagnosticsState}} is set to {{enum|Requested|#.DiagnosticsState}} or {{enum|None|#.DiagnosticsState}}. + + + + Request time in UTC, which MUST be specified to microsecond precision. + For example: 2008-04-09T15:01:05.123456Z + * For HTTP this is the time at which the client sends the GET command. + * For FTP this is the time at which the client sends the RTRV command. + + + + + + + + Begin of transmission time in UTC, which MUST be specified to microsecond precision + For example: 2008-04-09T15:01:05.123456Z + * For HTTP this is the time at which the first data packet is received. + * For FTP this is the time at which the client receives the first data packet on the data connection. + + + + + + + + End of transmission in UTC, which MUST be specified to microsecond precision. + For example: 2008-04-09T15:01:05.123456Z + * For HTTP this is the time at which the last data packet is received. + * For FTP this is the time at which the client receives the last packet on the data connection. + + + + + + + + The number of {{units}} of the test file received during the FTP/HTTP transaction including FTP/HTTP headers, between {{param|BOMTime}} and {{param|EOMTime}}. + + + + + + + + + + The total number of {{units}} (at the IP layer) received on the Interface between {{param|BOMTime}} and {{param|EOMTime}}. This MAY be calculated by sampling Stats.bytesReceived on the {{param|#.Interface}} object at {{param|BOMTime}} and at {{param|EOMTime}} and subtracting. + + + + + + + + + + The total number of {{units}} (at the IP layer) sent on the Interface between {{param|BOMTime}} and {{param|EOMTime}}. This MAY be calculated by sampling Stats.bytesSent on the {{param|#.Interface}} object at {{param|BOMTime}} and at {{param|EOMTime}} and subtracting. + + + + + + + + + + Request time in UTC, which MUST be specified to microsecond precision. + For example: 2008-04-09T15:01:05.123456Z + * For HTTP this is the time at which the TCP socket open (SYN) was sent for the HTTP connection. + * For FTP this is the time at which the TCP socket open (SYN) was sent for the data connection. + + + + + + + + Response time in UTC, which MUST be specified to microsecond precision. + For example: 2008-04-09T15:01:05.123456Z + * For HTTP this is the time at which the TCP ACK to the socket opening the HTTP connection was received. + * For FTP this is the time at which the TCP ACK to the socket opening the data connection was received. + + + + + + + + + Results for time segmented tests (tests where {{param|#.TimeBasedTestDuration}} > 0 and {{param|#.TimeBasedTestMeasurementInterval}} > 0). This data is totaled across all connections in the test. A new object is created every {{param|#.TimeBasedTestMeasurementInterval}} after that interval has completed. Instance numbers MUST start at 1 and sequentially increment as new instances are created. All instances are removed when {{param|#.DiagnosticsState}} is set to {{enum|Requested|#.DiagnosticsState}} or {{enum|None|#.DiagnosticsState}}. + + + + Change in the value of {{param|#.TestBytesReceivedUnderFullLoading}} between {{param|StartTime}} and {{param|EndTime}}. + + + + + + + + + + The total number of {{units}} (at the IP layer) received on the Interface between {{param|StartTime}} and {{param|EndTime}}. This MAY be calculated by sampling Stats.bytesReceived on the {{param|#.Interface}} object at {{param|StartTime}} and at {{param|EndTime}} and subtracting. + + + + + + + + + + The total number of {{units}} (at the IP layer) sent on the Interface between {{param|StartTime}} and {{param|EndTime}}. This MAY be calculated by sampling Stats.bytesSent on the {{param|#.Interface}} object at {{param|StartTime}} and at {{param|EndTime}} and subtracting. + + + + + + + + + + The start time of this interval which MUST be specified to microsecond precision. + For example: 2008-04-09T15:01:05.123456Z + + + + + + + + The end time of this interval which MUST be specified to microsecond precision. + For example: 2008-04-09T15:01:05.123456Z + + + + + + + + + This object defines the diagnostics configuration for a HTTP or FTP UploadDiagnostics test. + Files sent by the UploadDiagnostics do not require file storage on the CPE device, and MAY be an arbitrary stream of bytes. + + + + {{datatype|expand}} + + + + + + + + + + + + + + + + + + + + + + + + + + + {{reference}} The IP-layer interface over which the test is to be performed. Example: Device.IP.Interface.1 + If {{empty}} is specified, the CPE MUST use the interface as directed by its routing policy (''Forwarding'' table entries) to determine the appropriate interface. + + + + + + + + + + + The {{datatype}} for the CPE to Upload to. This parameter MUST be in the form of a valid HTTP {{bibref|RFC2616}} or FTP {{bibref|RFC959}} URL. + * When using FTP transport, FTP binary transfer MUST be used. + * When using HTTP transport, persistent connections MUST be used and pipelining MUST NOT be used. + * When using HTTP transport the HTTP Authentication MUST NOT be used. + + + + + + + + Supported ''UploadDiagnostics'' transport protocols for a CPE device. + + + + + + + + + + + + Indicates the maximum number of connections that are supported by Upload Diagnostics. + + + + + + + + + + The maximum number of rows in {{object|IncrementalResult}} that the CPE will store. + + + + + + + + + + DiffServ code point for marking packets transmitted in the test. + The default value SHOULD be zero. + + + + + + + + + + Ethernet priority code for marking packets transmitted in the test (if applicable). + The default value SHOULD be zero. + + + + + + + + + + The size of the file (in bytes) to be uploaded to the server. + The CPE MUST insure the appropriate number of bytes are sent. + + + + + + + + Controls time based testing {{bibref|TR-143|Section 4.3}}. When {{param}} > 0, {{param}} is the duration in {{units}} of a time based test. If {{param}} is 0, the test is not based on time, but on the size of the file to be uploaded. The default value SHOULD be 0. + + + + + + + + + + + The measurement interval duration in {{units}} for objects in {{object|IncrementalResult}} for a time based FTP/HTTP upload test (when {{param|TimeBasedTestDuration}} > 0). The default value SHOULD be 0, which implies {{object|IncrementalResult}} collection is disabled. + For example if {{param|TimeBasedTestDuration}} is 90 {{units}} and {{param}} is 10 {{units}}, there will be 9 results in {{object|IncrementalResult}}, each with a 10 {{units}} duration. + + + + + + + + + + + This {{param}} works in conjunction with {{param|TimeBasedTestMeasurementInterval}} and allows the interval measurement to start a number of {{units}} after {{param|BOMTime}}. The test measurement interval in {{object|IncrementalResult}} starts at time {{param|BOMTime}} + {{param}} to allow for slow start window removal of file transfers. + This {{param}} is in {{units}}. The default value SHOULD be 0. + + + + + + + + + + + Indicates the IP protocol version to be used. The default value SHOULD be {{enum|Any}}. + + + + + + Use either IPv4 or IPv6 depending on the system preference. + + + + + Use IPv4 for the requests + + + + + Use IPv6 for the requests. + + + + + + + + The number of connections to be used in the test. The default value SHOULD be 1. {{param}} MUST NOT be set to a value greater than {{param|UploadDiagnosticsMaxConnections}}. + + + + + + + + + + Indicates which IP address was used to send the request. + + + + + + + + Request time in UTC, which MUST be specified to microsecond precision. + For example: 2008-04-09T15:01:05.123456Z + * For HTTP this is the time at which the client sends the GET command. + * For FTP this is the time at which the client sends the RTRV command. + If multiple connections are used, then {{param}} is set to the earliest {{param}} across all connections. + + + + + + + + Begin of transmission time in UTC, which MUST be specified to microsecond precision + For example: 2008-04-09T15:01:05.123456Z + * For HTTP this is the time at which the first data packet is received. + * For FTP this is the time at which the client receives the first data packet on the data connection. + If multiple connections are used, then {{param}} is set to the earliest {{param}} across all connections. + + + + + + + + End of transmission in UTC, which MUST be specified to microsecond precision. + For example: 2008-04-09T15:01:05.123456Z + * For HTTP this is the time at which the last data packet is received. + * For FTP this is the time at which the client receives the last packet on the data connection. + If multiple connections are used, then {{param}} is set to the latest {{param}} across all connections. + + + + + + + + The number of {{units}} of the test file sent during the FTP/HTTP transaction including FTP/HTTP headers, between {{param|BOMTime}} and {{param|EOMTime}} acrosss all connections. + + + + + + + + + + The total number of {{units}} (at the IP layer) received on the Interface between {{param|BOMTime}} and {{param|EOMTime}}. This MAY be calculated by sampling Stats.bytesReceived on the {{param|Interface}} object at {{param|BOMTime}} and at {{param|EOMTime}} and subtracting. + + + + + + + + + + The total number of {{units}} (at the IP layer) sent on the Interface between {{param|BOMTime}} and {{param|EOMTime}}. This MAY be calculated by sampling Stats.bytesSent on the {{param|Interface}} object at {{param|BOMTime}} and at {{param|EOMTime}} and subtracting. + + + + + + + + + + The number of {{units}} of the test file sent between the latest {{param|PerConnectionResult.{i}.BOMTime}} and the earliest {{param|PerConnectionResult.{i}.EOMTime}} across all connections. + + + + + + + + + + The total number of {{units}} (at the IP layer) received between the latest {{param|PerConnectionResult.{i}.BOMTime}} and the earliest {{param|PerConnectionResult.{i}.EOMTime}} across all connections in the test. This MAY be calculated by sampling Stats.bytesReceived on the {{param|Interface}} object at the latest {{param|PerConnectionResult.{i}.BOMTime}} and at the earliest {{param|PerConnectionResult.{i}.EOMTime}} and subtracting. + + + + + + + + + + The total number of {{units}} (at the IP layer) sent between the latest {{param|PerConnectionResult.{i}.BOMTime}} and the earliest {{param|PerConnectionResult.{i}.EOMTime}} across all connections in the test. This MAY be calculated by sampling Stats.bytesSent on the {{param|Interface}} object at the latest {{param|PerConnectionResult.{i}.BOMTime}} and at the earliest {{param|PerConnectionResult.{i}.EOMTime}} and subtracting. + + + + + + + + + + The period of time in {{units}} between the latest {{param|PerConnectionResult.{i}.BOMTime}} and the earliest {{param|PerConnectionResult.{i}.EOMTime}} of the test. + + + + + + + + + + Request time in UTC, which MUST be specified to microsecond precision. + For example: 2008-04-09T15:01:05.123456Z + * For HTTP this is the time at which the TCP socket open (SYN) was sent for the HTTP connection. + * For FTP this is the time at which the TCP socket open (SYN) was sent for the data connection. + Note: Interval of 1 microsecond SHOULD be supported. + If multiple connections are used, then {{param}} is set to the latest {{param}} across all connections. + + + + + + + + Response time in UTC, which MUST be specified to microsecond precision. + For example: 2008-04-09T15:01:05.123456Z + * For HTTP this is the time at which the TCP ACK to the socket opening the HTTP connection was received. + * For FTP this is the time at which the TCP ACK to the socket opening the data connection was received. + Note: Interval of 1 microsecond SHOULD be supported. + If multiple connections are used, then {{param}} is set to the latest {{param}} across all connections. + + + + + + + + {{numentries}} + + + + + + + + The results must be returned in the {{object|PerConnectionResult}} table for every connection when set to {{true}}. The default value SHOULD be {{false}}. + + + + + + + + {{numentries}} + + + + + + + + + Results for individual connections. This table is only populated when {{param|#.EnablePerConnectionResults}} is {{true}}. A new object is created for each connection specified in {{param|#.NumberOfConnections}}. Instance numbers MUST start at 1 and sequentially increment as new instances are created. All instances are removed when {{param|#.DiagnosticsState}} is set to {{enum|Requested|#.DiagnosticsState}} or {{enum|None|#.DiagnosticsState}}. + + + + Request time in UTC, which MUST be specified to microsecond precision. + For example: 2008-04-09T15:01:05.123456Z + * For HTTP this is the time at which the client sends the GET command. + * For FTP this is the time at which the client sends the RTRV command. + + + + + + + + Begin of transmission time in UTC, which MUST be specified to microsecond precision + For example: 2008-04-09T15:01:05.123456Z + * For HTTP this is the time at which the first data packet is received. + * For FTP this is the time at which the client receives the first data packet on the data connection. + + + + + + + + End of transmission in UTC, which MUST be specified to microsecond precision. + For example: 2008-04-09T15:01:05.123456Z + * For HTTP this is the time at which the last data packet is received. + * For FTP this is the time at which the client receives the last packet on the data connection. + + + + + + + + The number of {{units}} of the test file sent during the FTP/HTTP transaction including FTP/HTTP headers, between {{param|BOMTime}} and {{param|EOMTime}}. + + + + + + + + + + The total number of {{units}} (at the IP layer) received on the Interface between {{param|BOMTime}} and {{param|EOMTime}}. This MAY be calculated by sampling Stats.bytesReceived on the {{param|#.Interface}} object at {{param|BOMTime}} and at {{param|EOMTime}} and subtracting. + + + + + + + + + + The total number of {{units}} (at the IP layer) sent on the Interface between {{param|BOMTime}} and {{param|EOMTime}}. This MAY be calculated by sampling Stats.bytesSent on the {{param|#.Interface}} object at {{param|BOMTime}} and at {{param|EOMTime}} and subtracting. + + + + + + + + + + Request time in UTC, which MUST be specified to microsecond precision. + For example: 2008-04-09T15:01:05.123456Z + * For HTTP this is the time at which the TCP socket open (SYN) was sent for the HTTP connection. + * For FTP this is the time at which the TCP socket open (SYN) was sent for the data connection. + + + + + + + + Response time in UTC, which MUST be specified to microsecond precision. + For example: 2008-04-09T15:01:05.123456Z + * For HTTP this is the time at which the TCP ACK to the socket opening the HTTP connection was received. + * For FTP this is the time at which the TCP ACK to the socket opening the data connection was received. + + + + + + + + + Results for time segmented tests (tests where {{param|#.TimeBasedTestDuration}} > 0 and {{param|#.TimeBasedTestMeasurementInterval}} > 0). This data is totaled across all connections in the test. A new object is created every {{param|#.TimeBasedTestMeasurementInterval}} after that interval has completed. Instance numbers MUST start at 1 and sequentially increment as new instances are created. All instances are removed when {{param|#.DiagnosticsState}} is set to {{enum|Requested|#.DiagnosticsState}} or {{enum|None|#.DiagnosticsState}}. + + + + Change in the value of {{param|#.TestBytesSent}} between {{param|StartTime}} and {{param|EndTime}}. + + + + + + + + + + The total number of {{units}} (at the IP layer) received on the Interface between {{param|StartTime}} and {{param|EndTime}}. This MAY be calculated by sampling Stats.bytesReceived on the {{param|#.Interface}} object at {{param|StartTime}} and at {{param|EndTime}} and subtracting. + + + + + + + + + + The total number of {{units}} (at the IP layer) sent on the Interface between {{param|StartTime}} and {{param|EndTime}}. This MAY be calculated by sampling Stats.bytesSent on the {{param|#.Interface}} object at {{param|StartTime}} and at {{param|EndTime}} and subtracting. + + + + + + + + + + The start time of this interval which MUST be specified to microsecond precision. + For example: 2008-04-09T15:01:05.123456Z + + + + + + + + The end time of this interval which MUST be specified to microsecond precision. + For example: 2008-04-09T15:01:05.123456Z + + + + + + + + + This object allows the CPE to be configured to perform the UDP Echo Service defined in {{bibref|RFC862}} and UDP Echo Plus Service defined in {{bibref|TR-143|Appendix A.1}}. + + + + MUST be enabled to receive UDP echo. When enabled from a disabled state all related timestamps, statistics and UDP Echo Plus counters are cleared. + + + + + + + + {{reference|IP-layer interface over which the CPE MUST listen and receive UDP echo requests on}} + The value of this parameter MUST be either a valid interface or {{empty}}. An attempt to set this parameter to a different value MUST be rejected as an invalid parameter value. + If {{empty}} is specified, the CPE MUST listen and receive UDP echo requests on all interfaces. + Note: Interfaces behind a NAT MAY require port forwarding rules configured in the Gateway to enable receiving the UDP packets. + + + + + + + + + + + The Source IP address of the UDP echo packet. The CPE MUST only respond to a UDP echo from this source IP address. + + + + + + + + The UDP port on which the UDP server MUST listen and respond to UDP echo requests. + + + + + + + + If {{true}} the CPE will perform necessary packet processing for UDP Echo Plus packets. + + + + + + + + {{true}} if UDP Echo Plus is supported. + + + + + + + + Incremented upon each valid UDP echo packet received. + + + + + + + + Incremented for each UDP echo response sent. + + + + + + + + The number of UDP received bytes including payload and UDP header after the UDPEchoConfig is enabled. + + + + + + + + The number of UDP responded bytes, including payload and UDP header sent after the UDPEchoConfig is enabled. + + + + + + + + Time in UTC, which MUST be specified to microsecond precision. + For example: 2008-04-09T15:01:05.123456, + The time that the server receives the first UDP echo packet after the UDPEchoConfig is enabled. + + + + + + + + Time in UTC, which MUST be specified to microsecond precision. + For example: 2008-04-09T15:01:05.123456 + The time that the server receives the most recent UDP echo packet. + + + + + + + + + This object defines the diagnostics configuration for a UDP Echo test {{bibref|TR-143|Appendix A.1}} defined in {{bibref|RFC862}} or a UDP Echo Plus test defined in {{bibref|TR-143|Appendix A.1}}. + + + + {{datatype|expand}} + + + + + + + + + + + + + + + + {{reference|the IP-layer interface over which the test is to be performed|ignore}} Example: Device.IP.Interface.1 + If {{empty}} is specified, the CPE MUST use the interface as directed by its routing policy (''Forwarding'' table entries) to determine the appropriate interface. + + + + + + + + + + + Host name or address of the host to perform tests to. + + + + + + + + + + Port on the host to perform tests to. + + + + + + + + + + Number of repetitions of the test to perform before reporting the results. The default value SHOULD be 1. + + + + + + + + + + Timeout in {{units}} for the test. That is, the amount of time to wait for the return of a packet that was sent to the {{param|Host}}. + + + + + + + + + + + Size of the data block in {{units}} to be sent for each packet. The default value SHOULD be 24. + + + + + + + + + + + DiffServ codepoint to be used for the test packets. The default value SHOULD be zero. + + + + + + + + + + The time in {{units}} between the {{param|NumberOfRepetitions}} of packets sent during a given test. The default value SHOULD be 1000. + + + + + + + + + + + Indicates the IP protocol version to be used. The default value SHOULD be {{enum|Any}}. + + + + + + Use either IPv4 or IPv6 depending on the system preference. + + + + + Use IPv4 for the requests + + + + + Use IPv6 for the requests. + + + + + + + + Indicates which IP address was used to send the request. + + + + + + + + Result parameter indicating the number of successful packets (those in which a successful response was received prior to the timeout) in the most recent test. + + + + + + + + Result parameter indicating the number of failed packets (those in which a successful response was not received prior to the timeout) in the most recent test. + + + + + + + + Result parameter indicating the average response time in {{units}} over all repetitions with successful responses of the most recent test. If there were no successful responses, this value MUST be zero. + + + + + + + + + + Result parameter indicating the minimum response time in {{units}} over all repetitions with successful responses of the most recent test. If there were no successful responses, this value MUST be zero. + + + + + + + + + + Result parameter indicating the maximum response time in {{units}} over all repetitions with successful responses of the most recent test. If there were no successful responses, this value MUST be zero. + + + + + + + + + + The results must be returned in the {{object|IndividualPacketResult}} table for every repetition of the test when set to {{true}}. The default value SHOULD be {{false}}. + + + + + + + + {{numentries}} + + + + + + + + The maximum number of rows in {{object|IndividualPacketResult}} that the CPE will store. If a test would create more rows than {{param}} only the first {{param}} rows are present in {{object|IndividualPacketResult}}. + + + + + + + + + + + This object provides the results from individual UDPEchoPlus test packets collected during a test if {{param|#.EnableIndividualPacketResults}} is set to true. When {{param|#.DiagnosticsState}} is set to {{enum|Completed|#.DiagnosticsState}} it should contain {{param|#.NumberOfRepetitions}} objects. Instance numbers MUST start at 1 and sequentially increment as new instances are created. The instance number should match the TestIterationNumber field of the request and response packet. All instances are removed when {{param|#.DiagnosticsState}} is set to {{enum|Requested|#.DiagnosticsState}} or {{enum|None|#.DiagnosticsState}}. + + + + Indicates that the response to this UDP Echo Plus packet sent was received by the client. When this value is {{true}}, then all the remaining parameters in this instance are valid. Otherwise only the values originally set by the CPE client (e.g. {{param|PacketSendTime}} and {{param|TestGenSN}}) MAY be set to valid values. + + + + + + + + Time the client sent this UDP Echo Plus packet in UTC, which MUST be specified to microsecond precision. + For example: 2008-04-09T15:01:05.123456Z + + + + + + + + Time the client receives the response packet in UTC, which MUST be specified to microsecond precision. + For example: 2008-04-09T15:01:05.123456Z + If this response is never received, {{param}} SHOULD be set to the Unknown Time value as specified in {{bibref|TR-106|Section 3.2.2}}. + + + + + + + + The TestGenSN field in the UDPEcho Plus packet {{bibref|TR-143|Section A.1.4}} sent by the CPE client. + + + + + + + + The TestRespSN field in the response packet {{bibref|TR-143|Section A.1.4}} from the UDP Echo Plus server (i.e. {{param|#.Host}}) for this Echo Plus packet sent by the CPE client. If {{param|PacketSuccess}} is {{false}}, {{param}} SHOULD be 0. + + + + + + + + The TestRespRcvTimeStamp field in the response packet {{bibref|TR-143|Section A.1.4}} from the UDP Echo Plus server (i.e. {{param|#.Host}}) to record the reception time of this UDP Echo Plus packet sent from the CPE client. If {{param|PacketSuccess}} is {{false}}, {{param}} SHOULD be 0. + + + + + + + + + + The TestRespReplyTimeStamp field in the response packet {{bibref|TR-143|Section A.1.4}} from the UDP Echo Plus server (i.e. {{param|#.Host}}) to record the server reply time of this UDP Echo Plus packet sent from the CPE client. + That is, the time that the server returned the UDP Echo Plus packet. If {{param|PacketSuccess}} is {{false}}, {{param}} SHOULD be 0. + + + + + + + + + + The count value that was set by the UDP Echo Plus server (i.e. {{param|#.Host}}) to record the number of dropped echo response packets by the server. This count is incremented if a valid echo request packet is received at a UDP EchoPlus server but for some reason cannot be responded to (e.g. due to local buffer overflow, CPU utilization, etc...). If {{param|PacketSuccess}} is {{false}}, {{param}} SHOULD be 0. + + + + + + + + + This object defines the diagnostics configuration for a IP Layer Capacity test. IP Layer Capacity measurement is specified in {{bibref|TR-471}}. + Files received in the IP Layer Capacity test do not require file storage on the CPE device. + + + + {{datatype|expand}} + + + + + + + + + + + + + + + + + + + + + + + Indicates the maximum number of connections that are supported for an IP-Layer Capacity test. + + + + + + + + + + The maximum number of rows in {{object|IncrementalResult}} that the device will store. + + + + + + + + + + Indicates the test metrics from {{bibref|TR-471|Section 5.2}} that are supported by the device. + + + + + + + IP packet Loss Ratio + + + + + Sampled Round Trip Time + + + + + IP packet Delay Variation + + + + + IP packet Reordering Ratio + + + + + + + + Note that {{bibref|TR-471}} mandates support for and use of IPLR and Sampled RTT. + {{reference}} The IP-layer interface over which the test is to be performed. Example: Device.IP.Interface.1 + If {{empty}} is specified, the device MUST use the interface as directed by its routing policy (''Forwarding'' table entries) to determine the appropriate interface. + + + + + + + + + + + Indicates whether the device will act as Sender or Receiver of test packets. + + + + + + The device will act as the Receiver. + + + + + The device will act as the Sender. + + + + + + + + The Fully Qualified Domain Name (FQDN) or IP address of the Test Endpoint to perform the UDP Capacity tests with. + + + + + + + + + + Port on the Test Endpoint host. + + + + + + + + + + If {{true}}, jumbo frames are allowed. Default SHOULD be {{false}}. + + + + + + + + The number of connections to be used in the test. The default value SHOULD be 1. {{param}} MUST NOT be set to a value greater than {{param|#.IPLayerMaxConnections}}. + + + + + + + + + + Ethernet priority code for marking packets transmitted in the test (if applicable). The default value SHOULD be zero. + + + + + + + + + + The DiffServ code point for marking packets transmitted in the test. The default value SHOULD be zero. + + + + + + + + + + Indicates the IP protocol version to be used. The default value SHOULD be {{enum|Any}}. + + + + + + Use either IPv4 or IPv6 depending on the system preference. + + + + + Use IPv4 for the requests + + + + + Use IPv6 for the requests. + + + + + + + + Minimum reference size of UDP payload in {{units}}. No default. The implementation will algorithmically determine a value if none is configured. The value SHOULD be set to a value that avoids fragmentation (i.e., using path MTU discovery). + + + + + + + + + + + Maximum reference size of UDP payload in {{units}}. No default. The implementation will algorithmically determine a value if none is configured. The value SHOULD be set to the largest value that avoids fragmentation (i.e., using path MTU discovery). If {{param|JumboFramesPermitted}} is {{false}}, the maximum value MUST be 1472 octets. If {{param|JumboFramesPermitted}} is {{true}}, this value can be as large as 9000 octets. {{param}} MUST be greater than or equal to {{param|UDPPayloadMin}}. + + + + + + + + + + + Starting value for range of Dynamic Ports supported for test traffic and status feedback messages. + + + + + + + + + + Indicates the upper bound of the supported Dynamic Port range, where {{param|PortMin}} indicates the starting port number. {{param}} MUST be greater than or equal to {{param|PortMin}}. + + + + + + + + + + Starting value for range of User Ports supported for test traffic and status feedback messages. A value of zero (0) indicates no User Ports are used for test traffic or status feedback messages. + + + + + + + + + + + Indicates the upper bound of the supported User Port range, where {{param|PortOptionalMin}} indicates the starting port number. {{param}} MUST be greater than or equal to {{param|PortOptionalMin}}. A value of zero (0) indicates no User Ports are used for test traffic or status feedback messages. + + + + + + + + + + + Indicates the type of IP-Layer Capacity test being run. The default value SHOULD be {{enum|Search}}. + + + + + + Search algorithm will be used to determine sending rate. + + + + + Fixed sending rate will be used. + + + + + + + + Enables IPDV (IP packet Delay Variation) metric. Default SHOULD be {{false}}. + + + + + + + + Enables IPRR (IP packet Reordering Ratio) metric. Default SHOULD be {{false}}. + + + + + + + + Duration of the preamble testing, when traffic is being sent and/or received but the test clock has not been started. This is done to ensure all network elements in the path are "awake". The default value SHOULD be 2 {{units}}. Value specified in {{units}}. + + + + + + + + + + + The Sending Rate for a {{enum|Fixed|TestType}} test or the initial Sending Rate value for a {{enum|Search|TestType}} test. Value specified in {{units}}. The default SHOULD be 500 {{units}}. + + + + + + + + + + + Number of intermediate measurement reporting intervals. The value MUST NOT be greater than {{param|#.IPLayerMaxIncrementalResult}}. The default value SHOULD be 10. + + + + + + + + + + Duration of intermediate measurement reporting intervals. {{param}} * {{param|NumberTestSubIntervals}} MUST result in an integer value in seconds, in the range 5 seconds <= {{param}} * {{param|NumberTestSubIntervals}} <= 60 seconds. The default value SHOULD be 1000 {{units}}. Value specified in {{units}}. + + + + + + + + + + + Period of status feedback message (receiver of offered load returns messages to the sender with results of measured metrics). Value specified in {{units}}. The default SHOULD be 50 {{units}}. + + + + + + + + + + + Timeout value. Value specified in {{units}}. The default value SHOULD be 5 {{units}}. + + + + + + + + + + + Maximum waiting time for packets to arrive. Value specified in {{units}}. The default SHOULD be 1000 {{units}}. + + + + + + + + + + + Maximum Round Trip Time waiting time for packets to arrive. Value specified in {{units}}. The default SHOULD be 3000 {{units}}. + + + + + + + + + + + Indicates the requested precision of timestamp values. The test implementation will determine the actual precision to use based on the implemented resolution capabilities of the protocols used and this requested value. If the implemented resolution capabilities of the {{param|#.IPLayerCapSupportedMetrics}} protocols being used are able to provide the requested resolution, this resolution SHOULD be provided. Value specified in {{units}}. The default SHOULD be 1 {{units}}. + + + + + + + + + + + This parameter is only meaningful if {{param|TestType}} is {{enum|Search|TestType}}. The lower threshold on the range of Round Trip Time (RTT) variation. Value specified in {{units}}. The default SHOULD be 30 {{units}}. + + + + + + + + + + + This parameter is only meaningful if {{param|TestType}} is {{enum|Search|TestType}}. The upper threshold on the range of Round Trip Time (RTT) variation. Value specified in {{units}}. The default SHOULD be 90 {{units}}. + + + + + + + + + + + This parameter is only meaningful if {{param|TestType}} is {{enum|Search|TestType}}. The number of rows to move in a single adjustment when initially increasing offered load (to ramp up quickly). The default SHOULD be 10. + + + + + + + + + + This parameter is only meaningful if {{param|TestType}} is {{enum|Search|TestType}}. Threshold on the measured number of consecutive status reports indicating loss and/or delay variation above {{param|UpperThresh}} (SlowAdjCount). The default SHOULD be 2. + + + + + + + + + + This parameter is only meaningful if {{param|TestType}} is {{enum|Search|TestType}}. Threshold for transition between low and high sending rate step sizes (such as 1Mbps and 100 Mbps). If {{param|JumboFramesPermitted}} is {{true}} this may result in use of jumbo frames. The default SHOULD be 1 {{units}}. + + + + + + + + + + + Beginning of transmission send/receive time in UTC, which MUST be specified to {{param|TimestampResolution}} precision. If multiple connections are used, then {{param}} is set to the earliest value across all connections. For example: 2008-04-09T15:01:05.123456Z + + + + + + + + End of transmission in UTC, which MUST be specified to {{param|TimestampResolution}} precision. If multiple connections are used, then {{param}} is set to the latest value across all connections. For example: 2008-04-09T15:01:05.123456Z + + + + + + + + Configured value of {{param|Tmax}} used in the test. This value is expressed in {{units}}. + + + + + + + + + + Duration of the test (either downlink or uplink). This value is expected to equal {{param|TestSubInterval}} * {{param|NumberTestSubIntervals}}. This value is expressed in {{units}}. + + + + + + + + + + The maximum IP-Layer Capacity metric from among all {{param|IncrementalResult.{i}.IPLayerCapacity}} values measured between {{param|BOMTime}} and {{param|EOMTime}} across all connections for this test. This is calculated according to {{bibref|TR-471}} Equation 1. Result is expressed in {{units}} with 3 digits beyond the decimal. 10^6 bits/second = 1 Mbps. + + + + + + + + + + Time in UTC of end of the sub-interval when {{param|MaxIPLayerCapacity}} was measured. If the value of {{param|MaxIPLayerCapacity}} occurred in multiple sub-intervals, this MUST be the earliest of these sub-intervals. Value MUST be specified to {{param|TimestampResolution}} precision. For example: 2008-04-09T15:01:05.123456Z + + + + + + + + Ratio of lost packets to total packets during sub-interval of {{param|MaxIPLayerCapacity}}. This value is expressed as a decimal to 9 decimal digits. + + + + + + + + The range of Round Trip Time (RTT) during sub-interval of {{param|MaxIPLayerCapacity}}. This value is expressed in {{units}}. This value is expressed as a decimal to 9 decimal digits. + + + + + + + + + + The range of Packet Delay Variation (PDV) during sub-interval of {{param|MaxIPLayerCapacity}}. This value is expressed in {{units}}. This value is expressed as a decimal to 9 decimal digits. + + + + + + + + + + The minimum one-way delay during the sub-interval of {{param|MaxIPLayerCapacity}}. The minimum one-way delay is calculated at the conclusion of the test and SHALL be calculated using the conditional distribution of all packets with a finite one-way delay value (undefined delays are excluded). This value is expressed in {{units}}. This value is expressed as a decimal to 9 decimal digits. + + + + + + + + + + Ratio of reordered packets to total packets during the sub-interval of {{param|MaxIPLayerCapacity}}. This value is expressed as a decimal to 9 decimal digits. + + + + + + + + {{numentries}} + + + + + + + + Configured value of {{param|TmaxRTT}} used in the test. This value is expressed in {{units}}. + + + + + + + + + + Indicates the timestamp resolution of reported results. Value specified in {{units}}. + + + + + + + + + + + Results for time segmented tests (tests where {{param|#.NumberTestSubIntervals}} > 1). This data is calculated across all connections in the test. A new object is created every {{param|#.TestSubInterval}} after that interval has completed. Instance numbers MUST start at 1 and sequentially increment as new instances are created. All instances are removed when new test is started or results are otherwise cleared. + + + + Results of measurements using the maximum IP-Layer Capacity metric calculation for a single interval from {{bibref|TR-471}} Equation 1, for time interval of duration {{param|#.TestSubInterval}} ending at {{param|TimeOfSubInterval}} across all connections for this test. Result is expressed in {{units}} with 3 digits beyond the decimal. 10^6 bits/second = 1 Mbps. + + + + + + + + + + Time in UTC of end of sub-interval when {{param|IPLayerCapacity}} was measured. Value MUST be specified to {{param|#.TimestampResolution}} precision. For example: 2008-04-09T15:01:05.123456Z + + + + + + + + Ratio of lost packets to total packets, for time interval of duration {{param|#.TestSubInterval}} ending at {{param|TimeOfSubInterval}} across all connections for this test. This value is expressed as a decimal to 9 decimal digits. + + + + + + + + The range of Round Trip Time (RTT), for time interval of duration {{param|#.TestSubInterval}} ending at {{param|TimeOfSubInterval}} across all connections for this test. See {{bibref|TR-471}} for description of how value is calculated. This value is expressed in {{units}}. This value is expressed as a decimal to 9 decimal digits. + + + + + + + + + + The range of Packet Delay Variation (PDV), for time interval of duration {{param|#.TestSubInterval}} ending at {{param|TimeOfSubInterval}} across all connections for this test. See {{bibref|TR-471}} for description of how value is calculated. This value is expressed in {{units}}. This value is expressed as a decimal to 9 decimal digits. + + + + + + + + + + The minimum one-way delay, for time interval of duration {{param|#.TestSubInterval}} ending at {{param|TimeOfSubInterval}} across all connections for this test. The minimum one-way delay is calculated at the conclusion of the test and SHALL be calculated using the conditional distribution of all packets with a finite one-way delay value (undefined delays are excluded). This value is expressed in {{units}}. This value is expressed as a decimal to 9 decimal digits. + + + + + + + + + + Ratio of reordered packets to total packets, for time interval of duration {{param|#.TestSubInterval}} ending at {{param|TimeOfSubInterval}} across all connections for this test. This value is expressed as a decimal to 9 decimal digits. + + + + + + + + + This object provides access to a diagnostics test that performs either an ICMP Ping or UDP Echo ping against multiple hosts determining which one has the smallest average response time. There MUST be a ping response to the transmitted ping, or timeout, before the next ping is sent out. + + + + {{datatype|expand}} + + + + + + + + + + + + + + + + {{reference|the IP-layer interface over which the test is to be performed|ignore}} Example: Device.IP.Interface.1 + If {{empty}} is specified, the CPE MUST use the interface as directed by its routing policy (''Forwarding'' table entries) to determine the appropriate interface. + + + + + + + + + + + Indicates the IP protocol version to be used. + + + + + + Use either IPv4 or IPv6 depending on the system preference. + + + + + Use IPv4 for the requests. + + + + + Use IPv6 for the requests. + + + + + + + + + The protocol over which the test is to be performed. + + + + + + + + + + + Each entry is a Host name or address of a host to ping. + + + + + + + + + + + Number of repetitions of the ping test to perform for each {{param|HostList}} entry before reporting the results. + + + + + + + + + + Timeout in {{units}} for each iteration of the ping test where the total number of iterations is the value of {{param|NumberOfRepetitions}} times the number of entities in the {{param|HostList}} Parameter. + + + + + + + + + + + Result parameter indicating the Host (one of the items within the {{param|HostList}} Parameter) with the smallest average response time. + + + + + + + + Result parameter indicating the minimum response time in {{units}} over all repetitions with successful responses of the most recent ping test for the Host identified in {{param|FastestHost}}. Success is defined by the underlying protocol used. If there were no successful responses across all Hosts, this value MUST be zero. + + + + + + + + + + Result parameter indicating the average response time in {{units}} over all repetitions with successful responses of the most recent ping test for the Host identified in {{param|FastestHost}}. Success is defined by the underlying protocol used. If there were no successful responses across all Hosts, this value MUST be zero. + + + + + + + + + + Result parameter indicating the maximum response time in {{units}} over all repetitions with successful responses of the most recent ping test for the Host identified in {{param|FastestHost}}. Success is defined by the underlying protocol used. If there were no successful responses across all Hosts, this value MUST be zero. + + + + + + + + + + Indicates which IP address was used to send the request to the host identified in {{param|FastestHost}}. + + + + + + + + + This object contains Link Layer Discovery Protocol (LLDP) {{bibref|802.1AB-2009}} related objects and parameters. + + + + + This object is used for managing the discovery of LLDP devices. + The CPE MAY, but need not, retain some or all of the information in this object across reboot. + + + + {{numentries}} + + + + + + + + + This table contains information about discovered LLDP devices. + + + + + + + + {{reference|the interface via which the LLDP device was discovered}} + + + + + + + + + + The chassis identifier subtype, which is included in the value of the ''LLDPDU's'' Chassis ID TLV (TLV Type = 1). The following subtype values are defined: + * ''0'' (Reserved) + * ''1'' (Chassis component) + * ''2'' (Interface alias) + * ''3'' (Port component) + * ''4'' (MAC address) + * ''5'' (Network address) + * ''6'' (Interface name) + * ''7'' (Locally assigned) + * ''8-255'' (Reserved) + Note: It is assumed that this integer might be used for HTIP (Home-network Topology Identifying Protocol) {{bibref|JJ-300.00}} and {{bibref|G.9973}}. In this case, the Chassis ID is set to the representative MAC address (chassis ID subtype = 4) for ''HTIP-Ethernet Bridge''. + + + + + + + + + + The chassis identifier, which is included in the value of the ''LLDPDU's'' Chassis ID TLV (TLV Type = 1). + Note: It is assumed that this string might be used for HTIP (Home-network Topology Identifying Protocol) {{bibref|JJ-300.00}} and {{bibref|G.9973}}. In this case, the Chassis ID is set to the representative MAC address. If ''LLDPDU''s are sent and received from two or more LLDP agents of the same ''HTIP-Ethernet Bridge'', this value is same in all ''LLDPDU''s. + + + + + + + + + + {{list}}Indicates the full path names of all Host table entries, whether active or inactive, that correspond to this device. + When the entries are added to or removed from the Host tables, the value of this parameter MUST be updated accordingly. + + + + + + + + + + + + + + {{numentries}} + + + + + + + + + This table contains information about ports on discovered LLDP devices. + + + + + + + + The port identifier subtype, which is included in the value of the ''LLDPDU's'' Port ID TLV (TLV Type = 2). The following subtype values are defined: + * ''0'' (Reserved) + * ''1'' (Interface alias) + * ''2'' (Port component) + * ''3'' (MAC address) + * ''4'' (Network address) + * ''5'' (Interface name) + * ''6'' (Agent circuit ID) + * ''7'' (Locally assigned) + * ''8-255'' (Reserved) + + + + + + + + + + The port identifier, which is included in the value of the ''LLDPDU's'' Port ID TLV (TLV Type = 2). + + + + + + + + + + The ''LLDPDU'' lifetime (in {{units}}), which is the value of the latest TimeToLive TLV (TLV Type = 3). + If this value is 0, it means that the LLDP agent or the MAC service function of the port is stopped. + + + + + + + + + + + The port description, which is the value of the latest Port Description TLV (TLV Type = 4), or {{empty}} if no Port Description TLV has been received. + Note: It is assumed that this string might be used for HTIP (Home-network Topology Identifying Protocol) {{bibref|JJ-300.00}} and {{bibref|G.9973}}. In this case, the parameter value is likely to be one of the names defined in {{bibref|JJ-300.00|Appendix A (''List of Interface Standard Names'')}}. + + + + + + + + + + The device's MAC addresses, which are included in the value of the ''LLDPDU's'' Organizationally Specific TLV (TLV Type = 127), or {{empty}} if no list of MAC addresses has been received. + The parameter is relevant when there is a LLDP device which has a MAC copy function and has two or more MAC addresses. + Note: It is assumed that it might be used for HTIP (Home-network Topology Identifying Protocol) {{bibref|JJ-300.00}} and {{bibref|G.9973}}. In this case, the {{bibref|OUI}} in the third octet is E0271A (''TTC-OUI'') and the organizationally defined subtype in the sixth octet is 3 (''MAC Address List''). + + + + + + + + + The date and time at which the last LLDPDU was received for this ({{object|#}},{{object}}). + + + + + + + + + The port's link information, which is included in the value of the ''LLDPDU's'' Organizationally Specific TLV (TLV Type = 127). + Note: It is assumed that this object might be used for HTIP (Home-network Topology Identifying Protocol) {{bibref|JJ-300.00}} and {{bibref|G.9973}}. In this case, the {{bibref|OUI}} in the third octet is E0271A (''TTC-OUI'') and the organizationally defined subtype in the sixth octet is 2 (''Link Information''). + + + + The port's interface type, or 0 if no interface type has been received. + Note: It is assumed that it might be used for HTIP (Home-network Topology Identifying Protocol) {{bibref|JJ-300.00}} and {{bibref|G.9973}}. In this case, it's an IANA interface type {{bibref|IANAifType}}. + For example, IANAifType defines the following interface types for wired line (UTP cable), wireless line, power line, and coaxial cable: + * ''6'' (Wired line) + * ''71'' (Wireless) + * ''174'' (PLC) + * ''236'' (Coaxial cable) + + + + + + + + The port's MAC forwarding table, or the value is {{empty}} if no forwarding table was supplied. + + + + + + + + + + The device information, which is included in the value of the ''LLDPDU's'' Organizationally Specific TLV (TLV Type = 127). + Note: It is assumed that this object might be used for HTIP (Home-network Topology Identifying Protocol) {{bibref|JJ-300.00}} and {{bibref|G.9973}}. In this case, this table contains the Organizationally Specific TLV (TLV Type = 127) of ''LLDPDU'', in which the {{bibref|OUI}} in the third octet is E0271A (''TTC-OUI'') and the organizationally defined subtype in the sixth octet is 1 (''Device Information''). + + + + Each list item indicates a device category (e.g."AV_TV" and "AV_Recorder"), or the value is {{empty}} if no device categories were provided. + Note: It is assumed that this list might be used for HTIP (Home-network Topology Identifying Protocol) {{bibref|JJ-300.00}} and {{bibref|G.9973}}. Standard HTIP device categories are defined in {{bibref|JJ-300.01}}. In this case, the maximum length of the list is 127 and of each item is 31, and any non-HTIP device categories SHOULD NOT conflict with standard HTIP device categories. + + + + + + + + + The manufacturer OUI, which is included in the value of the ''LLDPDU's'' Organizationally Specific TLV (TLV Type = 127), or {{empty}} if no manufacturer OUI was provided. + {{pattern}} + + + + + + + {{empty}} + + + + + + + + + The model name, which is included in the value of the ''LLDPDU's'' Organizationally Specific TLV (TLV Type = 127), or {{empty}} if no model name was provided. + Note: It is assumed that this string might be used for HTIP (Home-network Topology Identifying Protocol) {{bibref|JJ-300.00}} and {{bibref|G.9973}}. + + + + + + + + + + The model number, which is included in the value of the ''LLDPDU's'' Organizationally Specific TLV (TLV Type = 127), or {{empty}} if no model number was provided. + Note: It is assumed that this string might be used for HTIP (Home-network Topology Identifying Protocol) {{bibref|JJ-300.00}} and {{bibref|G.9973}}. + + + + + + + + + + {{numentries}} + + + + + + + + + The vendor-specific device information, which is included in the value of the ''LLDPDU's'' Organizationally Specific TLV (TLV Type = 127). + {{keys}} + Note: It is assumed that this object might be used for HTIP (Home-network Topology Identifying Protocol) {{bibref|JJ-300.00}} and {{bibref|G.9973}}. In this case, this table contains the Organizationally Specific TLV (TLV Type = 127) of ''LLDPDU'', in which the {{bibref|OUI}} in the third octet is E0271A (''TTC-OUI''), the organizationally defined subtype in the sixth octet is 1 (''Device Information''), and the device information ID in the seventh octet is 255 (''Vendor-specific extension field''). + + + + + + + + The vendor-specific organization code, which is included in the value of the ''LLDPDU's'' Organizationally Specific TLV (TLV Type = 127). + + + + + + + + + + + The vendor-specific device information type, which is included in the value of the ''LLDPDU's'' Organizationally Specific TLV (TLV Type = 127). + + + + + + + + + + The vendor-specific device information, which is included in the value of the ''LLDPDU's'' Organizationally Specific TLV (TLV Type = 127). + + + + + + + + + + + IPsec {{bibref|RFC4301}} object that supports the configuration of Encapsulating Security Payload (ESP) {{bibref|RFC4303}} and Authentication Header (AH) {{bibref|RFC4302}} in tunnel mode {{bibref|RFC4301|Section 3.2}}. + Use of IKEv2 {{bibref|RFC5996}} is assumed. The IPsec object does not currently support static configuration of tunnels and child Security Associations (SAs). + See the IPsec Theory of Operation {{bibref|TR-181i2|Appendix IX}} for a description of the working of this IPsec data model. + + + + Enables or disables IPsec. + + + + + + + + IPsec status. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + Indicates whether or not Authentication Header (AH) {{bibref|RFC4302}} is supported. + + + + + + + + Supported IKEv2 encryption algorithms {{bibref|IKEv2-params|Transform Type 1}}. {{enum}} + Note that these are the names from the above reference, transformed as follows: + * Leading ''ENCR_'' (when present) discarded because they are all encryption algorithms so it's not needed. + * Underscores changed to hyphens to preserve names used in existing data models (and because of inconsistent conventions). + * Phrases collapsed where unambiguous, e.g. "with a(n) NN octet ICV" -> "-NN". + As additional algorithms are added to the above reference, this data model will be extended according to the above conventions. + + + + + + + + + + + + + + + + + + + + + + + + + + Supported ESP encryption algorithms {{bibref|IKEv2-params|Transform Type 1}} {{bibref|RFC4835|Section 3.1.1}}. {{enum}} + Note that these are the names from the above reference, transformed as follows: + * Leading ''ENCR_'' (when present) discarded because they are all encryption algorithms so it's not needed. + * Underscores changed to hyphens to preserve names used in existing data models (and because of inconsistent conventions). + * Phrases collapsed where unambiguous, e.g. "with a(n) NN octet ICV" -> "-NN". + * Some algorithms with apparently rather specialised application are omitted, e.g. ''ENCR_NULL_AUTH_AES_GMAC''. + As additional algorithms are added to the above reference, this data model will be extended according to the above conventions. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Supported IKEv2 pseudo-random functions {{bibref|IKEv2-params|Transform Type 2}}. {{enum}} + Note that these are the names from the above reference, transformed as follows: + * Leading ''PRF_'' (when present) discarded because they all pseudo-random functions so it's not needed. + * Underscores changed to hyphens to preserve names used in existing data models. + * Hyphen inserted after ''AES'' (or other acronym) when immediately followed by a key length. + As additional functions are added to the above reference, this data model will be extended according to the above conventions. + + + + + + + + + + + + + + + + + + Supported integrity algorithms {{bibref|IKEv2-params|Transform Type 3}}. {{enum}} + Note that these are the names from the above reference, transformed as follows: + * Leading ''AUTH_'' (when present) discarded because they all authentication (integrity) algorithms so it's not needed. + * Underscores changed to hyphens to preserve names used in existing data models. + As additional algorithms are added to the above reference, this data model will be extended according to the above conventions. + + + + + + + + + + + + + + + + + + + + + + + + + Supported Diffie-Hellman group transforms {{bibref|IKEv2-params|Transform Type 4}}. {{enum}} + Note that these are the names from the above reference, transformed as follows: + * Name (other than ''NONE'') always starts with the type of group, currently ''MODP'' or ''ECP'' (implies ECP random). + * This is followed by ''-NN'', where ''NN'' is the group length in bits. + * this is followed by ''-PRIME-NN'' for groups with prime order subgroups, where ''NN'' is the subgroup length in bits. + As additional algorithms are added to the above reference, this data model will be extended according to the above conventions. + + + + + + + + + + + + + + + + + + + + + + + + + + + The maximum number of entries in the {{object|Filter}} table. + A value of 0 means no specific limit. + + + + + + + + The maximum number of entries in the {{object|Profile}} table. + A value of 0 means no specific limit. + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + Global IPsec statistics. These statistics include all IPsec traffic, i.e. all IKEv2 negotiation, IKEv2 SAs and child SAs. + The CPE MUST reset global IPsec Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when IPsec is disabled ({{param|.IPsec.Enable}} is set to {{false}}) or when IPsec is enabled ({{param|.IPsec.Enable}} is set to {{true}}). + + + + The total number of times an IPsec negotiation failure has occurred. + + + + + + + + The total number of {{units}} sent by IPsec. + + + + + + + + + + The total number of {{units}} received by IPsec. + + + + + + + + + + The total number of {{units}} sent by IPsec. + + + + + + + + + + The total number of {{units}} received by IPsec. + + + + + + + + + + The total number of {{units}} discarded by IPsec due to any error. This can include packets dropped due to a lack of transmit buffers. + + + + + + + + + + The total number of {{units}} discarded by IPsec due to an unknown SPI (Security Parameter Index). + + + + + + + + + + The total number of {{units}} discarded by IPsec due to ESP decryption errors. + + + + + + + + + + The total number of {{units}} discarded by IPsec due to integrity errors. + + + + + + + + + + The total number of {{units}} discarded by IPsec due to replay errors. + + + + + + + + + + The total number of {{units}} discarded by IPsec due to policy errors. + + + + + + + + + + The total number of {{units}} discarded by IPsec due to errors other than unknown SPI, decryption, integrity, replay or policy errors. This can include packets dropped due to a lack of receive buffers. + + + + + + + + + + + Filter table that represents the IPsec Security Policy Database (SPD) {{bibref|RFC4301|Section 4.4.1}} selection criteria. Each (ordered) entry defines a set of selection criteria and references a {{object|#.Profile}} table entry that specifies how matching packets will be processed. + SPD filtering is performed for all packets that might need to cross the IPsec boundary {{bibref|RFC4301|Section 3.1}}. Given that IPsec operates at the IP level, this means that SPD filtering conceptually occurs after bridging and before routing. + For enabled table entries, if {{param|Interface}} is not a valid reference and {{param|AllInterfaces}} is {{false}}, then the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + + + + + + + Enables or disables this IPsec Filter table entry. + + + + + + + + + The status of this IPsec Filter table entry. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + Position of the {{object}} entry in the order of precedence. A value of ''1'' indicates the first entry considered (highest precedence). For each packet, the highest ordered entry that matches the filter criteria is applied. All lower order entries are ignored. + When this value is modified, if the value matches that of an existing entry, the {{param}} value for the existing entry and all lower {{param}} entries is incremented (lowered in precedence) to ensure uniqueness of this value. A deletion causes {{param}} values to be compacted. When a value is changed, incrementing occurs before compaction. + The value of {{param}} on creation of a {{object}} table entry MUST be one greater than the largest current value (initially assigned the lowest precedence). + + + + + + + + + + {{datatype|expand}} + + + + + + + + SPD selection criterion. {{reference}} + This specifies the ingress interface associated with the entry. It MAY be a layer 1, 2 or 3 interface. However, the types of interfaces for which filters can be instantiated is a local matter to the CPE. + + + + + + + + + + + + SPD selection criterion. + This specifies that all ingress interfaces are associated with the entry. If {{true}}, the value of {{param|Interface}} is ignored since all ingress interfaces are indicated. + + + + + + + + + SPD selection criterion. + Destination IP address. {{empty}} indicates this criterion is not used, i.e. is ''ANY''. + + + + + + + + + SPD selection criterion. + Destination IP address mask. If not {{empty}}, only the indicated network portion of the {{param|DestIP}} address is to be used for selection. {{empty}} indicates that the full {{param|DestIP}} address is to be used for selection. + + + + + + + + + If {{false}}, the rule matches only those packets that match the (masked) {{param|DestIP}} entry, if specified. + If {{true}}, the rule matches all packets except those that match the (masked) {{param|DestIP}} entry, if specified. + + + + + + + + + SPD selection criterion. + Source IP address. {{empty}} indicates this criterion is not used, i.e. is ''ANY''. + + + + + + + + + SPD selection criterion. + Source IP address mask. If not {{empty}}, only the indicated network portion of the {{param|SourceIP}} address is to be used for selection. {{empty}} indicates that the full {{param|SourceIP}} address is to be used for selection. + + + + + + + + + If {{false}}, the rule matches only those packets that match the (masked) {{param|SourceIP}} entry, if specified. + If {{true}}, the rule matches all packets except those that match the (masked) {{param|SourceIP}} entry, if specified. + + + + + + + + + SPD selection criterion. + Protocol number. A value of -1 indicates this criterion is not used, i.e. is ''ANY''. + Note that {{bibref|RFC4301}} refers to this as the ''Next Layer Protocol''. It is obtained from the IPv4 ''Protocol'' or the IPv6 ''Next Header'' fields. + + + + + + + + + + + If {{false}}, the rule matches only those packets that match {{param|Protocol}}, if specified. + If {{true}}, the rule matches all packets except those that match {{param|Protocol}}, if specified. + + + + + + + + + SPD selection criterion. + Destination port number. A value of -1 indicates this criterion is not used, i.e. is ''ANY''. + The value of this parameter is ignored for protocols that do not use ports, e.g. ICMP (1). + + + + + + + + + + + SPD selection criterion. + If specified, indicates a destination port address range from {{param|DestPort}} through {{param}} (inclusive), in which case {{param}} MUST be greater than or equal to {{param|DestPort}}. + A value of -1 indicates that no destination port range is specified. + + + + + + + + + + + If {{false}}, the rule matches only those packets that match {{param|DestPort}} (or port range), if specified. + If {{true}}, the rule matches all packets except those that match {{param|DestPort}} (or port range), if specified. + + + + + + + + + SPD selection criterion. + Source port number. A value of -1 indicates this criterion is not used, i.e. is ''ANY''. + The value of this parameter is ignored for protocols that do not use ports, e.g. ICMP (1). + + + + + + + + + + + SPD selection criterion. + If specified, indicates a source port address range from {{param|SourcePort}} through {{param}} (inclusive), in which case {{param}} MUST be greater than or equal to {{param|SourcePort}}. + A value of -1 indicates that no source port range is specified. + + + + + + + + + + + If {{false}}, the rule matches only those packets that match {{param|SourcePort}} (or port range), if specified. + If {{true}}, the rule matches all packets except those that match {{param|SourcePort}} (or port range), if specified. + + + + + + + + + Indicates how packets that match this rule will be processed {{bibref|RFC4301|Section 4.4.1}}. + + + + + + Packet is not allowed to traverse the IPsec boundary; packet will be discarded + + + + + Packet is allowed to bypass traverse the IPsec boundary without protection + + + + + Packet is afforded protection as specified by {{param|Profile}} + + + + + + + + + The profile that defines the IPsec treatment for matching packets. {{reference}} + If {{param|ProcessingChoice}} is {{enum|Protect|ProcessingChoice}}, {{param}} MUST NOT be {{empty}}. In this case, if it ever becomes {{empty}}, e.g. because the referenced profile is deleted, this IPsec Filter table entry is invalid and {{param|Status}} MUST be set to {{enum|Error_Misconfigured|Status}}. + If {{param|ProcessingChoice}} is not {{enum|Protect|ProcessingChoice}}, {{param}} is ignored. + Any changes to the referenced profile will have an immediate effect on any established IPsec tunnels. Such changes will often force IKEv2 sessions and child SAs to be re-established. + + + + + + + + + + + Profile table that represents the IPsec Security Policy Database (SPD) {{bibref|RFC4301|Section 4.4.1}} processing info. Each entry defines the IPsec treatment for packets that match the {{object|#.Filter}} entries that reference the entry. + + + + + + + {{datatype|expand}} + + + + + + + + Controls the maximum number of child Security Association (SA) pairs that can be negotiated by a single IKEv2 session. + If a new child SA pair is needed, but the current IKEv2 session already has {{param}} child SA pairs, an additional IKEv2 session (and therefore an additional IPsec tunnel) will be established. + A value of 0 means no specific limit. + Note that support for more than one child SA pair per IKEv2 session is OPTIONAL {{bibref|RFC5996|Section 1.3}}. + + + + + + + + The host name or IP address of the remote IPsec tunnel endpoint. If more than one name/address is supplied, they will be tried in turn, i.e. they are in decreasing order of precedence. + + + + + + + + + + + Identifier of the forwarding policy associated with traffic that is associated with this profile. + The forwarding policy can be referenced by entries in the {{object|##.Routing.Router.{i}.IPv4Forwarding}} and {{object|##.Routing.Router.{i}.IPv6Forwarding}} tables, and therefore allows SPD selection criteria to influence the forwarding decision. + + + + + + + + + The "child" security protocol. + This is not to be confused with {{object|#.Filter}}.{{param|#.Filter.{i}.Protocol}}, which is an SPD selector that can select packets that already have AH or ESP headers. {{object}}.{{param}} selects whether AH or ESP will be used when encapsulating a packet. + + + + + + Authentication Header {{bibref|RFC4302}}; can only be selected if {{param|#.AHSupported}} is {{true}} + + + + + Encapsulating Security Payload {{bibref|RFC4303}} + + + + + + + + + IKEv2 CPE authentication method {{bibref|RFC5996|Section 2.15}}. {{reference|an enabled row in the {{object|.Security.Certificate}} table or in another table that contains appropriate CPE credentials}} + If {{empty}}, or the referenced row is disabled or deleted, the CPE chooses the authentication method based on local policy. + + + + + + + + + + + Allowed IKEv2 encryption algorithms. + + + + + + + + + + + Allowed ESP encryption algorithms. + + + + + + + + + + + Allowed IKEv2 pseudo-random functions. + + + + + + + + + + + Allowed IKEv2 integrity algorithms. + + + + + + + + + + + Allowed AH integrity algorithms {{bibref|IKEv2-params|Transform Type 3}} {{bibref|RFC4835|Section 3.2}}. + + + + + + + + + + + + Allowed ESP integrity algorithms {{bibref|IKEv2-params|Transform Type 3}} {{bibref|RFC4835|Section 3.1.1}}. + + + + + + + + + + + + Allowed IKEv2 Diffie-Hellman group transforms. + + + + + + + + + + + IKEv2 Dead Peer Detection (DPD) timeout in {{units}}. {{bibref|RFC5996|section 2.4}} + + + + + + + + + + IKEv2 NAT traversal (NAT-T) keepalive timeout in {{units}}. {{bibref|RFC3948|Section 4}} + + + + + + + + + + The size of the AH or ESP Anti-Replay Window. {{bibref|RFC4302|Section B.2}} {{bibref|RFC4303|Section A2}} + A value of 0 means that Sequence Number Verification is disabled. + + + + + + + + + Controls the value of the ''Do Not Fragment'' (DF) bit. {{bibref|RFC4301|Section 8.1}} + + + + + + + + Copy from inner header; applies only when both inner and outer headers are IPv4 + + + + + + + + DSCP with which to mark the outer IP header for traffic that is associated with this IPsec channel. + A value of -1 indicates copy from the incoming packet. + A value of -2 indicates automatic marking of DSCP. + De-tunneled packets are never re-marked. + Automatic DSCP marking behavior is a local matter to the CPE, possibly influenced by other Broadband Forum standards that it supports. + + + + + + + + + + IKEv2 SA lifetime in {{units}}, or zero if there is no traffic constraint on its expiration. + If both {{param}} and {{param|IKEv2SATimeLimit}} are non-zero, the IKEv2 SA is deleted when the first limit is reached. + + + + + + + + + + IKEv2 SA lifetime in {{units}}, or zero if there is no time constraint on its expiration. + If both {{param}} and {{param|IKEv2SATrafficLimit}} are non-zero, the IKEv2 SA is deleted when the first limit is reached. + + + + + + + + + + Action to take when an IKEv2 SA expires, whether as a result of hitting a traffic limit or a time limit. + + + + + + + + + + + Child SA lifetime in {{units}}, or zero if there is no traffic constraint on its expiration. + If both {{param}} and {{param|ChildSATimeLimit}} are non-zero, the child SA is deleted when the first limit is reached. + + + + + + + + + + Child SA lifetime in {{units}}, or zero if there is no time constraint on its expiration. + If both {{param}} and {{param|ChildSATrafficLimit}} are non-zero, the child SA is deleted when the first limit is reached. + + + + + + + + + + Action to take when a Child SA expires, whether as a result of hitting a traffic limit or a time limit. + + + + + + + + + + + {{numentries}} + + + + + + + + + Each instance of this object represents an IKEv2 Configuration Payload (CP) {{bibref|RFC5996|Section 3.15}} Attribute that MUST, if enabled, be sent in IKEv2 CP CFG_REQUEST messages. All such Attributes MUST be listed. + + + + + + + + + + Enables or disables this {{object}} entry. + + + + + + + + {{datatype|expand}} + + + + + + + + CP Attribute Type as described in {{bibref|RFC5996|Section 3.15.1}} and defined in {{bibref|IKEv2-params|IKEv2 Configuration Payload Attribute Types}}. + + + + + + + + + + A hexbinary encoded CP Attribute Value as described in {{bibref|RFC5996|Section 3.15.1}} and defined in {{bibref|IKEv2-params|IKEv2 Configuration Payload Attribute Types}}. + + + + + + + + + + + Represents an IPsec tunnel, i.e. a virtual IP interface that models an IPsec tunnel entry point and exit point. A {{object}} instance always references (and has the same lifetime as) a ({{enum|Tunnel|.IP.Interface.{i}.Type}},{{enum|Tunneled|.IP.Interface.{i}.Type}}) {{object|.IP.Interface}} pair. The {{object}} instance models the IPsec-specific concepts, the {{enum|Tunnel|.IP.Interface.{i}.Type}} {{object|.IP.Interface}} instance models the generic concepts, and the {{enum|Tunneled|.IP.Interface.{i}.Type}} {{object|.IP.Interface}} instance exists only so it can be referenced by forwarding or filter rules. + {{object}} instances are automatically created (as needed) when {{object|#.Filter}} instances are enabled and disabled. + Each instance's {{param|Filters}} parameter references the {{object|#.Filter}} instances that require the {{object}} instance to exist. If this list ever becomes {{empty}}, e.g. because all the referenced {{object|#.Filter}} instances have been disabled or deleted, the CPE MAY choose not to delete the {{object}} instance (and its associated ({{enum|Tunnel|.IP.Interface.{i}.Type}},{{enum|Tunneled|.IP.Interface.{i}.Type}}) {{object|.IP.Interface}} pair). This can be desirable, because {{object|.QoS.Classification}}, {{object|.Routing.Router.{i}.IPv4Forwarding}}, {{object|.Routing.Router.{i}.IPv6Forwarding}} etc instances might be referencing the {{object|.IP.Interface}} instances. + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The corresponding auto-created {{enum|Tunnel|Device.IP.Interface.{i}.Type}} {{object|.IP.Interface}} instance. {{reference||delete}} + + + + + + + + + + The corresponding auto-created {{enum|Tunneled|Device.IP.Interface.{i}.Type}} {{object|.IP.Interface}} instance. {{reference||delete}} + + + + + + + + + + The {{object|#.Filter}} instances that require this {{object}} instance to exist. {{reference}} + + + + + + + + + + + + Statistics for this IPsec tunnel, i.e. all traffic that has passed through the tunnel, including IKEv2 negotiation, IKEv2 SA and ChildSA traffic. + The CPE MUST reset the tunnel's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the tunnel becomes operationally down due to a previous administrative down (i.e. its associated {{param|.IP.Interface.{i}.Status}} parameter transitions to a down state after the tunnel has been disabled) or when the tunnel becomes administratively up (i.e. its associated {{param|.IP.Interface.{i}.Enable}} parameter transition from {{false}} to {{true}}). + Note that this object does not include generic statistics that are available in the associated {{object|.IP.Interface.{i}.Stats}} object. + + + + The total number of inbound {{units}} discarded due to ESP decryption errors. + + + + + + + + + + The total number of inbound {{units}} discarded due to integrity errors. + + + + + + + + + + The total number of inbound {{units}} discarded due to replay errors. + + + + + + + + + + The total number of inbound {{units}} discarded due to policy errors. + + + + + + + + + + The total number of inbound {{units}} discarded due to errors other than decryption, integrity, replay or policy errors. This can include packets dropped due to a lack of receive buffers. + + + + + + + + + + + Represents an IKEv2 Security Association (SA), corresponding to an IKEv2 session. Instances are automatically created and deleted as IKEv2 SAs are created and deleted. + + + + + + + The current operational state of the IKEv2 SA. + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The associated {{object|#.Tunnel}} instance. {{reference}} + Note that {{param}} is a unique key, i.e only one {{object}} instance is associated with a given {{object|#.Tunnel}} instance. During rekeying {{bibref|RFC5996|Section 2.8}}, a new IKEv2 SA is created and inherits the existing IKEv2 SA's child SAs, then the old IKEv2 SA is deleted. From the management point of view the new and old IKEv2 SAs are the same SA and MUST be modeled using the same {{object}} instance. + + + + + + + + + + The local IP address that this IKEv2 SA was negotiated with. This is assigned via IKEv2 and will also be available via the associated {{object|#.Tunnel}}'s {{param|#.Tunnel.{i}.TunnelInterface}} {{object|##.IP.Interface.{i}.IPv4Address}} or {{object|##.IP.Interface.{i}.IPv6Address}} table (as appropriate). + + + + + + + + The IP address of the peer that this IKEv2 SA was negotiated with. This will be the IP address of one of the security gateways configured via {{param|#.Profile.{i}.RemoteEndpoints}}. + + + + + + + + The encryption algorithm applied to traffic carried by this IKEv2 SA. + This will be one of the {{param|#.Profile.{i}.IKEv2AllowedEncryptionAlgorithms}} from the {{object|#.Profile}} instance via which this IKEv2 SA was created. + + + + + + + + + + The length of the encryption key in {{units}} used for the algorithm specified in the {{param|EncryptionAlgorithm}} parameter. + The value is 0 if the key length is implicit in the specified algorithm or there is no encryption applied. + + + + + + + + + + The pseudo-random function used by this IKEv2 SA. + This will be one of the {{param|#.Profile.{i}.IKEv2AllowedPseudoRandomFunctions}} from the {{object|#.Profile}} instance via which this IKEv2 SA was created. + + + + + + + + + + The integrity algorithm applied to the traffic carried by this IKEv2 SA. + This will be one of the {{param|#.Profile.{i}.IKEv2AllowedIntegrityAlgorithms}} from the {{object|#.Profile}} instance via which this IKEv2 SA was created. + + + + + + + + + + The Diffie-Hellman Group used by this IKEv2 SA. + This will be one of the {{param|#.Profile.{i}.IKEv2AllowedDiffieHellmanGroupTransforms}} from the {{object|#.Profile}} instance via which this IKEv2 SA was created. + + + + + + + + + + When this IKEv2 SA was set up. + + + + + + + + Whether NAT traversal is supported by the device and, if so, whether a NAT was detected. + + + + + + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + Statistics for this IKEv2 Security Association (SA). + The CPE MUST reset the IKEv2 SA's Stats parameters (unless otherwise stated in individual object or parameter descriptions) whenever the associated {{param|#.Tunnel}} instance's Stats parameters are reset. + + + + The total number of {{units}} handled in the outbound direction by the IKEv2 SA. + + + + + + + + + + The total number of {{units}} handled in the inbound direction by the IKEv2 SA. + + + + + + + + + + The total number of {{units}} handled in the outbound direction by the IKEv2 SA. + + + + + + + + + + The total number of {{units}} handled in the inbound direction by the IKEv2 SA. + + + + + + + + + + The total number of outbound {{units}} from this IKEv2 SA discarded for any reason. This can include {{units}} dropped due to a lack of transmit buffer space. + Note that this refers to IKE protocol {{units}}, and not to {{units}} carried by other SAs. + + + + + + + + + + The total number of inbound {{units}} to this IKEv2 SA discarded due to decryption errors. + Note that this refers to IKEv2 protocol {{units}}, and not to {units}} carried by other SAs. + + + + + + + + + + The total number of inbound {{units}} to this IKEv2 SA discarded due to integrity errors. + Note that this refers to IKEv2 protocol {{units}}, and not to {{units}} carried by other SAs. + + + + + + + + + + The total number of inbound {{units}} to this IKEv2 SA discarded for reasons other than decryption or integrity errors. This can include {{units}} dropped due to a lack of receive buffer space. + Note that this refers to IKEv2 protocol {{units}}, and not to {{units}} carried by other SAs. + + + + + + + + + + + This is a transitory table that lists all the IKEv2 Configuration Payload (CP) {{bibref|RFC5996|Section 3.15}} Attributes that have been received via CFG_REPLY messages. Table entries are automatically created to correspond with received Attributes. However, it is a local matter to the CPE when to delete old table entries. + If the same Attribute is received multiple times, it is up to the CPE to decide which entries to include (i.e. whether the same Attribute will be present multiple times). In order to allow for the same Attribute to be present multiple times within the table, this table has no unique key defined. + + + + CP Attribute Type as described in {{bibref|RFC5996|Section 3.15.1}} and defined in {{bibref|IKEv2-params|IKEv2 Configuration Payload Attribute Types}}. + + + + + + + + + + A hexbinary encoded CP Attribute Value as described in {{bibref|RFC5996|Section 3.15.1}} and defined in {{bibref|IKEv2-params|IKEv2 Configuration Payload Attribute Types}}. + + + + + + + + + + + Represents a child Security Association (SA) pair, i.e. an inbound child SA and an outbound child SA. + + + + + + + + + + The current operational state of the child SA pair. + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The inbound child SA's Security Parameter Index (SPI). + + + + + + + + The outbound child SA's Security Parameter Index (SPI). + + + + + + + + The date and time when the child SA was created. + + + + + + + + + Statistics for this child Security Association (SA). + The CPE MUST reset the child SA's Stats parameters (unless otherwise stated in individual object or parameter descriptions) whenever the parent {{object|#}} instance's Stats parameters are reset. + + + + The number of {{units}} handled by the outbound child SA. + + + + + + + + + + The number of {{units}} handled by the inbound child SA. + + + + + + + + + + The number of {{units}} handled by the outbound child SA. + + + + + + + + + + The number of {{units}} handled by the inbound child SA. + + + + + + + + + + The number of {{units}} discarded by the outbound child SA due to any error. This can include compression errors or errors due to a lack of transmit buffers. + + + + + + + + + + The number of {{units}} discarded by the inbound child SA due to decryption errors. + + + + + + + + + + The number of {{units}} discarded by the inbound child SA due to integrity errors. + + + + + + + + + + The number of {{units}} discarded by the inbound child SA due to replay errors. + + + + + + + + + + The number of {{units}} discarded by the inbound child SA due to policy errors. + + + + + + + + + + The number of {{units}} discarded by the inbound child SA due to errors other than decryption, integrity, replay or policy errors. This can include decompression errors or errors due to a lack of receive buffers. + + + + + + + + + + + This object contains parameters associated with the Generic Routing Encapsulation (GRE) Tunnel ({{bibref|RFC2784}}) with Key and Sequence Number extensions ({{bibref|RFC2890}}). This object also provides a means to treat packets that are encapsulated within a GRE Tunnel by using a set of {{object|Filter}} objects to determine the treatment of the packet. + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + GRE Tunnel table, models the GRE Tunnel instance and represents the entry point and exit point of the tunnel in relation to the WAN interface. A {{object}} object has one or more {{object|Interface}} objects that further define the sessions or flows within the tunnel. + + + + + + + Enables or disables the tunnel. + + + + + + + + The current operational state of the tunnel. + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The Fully Qualified Domain Name (FQDN) or IP address of the remote GRE tunnel endpoint. If more than one name/address is supplied, they will be tried in turn, i.e. they are in decreasing order of precedence. + + + + + + + + + + + The mechanism used to keep the tunnel from timing out at the {{param|ConnectedRemoteEndpoint}}. + + + + + + + + + + + + The tunnel keepalive timeout in {{units}}. + + + + + + + + + + + Number of KeepAlive messages unacknowledged by the {{param|ConnectedRemoteEndpoint}} before the {{object}} is perceived failed. + + + + + + + + + The protocol used for the delivery header. + + + + + + + + + + + If the specified entries in the {{object|#.Filter}} table do not match this {{object}} object or an instance of the {{object|Interface}} object for this {{object}} object, then the value of this parameter is applied to the delivery header of the packets in this {{object}}. + + + + + + + + + The Fully Qualified Domain Name (FQDN) name or IP address of the connected remote GRE tunnel endpoint. + + + + + + + + + + {{numentries}} + + + + + + + + + Statistics for this GRE tunnel, i.e. all traffic that has passed through the tunnel. + The device MUST reset the tunnel's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the tunnel becomes operationally down due to a previous administrative down (i.e., Status parameter transitions to a disabled state after the tunnel has been disabled) or when the tunnel becomes administratively up (i.e. the Enable parameter transitioned from {{false}} to {{true}}). + + + + The total number of KeepAlive {{units}} sent out the tunnel. + + + + + + + + + + The total number of KeepAlive {{units}} received by the tunnel. + + + + + + + + + + The total number of {{units}} sent by the tunnel. + + + + + + + + + + The total number of {{units}} received by the tunnel. + + + + + + + + + + The total number of {{units}} sent by the tunnel. + + + + + + + + + + The total number of {{units}} received by the tunnel. + + + + + + + + + + The total number of {{units}} discarded by the tunnel due to any error. This can include packets dropped due to a lack of transmit buffers. + + + + + + + + + + The total number of {{units}} received by the tunnel that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + + + + GRE Interface table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). The {{object}} object models the GRE Header as defined in {{bibref|RFC2784}} and extensions to the GRE Header as defined in {{bibref|RFC2890}}. The {{object}} object provides a way to discriminate how sessions or flows are encapsulated within the GRE Tunnel. In addition the {{object}} object represents the entry point and exit point of the tunnel in relation to the LAN interface. Unless the Key Identifier of {{bibref|RFC2890}} is supported there is only one instance of this {{object}} object per tunnel. + + + + + + + + + + Enables or disables the interface. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + The current operational state of the interface (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the interface as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the interface entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + + + + + + + + + + + + + The Protocol ID assigned to this {{object}}. The Protocol Id is the EtherType value used to identify the encapsulated payload. When set to {{null}} the CPE determines the Protocol Id. + + + + + + + + + When {{true}}, includes the "Checksum" field in the GRE header as defined in {{bibref|RFC2784}}. + + + + + + + + + The method used to generate the Key Identifier extension as defined in.{{bibref|RFC2890}}. + + + + + + + + The generation of the Key field is CPE specific implementation. + + + + + + + + + When the value of {{param|KeyIdentifierGenerationPolicy}} is {{enum|Provisioned|KeyIdentifierGenerationPolicy}} this {{param}} parameter is used to identify an individual traffic flow within a GRE tunnel, as defined in {{bibref|RFC2890}}. + + + + + + + + + When {{true}}, includes the "SequenceNumber" field in the GRE header as defined in {{bibref|RFC2890}} + + + + + + + + + + Statistics for this GRE tunnel interface, i.e. all traffic that has passed through the interface. + The device MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e., the interface's Status parameter transitions to a down state after the interface has been disabled) or when the interface becomes administratively up (i.e. the Enable parameter transitioned from {{false}} to {{true}}). + + + + The total number of {{units}} sent by this interface. + + + + + + + + + + The total number of {{units}} received by this interface. + + + + + + + + + + The total number of {{units}} sent by this interface. + + + + + + + + + + The total number of {{units}} received by this interface. + + + + + + + + + + The total number of {{units}} discarded by this interface due to any error. This can include packets dropped due to a lack of transmit buffers. + + + + + + + + + + The total number of {{units}} received by this interface that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + + + The total number of {{units}} received by the tunnel interface that are discarded because of Checksum errors. + + + + + + + + + + The total number of {{units}} received by the tunnel interface that are discarded because of Sequence Number errors. + + + + + + + + + + + GRE Filter table. Entries in this table are applied against the packets that are to be encapsulated within the GRE Tunnel based on the following conditions: + * If the value of the {{param|AllInterfaces}} is {{true}}, then this entry will be applied to all {{object|#.Tunnel}} and {{object|#.Tunnel.{i}.Interface}} instances. + * If the value of {{param|AllInterfaces}} is {{false}} and the value of {{param|Interface}} parameter is a reference to a row in the {{object|#.Tunnel}} table then this entry is applied to all {{object|#.Tunnel.{i}.Interface}} instances of the {{object|#.Tunnel}} reference. + * If the value of {{param|AllInterfaces}} is {{false}} and the value of {{param|Interface}} parameter is a reference to a row in the {{object|#.Tunnel.{i}.Interface}} table then this entry is applied to the {{object|#.Tunnel.{i}.Interface}} reference. + * If no entries are matched for the packet, then the default treatment (e.g., {{param|#.Tunnel.{i}.DefaultDSCPMark}}) is applied to the packet. + For enabled table entries, if {{param|Interface}} is not a valid reference and {{param|AllInterfaces}} is {{false}}, then the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + + + + + + + Enables or disables this filter. + + + + + + + + + The status of this filter. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + Position of the {{object}} entry in the order of precedence. A value of ''1'' indicates the first entry considered (highest precedence). For each packet, the highest ordered entry that matches the filter criteria is applied. All lower order entries are ignored. + When this value is modified, if the value matches that of an existing entry, the {{param}} value for the existing entry and all lower {{param}} entries is incremented (lowered in precedence) to ensure uniqueness of this value. A deletion causes {{param}} values to be compacted. When a value is changed, incrementing occurs before compaction. + The value of {{param}} on creation of a {{object}} table entry MUST be one greater than the largest current value (initially assigned the lowest precedence). + + + + + + + + + + {{datatype|expand}} + + + + + + + + Filter criterion. {{reference}} + + + + + + + + + + + + Filter criterion. This specifies that all ingress GRE tunnel interfaces are associated with the entry. If {{true}}, the value of {{param|Interface}} is ignored since all ingress GRE tunnel interfaces are indicated. + + + + + + + + + Filter criterion. + Current outer Ethernet VLAN ID as defined in 802.1Q. A value of -1 indicates this criterion is not used for filtering. + + + + + + + + + + + If {{false}}, the filter includes only those packets that match the {{param|VLANIDCheck}} entry, if specified. + If {{true}}, the filter includes all packets except those that match the {{param|VLANIDCheck}} entry, if specified. + + + + + + + + + DSCP with which to mark the outer IP header for traffic that is associated with the interface criterion. + Automatic DSCP marking behavior is a local matter to the device, possibly influenced by other Broadband Forum standards that it supports. + * A value of -1 indicates copy from the upstream packet. + * A value of -2 indicates automatic marking of DSCP. + + + + + + + + + + + This object contains parameters associated with the configuration and monitoring of stateless tunnels using the Layer Two Tunneling Protocol version 3 (L2TPv3) ({{bibref|RFC3931}}). + This object also provides a means to treat packets that are encapsulated within a L2TPv3 Tunnel by using a set of {{object|Filter}} objects to determine the treatment of the packet. + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + L2TPv3 Tunnel table, models the L2TPv3 Tunnel instance and represents the entry point and exit point of the tunnel in relation to the WAN interface. + A {{object}} object has one or more {{object|Interface}} objects that further define the sessions or flows within the tunnel. + + + + + + + Enables or disables the tunnel. + + + + + + + + The current operational state of the tunnel. + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The Fully Qualified Domain Name (FQDN) or IP address of the remote L2TPv3 tunnel endpoint. + If more than one name/address is supplied, they will be tried in turn, i.e. they are in decreasing order of precedence. + + + + + + + + + + + The mechanism used to keep the tunnel from timing out at the {{param|ConnectedRemoteEndpoint}}. + + + + + + The version of the ICMP packet used for this {{param}} is based on the value of the {{param|DeliveryHeaderProtocol}} parameter (Either ICMP for IPv4 or ICMPv6 for IPv6). + + + + + + + + + + The tunnel keepalive timeout in {{units}}. + + + + + + + + + + + Number of KeepAlive messages unacknowledged by the {{param|ConnectedRemoteEndpoint}} before the {{object}} is perceived failed. + + + + + + + + + The protocol used for the delivery header. + + + + + + + + + + + If the specified entries in the {{object|#.Filter}} table do not match this {{object}} object or an instance of the {{object|Interface}} object for this {{object}} object, then the value of this parameter is applied to the delivery header of the packets in this {{object}}. + + + + + + + + + The protocol that this {{object}} will be encapsulated + + + + + + + + + + + + The Fully Qualified Domain Name (FQDN) name or IP address of the connected remote L2TPv3 tunnel endpoint. + + + + + + + + + + {{numentries}} + + + + + + + + + This {{object}} provides the parameters when the value of the {{param|##.Tunnel.{i}.TunnelEncapsulation}} parameter is {{enum|UDP|##.Tunnel.{i}.TunnelEncapsulation}}. + + + + The source (local) port used to transmit PDUs. A value of 0 indicates that the port selection is performed by the device. + + + + + + + + + + + The remote port used to by the remote endpoint to transmit PDUs. + + + + + + + + + + + Enables or disables checksum processing. + + + + + + + + + + Statistics for this L2TPv3 tunnel, i.e. all traffic that has passed through the tunnel. + The device MUST reset the tunnel's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the tunnel becomes operationally down due to a previous administrative down (i.e., Status parameter transitions to a disabled state after the tunnel has been disabled) or when the tunnel becomes administratively up (i.e. the Enable parameter transitioned from {{false}} to {{true}}). + + + + The total number of KeepAlive {{units}} sent out the tunnel. + + + + + + + + + + The total number of KeepAlive {{units}} received by the tunnel. + + + + + + + + + + The total number of {{units}} sent by the tunnel. + + + + + + + + + + The total number of {{units}} received by the tunnel. + + + + + + + + + + The total number of {{units}} sent by the tunnel. + + + + + + + + + + The total number of {{units}} received by the tunnel. + + + + + + + + + + The total number of {{units}} discarded by the tunnel due to any error. This can include packets dropped due to a lack of transmit buffers. + + + + + + + + + + The total number of {{units}} received by the tunnel that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + + + + L2TPv3 Interface table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). + The {{object}} object models the L2TPv3 Header as defined in {{bibref|RFC3931}} and the transport of L2 frames across over L2TPv3 as defined in {{bibref|RFC4719}}. + The {{object}} object provides a way to discriminate how sessions or flows are encapsulated within the L2TPv3 Tunnel. + In addition the {{object}} object represents the entry point and exit point of the tunnel in relation to the LAN interface. + + + + + + + + + + Enables or disables the interface. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + The current operational state of the interface (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the interface as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the interface entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + + + + + + + + + + + + + The unique Session ID to be used in the L2TPv3 header of the tunnel. + A Session ID with a value of -1 indicates that he CPE is to generate the session ids for this {{object}} instance. + + + + + + + + + + + + The policy that defines how the Cookie is handled in this {{object}} instance. + + + + + + The device does not perform Cooking processing. + + + + + The value of the {{param|Cookie}} parameter is transmitted in the L2TPv3 header. + + + + + The device generates the value of the Cookie transmitted in the L2TPv3 header. + + + + + + + + + The Cookie transmitted in the L2TPv3 header. The default is to set the Cookie to the device's MAC address that is encoded in the low order 6 bytes. + + + + + + + + + Statistics for this L2TPv3 tunnel interface, i.e. all traffic that has passed through the interface. + The device MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e., the interface's Status parameter transitions to a down state after the interface has been disabled) or when the interface becomes administratively up (i.e. the Enable parameter transitioned from {{false}} to {{true}}). + + + + The total number of {{units}} sent by this interface. + + + + + + + + + + The total number of {{units}} received by this interface. + + + + + + + + + + The total number of {{units}} sent by this interface. + + + + + + + + + + The total number of {{units}} received by this interface. + + + + + + + + + + The total number of {{units}} discarded by this interface due to any error. This can include packets dropped due to a lack of transmit buffers. + + + + + + + + + + The total number of {{units}} received by this interface that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + + + The total number of {{units}} received by the tunnel interface that are discarded because of Checksum errors. + + + + + + + + + + The total number of {{units}} received by the tunnel interface that are discarded because of Sequence Number errors. + + + + + + + + + + + L2TPv3 Filter table. Entries in this table are applied against the packets that are to be encapsulated within the L2TPv3 Tunnel based on the following conditions: + * If the value of the {{param|AllInterfaces}} is {{true}}, then this entry will be applied to all {{object|#.Tunnel}} and {{object|#.Tunnel.{i}.Interface}} instances. + * If the value of {{param|AllInterfaces}} is {{false}} and the value of {{param|Interface}} parameter is a reference to a row in the {{object|#.Tunnel}} table then this entry is applied to all {{object|#.Tunnel.{i}.Interface}} instances of the {{object|#.Tunnel}} reference. + * If the value of {{param|AllInterfaces}} is {{false}} and the value of {{param|Interface}} parameter is a reference to a row in the {{object|#.Tunnel.{i}.Interface}} table then this entry is applied to the {{object|#.Tunnel.{i}.Interface}} reference. + * If no entries are matched for the packet, then the default treatment (e.g., {{param|#.Tunnel.{i}.DefaultDSCPMark}}) is applied to the packet. + For enabled table entries, if {{param|Interface}} is not a valid reference and {{param|AllInterfaces}} is {{false}}, then the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + + + + + + + Enables or disables this filter. + + + + + + + + + The status of this filter. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + Position of the {{object}} entry in the order of precedence. A value of ''1'' indicates the first entry considered (highest precedence). For each packet, the highest ordered entry that matches the filter criteria is applied. All lower order entries are ignored. + When this value is modified, if the value matches that of an existing entry, the {{param}} value for the existing entry and all lower {{param}} entries is incremented (lowered in precedence) to ensure uniqueness of this value. A deletion causes {{param}} values to be compacted. When a value is changed, incrementing occurs before compaction. + The value of {{param}} on creation of a {{object}} table entry MUST be one greater than the largest current value (initially assigned the lowest precedence). + + + + + + + + + + {{datatype|expand}} + + + + + + + + Filter criterion. {{reference}} + + + + + + + + + + + + Filter criterion. This specifies that all ingress L2TPv3 tunnel interfaces are associated with the entry. If {{true}}, the value of {{param|Interface}} is ignored since all ingress L2TPv3 tunnel interfaces are indicated. + + + + + + + + + Filter criterion. + Current outer Ethernet VLAN ID as defined in 802.1Q. A value of -1 indicates this criterion is not used for filtering. + + + + + + + + + + + If {{false}}, the filter includes only those packets that match the {{param|VLANIDCheck}} entry, if specified. + If {{true}}, the filter includes all packets except those that match the {{param|VLANIDCheck}} entry, if specified. + + + + + + + + + DSCP with which to mark the outer IP header for traffic that is associated with the interface criterion. + Automatic DSCP marking behavior is a local matter to the device, possibly influenced by other Broadband Forum standards that it supports. + * A value of -1 indicates copy from the upstream packet. + * A value of -2 indicates automatic marking of DSCP. + + + + + + + + + + + This object contains parameters associated with the configuration and monitoring of stateless tunnels using the Virtual eXtensible Local Area Network (VXLAN) ({{bibref|RFC7348}}). + This object also provides a means to treat packets that are encapsulated within a VXLAN Tunnel by using a set of {{object|Filter}} objects to determine the treatment of the packet. + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + VXLAN Tunnel table, models the VXLAN Tunnel instance and represents the entry point and exit point of the tunnel in relation to the WAN interface. + A {{object}} object has one or more {{object|Interface}} objects that further define the sessions or flows within the tunnel. + + + + + + + Enables or disables the tunnel. + + + + + + + + The current operational state of the tunnel. + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The Fully Qualified Domain Name (FQDN) or IP address of the remote VXLAN tunnel endpoint. + If more than one name/address is supplied, they will be tried in turn, i.e. they are in decreasing order of precedence. + + + + + + + + + + + The mechanism used to keep the tunnel from timing out at the {{param|ConnectedRemoteEndpoint}}. + + + + + + The version of the ICMP packet used for this {{param}} is based on the value of the {{param|DeliveryHeaderProtocol}} parameter (Either ICMP for IPv4 or ICMPv6 for IPv6). + + + + + + + + + + The tunnel keepalive timeout in {{units}}. + + + + + + + + + + + Number of KeepAlive messages unacknowledged by the {{param|ConnectedRemoteEndpoint}} before the {{object}} is perceived failed. + + + + + + + + + The protocol used for the delivery header. + + + + + + + + + + + If the specified entries in the {{object|#.Filter}} table do not match this {{object}} object or an instance of the {{object|Interface}} object for this {{object}} object, then the value of this parameter is applied to the delivery header of the packets in this {{object}}. + + + + + + + + + The Fully Qualified Domain Name (FQDN) name or IP address of the connected remote VXLAN tunnel endpoint. + + + + + + + + + + {{numentries}} + + + + + + + + The source (local) port used to transmit PDUs. A value of 0 indicates that the port selection is performed by the device. In such case, it is recommended that the UDP source port number be calculated using a hash of fields from the inner packet and that it is in the dynamic/private port range 49152-65535. + + + + + + + + + + + The remote port used to by the remote endpoint to transmit PDUs. The well-known port allocated by IANA is 4789, but it should be configurable. + + + + + + + + + + + + Statistics for this VXLAN tunnel, i.e. all traffic that has passed through the tunnel. + The device MUST reset the tunnel's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the tunnel becomes operationally down due to a previous administrative down (i.e., Status parameter transitions to a disabled state after the tunnel has been disabled) or when the tunnel becomes administratively up (i.e. the Enable parameter transitioned from {{false}} to {{true}}). + + + + The total number of KeepAlive {{units}} sent out the tunnel. + + + + + + + + + + The total number of KeepAlive {{units}} received by the tunnel. + + + + + + + + + + The total number of {{units}} sent by the tunnel. + + + + + + + + + + The total number of {{units}} received by the tunnel. + + + + + + + + + + The total number of {{units}} sent by the tunnel. + + + + + + + + + + The total number of {{units}} received by the tunnel. + + + + + + + + + + The total number of {{units}} discarded by the tunnel due to any error. This can include packets dropped due to a lack of transmit buffers. + + + + + + + + + + The total number of {{units}} received by the tunnel that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + + + + VXLAN Interface table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). + The {{object}} object models the VXLAN Header as defined in {{bibref|RFC7348}} for the transport of L2 frames across over VXLAN. + The {{object}} object provides a way to discriminate how multiple LAN segments are encapsulated within the VXLAN Tunnel. + In addition the {{object}} object represents the entry point and exit point of the tunnel in relation to the LAN interface. + + + + + + + + + + Enables or disables the interface. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + The current operational state of the interface (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the interface as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the interface entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + + + + + + + + + + + + + The unique Virtual Network Identifier (VNI) to be used in the VXLAN header of the tunnel. + A VNI with a value of -1 indicates that the CPE is to generate the VNI for this {{object}} instance. + + + + + + + + + + + + + Statistics for this VXLAN tunnel interface, i.e. all traffic that has passed through the interface. + The device MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e., the interface's Status parameter transitions to a down state after the interface has been disabled) or when the interface becomes administratively up (i.e. the Enable parameter transitioned from {{false}} to {{true}}). + + + + The total number of {{units}} sent by this interface. + + + + + + + + + + The total number of {{units}} received by this interface. + + + + + + + + + + The total number of {{units}} sent by this interface. + + + + + + + + + + The total number of {{units}} received by this interface. + + + + + + + + + + The total number of {{units}} discarded by this interface due to any error. This can include packets dropped due to a lack of transmit buffers. + + + + + + + + + + The total number of {{units}} received by this interface that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + + + The total number of {{units}} received by the tunnel interface that are discarded because of Checksum errors. + + + + + + + + + + The total number of {{units}} received by the tunnel interface that are discarded because of Sequence Number errors. + + + + + + + + + + + VXLAN Filter table. Entries in this table are applied against the packets that are to be encapsulated within the VXLAN Tunnel based on the following conditions: + * If the value of the {{param|AllInterfaces}} is {{true}}, then this entry will be applied to all {{object|#.Tunnel}} and {{object|#.Tunnel.{i}.Interface}} instances. + * If the value of {{param|AllInterfaces}} is {{false}} and the value of {{param|Interface}} parameter is a reference to a row in the {{object|#.Tunnel}} table then this entry is applied to all {{object|#.Tunnel.{i}.Interface}} instances of the {{object|#.Tunnel}} reference. + * If the value of {{param|AllInterfaces}} is {{false}} and the value of {{param|Interface}} parameter is a reference to a row in the {{object|#.Tunnel.{i}.Interface}} table then this entry is applied to the {{object|#.Tunnel.{i}.Interface}} reference. + * If no entries are matched for the packet, then the default treatment (e.g., {{param|#.Tunnel.{i}.DefaultDSCPMark}}) is applied to the packet. + For enabled table entries, if {{param|Interface}} is not a valid reference and {{param|AllInterfaces}} is {{false}}, then the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + + + + + + + Enables or disables this filter. + + + + + + + + + The status of this filter. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + Position of the {{object}} entry in the order of precedence. A value of ''1'' indicates the first entry considered (highest precedence). For each packet, the highest ordered entry that matches the filter criteria is applied. All lower order entries are ignored. + When this value is modified, if the value matches that of an existing entry, the {{param}} value for the existing entry and all lower {{param}} entries is incremented (lowered in precedence) to ensure uniqueness of this value. A deletion causes {{param}} values to be compacted. When a value is changed, incrementing occurs before compaction. + The value of {{param}} on creation of a {{object}} table entry MUST be one greater than the largest current value (initially assigned the lowest precedence). + + + + + + + + + + {{datatype|expand}} + + + + + + + + Filter criterion. {{reference}} + + + + + + + + + + + + Filter criterion. This specifies that all ingress VXLAN tunnel interfaces are associated with the entry. If {{true}}, the value of {{param|Interface}} is ignored since all ingress VXLAN tunnel interfaces are indicated. + + + + + + + + + Filter criterion. + Current outer Ethernet VLAN ID as defined in 802.1Q. A value of -1 indicates this criterion is not used for filtering. + + + + + + + + + + + If {{false}}, the filter includes only those packets that match the {{param|VLANIDCheck}} entry, if specified. + If {{true}}, the filter includes all packets except those that match the {{param|VLANIDCheck}} entry, if specified. + + + + + + + + + DSCP with which to mark the outer IP header for traffic that is associated with the interface criterion. + Automatic DSCP marking behavior is a local matter to the device, possibly influenced by other Broadband Forum standards that it supports. + * A value of -1 indicates copy from the upstream packet. + * A value of -2 indicates automatic marking of DSCP. + + + + + + + + + + + The Mapping of Address and Port (MAP) object {{bibref|RFC7597}} {{bibref|RFC7599}} {{bibref|RFC7598}}. This object applies only to gateway devices that support IPv4 on the LAN side, include a {{object|#.NAT}}, and typically have only IPv6 connectivity on the WAN side. + See the MAP Theory of Operation {{bibref|TR-181i2|Appendix XV}} for a description of the working of this MAP data model. + + + + Enables or disables MAP. + + + + + + + + {{numentries}} + + + + + + + + + MAP domain settings {{bibref|RFC7597}} {{bibref|RFC7599}}. Each instance models a MAP domain. + MAP supports two transport modes, both of which use NAPT44 (modified to use a restricted port range): + * MAP-E ({{param|TransportMode}} = {{enum|Encapsulation|TransportMode}}) uses an IPv4-in-IPv6 tunnel. + * MAP-T ({{param|TransportMode}} = {{enum|Translation|TransportMode}}) uses stateless NAT64. + Note: There is an n:1 relationship between a MAP domain and the associated {{param|WANInterface}}, i.e. in theory multiple MAP domains can be associated with a single WAN IP interface (each domain would have its own ''End-user IPv6 prefix'' and ''MAP IPv6 address''). + Note: The {{object}} table includes unique key parameters that are strong references. If a strongly referenced object is deleted, the CPE will set the referencing parameter to {{empty}}. However, doing so under these circumstances might cause the updated {{object}} row to then violate the table's unique key constraint; if this occurs, the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}} and disable the offending {{object}} row. + + + + + + + + + + + Enables or disables the MAP domain. + + + + + + + + + The current operational state of the MAP domain. + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The transport mode to use. + Corresponds to the {{bibref|RFC7598}} ''S46_CONT_MAPE'' and ''S46_CONT_MAPT'' container options. + + + + + + MAP-E {{bibref|RFC7597}} + + + + + MAP-T {{bibref|RFC7599}} + + + + + + + + + The IP interface with which this MAP domain is associated. This will always be a NAT-ted upstream (WAN) interface. + The ''End-user IPv6 prefix'' {{param|IPv6Prefix}} is one of this IP interface's prefixes. + The ''MAP IPv6 address'' is derived from the ''End-user IPv6 prefix'' and is one of this IP interface's IP addresses, with an {{param|##.IP.Interface.{i}.IPv6Address.{i}.Origin}} of {{enum|MAP|##.IP.Interface.{i}.IPv6Address.{i}.Origin}}. + + + + + + + + + + The MAP domain's ''End-user IPv6 prefix''. This MUST reference one of {{param|WANInterface}}'s prefixes. + If the Controller configures this prefix directly, the CPE MUST use the Controller-configured prefix. Otherwise, the CPE MUST select one of {{param|WANInterface}}'s prefixes; the selected prefix will typically have {{param|##.IP.Interface.{i}.IPv6Prefix.{i}.Origin}} = {{enum|PrefixDelegation|##.IP.Interface.{i}.IPv6Prefix.{i}.Origin}}. + + + + + + + + + + The MAP Border Relay (BR) address or prefix. + * For MAP-E this is the BR address and therefore MUST be a /128 {{bibref|RFC7597}}. Note this address can be an IPv6 anycast address. This address corresponds to the {{bibref|RFC7598}} ''OPTION_S46_BR'' (Border Relay) option. + * For MAP-T this is the BR prefix {{bibref|RFC7599}}. This address prefix corresponds to the {{bibref|RFC7598}} ''OPTION_S46_DMR'' (Default Mapping Rule) option. + Note: There will be a corresponding {{object|.Routing.Router.{i}.IPv4Forwarding}} default rule. + + + + + + + + DSCP with which to mark the outer IP header for traffic that is associated with this MAP domain. + Downstream packets are never re-marked. + Automatic DSCP marking behavior is a local matter to the device, possibly influenced by other Broadband Forum standards that it supports. + * A value of -1 indicates copy from the incoming packet. + * A value of -2 indicates automatic marking of DSCP. + + + + + + + + + + ''Port-set ID'' (PSID) offset in {{units}}. The number of Port-sets is 2^{{param}}. + Corresponds to the {{bibref|RFC7598}} ''S46_PORTPARAMS'' (Port Parameters) option's ''offset'' field. + This parameter was DEPRECATED because details changed between drafting this data model and the RFC being published. This parameter has been moved to the proper location within the {{object|Rule.{i}.}} object. + This parameter is OBSOLETED in 2.14. + + + + + + + + + + + + The length in {{units}} of the ''Port-set id'' (PSID) configured in the {{param|PSID}} parameter. + Corresponds to the {{bibref|RFC7598}} ''S46_PORTPARAMS'' (Port Parameters) option's ''PSID-len'' field. + This parameter was DEPRECATED because details changed between drafting this data model and the RFC being published. This parameter has been moved to the proper location within the {{object|Rule.{i}.}} object. + This parameter is OBSOLETED in 2.14. + + + + + + + + + + + + ''Port-set ID'' (PSID) to use in preference to the value extracted from the ''Embedded Address'' (EA) bits. + Only the high order {{param|PSIDLength}} bits of the {{param}} value are used, so the parameter is ignored when {{param|PSIDLength}} is zero. + Corresponds to the {{bibref|RFC7598}} ''S46_PORTPARAMS'' (Port Parameters) option's ''PSID'' field. + This parameter was DEPRECATED because details changed between drafting this data model and the RFC being published. This parameter has been moved to the proper location within the {{object|Rule.{i}.}} object. + This parameter is OBSOLETED in 2.14. + + + + + + + + + + + Whether to include low-numbered (system) ports in the Port-sets. Normally ports in the range [0:2^(16-{{param|PSIDOffset}})-1] are excluded, e.g. for the default {{param|PSIDOffset}} value of 4, ports [0:4095] are not included in the Port-sets. + This parameter is related to {{bibref|RFC7597}}'s ''N'', which is defined as ''the number of ports (e.g., 1024) excluded from the lower end of the range''. The parameter is relevant only when {{param|PSIDOffset}} is 0; {{false}} corresponds to ''N=1024'' and {{true}} corresponds to ''N=0''. + + + + + + + + + {{numentries}} + + + + + + + + + The MAP domain's Mapping Rules {{bibref|RFC7597}}. The rule with the longest match between its {{param|IPv6Prefix}} and the end-user {{param|#.IPv6Prefix}} is the Basic Mapping Rule (BMR). Any of the rules (including the BMR) can be a Forwarding Mapping Rule. + + + + + + + + + + + + + Enable or disable this {{object}} instance. + + + + + + + + + The status of this {{object}} instance. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The mechanism via which the {{object}} was created. + If the CPE supports MAP configuration via both DHCPv6 and CWMP, it is up to the implementation to determine how the two mechanisms will interact. + + + + + + Created via a {{bibref|RFC7598}} ''S46_RULE'' option. + + + + + Present in the factory default configuration, created by the Controller, or created by some other management entity (e.g. via a GUI) + + + + + + + + + The ''Rule IPv6 prefix''. + The Rule IPv6 prefix is a leading part of the end-user {{param|#.IPv6Prefix}}, i.e. its length MUST be less than or equal to the length of the end-user ''IPv6Prefix'', and it MUST match the end-user ''IPv6Prefix''. + Corresponds to the {{bibref|RFC7598}} ''S46_RULE'' option's ''ipv6-prefix'' field. + + + + + + + + + The ''Rule IPv4 prefix''. + Corresponds to the {{bibref|RFC7598}} ''S46_RULE'' option's ''ipv4-prefix'' field. + + + + + + + + + The length in {{units}} of the ''Embedded Address (EA) bits'' in the end-user {{param|#.IPv6Prefix}}. + Corresponds to the {{bibref|RFC7598}} ''S46_RULE'' option's ''ea-len'' field. + + + + + + + + + + + + Indicates whether this rule is a ''Forwarding Mapping Rule'' (FMR), i.e. can be used for forwarding. + Corresponds to the {{bibref|RFC7598}} ''S46_RULE'' option's ''flags'' field's ''F-Flag''. + + + + + + + + + ''Port-set ID'' (PSID) offset in {{units}}. The number of Port-sets is 2^{{param}}. + Corresponds to the {{bibref|RFC7598}} ''S46_PORTPARAMS'' (Port Parameters) option's ''offset'' field. + + + + + + + + + + + + The length in {{units}} of the ''Port-set id'' (PSID) configured in the {{param|PSID}} parameter. + Corresponds to the {{bibref|RFC7598}} ''S46_PORTPARAMS'' (Port Parameters) option's ''PSID-len'' field. + + + + + + + + + + + + ''Port-set ID'' (PSID) to use in preference to the value extracted from the ''Embedded Address'' (EA) bits. + Only the high order {{param|PSIDLength}} bits of the {{param}} value are used, so the parameter is ignored when {{param|PSIDLength}} is zero. + Corresponds to the {{bibref|RFC7598}} ''S46_PORTPARAMS'' (Port Parameters) option's ''PSID'' field. + + + + + + + + + + + + MAP interface (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). This models the LAN side MAP domain interface. + + + + Enables or disables the interface. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + + The current operational state of the interface (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the interface as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the interface entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + Note: Since this interface object is a MAP domain interface, it is expected that {{param}} will not be used. + + + + + + + + + + + + + + Throughput statistics for this MAP domain interface. + The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + The total number of bytes transmitted out of the interface, including framing characters. + + + + + + + + The total number of bytes received on the interface, including framing characters. + + + + + + + + The total number of packets transmitted out of the interface. + + + + + + + + The total number of packets received on the interface. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of packets requested for transmission which were not addressed to a multicast or broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were not addressed to a multicast or broadcast address at this layer. + + + + + + + + The total number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a multicast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a multicast address at this layer. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a broadcast address at this layer, including those that were discarded or not sent. + Note that IPv6 does not define broadcast addresses, so IPv6 packets will never cause this counter to increment. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a broadcast address at this layer. + Note that IPv6 does not define broadcast addresses, so IPv6 packets will never cause this counter to increment. + + + + + + + + The total number of packets received via the interface which were discarded because of an unknown or unsupported protocol. + + + + + + + + + This object contains parameters relating to the captive portal configuration on the CPE. + The captive portal configuration defines the CPE's upstream HTTP (port 80) traffic redirect behavior. + When the captive portal is disabled, upstream HTTP (port 80) traffic MUST be permitted to all destinations. + When the captive portal is enabled, upstream HTTP (port 80) traffic MUST be permitted only to destinations listed in the {{param|AllowedList}}; traffic to all other destinations MUST be redirected to the {{param|URL}}. + + + + Enables or disables the captive portal. + + + + + + + + Indicates the status of the captive portal. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + {{param|URL}} is {{empty}} + + + + + + + + + {{list}} List items represent IP addresses to which HTTP (port 80) traffic MUST always be permitted, regardless of whether the captive portal is enabled. + Each entry in the list MUST be either an IP address, or an IP prefix specified using Classless Inter-Domain Routing (CIDR) notation {{bibref|RFC4632}}. + An IP prefix is specified as an IP address followed (with no intervening white space) by "/n", where ''n'' (the prefix size) is an integer in the range 0-32 (for IPv4) or 0-128 (for IPv6) that indicates the number of (leftmost) '1' bits of the prefix. + IPv4 example: + * 1.2.3.4 specifies a single IPv4 address, and 1.2.3.4/24 specifies a class C subnet with subnet mask 255.255.255.0. + * 1.2.0.0/22 represents the 1024 IPv4 addresses from 1.2.0.0 to 1.2.3.255. + IPv6 example: + * fec0::220:edff:fe6a:f76 specifies a single IPv6 address. + * 2001:edff:fe6a:f76::/64 represents the IPv6 addresses from 2001:edff:fe6a:f76:0:0:0:0 to 2001:edff:fe6a:f76:ffff:ffff:ffff:ffff. + + + + + + + + + + + Captive portal {{datatype}} to which upstream HTTP (port 80) traffic to destinations not listed in the {{param|AllowedList}} will be redirected. + The captive portal URL MUST be an HTTP (not HTTPS) URL. + The CPE MUST permit the captive portal URL to be set to {{empty}}, which has the effect of disabling the captive portal (if {{param|Enable}} is {{true}} and the captive portal URL is {{empty}}, {{param|Status}} MUST be {{enum|Error_URLEmpty|Status}}). + + + + + + + + + Routing object that contains the {{object|Router}} table and {{object|RIP}} protocol object. + + + + {{numentries}} + + + + + + + + + This object allows the handling of the routing and forwarding configuration of the device. + + + + + + + Enables or disables this ''Router'' entry. + + + + + + + + + The status of this ''Router'' entry. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + Layer 3 IPv4 forwarding table. + In addition to statically configured routes, this table MUST include dynamic routes learned through layer 3 routing protocols, including RIP (i.e. RIP version 2), OSPF, DHCPv4, and IPCP. The CPE MAY reject attempts to delete or modify a dynamic route entry. + For each incoming packet, the layer 3 forwarding decision is conceptually made as follows: + * Only enabled table entries with a matching {{param|ForwardingPolicy}} are considered, i.e. those that either do not specify a {{param|ForwardingPolicy}}, or else specify a {{param|ForwardingPolicy}} that matches that of the incoming packet. + * Next, table entries that also have a matching destination address/mask are considered, and the matching entry with the longest prefix is applied to the packet (i.e. the entry with the most specific network). An unspecified destination address is a wild-card and always matches, but with a prefix length of zero. + For enabled table entries, if {{param|Interface}} is not a valid reference to an IPv4-capable interface (that is attached to the IPv4 stack), then the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + Note: The {{object}} table includes a unique key parameter that is a strong reference. If a strongly referenced object is deleted, the CPE will set the referencing parameter to {{empty}}. However, doing so under these circumstances might cause the updated {{object}} row to then violate the table's unique key constraint; if this occurs, the CPE MUST disable the offending {{object}} row. + + + + + + + + + + + + + + + Enables or disables the forwarding entry. On creation, an entry is disabled by default. + + + + + + + + + Indicates the status of the forwarding entry. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + If {{true}}, this route is a Static route. + + + + + + + + + Destination IPv4 address. {{empty}} indicates no destination address is specified. + A Forwarding table entry for which {{param}} and {{param|DestSubnetMask}} are both {{empty}} is a default route. + + + + + + + + + Destination subnet mask. {{empty}} indicates no destination subnet mask is specified. + If a destination subnet mask is specified, the {{param}} is ANDed with the destination address before comparing with the {{param|DestIPAddress}}. Otherwise, the full destination address is used as is. + A Forwarding table entry for which {{param|DestIPAddress}} and {{param}} are both {{empty}} is a default route. + + + + + + + + + Identifier of a set of classes or flows that have the corresponding {{param}} value as defined in the {{object|Device.QoS}} object. + A value of -1 indicates no {{param}} is specified. + If specified, this forwarding entry is to apply only to traffic associated with the specified classes and flows. + + + + + + + + + + + IPv4 address of the gateway. + Only one of {{param}} and Interface SHOULD be configured for a route. + If both are configured, {{param}} and {{param|Interface}} MUST be consistent with each other. + + + + + + + + + {{reference}} Specifies the egress layer 3 interface associated with this entry. Example: Device.IP.Interface.1. + Only one of {{param|GatewayIPAddress}} and {{param}} SHOULD be configured for a route. + If both are configured, {{param|GatewayIPAddress}} and {{param}} MUST be consistent with each other. + For a route that was configured by setting {{param|GatewayIPAddress}} but not {{param}}, read access to {{param}} MUST return the full hierarchical parameter name for the routes egress interface. + + + + + + + + + + + + Protocol via which the IPv4 forwarding rule was learned. {{enum}} + + + + + + + + + + For example, present in the factory default configuration, created by the Controller, or created by some other management entity (e.g. via a GUI). + + + + + + + + + Forwarding metric. A value of -1 indicates this metric is not used. + + + + + + + + + + + + Layer 3 IPv6 forwarding table. + In addition to statically configured routes, this table MUST include dynamic routes learned through layer 3 routing protocols, including RIPng, OSPF, DHCPv6, and RA. The CPE MAY reject attempts to delete or modify a dynamic route entry. + For each incoming packet, the layer 3 forwarding decision is conceptually made as follows: + * Only enabled table entries with a matching {{param|ForwardingPolicy}} are considered, i.e. those that either do not specify a {{param|ForwardingPolicy}}, or else specify a {{param|ForwardingPolicy}} that matches that of the incoming packet. + * Next, table entries that also have a matching destination prefix are considered, and the matching entry with the longest prefix length is applied to the packet (i.e. the entry with the most specific network). An unspecified destination address is a wild-card and always matches, but with a prefix length of zero. + For enabled table entries, if {{param|Interface}} is not a valid reference to an IPv6-capable interface (that is attached to the IPv6 stack), then the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + This object is based on ''inetCidrRouteTable'' from {{bibref|RFC4292}}. + + + + + + + + + + + + + + Enables or disables this {{object}} entry. + + + + + + + + + Indicates the status of the forwarding entry. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Destination IPv6 prefix. {{empty}} indicates that it matches all destination prefixes (i.e. equivalent to "::/0"). All bits to the right of the prefix MUST be zero, e.g. 2001:edff:fe6a:f76::/64. + Routes with a 128-bit prefix length (/128) are host routes for a specific IPv6 destination, e.g. 2001:db8:28:2:713e:a426:d167:37ab/128. + + + + + + + + + Identifier of a set of classes or flows that have the corresponding {{param}} value as defined in the {{object|.QoS}} object. + A value of -1 indicates no {{param}} is specified. + If specified, this forwarding entry is to apply only to traffic associated with the specified classes and flows. + + + + + + + + + + + IPv6 address of the next hop. + Only one of {{param}} and {{param|Interface}} SHOULD be configured for a route. {{empty}} indicates no {{param}} is specified. + If both are configured, {{param}} and {{param|Interface}} MUST be consistent with each other. + + + + + + + + + {{reference}} Specifies the egress layer 3 interface associated with this entry. Example: ''Device.IP.Interface.1''. + Only one of {{param|NextHop}} and {{param}} SHOULD be configured for a route. {{empty}} indicates no {{param}} is specified. + If both are configured, {{param|NextHop}} and {{param}} MUST be consistent with each other. + For a route that was configured by setting {{param|NextHop}} but not {{param}}, read access to {{param}} MUST return the full hierarchical parameter name for the route's egress interface. + + + + + + + + + + + + Protocol via which the IPv6 forwarding rule was learned. {{enum}} + + + + + + + + Router Advertisement Route Information Option {{bibref|RFC4191}}. + + + + + RIPng for IPv6 {{bibref|RFC2080}} + + + + + For example, present in the factory default configuration, created by the Controller, or created by some other management entity (e.g. via a GUI). + + + + + + + + + Forwarding metric. A value of -1 indicates this metric is not used. + + + + + + + + + + + The time at which the route will expire, or {{null}} if not known. For an infinite lifetime, the parameter value MUST be 9999-12-31T23:59:59Z. + {{param}} is provided by an underlying dynamic routing protocol, e.g. by an {{bibref|RFC4191}} route information option. + + + + + + + + + + Routing Information Protocol (RIP) object. + + + + Enables or disables RIP on the device. + + + + + + + + The supported RIP protocol modes. {{enum}} + + + + + + + + + + + + {{numentries}} + + + + + + + + + IP Interface RIP configuration table. + For enabled table entries, if {{param|Interface}} is not a valid reference then the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + Note: The {{object}} table includes a unique key parameter that is a strong reference. If a strongly referenced object is deleted, the CPE will set the referencing parameter to {{empty}}. However, doing so under these circumstances might cause the updated {{object}} row to then violate the table's unique key constraint; if this occurs, the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}} and disable the offending {{object}} row. + Note: This object only applies to RIP2; i.e. version 2 of the RIP protocol is used to accept or send over the specified {{param|Interface}}. + + + + + + + + + + Enables or disables this entry. + + + + + + + + + The status of this entry. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + {{reference}} This is the IP interface associated with this {{object}} entry. + + + + + + + + + + + + When set to {{true}}, RIP route advertisements received over {{param|Interface}} are accepted. + When set to {{false}}, RIP route advertisements received over {{param|Interface}} are rejected. + + + + + + + + When set to {{true}}, RIP route advertisements are to be sent over {{param|Interface}}. + When set to {{false}}, no RIP route advertisements will be sent over {{param|Interface}}. + + + + + + + + + Received Router Advertisement (RA) route information {{bibref|RFC4191}}. + + + + Enables or disables receiving route information from the RA. + + + + + + + + {{numentries}} + + + + + + + + + IP Interface RA route information table. Contains received RA route information {{bibref|RFC4191}}. As such, the data in this table cannot be modified. + + + + + + + The status of this entry. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + {{reference}} This is the IP interface associated with this {{object}} entry. + + + + + + + + + + + IPv6 Address of the router that sent the RA that included this route info. + + + + + + + + Flag included in a specific Route Information Option within an RA message (Prf flag), as defined in {{bibref|RFC4191|Section 2.3}}. {{enum}} + Note that this is not the Prf flag included in the base RA message. Also see {{bibref|RFC4191|Section 2.1}} which discusses how this flag is encoded on the wire. + + + + + + + + + + + + IPv6 address prefix, as received in an instance of the Route Information Option of a RA message. + + + + + + + + The time at which {{param|Prefix}} will cease to be usable for use as a forwarding entry, or {{null}} if not known. For an infinite lifetime, the parameter value MUST be 9999-12-31T23:59:59Z. + {{param}} is received in an instance of the Route Information Option of a RA message. + + + + + + + + + The Neighbor Discovery Protocol (NDP) object {{bibref|RFC4861}}. This object applies only to IPv6. It contains an {{object|InterfaceSetting}} table that defines the NDP configuration for individual IP interfaces. + + + + Enables or disables Neighbor Discovery. + + + + + + + + {{numentries}} + + + + + + + + + Per-interface Neighbor Discovery Protocol (NDP) configuration {{bibref|RFC4861}}. + For enabled table entries, if {{param|Interface}} is not a valid reference to an IPv6-capable interface (that is attached to the IPv6 stack), then the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + Note: The {{object}} table includes a unique key parameter that is a strong reference. If a strongly referenced object is deleted, the CPE will set the referencing parameter to {{empty}}. However, doing so under these circumstances might cause the updated {{object}} row to then violate the table's unique key constraint; if this occurs, the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}} and disable the offending {{object}} row. + + + + + + + + + + Enables or disables this {{object}} entry. + + + + + + + + + The status of this entry. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + This is the IP interface associated with this {{object}} entry. + + + + + + + + + + + The number of consecutive Neighbor Solicitation messages sent while performing Duplicate Address Detection on a tentative address (see{{bibref|RFC4862|5.1}}). + A value of zero indicates that Duplicate Address Detection is not performed on tentative addresses. + A value of one indicates a single transmission with no follow-up retransmissions. + If the value is greater than 1, {{param|RetransTimer}} defines the delay between consecutive messages. + + + + + + + + + Retransmission interval in {{units}}, as defined in {{bibref|RFC4861}}. For auto-configuration purposes, {{param}} specifies the delay between consecutive Neighbor Solicitation transmissions performed during Duplicate Address Detection (DAD) {{bibref|RFC4862|Section 5.4}}, as well as the time a node waits after sending the last Neighbor Solicitation before ending the DAD process. + + + + + + + + + + + + Retransmission interval in {{units}}, as defined in {{bibref|RFC4861|6.3.7}}. For auto-configuration purposes, {{param}} specifies the delay between consecutive Router Solicitation transmissions. + + + + + + + + + + + + Maximum Number of Router Solicitation Transmission messages, as defined in {{bibref|RFC4861}}. For auto-configuration purposes {{param}} specifies the Maximum Number of Router Solicitation Transmission messages to help the host to conclude that there are no routers on the link. + + + + + + + + + Enables or disables Neighbor Unreachability Detection (NUD) {{bibref|RFC4861|Section 7}}. + + + + + + + + Enables or disables Router Solicitation (RS) on {{param|Interface}} {{bibref|RFC4861|Section 4.1}}. + + + + + + + + + The Router Advertisement (RA) object {{bibref|RFC4861}}. This object applies only to IPv6. It contains an {{object|InterfaceSetting}} table that defines the RA configuration for individual IP interfaces. + Information received via router advertisement messages is automatically propagated to the relevant {{object|.IP.Interface}} sub-objects, e.g. to the {{object|.IP.Interface.{i}.IPv6Address}} and {{object|.IP.Interface.{i}.IPv6Prefix}} tables. + + + + Enables or disables Router Advertisement. + + + + + + + + {{numentries}} + + + + + + + + + Per-interface Router Advertisement (RA) configuration {{bibref|RFC4861}}. Table entries are created for use in sending Router Advertisements. + For enabled table entries, if {{param|Interface}} is not a valid reference to an IPv6-capable interface (that is attached to the IPv6 stack), then the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + Note: The {{object}} table includes a unique key parameter that is a strong reference. If a strongly referenced object is deleted, the CPE will set the referencing parameter to {{empty}}. However, doing so under these circumstances might cause the updated {{object}} row to then violate the table's unique key constraint; if this occurs, the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}} and disable the offending {{object}} row. + + + + + + + + + + Enables or disables this {{object}} entry. + Defines the value of the ''IsRouter'' and ''AdvSendAdvertisements'' flags from {{bibref|RFC4861|Section 4.2}} + + + + + + + + + The status of this entry. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + This is the IP interface associated with this {{object}} entry. + + + + + + + + + + + {{list}} {{reference}} + Manually-configured prefixes that will be sent in Router Advertisement messages. Each referenced prefix MUST have a {{param|.IP.Interface.{i}.IPv6Prefix.{i}.StaticType}} of {{enum|Static|.IP.Interface.{i}.IPv6Prefix.{i}.StaticType}} or {{enum|Child|.IP.Interface.{i}.IPv6Prefix.{i}.StaticType}}. Router Advertisement messages MUST include Prefix Information Options {{bibref|RFC4861}} for all ''Valid'' ({{param|.IP.Interface.{i}.IPv6Prefix.{i}.ValidLifetime}} is infinite or in the future) prefixes in this list. + Prefixes MUST be associated with the interface instance referenced by {{param|Interface}}. + + + + + + + + + + + + {{list}} {{reference}} + All prefixes that will be included in Router Advertisement (RA) messages sent out this interface. This list can include: + * Prefixes from {{param|ManualPrefixes}} that are included in RA messages. + * Prefixes with {{param|.IP.Interface.{i}.IPv6Prefix.{i}.Origin}} = {{enum|Child|.IP.Interface.{i}.IPv6Prefix.{i}.Origin}} or {{enum|AutoConfigured|.IP.Interface.{i}.IPv6Prefix.{i}.Origin}} associated with the interface instance referenced by {{param|Interface}}. + + + + + + + + + + + The maximum time allowed between sending unsolicited multicast Router Advertisements from the interface, in {{units}} (see {{bibref|RFC4861|Section 4.2}}). + + + + + + + + + + + + The minimum time allowed between sending unsolicited multicast Router Advertisements from the interface, in {{units}} (see {{bibref|RFC4861|Section 4.2}}). + The value MUST be no greater than 3/4 * {{param|MaxRtrAdvInterval}}. + Note: The ''1350'' maximum was derived from the RFC, based on 3/4 times the maximum value of {{param|MaxRtrAdvInterval}}. Similarly, the ''200'' default was derived from the RFC, based on 1/3 times the default value of {{param|MaxRtrAdvInterval}}. + + + + + + + + + + + + The value placed in the "Router Lifetime" field of Router Advertisement messages on this interface, in {{units}} (see {{bibref|RFC4861|Section 4.2}}). + The value can be zero or between {{param|MaxRtrAdvInterval}} and 9000 {{units}}, but these limits can be overridden by specific documents that describe how IPv6 operates over different link layers. + A value of zero indicates that the router is not to be used as a default router. + Note: The ''1800'' default was derived from the RFC, based on 3 times the default value of {{param|MaxRtrAdvInterval}}. + + + + + + + + + + + + The value placed in the "Managed address configuration" (M) flag field of Router Advertisement messages on this interafce (see {{bibref|RFC4861|Section 4.2}}, and {{bibref|RFC4862}}). + + + + + + + + + The value placed in the "Other configuration" (O) flag field of Router Advertisement messages on this interface (see {{bibref|RFC4861|Section 4.2}}, and {{bibref|RFC4862}}). + + + + + + + + + The value placed in the "Home agent" (H) flag field of Router Advertisement messages on this interface (see {{bibref|RFC3775|Section 7.1}}). + + + + + + + + + The value placed in the "Default Router Preference" (Prf) field of Router Advertisement messages on this interface, as defined in {{bibref|RFC4191|Section 2.2}}. {{enum}} + Also see {{bibref|RFC4191|Section 2.1}} which discusses how this flag is encoded on the wire. + + + + + + + + + + + + + The value placed in the "Proxy" (P) flag field of Router Advertisement messages on this interface (see {{bibref|RFC4389|Section 4.1.3.3}}). + + + + + + + + + The value placed in MTU options of Router Advertisement messages on this interface. A value of zero indicates that no MTU options are included (see {{bibref|RFC4861|Section 4.6.4}}). + + + + + + + + + The value placed in the "Reachable Time" field of Router Advertisement messages on this interface, in {{units}} (see {{bibref|RFC4861|Section 4.2}}). + The value zero means unspecified (by the router). + + + + + + + + + + + + The value placed in the "Retrans Timer" field of Router Advertisement messages on this interface (see {{bibref|RFC4861|Section 4.2}}). + The value zero means unspecified (by the router). + + + + + + + + + + + The value placed in the "Cur Hop Limit" field of Router Advertisement messages on this interface (see {{bibref|RFC4861|Section 4.2}}). + The value zero means unspecified (by the router). + Note: The default can be overridden with the value specified in {{bibref|RFC3232}} that was in effect at the time of implementation. + + + + + + + + + + + {{numentries}} + + + + + + + + + This object specifies the options in a Router Advertisement (RA) message {{bibref|RFC4861|Section 4.6}}. {{object}} entries are created for use in sending Router Advertisements (enabled options MUST be included in RA messages sent). This includes support for sending DNS information in the RA message as described in {{bibref|RFC6106}}. + This table is intended only for options that are not modeled elsewhere. For example, it is not appropriate for the MTU option (which is modeled via {{param|#.AdvLinkMTU}}). + + + + + + + + + + Enables or disables this {{object}} entry. + + + + + + + + + {{datatype|expand}} + + + + + + + + Option tag (type) {{bibref|RFC4861|Section 4.6}}. + + + + + + + + + + A hexbinary encoded option value {{bibref|RFC4861|Section 4.6}}. + + + + + + + + + + + Settings allowing a CPE to derive and route IPv6 Rapid Deployment (6rd) delegated prefixes as specified in {{bibref|RFC5969}}. The 6rd mechanism is intended to be implemented only on what {{bibref|RFC5969}} refers to as ''Customer Edge Routers'', i.e. on gateway devices, that support IPv6 on the LAN side and only have IPv4 connectivity on the WAN side. + See the 6rd Theory of Operation {{bibref|TR-181i2|Appendix VI}} for a description of the working of this 6rd data model. + + + + Enables or disables IPv6rd. + + + + + + + + {{numentries}} + + + + + + + + + 6rd {{bibref|RFC5969}} settings. + A 6rd delegated prefix is expected to be of maximum length 64 bits, and is the concatenation of the following two items: + * Service provider IPv6 prefix: specified via the {{param|SPIPv6Prefix}} parameter + * IPv4 address suffix: the IPv4 address with the first {{param|IPv4MaskLength}} bits removed + This object definition is derived from {{bibref|RFC5969}} with some minor nomenclature changes. + + + + + + + Enable or disable this {{object}} instance. + + + + + + + + The status of this entry. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + List items are the IPv4 addresses (possibly anycast) of the 6rd Relay(s). + + + + + + + + + If {{true}}, the destination address for all 6rd traffic will be set (IPv4 destination address) to one of the {{param|BorderRelayIPv4Addresses}}. If {{false}}, traffic whose destination address begins with the same prefix as {{param|SPIPv6Prefix}} will be sent directly to the destination IPv4 address of the endpoint, which is in the same 6rd domain. See 6rd Theory of Operation for further explanation {{bibref|TR-181i2|Appendix VI}}. + + + + + + + + The Service Provider's 6rd IPv6 prefix for this deployment and this 6rd RG. + + + + + + + + The number of high-order {{units}} that are identical across all IPv4 addresses within a given 6rd domain. This number of {{units}} MUST be removed from the start of the IPv4 address when generating the 6rd delegated prefix. + For example, if this value is 8, only the final 24 {{units}} of the subscriber IPv4 prefix will be used when creating the IPv6 delegated prefix, determining the destination IPv4 encapsulation address, etc. + If the value is 0, then the whole 32 {{units}} of the IPv4 address are used in the encoding. + + + + + + + + + + + {{reference}} Points to the IPv4 address that is the source of the IPv4 address embedded in the IPv6 6rd prefix, and used as the source encapsulating IPv4 address. If the value is {{empty}} or this parameter is not present, the device will use internal logic to determine which IPv4 source address to use. + + + + + + + + + + + {{reference}} This is an IP interface of ''Type'' {{enum|Tunnel|.IP.Interface.{i}.Type}} that is logically the tunnel entry point for upstream IPv6 traffic and is also logically the tunnel exit point for downstream IPv6 traffic (i.e. the entry point for non-tunneled upstream IPv6 traffic to enter a tunnel and become tunneled, or conversely, the exit point for downstream IPv6 traffic leaving a tunnel after being un-tunneled). + IPv6 traffic that enters {{param}} from the LAN is expected to continue on through {{param|TunneledInterface}}, and traffic from the WAN is expected to come from {{param|TunneledInterface}} into {{param}}. {{param}} is a logical interface that can allow for classification, marking (of IPv6 headers), and policing of IPv6 traffic that will be going over a 6rd tunnel. These functions are modeled in the {{object|.QoS.}} object. + {{param}} can be used also to represent the 6rd virtual interface defined in {{bibref|RFC5969}}. + Note: In 6rd, IPv6 packets arriving over one or more device LAN IP interfaces are logically fed into this {{param}}. Likewise, 6rd traffic from the WAN gets logically sent from this {{param}} to LAN IP interfaces. + + + + + + + + + + + {{reference}} This is an IP interface of ''Type'' {{enum|Tunneled|.IP.Interface.{i}.Type}} that provides information about the IPv4 headers used to encapsulate the IPv6 packets. + Encapsulated IPv6 traffic that enters {{param}} from the WAN is expected to continue on through {{param|TunnelInterface}}, and traffic from the LAN is expected to come from {{param|TunnelInterface}} into {{param}}. {{param}} is a logical interface that can allow for classification, marking (of IPv4 headers and VLAN tags), and policing of IPv4 packets that encapsulate IPv6 packets in 6rd traffic. These functions are modeled in the {{object|.QoS.}} object. + Note: In 6rd, {{param}} traffic originating from the LAN logically feeds into a WAN-side IPv4 capable IP interface that the "IPv6 6rd tunnel" goes over. 6rd traffic that enters over this IPv4 WAN interface gets logically sent to this {{param}}. + + + + + + + + + + + + Settings allowing a CPE to configure and route IPv6 Dual-Stack Lite (DSLite) as specified in {{bibref|DSLite}}. The DS-Lite mechanism is intended to be implemented only on gateway devices that support IPv4 on the LAN side and only have IPv6 connectivity on the WAN side. + See the Dual-Stack Lite Theory of Operation {{bibref|TR-181i2|Appendix VII}} for a description of the working of this DS-Lite data model. + + + + Enables or disables DSLite. + + + + + + + + {{numentries}} + + + + + + + + + DSLite {{bibref|DSLite}} settings. + + + + + + + Enable or disable this {{object}} instance. + + + + + + + + The status of this entry. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Indicates the preferred method to be used in assigning values to {{param|EndpointName}} when both static and dynamic values are available. See {{param|EndpointName}} for further clarification. + + + + + + + + + + + + Indicates the preferred method to be used to assign the address of the DS-Lite Endpoint when both {{param|EndpointName}} and {{param|EndpointAddress}} values are available and the {{enum|Static|EndpointAssignmentPrecedence}} method is used. See {{param|EndpointName}} and {{param|EndpointAddress}} for further clarification. + + + + + + Derive from {{param|EndpointName}} via a DNS lookup. + + + + + Use {{param|EndpointAddress}} directly. + + + + + + + + Indicates the address currently in use for the tunnel concentrator (remote endpoint). It is derived from the values of the {{param|EndpointAssignmentPrecedence}}, {{param|EndpointAddressTypePrecedence}}, {{param|EndpointName}} and {{param|EndpointAddress}} parameters. + It is {{empty}} if no endpoint address is currently known. + + + + + + + + The Fully Qualified Domain Name (FQDN) of the tunnel concentrator (remote endpoint). + This parameter is based on ''OPTION_DS_LITE_NAME'' from {{bibref|DSLite-options|Section 4}} and can be assigned statically (e.g. present in the factory default configuration or set by the Controller) or can be updated dynamically (via DHCPv6). If both statically and dynamically assigned, then {{param|EndpointAssignmentPrecedence}} indicates whether it is the static configuration or the DHCPv6 configuration that is actually applied to {{param}}. + Note: {{param}} is only writable when {{param|EndpointAssignmentPrecedence}} is {{enum|Static|EndpointAssignmentPrecedence}}; otherwise, {{param}} is automatically configured via the DHCPv6 received option. + + + + + + + + + + The address of the tunnel concentrator (remote endpoint). + This parameter can only be assigned statically (e.g. present in the factory default configuration or set by the Controller). + + + + + + + + Method used to assign {{param|EndpointAddressInUse}}. + + + + + + Assigned by DHCPv6 {{bibref|RFC3315}}. + + + + + For example, present in the factory default configuration, set by the Controller, or set by some other management entity (e.g. via a GUI). + + + + + + + + {{reference}} This is an IP interface of ''Type'' {{enum|Tunnel|.IP.Interface.{i}.Type}} that is logically the tunnel entry point for upstream IPv4 traffic and is also logically the tunnel exit point for downstream IPv4 traffic (i.e. the entry point for non-tunneled upstream IPv4 traffic to enter a tunnel and become tunneled, or conversely, the exit point for downstream IPv4 traffic leaving a tunnel after being un-tunneled). + IPv4 traffic that enters {{param}} is expected to continue on through {{param|TunneledInterface}} from the LAN, and traffic from the WAN is expected to come from TunneledInterface into TunnelInterface. TunnelInterface is a logical interface that can allow for classification, marking (of IPv4 headers), and policing of IPv4 traffic that will be going over a DS-Lite tunnel. These functions are modeled in the Device.QoS object. + Note: In DS-Lite, IPv4 packets arriving over one or more device LAN IP interfaces are logically fed into this {{param}}. Likewise, DS-Lite traffic from the WAN gets logically sent from this {{param}} to LAN IP interfaces. + + + + + + + + + + + {{reference}} This is an IP interface of ''Type'' {{enum|Tunneled|.IP.Interface.{i}.Type}} that provides information about the IPv6 headers used to encapsulate the IPv4 packets. + Encapsulated IPv4 traffic that enters {{param}} from the WAN is expected to continue on through {{param|TunnelInterface}}, and traffic from the LAN is expected to come from {{param|TunnelInterface}} into {{param}}. {{param}} is a logical interface that can allow for classification, marking (of IPv6 headers and VLAN tags), and policing of IPv6 packets that encapsulate IPv4 packets in DS-Lite traffic. These functions are modeled in the {{object|.QoS.}} object. + Note: In DS-Lite, {{param}} traffic originating from the LAN logically feeds into a WAN-side IPv6 capable IP interface that the "DSLite IPv4-in-IPv6 tunnel" goes over. DS-Lite traffic that enters over this IPv6 WAN interface gets logically sent to this {{param}}. + + + + + + + + + + + + Queue management configuration object. + + + + The maximum number of entries available in the Classification table. + + + + + + + + {{numentries}} + + + + + + + + The maximum number of entries available in the {{object|App}} table. + + + + + + + + {{numentries}} + + + + + + + + The maximum number of entries available in the {{object|Flow}} table. + + + + + + + + {{numentries}} + + + + + + + + The maximum number of entries available in the {{object|Policer}} table. + + + + + + + + {{numentries}} + + + + + + + + The maximum number of entries available in the {{object|Queue}} table. + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + The maximum number of entries available in the {{object|Shaper}} table. + + + + + + + + {{numentries}} + + + + + + + + Identifier of the forwarding policy associated with traffic not associated with any specified classifier. + + + + + + + + Identifier of the traffic class associated with traffic not associated with any specified classifier. + + + + + + + + {{reference}} Indicates the ''Policer'' table entry for traffic not associated with any specified classifier. + {{empty}} indicates a null policer. + + + + + + + + + + + {{reference}} Indicates the ''Queue'' table entry for traffic not associated with any specified classifier. Note: The interpretation of {{empty}} value is implementation specific. + + + + + + + + + + + DSCP to mark traffic not associated with any specified classifier. + A value of -1 indicates no change from the incoming packet. + A value of -2 indicates automatic marking of DSCP based upon the EthernetPriority value of the incoming packet as defined in {{bibref|TR-181i2|Annex A}}. + + + + + + + + + + Ethernet priority code (as defined in {{bibref|802.1Q-2011}}) to mark traffic not associated with any specified classifier. + A value of -1 indicates no change from the incoming packet. + A value of -2 indicates automatic marking of EthernetPriority based upon the DSCP value of the incoming packet as defined in {{bibref|TR-181i2|Annex A}}. + + + + + + + + + + Ethernet priority code (as defined in {{bibref|802.1Q-2011}}) to mark traffic of the inner VLAN Tag as defined in 802.1Q, when the PDU is not associated with any specified classifier. This parameter is only applicable when the PDU has 2 VLAN Tags. + A value of -1 indicates no change from the incoming packet. + A value of -2 indicates automatic marking of EthernetPriority based upon the DSCP value of the incoming packet as defined in {{bibref|TR-181i2|Annex A}}. + + + + + + + + + + {{list}} List items represent URNs, each indicating a protocol supported for use as a ProtocolIdentifier in the App table. This list MAY include any of the URNs defined in {{bibref|TR-181i2|Annex A}} as well as other URNs defined elsewhere. + + + + + + + + + + + + Classification table. + For enabled table entries, if {{param|Interface}} is not a valid reference and {{param|AllInterfaces}} is {{false}}, then the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + Several of this object's parameters specify DHCP option values. Some cases are version neutral (the parameter can apply to both DHCPv4 and DHCPv6), but in other cases the representation of the option is different for DHCPv4 and DHCPv6, so it is necessary to define separate DHCPv4-specific and DHCPv6-specific parameters. Therefore, an instance of this object that uses DHCP option values as classification criteria will be associated with either DHCPv4 or DHCPv6, as indicated by the {{param|DHCPType}} parameter. + + + + + + + Enables or disables this classifier. + + + + + + + + + The status of this classifier. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + Position of the {{object}} entry in the order of precedence. A value of ''1'' indicates the first entry considered (highest precedence). For each packet, the highest ordered entry that matches the classification criteria is applied. All lower order entries are ignored. + When this value is modified, if the value matches that of an existing entry, the {{param}} value for the existing entry and all lower {{param}} entries is incremented (lowered in precedence) to ensure uniqueness of this value. A deletion causes {{param}} values to be compacted. When a value is changed, incrementing occurs before compaction. + The value of {{param}} on creation of a {{object}} table entry MUST be one greater than the largest current value (initially assigned the lowest precedence). + + + + + + + + + + {{datatype|expand}} + + + + + + + + The DHCP protocol associated with the {{object}} instance. Affects only parameters that specify DHCP option values as classification criteria (all such parameter descriptions note this fact). {{enum}} + If {{param}} is {{enum|DHCPv4}}, then {{object}} parameters that are DHCPv6-specific are ignored. If {{param}} is {{enum|DHCPv6}}, then {{object}} parameters that are DHCPv4-specific are ignored. + + + + + + + + + + + + Classification criterion. {{reference}} + This specifies the ingress interface associated with the entry. It MAY be a layer 1, 2 or 3 interface, however, the types of interfaces for which ''Classifications'' can be instantiated is a local matter to the CPE. + Note that this parameter is permitted to reference ''Tunnel'' instances in order to classify upstream packets that have just been encapsulated (such packets are conceptually similar to locally-generated traffic). For example, this parameter might reference a {{object|.GRE.Tunnel}} or a {{object|.MAP.Domain}} instance. + + + + + + + + + + + + Classification criterion. This specifies that all ingress interfaces are associated with the entry. If {{true}}, the value of {{param|Interface}} is ignored since all ingress interfaces are indicated. + + + + + + + + + Classification criterion. + Destination IP address. {{empty}} indicates this criterion is not used for classification. + + + + + + + + + Destination IP address mask, represented as an IP routing prefix using CIDR notation [RFC4632]. The IP address part MUST be {{empty}} (and, if specified, MUST be ignored). + + + + + + + + + If {{false}}, the class includes only those packets that match the (masked) DestIP entry, if specified. + If {{true}}, the class includes all packets except those that match the (masked) DestIP entry, if specified. + + + + + + + + + Classification criterion. + Source IP address. {{empty}} indicates this criterion is not used for classification. + + + + + + + + + Source IP address mask, represented as an IP routing prefix using CIDR notation [RFC4632]. The IP address part MUST be {{empty}} (and, if specified, MUST be ignored). + + + + + + + + + If {{false}}, the class includes only those packets that match the (masked) {{param|SourceIP}} entry, if specified. + If {{true}}, the class includes all packets except those that match the (masked) {{param|SourceIP}} entry, if specified. + + + + + + + + + Classification criterion. + Protocol number. A value of -1 indicates this criterion is not used for classification. + + + + + + + + + + + If {{false}}, the class includes only those packets that match the {{param|Protocol}} entry, if specified. + If {{true}}, the class includes all packets except those that match the {{param|Protocol}} entry, if specified. + + + + + + + + + Classification criterion. + Destination port number. A value of -1 indicates this criterion is not used for classification. + + + + + + + + + + + Classification criterion. + If specified, indicates the classification criterion is to include the port range from {{param|DestPort}} through {{param}} (inclusive). If specified, {{param}} MUST be greater than or equal to {{param|DestPort}}. + A value of -1 indicates that no port range is specified. + + + + + + + + + + + If {{false}}, the class includes only those packets that match the {{param|DestPort}} entry (or port range), if specified. + If {{true}}, the class includes all packets except those that match the {{param|DestPort}} entry (or port range), if specified. + + + + + + + + + Classification criterion. + Source port number. A value of -1 indicates this criterion is not used for classification. + + + + + + + + + + + Classification criterion. + If specified, indicates the classification criterion is to include the port range from {{param|SourcePort}} through {{param}} (inclusive). If specified, {{param}} MUST be greater than or equal to SourcePort. + A value of -1 indicates that no port range is specified. + + + + + + + + + + + If {{false}}, the class includes only those packets that match the {{param|SourcePort}} entry (or port range), if specified. + If {{true}}, the class includes all packets except those that match the {{param|SourcePort}} entry (or port range), if specified. + + + + + + + + + Classification criterion. + Source MAC Address. {{empty}} indicates this criterion is not used for classification. + + + + + + + + + Bit-mask for the MAC address, where matching of a packet's MAC address with the {{param|SourceMACAddress}} is only to be done for bit positions set to one in the mask. A mask of ''FF:FF:FF:FF:FF:FF'' or {{empty}} indicates all bits of the {{param|SourceMACAddress}} are to be used for classification. + + + + + + + + + If {{false}}, the class includes only those packets that match the (masked) {{param|SourceMACAddress}} entry, if specified. + If {{true}}, the class includes all packets except those that match the (masked) {{param|SourceMACAddress}} entry, if specified. + + + + + + + + + Classification criterion. + Destination MAC Address. {{empty}} indicates this criterion is not used for classification. + The use of destination MAC address as a classification criterion is primarily useful only for bridged traffic. + + + + + + + + + Bit-mask for the MAC address, where matching of a packet's MAC address with the {{param|DestMACAddress}} is only to be done for bit positions set to one in the mask. A mask of ''FF:FF:FF:FF:FF:FF'' or {{empty}} indicates all bits of the {{param|DestMACAddress}} are to be used for classification. + + + + + + + + + If {{false}}, the class includes only those packets that match the (masked) {{param|DestMACAddress}} entry, if specified. + If {{true}}, the class includes all packets except those that match the (masked) {{param|DestMACAddress}} entry, if specified. + + + + + + + + + Classification criterion. + Ethertype as indicated in either the Ethernet or SNAP Type header. A value of -1 indicates this criterion is not used for classification. + + + + + + + + + + + If {{false}}, the class includes only those packets that match the {{param|Ethertype}} entry, if specified. + If {{true}}, the class includes all packets except those that match the {{param|Ethertype}} entry, if specified. + + + + + + + + + Classification criterion. + SSAP element in the LLC header. A value of -1 indicates this criterion is not used for classification. + + + + + + + + + + + If {{false}}, the class includes only those packets that match the {{param|SSAP}} entry, if specified. + If {{true}}, the class includes all packets except those that match the {{param|SSAP}} entry, if specified. + + + + + + + + + Classification criterion. + DSAP element in the LLC header. A value of -1 indicates this criterion is not used for classification. + + + + + + + + + + + If {{false}}, the class includes only those packets that match the {{param|DSAP}} entry, if specified. + If {{true}}, the class includes all packets except those that match the {{param|DSAP}} entry, if specified. + + + + + + + + + Classification criterion. + Control element in the LLC header. A value of -1 indicates this criterion is not used for classification. + + + + + + + + + + + If {{false}}, the class includes only those packets that match the {{param|LLCControl}} entry, if specified. + If {{true}}, the class includes all packets except those that match the {{param|LLCControl}} entry, if specified. + + + + + + + + + Classification criterion. + OUI element in the SNAP header. A value of -1 indicates this criterion is not used for classification. + + + + + + + + + + + If {{false}}, the class includes only those packets that match the {{param|SNAPOUI}} entry, if specified. + If {{true}}, the class includes all packets except those that match the {{param|SNAPOUI}} entry, if specified. + + + + + + + + + Classification criterion. + Used to identify one or more LAN devices, value of the DHCPv4 Vendor Class Identifier (Option 60) as defined in {{bibref|RFC2132}}, matched according to the criterion in {{param|SourceVendorClassIDMode}}. Case sensitive. + This is a normal string, e.g. "abc" is represented as "abc" and not say "616263" hex. However, if the value includes non-printing characters then such characters have to be represented using XML escapes, e.g. #x0a for line-feed. + {{empty}} indicates this criterion is not used for classification. + Note: This parameter is DHCPv4-specific. It only applies when {{param|DHCPType}} is {{enum|DHCPv4|DHCPType}}. + + + + + + + + + + + Classification criterion. + A hexbinary string used to identify one or more LAN devices, value of the DHCPv6 Vendor Class Identifier (Option 16) as defined in {{bibref|RFC3315}}. The option value is binary, so an exact match is REQUIRED. + {{empty}} indicates this criterion is not used for classification. + Note: This parameter is DHCPv6-specific. It only applies when {{param|DHCPType}} is {{enum|DHCPv6|DHCPType}}. + + + + + + + + + + + If {{false}}, the class includes only those packets sourced from LAN devices that match the {{param|SourceVendorClassID}} entry (for {{enum|DHCPv4|DHCPType}}) or the {{param|SourceVendorClassIDv6}} entry (for {{enum|DHCPv6|DHCPType}}), if specified. + If {{true}}, the class includes all packets except those sourced from LAN devices that match the {{param|SourceVendorClassID}} entry (for {{enum|DHCPv4|DHCPType}}) or the {{param|SourceVendorClassIDv6}} entry (for {{enum|DHCPv6|DHCPType}}), if specified. + + + + + + + + + SourceVendorClassID pattern match criterion. {{enum}} + For example, if {{param|SourceVendorClassID}} is "Example" then an Option 60 value of "Example device" will match with {{param}} values of {{enum|Prefix}} or {{enum|Substring}}, but not with {{enum|Exact}} or {{enum|Suffix}}. + + + + + + + + + + + + + + Classification criterion. + Used to identify one or more LAN devices, value of the DHCPv4 Vendor Class Identifier (Option 60) as defined in {{bibref|RFC2132}}, matched according to the criterion in {{param|DestVendorClassIDMode}}. Case sensitive. + This is a normal string, e.g. "abc" is represented as "abc" and not say "616263" hex. However, if the value includes non-printing characters then such characters have to be represented using XML escapes, e.g. #x0a for line-feed. + {{empty}} indicates this criterion is not used for classification. + Note: This parameter is DHCPv4-specific. It only applies when {{param|DHCPType}} is {{enum|DHCPv4|DHCPType}}. + + + + + + + + + + + Classification criterion. + A hexbinary string used to identify one or more LAN devices, value of the DHCPv6 Vendor Class Identifier (Option 16) as defined in {{bibref|RFC3315}}. The option value is binary, so an exact match is REQUIRED. + {{empty}} indicates this criterion is not used for classification. + Note: This parameter is DHCPv6-specific. It only applies when {{param|DHCPType}} is {{enum|DHCPv6|DHCPType}}. + + + + + + + + + + + If {{false}}, the class includes only those packets destined for LAN devices that match the {{param|DestVendorClassID}} entry (for {{enum|DHCPv4|DHCPType}}) or the {{param|DestVendorClassIDv6}} entry (for {{enum|DHCPv6|DHCPType}}), if specified. + If {{true}}, the class includes all packets except those destined for LAN devices that match the {{param|DestVendorClassID}} entry (for {{enum|DHCPv4|DHCPType}}) or the {{param|DestVendorClassIDv6}} entry (for {{enum|DHCPv6|DHCPType}}), if specified. + + + + + + + + + {{param|DestVendorClassID}} pattern match criterion. {{enum}} + For example, if {{param|DestVendorClassID}} is "Example" then an Option 60 value of "Example device" will match with {{param}} values of {{enum|Prefix}} or {{enum|Substring}}, but not with {{enum|Exact}} or {{enum|Suffix}}. + + + + + + + + + + + + + + Classification criterion. + A hexbinary string used to identify one or more LAN devices, value of the DHCP Client Identifier. The DHCP Client Identifier is Option 61 (as defined in {{bibref|RFC2132}}) for {{enum|DHCPv4|DHCPType}}, or is Option 1 (as defined in {{bibref|RFC3315}}) for {{enum|DHCPv6|DHCPType}}. The option value is binary, so an exact match is REQUIRED. + {{empty}} indicates this criterion is not used for classification. + Note: DHCPv4 Option values are limited to a length of 255, while DHCPv6 Option values can have a maximum length of 65535. + Note: This parameter is DHCP version neutral. The specific DHCP version in use with this parameter is indicated by {{param|DHCPType}}. + Note: DHCPv6 Option 1 (Client Identifier) is sometimes referred to as ''DUID''. + + + + + + + + + + + If {{false}}, the class includes only those packets sourced from LAN devices that match the {{param|SourceClientID}} entry, if specified. + If {{true}}, the class includes all packets except those sourced from LAN devices that match the {{param|SourceClientID}} entry, if specified. + + + + + + + + + Classification criterion. + A hexbinary string used to identify one or more LAN devices, value of the DHCP Client Identifier. The DHCP Client Identifier is Option 61 (as defined in {{bibref|RFC2132}}) for {{enum|DHCPv4|DHCPType}}, or is Option 1 (as defined in {{bibref|RFC3315}}) for {{enum|DHCPv6|DHCPType}}. The option value is binary, so an exact match is REQUIRED. + {{empty}} indicates this criterion is not used for classification. + Note: DHCPv4 Option values are limited to a length of 255, while DHCPv6 Option values can have a maximum length of 65535. + Note: This parameter is DHCP version neutral. The specific DHCP version in use with this parameter is indicated by {{param|DHCPType}}. + Note: DHCPv6 Option 1 (Client Identifier) is sometimes referred to as ''DUID''. + + + + + + + + + + + If {{false}}, the class includes only those packets destined for LAN devices that match the {{param|DestClientID}} entry, if specified. + If {{true}}, the class includes all packets except those destined for LAN devices that match the {{param|DestClientID}} entry, if specified. + + + + + + + + + Classification criterion. + A hexbinary string used to identify one or more LAN devices, value of the DHCP User Class Identifier. The DHCP User Class Identifier is Option 77 (as defined in {{bibref|RFC3004}}) for {{enum|DHCPv4|DHCPType}}, or is Option 15 (as defined in {{bibref|RFC3315}}) for {{enum|DHCPv6|DHCPType}}. The option value is binary, so an exact match is REQUIRED. + {{empty}} indicates this criterion is not used for classification. + Note: DHCPv4 Option values are limited to a length of 255, while DHCPv6 Option values can have a maximum length of 65535. + Note: This parameter is DHCP version neutral. The specific DHCP version in use with this parameter is indicated by {{param|DHCPType}}. + + + + + + + + + + + If {{false}}, the class includes only those packets sourced from LAN devices that match the {{param|SourceUserClassID}} entry, if specified. + If {{true}}, the class includes all packets except those sourced from LAN devices that match the {{param|SourceUserClassID}} entry, if specified. + + + + + + + + + Classification criterion. + A hexbinary string used to identify one or more LAN devices, value of the DHCP User Class Identifier. The DHCP User Class Identifier is Option 77 (as defined in {{bibref|RFC3004}}) for {{enum|DHCPv4|DHCPType}}, or is Option 15 (as defined in {{bibref|RFC3315}}) for {{enum|DHCPv6|DHCPType}}. The option value is binary, so an exact match is REQUIRED. + {{empty}} indicates this criterion is not used for classification. + Note: DHCPv4 Option values are limited to a length of 255, while DHCPv6 Option values can have a maximum length of 65535. + Note: This parameter is DHCP version neutral. The specific DHCP version in use with this parameter is indicated by {{param|DHCPType}}. + + + + + + + + + + + If {{false}}, the class includes only those packets destined for LAN devices that match the {{param|DestUserClassID}} entry, if specified. + If {{true}}, the class includes all packets except those destined for LAN devices that match the {{param|DestUserClassID}} entry, if specified. + + + + + + + + + Classification criterion. + A hexbinary string used to identify one or more LAN devices, value of the DHCP Vendor-specific Information, matched according to the criteria in {{param|SourceVendorSpecificInfoEnterprise}} and {{param|SourceVendorSpecificInfoSubOption}}. The DHCP Vendor-specific Information is Option 125 (as defined in {{bibref|RFC3925}}) for {{enum|DHCPv4|DHCPType}}, or is Option 17 (as defined in {{bibref|RFC3315}}) for {{enum|DHCPv6|DHCPType}}. + {{empty}} indicates this criterion is not used for classification. + Note: DHCPv4 Option values are limited to a length of 255, while DHCPv6 Option values can have a maximum length of 65535. + Note: This parameter is DHCP version neutral. The specific DHCP version in use with this parameter is indicated by {{param|DHCPType}}. + + + + + + + + + + + If {{false}}, the class includes only those packets sourced from LAN devices that match the {{param|SourceVendorSpecificInfo}} entry, if specified. + If {{true}}, the class includes all packets except those sourced from LAN devices that match the {{param|SourceVendorSpecificInfo}} entry, if specified. + + + + + + + + + {{param|SourceVendorSpecificInfo}} Enterprise Number as defined in {{bibref|RFC3925}}. + The default value (0) is assigned to IANA and will probably need to be replaced with an appropriate enterprise number. + + + + + + + + + {{param|SourceVendorSpecificInfo}} Sub Option Code as defined in {{bibref|RFC3925}}. + + + + + + + + + + + Classification criterion. + A hexbinary string used to identify one or more LAN devices, value of the DHCP Vendor-specific Information, matched according to the criteria in {{param|DestVendorSpecificInfoEnterprise}} and {{param|DestVendorSpecificInfoSubOption}}. The DHCP Vendor-specific Information is Option 125 (as defined in {{bibref|RFC3925}}) for {{enum|DHCPv4|DHCPType}}, or is Option 17 (as defined in {{bibref|RFC3315}}) for {{enum|DHCPv6|DHCPType}}. + {{empty}} indicates this criterion is not used for classification. + Note: DHCPv4 Option values are limited to a length of 255, while DHCPv6 Option values can have a maximum length of 65535. + Note: This parameter is DHCP version neutral. The specific DHCP version in use with this parameter is indicated by {{param|DHCPType}}. + + + + + + + + + + + If {{false}}, the class includes only those packets destined for LAN devices that match the {{param|DestVendorSpecificInfo}} entry, if specified. + If {{true}}, the class includes all packets except those destined for LAN devices that match the {{param|DestVendorSpecificInfo}} entry, if specified. + + + + + + + + + {{param|DestVendorSpecificInfo}} Enterprise Number as defined in {{bibref|RFC3925}}. + The default value (0) is assigned to IANA and will probably need to be replaced with an appropriate enterprise number. + + + + + + + + + {{param|DestVendorSpecificInfo}} Sub Option Code as defined in {{bibref|RFC3925}}. + + + + + + + + + + + Classification criterion. + If {{false}}, this criterion is not used for classification. + If {{true}}, this criterion matches with all TCP segments that have the ACK control bit set. + + + + + + + + + If {{false}}, the class includes only those packets that match the {{param|TCPACK}} entry, if specified. + If {{true}}, the class includes all packets except those that match the {{param|TCPACK}} entry, if specified. + + + + + + + + + Classification criterion. + Minimum IP Packet Length (including header) in bytes. + + + + + + + + + Classification criterion. + Maximum IP Packet Length (including header) in bytes. + A value of zero indicates that no maximum is specified (an umlimited maximum length). + + + + + + + + + If {{false}}, the class includes only those packets whose length (including header) falls within the inclusive range {{param|IPLengthMin}} through {{param|IPLengthMax}}. A value of zero for both {{param|IPLengthMin}} and {{param|IPLengthMax}} allows any length packet. An equal non-zero value of {{param|IPLengthMin}} and {{param|IPLengthMax}} allows only a packet with the exact length specified. + If {{true}}, the class includes all packets except those whose length (including header) falls within the inclusive range {{param|IPLengthMin}} through {{param|IPLengthMax}}. + + + + + + + + + Classification criterion. + DiffServ codepoint (defined in {{bibref|RFC2474}}). + If set to a Class Selector Codepoint (defined in {{bibref|RFC2474}}), all DSCP values that match the first 3 bits will be considered a valid match. + A value of -1 indicates this criterion is not used for classification. + + + + + + + + + + + If {{false}}, the class includes only those packets that match the {{param|DSCPCheck}} entry, if specified. + If {{true}}, the class includes all packets except those that match the {{param|DSCPCheck}} entry, if specified. + + + + + + + + + Classification result. + DSCP to mark traffic with that falls into this classification entry. + A value of -1 indicates no change from the incoming packet. + A value of -2 indicates automatic marking of DSCP based upon the EthernetPriority value of the incoming packet as defined in {{bibref|TR-181i2|Annex A}}. + + + + + + + + + + + Classification criterion. + Current Ethernet priority of a VLAN Tag as defined in {{bibref|802.1Q-2011}} or Ethernet Priority field as defined in 802.1D. If more than 1 VLAN tag is present, then this parameter represents the outer VLAN Tag. A value of -1 indicates this criterion is not used for classification. + + + + + + + + + + + If {{false}}, the class includes only those packets that match the {{param|EthernetPriorityCheck}} entry, if specified. + If {{true}}, the class includes all packets except those that match the {{param|EthernetPriorityCheck}} entry, if specified. + + + + + + + + + Classification result. + Ethernet priority code (as defined in {{bibref|802.1Q-2011}}) to mark traffic with that falls into this classification entry associated with the {{param|EthernetPriorityCheck}}. + A value of -1 indicates no change from the incoming packet. + A value of -2 indicates automatic marking of EthernetPriority based upon the DSCP value of the incoming packet as defined in {{bibref|TR-181i2|Annex A}}. + + + + + + + + + + + Classification criterion. + Current Ethernet priority of the inner VLAN Tag as defined in 802.1Q. This parameter is only applicable when the PDU has 2 VLAN Tags. A value of -1 indicates this criterion is not used for classification. + + + + + + + + + + + If {{false}}, the class includes only those packets that match the {{param|InnerEthernetPriorityCheck}} entry, if specified. + If {{true}}, the class includes all packets except those that match the {{param|InnerEthernetPriorityCheck}} entry, if specified. + + + + + + + + + Classification result. + Ethernet priority code to mark traffic with that falls into this classification entry associated with the {{param|InnerEthernetPriorityCheck}}. + A value of -1 indicates no change from the incoming packet. + A value of -2 indicates automatic marking of EthernetPriority based upon the DSCP value of the incoming packet as defined in {{bibref|TR-181i2|Annex A}}. + + + + + + + + + + + Classification criterion. + Current Ethernet Drop eligible Indication (DEI) of the VLAN tag as defined in 802.1Q. If 2 VLAN Tags are present, then this parameter represents the outer VLAN tag. A value of -1 indicates this criterion is not used for classification. + + + + + + + + + + + If {{false}}, the class includes only those packets that match the {{param|EthernetDEICheck}} entry, if specified. + If {{true}}, the class includes all packets except those that match the {{param|EthernetDEICheck}} entry, if specified. + + + + + + + + + Classification criterion. + Current Ethernet VLAN ID as defined in 802.1Q. A value of -1 indicates this criterion is not used for classification. + + + + + + + + + + + If {{false}}, the class includes only those packets that match the {{param|VLANIDCheck}} entry, if specified. + If {{true}}, the class includes all packets except those that match the {{param|VLANIDCheck}} entry, if specified. + + + + + + + + + Classification criterion. + Allows traffic to be distinguished based on out-of-band information such as physical port or application ID. Primarily intended for, but not restricted to, locally sourced traffic. + If specified, this entry applies to traffic with matching out-of-band information. A value of -1 indicates this criterion is not used for classification. + + + + + + + + + + + Classification result. + Identifier of the forwarding policy associated with traffic that falls in this classification. + + + + + + + + + Classification result. + Identifier of the traffic class associated with traffic that falls in this classification. If specified, at least one {{object|#.Queue}} table entry MUST include this traffic class in its {{param|#.Queue.{i}.TrafficClasses}} parameter (which is a comma-separated list). + A value of -1 indicates a null traffic class. + {{param}} and {{param|App}} are mutually exclusive and one of the two MUST be specified. If {{param}} is {{null}}, {{param|App}} MUST be specified, and vice versa. + + + + + + + + + + + Classification result. {{reference}} + Indicates the ''Policer'' table entry for traffic that falls in this classification. + {{empty}} indicates a null policer. + {{param}} MAY optionally be specified in conjunction with {{param|TrafficClass}}. {{param}} and {{param|App}} are mutually exclusive. + + + + + + + + + + + + Classification result. {{reference}} + Indicates the ''App'' table entry for traffic that falls in this classification. + {{empty}} indicates a null ''App''. + {{param|TrafficClass}} and {{param}} are mutually exclusive and one of the two MUST be specified. If {{param|TrafficClass}} is null, {{param}} MUST be specified, and vice versa. + + + + + + + + + + + + + Application table. + + + + + + + Enables or disables this App table entry. + + + + + + + + + The status of this App table entry. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + URN identifying the protocol associated with the given application. A set of defined URNs is given in {{bibref|TR-181i2|Annex A}}. + + + + + + + + + + + Human-readable name associated with this entry in the App table. + + + + + + + + + + + Identifier of the forwarding policy associated with traffic associated with this App table entry, but not associated with any specified flow. + + + + + + + + + Identifier of the traffic class associated with traffic associated with this App table entry, but not associated with any specified flow. + + + + + + + + + {{reference}} Indicates the ''Policer'' table entry for traffic associated with this {{object}} table entry, but not associated with any specified flow. + {{empty}} indicates a null policer. + + + + + + + + + + + + DSCP to mark traffic associated with this App table entry, but not associated with any specified flow. + A value of -1 indicates no change from the incoming packet. + A value of -2 indicates automatic marking of DSCP based upon the EthernetPriority value of the incoming packet as defined in {{bibref|TR-181i2|Annex A}}. + + + + + + + + + + + Ethernet priority code (as defined in {{bibref|802.1Q-2011}}) to mark traffic associated with this App table entry, but not associated with any specified flow. + A value of -1 indicates no change from the incoming packet. + A value of -2 indicates automatic marking of EthernetPriority based upon the DSCP value of the incoming packet as defined in {{bibref|TR-181i2|Annex A}}. + + + + + + + + + + + Ethernet priority code (as defined in {{bibref|802.1Q-2011}}) to mark the inner VLAN Tags as defined in 802.1Q with this {{object}} table entry where the packet is not associated with any specified flow. This parameter is only applicable when the PDU has 2 VLAN Tags. + A value of -1 indicates no change from the incoming packet. + A value of -2 indicates automatic marking of EthernetPriority based upon the DSCP value of the incoming packet as defined in {{bibref|TR-181i2|Annex A}}. + + + + + + + + + + + Flow table. + + + + + + + Enables or disables this Flow table entry. + + + + + + + + + The status of this Flow table entry. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + URN identifying the type of flow to be associated with the specified policer. A set of defined URNs is given in {{bibref|TR-181i2|Annex A}}. + + + + + + + + + + + List of name-value pairs representing additional criteria to identify the flow type. The use and interpretation is specific to the particular FlowType URN.Encoded using the "x-www-form-urlencoded" content type defined in {{bibref|HTML4.01}}. + + + + + + + + + + + Human-readable name associated with this entry in the Flow table. + + + + + + + + + + + {{reference}} Indicates the ''App'' table entry associated with this flow. {{empty}} indicates the flow table is not associated with any App table entry. + + + + + + + + + + + + Identifier of the forwarding policy associated with this flow. + + + + + + + + + Identifier of the traffic class associated with this flow. + + + + + + + + + {{reference}} Indicates the ''Policer'' table entry for traffic that falls in this flow. + {{empty}} indicates a null policer. + + + + + + + + + + + + DSCP to mark traffic with that falls into this flow. + A value of -1 indicates no change from the incoming packet. + A value of -2 indicates automatic marking of DSCP based upon the EthernetPriority value of the incoming packet as defined in {{bibref|TR-181i2|Annex A}}. + + + + + + + + + + + Ethernet priority code (as defined in {{bibref|802.1Q-2011}}) to mark traffic with that falls into this flow. + A value of -1 indicates no change from the incoming packet. + A value of -2 indicates automatic marking of EthernetPriority based upon the DSCP value of the incoming packet as defined in {{bibref|TR-181i2|Annex A}}. + + + + + + + + + + + Ethernet priority code (as defined in {{bibref|802.1Q-2011}}) to mark the inner VLAN Tags with for traffic that falls into this flow. + A value of -1 indicates no change from the incoming packet. + A value of -2 indicates automatic marking of EthernetPriority based upon the DSCP value of the incoming packet as defined in {{bibref|TR-181i2|Annex A}}. + + + + + + + + + + + + Policer table. + + + + + + + Enables or disables this policer. + + + + + + + + + The status of this policer. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Committed rate allowed for this policer in {{units}}. + + + + + + + + + + + Committed Burstsize in bytes. + + + + + + + + + Excess Burstsize in bytes. + Applied for a {{enum|SingleRateThreeColor|MeterType}} meter. + + + + + + + + + Peak rate allowed for this Meter in {{units}}. + Applied for {{enum|TwoRateThreeColor|MeterType}} meters. + + + + + + + + + + + Peak Burstsize in bytes. + Applied for {{enum|TwoRateThreeColor|MeterType}} meters. + + + + + + + + + Identifies the method of traffic measurement to be used for this policer. + {{enum|SimpleTokenBucket}} makes use of {{param|CommittedRate}} and {{param|CommittedBurstSize}}. + {{enum|SingleRateThreeColor}} makes use of {{param|CommittedRate}}, {{param|CommittedBurstSize}}, and {{param|ExcessBurstSize}} as defined in {{bibref|RFC2697}}. + {{enum|TwoRateThreeColor}} makes use of {{param|CommittedRate}}, {{param|CommittedBurstSize}}, {{param|PeakRate}}, and {{param|PeakBurstSize}} as defined in {{bibref|RFC2698}}. + + + + + + + + + + + {{list}} Indicates supported meter types. + + + + + + + + + + + + + Instructions for how to handle traffic that is conforming. {{pattern}} + {{pattern|Null}} corresponds with no action. + ''<DSCP Value>'' is an unsigned integer that corresponds with a mark action overwriting the traffic's DSCP with the configured DSCP. + ''<:Ethernet Priority>'' is a colon (":") followed by an unsigned integer (no white space). It corresponds with a mark action overwriting the traffic's Ethernet Priority with the configured Ethernet Priority. + ''<DSCP Value:Ethernet Priority>'' is an unsigned integer followed by a colon (":") and a second unsigned integer (no white space). It corresponds with a mark action overwriting the traffic's DSCP and Ethernet Priority with the configured values. + For example, "24" specifies a DSCP value of 24, ":3" specifies an Ethernet Priority of 3, and "24:3" specifies both. + + + + + + + + <DSCP Value> + + + + + <Ethernet Priority> + + + + + <DSCP Value:Ethernet Priority> + + + + + + + + + Instructions for how to handle traffic that is partially conforming (colored yellow). {{pattern}} + {{pattern|Null}} corresponds with no action. + ''<DSCP Value>'' is an unsigned integer that corresponds with a mark action overwriting the traffic's DSCP with the configured DSCP.Only applies for three-color meters. + ''<:Ethernet Priority>'' is a colon (":") followed by an unsigned integer (no white space). It corresponds with a mark action overwriting the traffic's Ethernet Priority with the configured Ethernet Priority. + ''<DSCP Value:Ethernet Priority>'' is an unsigned integer followed by a colon (":") and a second unsigned integer (no white space). It corresponds with a mark action overwriting the traffic's DSCP and Ethernet Priority with the configured values. + For example, "24" specifies a DSCP value of 24, ":3" specifies an Ethernet Priority of 3, and "24:3" specifies both. + + + + + + + + <DSCP Value> + + + + + <Ethernet Priority> + + + + + <DSCP Value:Ethernet Priority> + + + + + + + + + Instructions for how to handle traffic that is non-conforming. {{pattern}} + {{pattern|Null}} corresponds with no action. + ''<DSCP Value>'' is an unsigned integer that corresponds with a mark action overwriting the traffic's DSCP with the configured DSCP. + ''<:Ethernet Priority>'' is a colon (":") followed by an unsigned integer (no white space). It corresponds with a mark action overwriting the traffic's Ethernet Priority with the configured Ethernet Priority. + ''<DSCP Value:Ethernet Priority>'' is an unsigned integer followed by a colon (":") and a second unsigned integer (no white space). It corresponds with a mark action overwriting the traffic's DSCP and Ethernet Priority with the configured values. + For example, "24" specifies a DSCP value of 24, ":3" specifies an Ethernet Priority of 3, and "24:3" specifies both. + + + + + + + + <DSCP Value> + + + + + <Ethernet Priority> + + + + + <DSCP Value:Ethernet Priority> + + + + + + + + + Total number of Packets counted by this policer, regardless of meter action. + + + + + + + + + Total number of Bytes counted by this policer, regardless of meter action. + + + + + + + + + Number of conforming Packets counted by this policer, regardless of meter action. + + + + + + + + + Number of conforming Bytes counted by this policer, regardless of meter action. + + + + + + + + + Number of partially conforming Packets counted by this policer, regardless of meter action. + + + + + + + + + Number of partially conforming Bytes counted by this policer, regardless of meter action. + + + + + + + + + Number of non-conforming Packets counted by this policer, regardless of meter action. + + + + + + + + + Number of non-conforming Bytes counted by this policer, regardless of meter action. + + + + + + + + + + Queue table. Each entry is associated with a set of traffic classes, which are specified via the {{param|TrafficClasses}} parameter, and is configured with weight, precedence, drop algorithm, scheduler algorithm etc as appropriate for the traffic classes. An entry can be associated either with all egress interfaces (in which case an actual queue will be instantiated on each egress interface on which traffic of that traffic class can be generated) or else with a single specified egress interface. + For enabled table entries, if {{param|Interface}} is not a valid reference and {{param|AllInterfaces}} is {{false}}, then the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + + + + + + + Enables or disables this queue. + + + + + + + + + The status of this queue. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + {{list}} Each list item identifies the set of traffic classes associated with this queue. + Traffic is sent to this queue if a {{object|#.Classification}}, {{object|#.App}} or {{object|#.Flow}} table entry specifies a traffic class, e.g. via the {{param|#.Classification.{i}.TrafficClass}} parameter. + If more than one queue on a given egress interface is associated with a given traffic class, the implementation will choose which queue to send traffic of this class to. + + + + + + + + + + + + {{reference}} Specifies the egress interface for which the specified queue MUST exist. + This MAY be a layer 1, 2 or 3 interface, however, the types of interfaces for which ''Queues'' can be instantiated is a local matter to the CPE. + + + + + + + + + + + + Indicates that the specified queue MUST exist for all egress interfaces (i.e. this queue entry is to apply to all egress interfaces). If {{true}}, the value of {{param|Interface}} is ignored since all egress interfaces are indicated. + + + + + + + + + Indicates whether ''all'' the queues corresponding to this table entry are hardware assisted. If any of the queues corresponding to this table entry are not hardware assisted, the parameter value MUST be {{false}}. + + + + + + + + + Number of bytes in the buffer. + Queue buffer size for all egress interfaces for which this queue exists. If the buffer size is not the same for all such egress interfaces, this parameter MUST be 0. + + + + + + + + Weight of this queue in case of {{enum|WFQ|SchedulerAlgorithm}} or {{enum|WRR|SchedulerAlgorithm}}, but only used for queues of equal precedence. + + + + + + + + + Precedence of this queue relative to others. Lower numbers imply greater precedence. + + + + + + + + + + + Random Early Detection threshold, used only when {{param|DropAlgorithm}} is {{enum|RED|DropAlgorithm}}. + This is the minimum threshold (''min_th'') and is measured as a percentage of the queue size. If the value is set to zero, the CPE MUST choose a sensible value, e.g. 5 (but the value MUST still read back as zero). + In this version of the data model, there is no way to set the maximum threshold (''max_th''). The CPE MUST choose a sensible value, e.g. three times the minimum threshold. + In this version of the data model, there is no way to set the RED weight (''w_q''). The CPE MUST choose a sensible value, e.g. 0.002. + + + + + + + + + + + Random Early Detection percentage, used only when {{param|DropAlgorithm}} is {{enum|RED|DropAlgorithm}}. + This is the maximum value of the packet marking probability (''max_p''). If the value is set to zero, the CPE MUST choose a sensible value, e.g. 10 (but the value MUST still read back as zero). + In this version of the data model, there is no way to set the RED weight (''w_q''). The CPE MUST choose a sensible value, e.g. 0.002. + + + + + + + + + + + Dropping algorithm used for this queue if congested. + + + + + + Random Early Detection {{bibref|RED}} + + + + + Drop Tail + + + + + Weighted RED + + + + + {{bibref|BLUE}} + + + + + + + + + Scheduling Algorithm used by scheduler. + + + + + + Weighted Fair Queueing + + + + + Weighted Round Robin + + + + + Strict Priority + + + + + + + + + Rate to shape this queue's traffic to. For leaky bucket (constant rate shaping), this is the constant rate. For token bucket (variable rate shaping), this is the average rate. + If <= 100, in percent of the rate of the highest rate-constrained layer over which the packet will travel on egress. + If > 100, in bits per second. + A value of -1 indicates no shaping. + For example, for packets destined for a WAN DSL interface, if the egress will be on a PPP or IP link with a specified ''ShapingRate'', the percentage is calculated relative to this rate. Otherwise, if the ATM layer is rate-constrained, then the rate is calculated relative to this rate. Otherwise, the rate is calculated relative to the physical-layer DSL rate. + + + + + + + + + + + Burst size in bytes. For both leaky bucket (constant rate shaping) and token bucket (variable rate shaping) this is the bucket size and is therefore the maximum burst size. + + + + + + + + + Queue statistics table. This table is managed by the Controller, which will create entries only for those {Queue, Interface} combinations for which statistics are to be collected. + Note: The {{object}} table includes unique key parameters that are strong references. If a strongly referenced object is deleted, the CPE will set the referencing parameter to {{empty}}. However, doing so under these circumstances might cause the updated {{object}} row to then violate the table's unique key constraint; if this occurs, the CPE MUST disable the offending {{object}} row. + + + + + + + + + + + Enables or disables this object. + + + + + + + + + The status of this object. + + + + + + + Enabled and {Queue,Interface} is valid + + + + + Enabled but {Queue,Interface} is invalid + + + + + + + + + {{datatype|expand}} + + + + + + + + {{reference}} Indicates ''Queue'' entry with which this object is associated. + + + + + + + + + + + + {{reference}} Specifies the egress interface for which this object contains statistics. + This MAY be a layer 1, 2 or 3 interface, however, the types of interfaces for which ''QueueStats'' can be instantiated is a local matter to the CPE. + + + + + + + + + + + + Number of packets output through the queue. + + + + + + + + + Number of bytes output through the queue. + + + + + + + + + Number of packets dropped by the queue. + + + + + + + + + Number of bytes dropped by the queue. + + + + + + + + + Queue occupancy in packets (gives a measure of queue latency). + + + + + + + + + Queue occupancy measured as a {{units}}, i.e. 100 * queue occupancy in bytes / queue size in bytes (gives a measure of queue usage). + + + + + + + + + + + + + Shaper table. Used to shape the queue(s) associated with {{param|Interface}}. In case of a single queue for that interface, determines the egress rate of the queue. In case of multiple queues for that interface (possibly with per queue shaping rates), determines the aggregate egress rate on that interface. + For enabled table entries, if {{param|Interface}} is not a valid reference then the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + Note: The {{object}} table includes a unique key parameter that is a strong reference. If a strongly referenced object is deleted, the CPE will set the referencing parameter to {{empty}}. However, doing so under these circumstances might cause the updated {{object}} row to then violate the table's unique key constraint; if this occurs, the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}} and disable the offending {{object}} row. + + + + + + + + + + Enables or disables this shaper. + + + + + + + + + The status of this shaper. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + {{reference}}The interface object associated with this ''Shaper'' entry. It MAY be a layer 1, 2 or 3 interface, however, the types of interfaces for which ''Shapers'' can be instantiated is a local matter to the CPE. + + + + + + + + + + + + Rate to shape the associated interface connection's egress traffic to. For leaky bucket (constant rate shaping), this is the constant rate. For token bucket (variable rate shaping), this is the average rate. + If <= 100, in percent of the rate of the highest rate-constrained layer over which the packet will travel on egress. + If > 100, in bits per second. + A value of -1 indicates no shaping. + For example, for packets destined for a WAN DSL interface, if the ATM layer is rate-constrained, then the rate is calculated relative to this rate. Otherwise, the rate is calculated relative to the physical-layer DSL rate. + + + + + + + + + + + Burst size in bytes. For both leaky bucket (constant rate shaping) and token bucket (variable rate shaping) this is the bucket size and is therefore the maximum burst size. + + + + + + + + + This object contains generic device configuration information. + + + + A password to allow LAN access to protected auto-configuration services. + If the CPE supports TR-064 (LAN-side DSL CPE Configuration Protocol), this parameter is to be used as the ''dslf-config'' password (as defined in TR-064). + If the CPE has a user interface with password protection enabled, this parameter is also to be used as the user password for password-protected operations. However, this parameter MUST NOT be used to set the user password if the parameter {{param|.UserInterface.PasswordUserSelectable}} is {{true}}. + + + + + + + This object provides information about each of the hosts on the LAN, including those whose IP address was allocated by the CPE using DHCP as well as hosts with statically allocated IP addresses. It can also include non-IP hosts. + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + Host table. + + + + + + + + + + {{datatype|expand}} + This parameter was DEPRECATED because {{object}} is a transient object. + This parameter is OBSOLETED in 2.14. + + + + + + + + Unique physical identifier of the host. For many layer 2 technologies this is typically a MAC address. + + + + + + + + + + Current IP Address of the host. {{empty}} if no address is available. + If more than one IP address for this host is known, the CPE will choose a ''primary'' address. All known IP addresses can be listed in the {{object|IPv4Address}} and {{object|IPv6Address}} tables. + + + + + + + + Indicates whether the IP address of the host was allocated by the CPE using DHCP, was assigned to the host statically, or was assigned using automatic IP address allocation. {{enum}} + This parameter was DEPRECATED because only {{enum|None}} and {{enum|DHCP}} made sense (the CPE doesn't know whether the address is {{enum|Static}} or {{enum|AutoIP}}). The {{enum|DHCP}} case is now handled via the {{param|DHCPClient}} reference. + This parameter is OBSOLETED in 2.14. + + + + + + + + + + + + + {{reference}} Each list item is the DHCPv4 or DHCPv6 server's client entry that corresponds to the host. + + + + + + + + + + + DHCP lease time remaining in {{units}}. A value of -1 indicates an infinite lease. The value MUST be 0 (zero) if the {{param|AddressSource}} is not {{enum|DHCP|AddressSource}}. + This parameter was DEPRECATED because DHCP lease/lifetime information can be accessed via the {{param|DHCPClient}} reference. + This parameter is OBSOLETED in 2.14. + + + + + + + + + + + {{noreference}}The value MUST be the path name of the ''AssociatedDevice'' (or equivalent) table row that models the host, or {{null}} if either there is no such table or the host isn't directly connected to this device (e.g. the host is connected to a Wi-Fi Access Point). + For example: ''Device.WiFi.AccessPoint.1.AssociatedDevice.2'' + + + + + + + + + + + {{noreference}}The value MUST be the path name of a row in a layer 1 interface table. If either the layer 1 interface isn't known or the host isn't directly connected to this device (e.g. the host is connected to a Wi-Fi Access Point), then {{param}} will be {{null}}. + For example: ''Device.Ethernet.Interface.2'' + + + + + + + + + + + {{reference}} If either the layer 3 interface isn't known or the host isn't directly connected to this device (e.g. the host is connected to a Wi-Fi Access Point), then {{param}} will be {{null}}. + + + + + + + + + + + Type of physical interface through which this host is connected. + + + + + + + + + + + + + + + + + Vendor Class Identifier DHCP option (Option 60) of the host. + This is a normal string, e.g. "abc" is represented as "abc" and not say "616263" hex. However, if the value includes non-printing characters then such characters have to be represented using XML escapes, e.g. #x0a for line-feed. + It MAY be defined when {{param|AddressSource}} is {{enum|DHCP|AddressSource}}. {{empty}} indicates this option is not used. + Note: DHCPv4 Option values are limited to a length of 255, while DHCPv6 Option values can have a maximum length of 65535. + This parameter was DEPRECATED because host-supplied DHCP options can be accessed via the {{param|DHCPClient}} reference. + This parameter is OBSOLETED in 2.14. + + + + + + + + + + A hexbinary string, Client Identifier DHCP option (Option 61) for the specific IP connection of the client. The option value is binary, so an exact match is REQUIRED. + It MAY be defined when {{param|AddressSource}} is {{enum|DHCP|AddressSource}}. {{empty}} indicates this option is not used. + Note: DHCPv4 Option values are limited to a length of 255, while DHCPv6 Option values can have a maximum length of 65535. + This parameter was DEPRECATED because host-supplied DHCP options can be accessed via the {{param|DHCPClient}} reference. + This parameter is OBSOLETED in 2.14. + + + + + + + + + + A hexbinary string, User Class Identifier DHCP option (Option 77) of the host. + It MAY be defined when {{param|AddressSource}} is {{enum|DHCP|AddressSource}}. {{empty}} indicates this option is not used. + Note: DHCPv4 Option values are limited to a length of 255, while DHCPv6 Option values can have a maximum length of 65535. + This parameter is DEPRECATED because host-supplied DHCP options can be accessed via the {{param|DHCPClient}} reference. + + + + + + + + + + The device's host name or {{empty}} if unknown. + + + + + + + + + + Whether or not the host is currently present on the LAN. The method of presence detection is a local matter to the CPE. + The ability to list inactive hosts is OPTIONAL. If the CPE includes inactive hosts in this table, {{param}} MUST be set to {{false}} for each inactive host. The length of time an inactive host remains listed in this table is a local matter to the CPE. + Entries in Device.Hosts.Host SHOULD NOT be removed when they become inactive if there are {{object|WANStats}} statistics collected for the entry in the past seven days. + + + + + + + + The datetime when {{param|Active}} last changed from {{true}} to {{false}} or from {{false}} to {{true}}. The initial detection of a host SHOULD be treated as a transition from {{false}} to {{true}}, showing the datetime when the host was first detected. + The ability to list inactive hosts is OPTIONAL. The length of time an inactive host remains listed in this table is a local matter to the CPE. + Entries in Device.Hosts.Host SHOULD NOT be removed when they become inactive if there are {{object|WANStats}} statistics collected for the entry in the past seven days. + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + The host's known IPv4 addresses. This includes any addresses assigned via DHCP, which can also be accessed via the {{param|#.DHCPClient}} reference. + + + + + + + IPv4 address. + + + + + + + + + The host's known IPv6 addresses. This includes any addresses assigned via DHCP, which can also be accessed via the {{param|#.DHCPClient}} reference. + + + + + + + IPv6 address. + + + + + + + + + These count bytes or packets at the IP layer sent to the WAN, or received from the WAN. + + + + The total number of bytes transmitted to the WAN from the Host device at the IP layer. + + + + + + + + The total number of bytes received from the WAN and sent to the Host device at the IP layer. + + + + + + + + The total number of IP packets transmitted to the WAN from the Host device. + + + + + + + + The total number of IP packets received from the WAN and sent to the Host device. + + + + + + + + The total number of outbound IP packets to the WAN from the Host device that could not be transmitted because of errors. These may be due to the number of retransmissions exceeding the retry limit, or from other causes. + + + + + + + + The total number of transmitted IP packets to the WAN from the Host device which were retransmissions. Two retransmissions of the same packet results in this counter incrementing by two. + + + + + + + + The total number of outbound IP packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + + Every instance of this object provides access control for a LAN device. + Access is allowed if no instance of {{object}} is defined for a device. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Unique physical identifier of the device. For many layer 2 technologies this is typically a MAC address. + + + + + + + + + + Any user defined name for the device. + + + + + + + + + + Enables or disables this {{object}} entry. + + + + + + + + + Allows or denies access for a device. + If {{param}} is set to "Allow", device access is allowed based on the {{object|Schedule}} objects. Access is enabled if there is no {{object|Schedule}} object defined. + If {{param}} is set to "Deny", defined {{object|Schedule}} objects are ignored and no access is allowed for the device. + + + + + + + + + + + + {{numentries}} + + + + + + + + + Each instance of this object provides a schedule where access is enabled. + + + + + + + {{datatype|expand}} + + + + + + + + Enables or disables this {{object}} entry. + + + + + + + + + Comma-separated list of days which access is enabled. {{enum}} + + + + + + + + + + + + + + + + + Start time of the enable schedule in hh:mm format. [hh] refers to a zero-padded hour between 00 and 23. [mm] refers to a zero-padded minute between 00 and 59. + Start time is in local time zone. + + + + + + + + + + + + The duration, in {{units}}, which the access is enabled. + If the {{param|StartTime}} is not defined, duration is the total time access is allowed during a calendar day. + If a {{param|StartTime}} is defined, access is allowed for the {{param}} period starting from {{param|StartTime}}. + + + + + + + + + + + + Properties for Domain Name Service (DNS). + + + + The DNS record types that are supported by the device. {{enum}} + + + + + + + {{bibref|RFC1035}} + + + + + {{bibref|RFC3596}} + + + + + {{bibref|RFC2782}} + + + + + {{bibref|RFC1035}} + + + + + + + + + Client properties for Domain Name Service (DNS). The DNS client resolves FQDN on behalf of device internal (client) applications. + + + + Enables or disables the DNS client. + + + + + + + + The status of the DNS client. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + {{numentries}} + + + + + + + + + This table contains the DNS Server IP address to be used by the DHCP Client (it does ''not'' model a DNS Server). Entries are either automatically created as result of DHCP (v4 or v6), IPCP, or RA received DNS server information, or are statically configured by the Controller. + + + + + + + + + + Enables or disables this entry. + + + + + + + + + The status of this entry. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + DNS server IP address. + Note: {{param}} is only writable when {{param|Type}} is {{enum|Static|Type}}; otherwise, {{param}} is automatically configured as result of DHCP, IPCP, or RA received DNS server information. + + + + + + + + {{reference}} This parameter specifies the IP interface over which the DNS query is sent. + If {{empty}} is specified, the CPE MUST use its routing policy (Forwarding table entries), if necessary, to determine the appropriate interface. + Note: {{param}} is only writable when {{param|Type}} is {{enum|Static|Type}}; otherwise, {{param}} is automatically configured as result of DHCP, IPCP, or RA received DNS server information. + + + + + + + + + + + + Method used to assign the {{param|DNSServer}} address. {{enum}} + Table entries that are automatically created as result of DHCP, IPCP, or RA received DNS server information will have {{param}} set to {{enum|DHCPv4}}, {{enum|DHCPv6}}, {{enum|IPCP}}, or {{enum|RouterAdvertisement}}, as the case may be. Manually created table entires will have their {{param}} set to {{enum|Static}}. + + + + + + Replaced by {{enum|DHCPv4}}. + + + + + + + + + + + + + + + DNS Relay object. The DNS proxy (or relay) function allows the forwarding of local network DNS queries to local or external DNS server(s) {{bibref|RFC5625}}. + + + + Enables or disables the DNS Relay function. + + + + + + + + The status of the DNS relay. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + {{numentries}} + + + + + + + + + DNS Server forwarding policy to be used by the DNS Relay. Entries are either automatically created as result of DHCP (v4 or v6), IPCP, or RA received DNS server information, or are statically configured by the Controller. + Note: Management of re-directing queries to the device embedded DNS server is not defined in this version of the specification. + + + + + + + + + + Enables or disables this entry. + + + + + + + + + The status of this entry. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + DNS server IP address. + Note: {{param}} is only writable when {{param|Type}} is {{enum|Static|Type}}; otherwise, {{param}} is automatically configured as result of DHCP, IPCP, or RA received DNS server information. + + + + + + + + {{reference}} Specifies the IP interface over which the DNS query is sent. + If {{empty}} is specified, the CPE MUST use its routing policy (IP Forwarding table entries), if necessary, to determine the appropriate interface. + Note: {{param}} is only writable when {{param|Type}} is {{enum|Static|Type}}; otherwise, {{param}} is automatically configured as result of DHCP, IPCP, or RA received DNS server information. + + + + + + + + + + + + Method used to assign the {{param|DNSServer}} address. {{enum}} + Table entries that are automatically created as result of DHCP, IPCP, or RA received DNS server information will have {{param}} set to {{enum|DHCPv4}}, {{enum|DHCPv6}}, {{enum|IPCP}}, or {{enum|RouterAdvertisement}}, as the case may be. Manually created table entires will have their {{param}} set to {{enum|Static}}. + + + + + + Replaced by {{enum|DHCPv4}}. + + + + + + + + + + + + + + + The DNS Diagnostics object containing the {{object|NSLookupDiagnostics}} test. + + + + + This object defines access to an IP-layer NS Lookup test for the specified IP interface. + When initiated, the NS Lookup test will contact {{param|DNSServer}} and look up {{param|HostName}} {{param|NumberOfRepetitions}} times. + There will be a {{object|Result}} instance for each time the device performs a DNS lookup, which is determined by the value of {{param|NumberOfRepetitions}}. + Any previous {{object|Result}} instances are removed when a new test is initiated. + + + + {{datatype|expand}} + + + + + + + + + Unable to resolve DNSServer Name + + + + + + + + + + {{reference}} The layer 2 or layer 3 interface over which the test is to be performed. Example: ''Device.IP.Interface.1'', ''Device.Bridge.1.Port.2'' + If {{empty}} is specified, the CPE MUST use the interface as directed by its bridging or routing policy (''Forwarding'' table entries) to determine the appropriate interface. + + + + + + + + + + + Specifies the Host Name that NS Lookup is to look for. The current domain name MUST be used unless the name is a fully qualified name. + + + + + + + + + + Specifies the DNS Server name or IP address that NS Lookup is to use for the lookup. The name of this server will be resolved using the default DNS server unless an IP address is provided. + If {{empty}} is specified, the device's default DNS server will be used. + + + + + + + + + + Timeout in {{units}} that indicates that a request has failed. + + + + + + + + + + The number of times the device SHOULD repeat the execution of the NSLookup using the same input parameters. If the diagnostics test fails the CPE MAY terminate the test without completing the full number of repetitions. + Each repetition will use a Result instance to hold the NSLookup result data. + + + + + + + + Number of successfully executed repetitions. + + + + + + + + {{numentries}} + Total number of Result entries from the most recent invocation of the test. + + + + + + + + + Results from the most recent invocation of the test, one instance per repetition. + + + + Result Parameter to represent whether the NS Lookup was successful or not. + Errors for individual Result instances do not get bubbled up to {{param|#.DiagnosticsState}}. + A failure on a specific attempt does not mean that the overall test failed, but a failure on all attempts means that {{param|#.DiagnosticsState}} SHOULD be {{enum|Error_Other|#.DiagnosticsState}}. + + + + + + + + + + + + + + Result parameter to represent whether the answer is Authoritative or not. + + + + + + Indicates that the NS Lookup failed to find the host. + + + + + + + + + + Result parameter to represent the fully qualified name for the Host Name in the calling parameter (e.g. HostName.DomainName); if no response was provided, then this parameter is {{empty}}. + + + + + + + + + + {{list}} Indicates the IP Address results returned by the NS Lookup; if no response was provided, then this parameter is {{empty}}. + + + + + + + + + Result parameter to represent the actual DNS Server IP address that the NS Lookup used. + + + + + + + + Response time (for the first response packet) in {{units}}, or 0 if no response was received. + + + + + + + + + + + This object contains the DNS Service Discovery {{bibref|DNS-SD}} object and parameters necessary to discover services and their associated devices. + Upon reboot the the contents of the service table are repopulated. When the DNS.SD service is disabled, the contents of the service table is implementation specific. + + + + The parameter, when {{true}}, enables the discovery of DNS-SD services hosted by other devices. + + + + + + + + {{numentries}} + + + + + + + + {{reference|the {{object|##.IP.Interface}} object instance from which DNS-SD services are advertised}} + If this parameter is not supported by an implementation then DNS-SD services are advertised on all LAN interfaces. + + + + + + + + + + + + The {{object}} table contains discovered DNS-SD services. DNS.SD service information is provided in DNS RR SRV records {{bibref|RFC2782}}. The Service Instance Name {{bibref|DNS-SD|Section 4.1 Structured Instance Names}} further specifies information about the service name (RFC2782 Service field) and domain name (RFC2782 Name field) in the form: + Service Instance Name = <InstanceName> . <Service> . <Domain> + <Service> = _<ApplicationProtocol> . _<TransportProtocol> + RFC2782 Service field will always be equal to <InstanceName>. <Service> + RFC2782 Name field will always be equal to <Domain> + For example, an SSH service might have: + *{{param|InstanceName}} = "Secure Shell (SSH))" + *{{param|ApplicationProtocol}} = "ssh" + *{{param|TransportProtocol}} = "TCP" + *{{param|Domain}} = "example.com" + *{{param|Port}} = 22 + *{{param|Target}} = "ssh.example.com." + + + + + + + + + + Human-readable instance name {{bibref|DNS-SD|Section 4.1.1 Instance Names}} (i.e. The "<{{param}}>" portion of the '"Service Instance Name'"). + + + + + + + + + + The Application Protocol, without the leading underscore, associated with the service (e.g., daap) as defined by the DNS-SD service {{bibref|DNS-SD|Section 7 Application Protocol Names}}. + + + + + + + + + + The Transport Protocol associated with the service as defined by the DNS-SD service {{bibref|DNS-SD|Section 4.1.2 Service Names}}. + + + + + + + + + + + The value extracted from the Name field of the DNS SRV record {{bibref|RFC2782}} which represents the fully qualified domain name (FQDN) associated with the service as defined by the DNS-SD service {{bibref|DNS-SD|Section 4.1.3 Domain Names}}. + + + + + + + + + + The value extracted from the Port field of the DNS SRV record {{bibref|RFC2782}} that is used to contact the service. + + + + + + + + + + The fully qualified domain name (FQDN) with the trailing dot "." of the target host implementing the service as in the DNS SRV record {{bibref|RFC2782}}. + + + + + + + + + + The status of the discovered {{object}} at {{param|LastUpdate}} time. {{enum}} + The ability to instantiate an inactive {{object}} is OPTIONAL. + The time an inactive {{object}} remains listed in this table is a local matter to the device. + + + + + + The {{object}} has received a response record with TTL > 0 and the {{param|#.Service.{i}.TimeToLive}} has not expired yet. The {{object}} is considered active. + + + + + The device has received a response record containing TTL=0 indicating a goodbye message and the {{param|#.Service.{i}.TimeToLive}} has not expired yet. The {{object}} is considered inactive. + + + + + The {{param|#.Service.{i}.TimeToLive}} has expired. The {{object}} is considered inactive + + + + + + + + The date and time at which the last advertisement for this {{object}} was received. + + + + + + + + {{list}} {{reference|all Host table entries, active or inactive, that correspond to this discovered DNS.SD service. As such, when entries are added or removed from the Host tables the value of this parameter MUST be updated accordingly|ignore}} + + + + + + + + + + + + + + The value extracted from the TTL field of the DNS SRV record {{bibref|RFC2782}}. + + + + + + + + + + The value extracted from the Priority field of the DNS SRV record {{bibref|RFC2782}}. + + + + + + + + + + A server selection mechanism. The value extracted from the Weight field of the DNS SRV record {{bibref|RFC2782}} that specifies the relative weight for entries with the same {{param|Priority}}. + + + + + + + + + + {{numentries}} + + + + + + + + + This object maintains an instance of a (key/value pairs) of the service. The information is extracted from DNS TXT records {{bibref|RFC1035}} of the discovered service. + When multiple instances of the {{object}} table have the same value for the {{param|Key}} parameter, the implementation is CPE specific. + + + + The key that identifies the text record + + + + + + + + + + The value of the text record. + + + + + + + + + + + Properties for Network Address Translation (NAT). + The entire {{object}} object only applies to IPv4. + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + NAT settings for an associated IP Interface on which NAT is enabled. + For enabled table entries, if {{param|Interface}} is not a valid reference then the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + Note: The {{object}} table includes a unique key parameter that is a strong reference. If a strongly referenced object is deleted, the CPE will set the referencing parameter to {{empty}}. However, doing so under these circumstances might cause the updated {{object}} row to then violate the table's unique key constraint; if this occurs, the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}} and disable the offending {{object}} row. + + + + + + + + + + Enables or disables the {{object}} entry, indicating if NAT is enabled for the referenced IP Interface instance. On creation, an {{object}} entry is disabled by default. + + + + + + + + + The status of this entry. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + NAT enabled but forced by a third party to be operationally disabled, e.g. because a {{object|##.MAP.Domain}} is enabled but there is no Basic Mapping Rule {{bibref|RFC7597}}. + + + + + NAT enabled but port mapping has been operationally disabled by a third party, e.g. because this is REQUIRED by the current {{object|##.Firewall}} level. + + + + + + + + + + + {{datatype|expand}} + + + + + + + + {{reference}} The associated IP interface on which NAT is to be enabled. + + + + + + + + + + + + Determines the timeout, in {{units}}, of NAT translations for TCP sessions. It is the time after which a NAT entry is removed from the NAT table if there is no activity. A value of -1 represents an infinite duration. + + + + + + + + + + + + Determines the timeout, in {{units}}, of NAT translations for UDP bindings. It is the time after which a NAT entry is removed from the NAT table if there is no activity. A value of -1 represents an infinite duration. + + + + + + + + + + + + + Port mapping table. + This table MUST contain all NAT port mappings associated with this connection, including static and dynamic port mappings programmatically created via local control protocol, such as UPnP. + This table MUST NOT contain dynamic NAT binding entries associated with the normal operation of NAT. + If the CPE hosts a firewall, it is assumed that it will appropriately configure the firewall for the port mapping. + For enabled table entries, if {{param|InternalClient}} is {{empty}}, or if {{param|Interface}} is not a valid reference and {{param|AllInterfaces}} is {{false}}, then the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + + + + + + + + + + + + Enables or disables the port mapping instance. On creation, an entry is disabled by default. + + + + + + + + + The status of this entry. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + {{datatype|expand}} + Note: There is no guarantee that the {{param}} value on automatically-created {{object}} instances will be retained. This is because automatically-created {{object}} instances can be transitory. + + + + + + + + {{reference}} Specifies the IP interface to which this port mapping applies. + + + + + + + + + + + + Indicates whether this port mapping applies to all IP interfaces that support port mappings. If {{true}}, the value of {{param|Interface}} is ignored since all supported IP interfaces are indicated. + + + + + + + + + Determines the time to live, in {{units}}, of a port mapping lease, where "time to live" means the number of {{units}} before the port mapping expires. + A value of 0 means the port mapping is static. Support for dynamic (non-static) port mappings is OPTIONAL. That is, the only value for {{param}} that MUST be supported is 0. + For a dynamic (non-static) port mapping, when this parameter is read, the value represents the time remaining on the port mapping lease. That is, for a dynamic port mapping, the value counts down toward 0. When a dynamic port mapping lease expires, the CPE MUST automatically terminate that port mapping, and MUST automatically delete the corresponding {{object}} table entry. + + + + + + + + + + This parameter is the IP address of the source of inbound packets. {{empty}} indicates a "wildcard", i.e. any IP address (this will be {{empty}} in most cases). CPE are REQUIRED only to support {{empty}}. + When {{param}} is {{empty}}, all traffic sent to the {{param|ExternalPort}} on the WAN interface of the gateway is forwarded to the {{object|.IP.Interface}} associated with the {{param|InternalClient}} on the {{param|InternalPort}}. + When {{param}} is specified as one external IP address, the NAT will only forward inbound packets from this {{param}} to the {{param|InternalClient}}, all other packets will be dropped. + If a CPE supports non-empty values for {{param}}, it MAY additionally support the ability to have more than one port mapping with the same {{param|ExternalPort}} and {{param|Protocol}}, but with differing values of {{param}}. + When wildcard values are used for {{param}} and/or {{param|ExternalPort}}, the following precedence order applies (with the highest precedence listed first): + # Explicit {{param}}, explicit {{param|ExternalPort}} + # Explicit {{param}}, zero {{param|ExternalPort}} + # Empty {{param}}, explicit {{param|ExternalPort}} + # Empty {{param}}, zero {{param|ExternalPort}} + If an incoming packet matches the criteria associated with more than one entry in this table, the CPE MUST apply the port mapping associated with the highest precedence entry. + + + + + + + + + The external port (or the first port of a range of external ports) that the NAT gateway would listen on for traffic to a corresponding {{param|InternalPort}}. Inbound packets to this external port on the WAN interface SHOULD be forwarded to the {{object|.IP.Interface}} associated with the {{param|InternalClient}} on the {{param|InternalPort}}. + A value of zero ({{null}}) represents a "wildcard", i.e. any port number. If this value is {{null}}, traffic on all external ports (that are not otherwise mapped) will be forwarded to {{param|InternalClient}}, and the value(s) of {{param|InternalPort}} on {{param|InternalClient}} are ignored. + When wildcard values are used for {{param|RemoteHost}} and/or {{param}}, the following precedence order applies (with the highest precedence listed first): + # Explicit {{param|RemoteHost}}, explicit {{param}} + # Explicit {{param|RemoteHost}}, zero {{param}} + # Empty {{param|RemoteHost}}, explicit {{param}} + # Empty {{param|RemoteHost}}, zero {{param}} + If an incoming packet matches the criteria associated with more than one entry in this table, the CPE MUST apply the port mapping associated with the highest precedence entry. + + + + + + + + + + Indicates the last port of the external port range that starts with {{param|ExternalPort}}. + If an external port range is specified, then the behavior described for {{param|ExternalPort}} applies to all ports within the range. + A value of zero (0) indicates that no external port range is specified, i.e. that the range consists only of {{param|ExternalPort}}. + If {{param|ExternalPort}} is zero (wildcard), the value of this parameter MUST be ignored. + If specified, the value of this parameter MUST be greater than or equal to the value of {{param|ExternalPort}}. + + + + + + + + + + + The port on {{param|InternalClient}} that the gateway SHOULD forward traffic to. + + + + + + + + + + The protocol of the port mapping. {{enum}} + + + + + + + + + + + The IP address or DNS host name of an internal client (on the LAN). + Support for an IP address is mandatory. If {{param}} is specified as an IP address and the LAN device's IP address subsequently changes, the port mapping MUST remain associated with the original IP address. + Support for DNS host names is OPTIONAL. If {{param}} is specified as a DNS host name and the LAN device's IP address subsequently changes, the port mapping MUST remain associated with this LAN device. In this case, it is the responsibility of the CPE to maintain the name-to-address mapping in the event of IP address changes. This can be accomplished, for example, by assigning the DNS host name via use of DHCP option 12 (Host Name) or option 81 (FQDN). Note that the Controller can learn the host name associated with a given LAN device via the {{object|.Hosts.Host.}} table. + Read access to this parameter MUST always return the exact value that was last set by the Controller. For example, if the internal client is set to a DNS host name, it MUST read back as a DNS host name and not as an IP address. + It MUST be possible to set the {{param}} to the broadcast IP address 255.255.255.255 for UDP mappings. This is to enable multiple NAT clients to use the same well-known port simultaneously. + + + + + + + + + + + User-readable description of this port mapping. + + + + + + + + + + + + Properties for Port Control Protocol (PCP) {{bibref|RFC6887}}. + See the PCP Theory of Operation {{bibref|TR-181i2|Appendix XIV}} for a description of the working of this PCP data model. + + + + {{list}} Each list item denotes a PCP version supported by the PCP Client. Currently known versions are 0, 1 and 2. + This parameter is based on Version from {{bibref|RFC6887}}. + + + + + + + + + + + This is the version to be used in the first exchange with a new PCP Server. + The factory default MUST be the highest supported version, as described in {{bibref|RFC6887|Section 9}}. + + + + + + + + + + {{list}} The list of the PCP Options supported by the PCP Client. + + + + + + + + + + + {{numentries}} + + + + + + + + + Client properties for Port Control Protocol (PCP). The PCP Client interacts with a PCP Server as defined in {{bibref|RFC6887}} for internal device applications or LAN device applications via Interworking functions. + + + + + + + + + + Enables or disables the PCP Client. + + + + + + + + {{datatype|expand}} + + + + + + + + {{reference|the interface stack instance representing the WAN interface this client operates on}} See {{object|.InterfaceStack.}} + + + + + + + + + + The status of the PCP Client. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + Enables or disables the MAP OpCode. + + + + + + + + Enables or disables the PEER OpCode. + + + + + + + + Enables or disables the ANNOUNCE OpCode. + When {{false}} the PCP Client does not support unsolicited ANNOUNCE messages. + + + + + + + + Enables or disables the THIRD_PARTY Option. + + + + + + + + Indicates whether THIRD_PARTY Option is enabled or not. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + Enables or disables the FILTER option. + + + + + + + + {{numentries}} + + + + + + + + + Properties for the Port Control Protocol (PCP) Proxy, as specified in {{bibref|PCPProxy}}. + + + + Enables or disables the PCP Proxy for this PCP Client. + + + + + + + + A string identifying the highest version of PCP that the proxy supports. + This parameter is based on Version from {{bibref|RFC6887}}. + + + + + + + + + + The status of the PCP Proxy for this PCP Client. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + Properties for the interworking function between UPnP IGD (Internet Gateway Device) and PCP, as specified in {{bibref|RFC6970}}. + + + + Enables or disables the UPnP IGD-PCP Interworking Function for this PCP Client. + + + + + + + + The status of the UPnP IGD-PCP Interworking Function for this PCP Client. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + This table contains the PCP Servers to be used by the PCP Client. Entries are either statically configured or automatically created via DHCP options OPTION_V4_PCP_SERVER and OPTION_V6_PCP_SERVER, as per {{bibref|RFC7291}}. + Each OPTION_V4_PCP_SERVER or OPTION_V6_PCP_SERVER option corresponds to a {{object}} instance. If an option returns multiple addresses then that {{object}} instance has multiple addresses. + + + + + + + + + + Enables or disables this PCP Server. + + + + + + + + + The status of the PCP Server. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Method used to assign {{param|ServerNameOrAddress}} and create this table entry. {{enum}} + Note: In the {{enum|DHCPv4}} and {{enum|DHCPv6}} cases, if more than one IP address is received {{param|ServerNameOrAddress}} will be the first address and {{param|AdditionalServerAddresses}} will be the remaining addresses. + + + + + + {{param|ServerNameOrAddress}} is an IPv4 address that was received via OPTION_V4_PCP_SERVER + + + + + {{param|ServerNameOrAddress}} is an IPv6 address that was received via OPTION_V6_PCP_SERVER + + + + + {{param|ServerNameOrAddress}} is an FQDN, IPv4 address or IPv6 address that was created by the Controller, by some other management entity (e.g. via a GUI), or is present in the factory default configuration + + + + + + + + + The FQDN or IP address of the PCP Server, assigned as described under {{param|Origin}}. + + + + + + + + + + The IP address currently in use for the PCP Server, derived from the value of {{param|ServerNameOrAddress}}. + {{empty}} indicates that no PCP Server address is currently known. + + + + + + + + PCP Server addresses in addition to {{param|ServerNameOrAddress}}. This can be non-empty only if {{param|Origin}} is {{enum|DHCPv4|Origin}} or {{enum|DHCPv6|Origin}} and if more than one PCP Server address was received. + + + + + + + + + The external IP address of the PCP-controlled device hosting this server. + + + + + + + + This is the version of PCP resulting from client-server Version Negotiation. + This parameter is based on Version from {{bibref|RFC6887}}. + + + + + + + + + + Indicates the maximum number of inbound filters allowed to be associated with a mapping entry on this server. + + + + + + + + Indicates the maximum number of ports allocated to this PCP Client on this server. + A value of 0 means that there is no limitation. + + + + + + + + + + + Indicates the preferred lifetime (in {{units}}) to be used for mappings with this server when no preference is selected by an application/user. + + + + + + + + + + Indicates the capabilities supported by the PCP Server. {{enum}} + + + + + + + + + + + + + + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + Inbound Mapping table. + This table contains all Inbound Mappings requested by this PCP Client on this PCP Server. Such a mapping is created by a PCP request with OpCode MAP, as described in {{bibref|RFC6887|Section 11}}. + These requests can be issued from internal device applications, from static configuration or from other LAN device applications via interworking functions such as UPnP IGD or PCP proxies. The {{param|Origin}} parameter indicates which mechanism requested the mapping. + For non-{{enum|Static|Origin}} mappings (here ''Static'' refers to the mechanism that created the mapping, not to the {{param|Lifetime}}), the Controller MAY modify the {{param|Enable}} parameter but MUST NOT modify any other parameters in the mapping or its sub-objects. + + + + + + + + + + + + Enables or disables this {{object}} instance. + + + + + + + + + The status of this entry. {{enum}} + The {{enum|Error_PCPErrorCodeReceived}} value indicates that the PCP Client received an error code from the PCP Server. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + Provides the PCP error code when {{param|Status}} is {{enum|Error_PCPErrorCodeReceived|Status}}. Error code values are defined in {{bibref|RFC6887|Section 7.4}}. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Mechanism via which the mapping was requested. {{enum}} + + + + + + Requested via internal device application + + + + + Requested via UPnP IGD interworking function + + + + + Requested via PCP proxy + + + + + Requested via static configuration, i.e. created by the Controller, by some other management entity (e.g. via a GUI), or is present in the factory default configuration + + + + + + + + Determines the time to live, in {{units}}, of this Inbound Mapping lease, i.e. the remaining time before this port mapping expires. + A value of 0 means that the port mapping is permanent (referred to as a static mapping in {{bibref|RFC6887}}). + When a dynamic Inbound Mapping lease expires, the CPE MUST automatically delete the corresponding {{object}} table entry. + + + + + + + + + + The external IPv4 or IPv6 Address that the PCP-controlled device will listen on for incoming packets to be forwarded to the PCP Client. + This is useful for refreshing an Inbound Mapping, especially after the PCP Server loses state. If the PCP client does not know the external address, or does not have a preference, it MUST use {{empty}}. + + + + + + + + + The external port (or the first port of a range of external ports) that the PCP-controlled device will listen on for incoming packets. Those inbound packets will be forwarded to {{param|InternalPort}}. If the PCP client does not know the external port, or does not have a preference, it MUST use 0. + This is useful for refreshing an Inbound Mapping, especially after the PCP Server loses state. If the PCP Client does not know the external port, or does not have a preference, it MUST use 0. + + + + + + + + + + + Indicates the last port of the external port range that starts with {{param|SuggestedExternalPort}}. + If an external port range is specified, then the behavior described for {{param|SuggestedExternalPort}} applies to all ports within the range. + A value of zero (0) indicates that no external port range is specified, i.e. that the range consists only of {{param|SuggestedExternalPort}}. + If {{param|SuggestedExternalPort}} is zero (wildcard), the value of {{param}} MUST be ignored. + If specified, the value of this parameter MUST be zero or be greater than or equal to the value of {{param|SuggestedExternalPort}}. + + + + + + + + + + + The port on this PCP Client's {{param|##.WANInterface}} that the PCP-controlled device forwards incoming packets to. + + + + + + + + + + The protocol number of the {{object}}. Values are taken from {{bibref|IANA-protocolnumbers}}. + The value -1 means ''all protocols''. + + + + + + + + + + Under certain conditions, the PCP Client can create a PCP mapping on behalf of another device, by using the THIRD_PARTY option, as specified in {{bibref|RFC6887|Section 7.3}}. In that case, {{param}} is the IP address of the device for which the PCP operation is requested. + For non-third-party mappings, {{param}} SHOULD be {{empty}}. + + + + + + + + User-readable description of this {{object}}. + + + + + + + + + + + The external IPAddress returned by the PCP Server. The IP address that the PCP-controlled device is listening on for incoming packets to a corresponding PCP Client. + + + + + + + + + The external port returned by the PCP Server. The external port (or the first port of a range of external ports) that the PCP-controlled device is listening on for incoming packets to a corresponding {{param|InternalPort}}. Inbound packets to this external port on the External interface of the PCP-controlled device is forwarded to the on the {{param|InternalPort}}. + + + + + + + + + + Indicates the last port of the external port range that starts with {{param|AssignedExternalPort}}. + If an external port range is specified, then the behavior described for {{param|AssignedExternalPort}} applies to all ports within the range. + A value of zero (0) indicates that no external port range is specified, i.e. that the range consists only of {{param|AssignedExternalPort}}. + + + + + + + + + + + {{numentries}} + + + + + + + + + Filter table. + This table contains all Filters restricting this Inbound Mapping, as defined in {{bibref|RFC6887|}}. + + + + + + + {{datatype|expand}} + + + + + + + + Permitted remote peer IP address for this filter. + + + + + + + + + Indicates how many bits of {{param|RemoteHostIPAddress}} are relevant for this filter. + + + + + + + + + + + Permitted remote peer port number for this filter. + The value 0 indicates ''all ports''. + + + + + + + + + + Indicates the last port of the remote port range that starts with {{param|RemotePort}}. + If an external port range is specified, then the behavior described for {{param|RemotePort}} applies to all ports within the range. + A value of zero (0) indicates that no remote port range is specified, i.e. that the range consists only of {{param|RemotePort}}. + + + + + + + + + + + + Outbound Mapping table. + This table contains all Outbound Mappings requested by this PCP Client on this PCP Server. Such a mapping is created by a PCP request with OpCode PEER, as described in {{bibref|RFC6887|Section 12}}. + These requests can be issued from internal device applications, from static configuration or from other LAN device applications via interworking functions such as UPnP IGD or PCP proxies. The {{param|Origin}} parameter indicates which mechanism requested the mapping. + For non-{{enum|Static|Origin}} mappings (here ''Static'' refers to the mechanism that created the mapping, not to the {{param|Lifetime}}), the Controller MAY modify the {{param|Enable}} parameter but MUST NOT modify any other parameters in the mapping or its sub-objects. + + + + + + + + + + + + + + Enables or disables this {{object}} instance. + + + + + + + + + The status of this entry. {{enum}} + The {{enum|Error_PCPErrorCodeReceived}} value indicates that the PCP Client received an error code from the PCP Server. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + Provides the PCP Error code when {{param|Status}} is {{enum|Error_PCPErrorCodeReceived|Status}}. Error code values are defined in {{bibref|RFC6887|Section 7.4}}. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Mechanism via which the mapping was requested. {{enum}} + + + + + + Requested via internal device application + + + + + Requested via UPnP IGD interworking function + + + + + Requested via PCP proxy + + + + + Requested via static configuration, i.e. created by the Controller, by some other management entity (e.g. via a GUI), or is present in the factory default configuration + + + + + + + + Determines the time to live, in {{units}}, of this Outbound Mapping lease, i.e. the remaining time before this port mapping expires. + A value of 0 means that the port mapping is permanent (referred to as a static mapping in {{bibref|RFC6887}}). + When a dynamic Outbound Mapping lease expires, the CPE MUST automatically delete the corresponding {{object}} table entry. + + + + + + + + + + The external IPv4 or IPv6 Address that the PCP-controlled device will use to send outgoing packets covered by this mapping. + This is useful for refreshing a mapping, especially after the PCP Server has lost state. If the PCP Client does not know the external address, or does not have a preference, it MUST use {{empty}}. + + + + + + + + + The external port that the PCP-controlled device will use to send outgoing packets covered by this mapping. + This is useful for refreshing a mapping, especially after the PCP Server has lost state. If the PCP Client does not know the external port, or does not have a preference, it MUST use 0. + + + + + + + + + + + The remote peer's IP address, as seen from the PCP Client, for this Outbound Mapping. + + + + + + + + The port on PCP Client WAN Interface that the PCP-controlled device SHOULD listen to for this mapping. + + + + + + + + + + The remote peer's port, as seen from the PCP Client, for this Outbound Mapping. + + + + + + + + + + The protocol number of the {{object}}. Values are taken from the {{bibref|IANA-protocolnumbers}}. + The value -1 means ''all protocols''. + + + + + + + + + + Under certain conditions, the PCP Client can create a PCP mapping on behalf of another device, by using the THIRD_PARTY option, as specified in {{bibref|RFC6887|Section 7.3}}. In that case, {{param}} is the IP address of the device for which the PCP operation is requested. + For non-third-party mappings, {{param}} SHOULD be {{empty}}. + + + + + + + + User-readable description of this {{object}}. + + + + + + + + + + + The external IP address returned by the PCP Server. The IP address that the PCP-controlled device uses to send outgoing packets corresponding to this mapping. + + + + + + + + + The external port returned by the PCP Server. The port that the PCP-controlled device uses to send outgoing packets corresponding to this mapping. + + + + + + + + + + + The Dynamic Host Configuration Protocol (DHCP) IPv4 object {{bibref|RFC2131}}. This entire object applies to IPv4 only. It contains the {{object|Client}}, {{object|Server}}, and {{object|Relay}} objects. + + + + {{numentries}} + + + + + + + + + This object contains DHCP client settings for an associated ''IP Interface'' indicated by {{param|Interface}}. + For enabled table entries, if {{param|Interface}} is not a valid reference then the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + Note: The {{object}} table includes a unique key parameter that is a strong reference. If a strongly referenced object is deleted, the CPE will set the referencing parameter to {{empty}}. However, doing so under these circumstances might cause the updated {{object}} row to then violate the table's unique key constraint; if this occurs, the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}} and disable the offending {{object}} row. + + + + + + + + + + Enables or disables the DHCP Client entry. + + + + + + + + + {{datatype|expand}} + + + + + + + + {{reference}} The IP Interface associated with the ''Client'' entry. + + + + + + + + + + + + The status of this table entry. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + The DHCP Client status as defined in {{bibref|RFC2131}}. {{enum}} + Note: This value is only relevant when the DHCP Client is operationally enabled (i.e. when {{param|Status}} is {{enum|Enabled|Status}}). + + + + + + + + + + + + + + + When set to {{true}}, the DHCP client will renew its DHCP lease. + + + + + + + + + IPv4 Address option received from the DHCP Server. {{empty}} when {{param|Status}} is not equal to {{enum|Bound|DHCPStatus}}. + + + + + + + + + Subnet mask option received from the DHCP Server. {{empty}} when {{param|Status}} is not equal to {{enum|Bound|DHCPStatus}}. + Value is information received via DHCP Option 1. + + + + + + + + + {{list}} Items represent IP Router IPv4 Address(es) received from the DHCP server. {{empty}} when {{param|Status}} is not equal to {{enum|Bound|DHCPStatus}}. + Value is information received via DHCP Options 3, 33 or 121. + + + + + + + + + + + + {{list}} Items represent DNS Server IPv4 Address(es) received from the DHCP server. {{empty}} when {{param|Status}} is not equal to {{enum|Bound|DHCPStatus}}. + Value is information received via DHCP Option 6. + + + + + + + + + + + + DHCP lease time remaining in {{units}}. A value of -1 indicates an infinite lease. + + + + + + + + + + + + The IPv4 address of the current DHCP server. + + + + + + + + + If {{false}}, the DHCP Client retrieved IP address information is configured on the referenced {{param|Interface}} object. + If {{true}}, the DHCP Client retrieved information is propagated to the parameters in the referenced {{param|PassthroughDHCPPool}} object, replacing any existing configuration (including ''MinAddress'', ''MaxAddress'', ''SubnetMask'', ''IPRouters'', and ''DNSServers''). + + + + + + + + + {{reference}}When {{param}} is set to {{empty}}, {{param|PassthroughEnable}} MUST be set to {{false}} (i.e. passthrough can not be enabled without a pool reference specified). + + + + + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + Each instance of this object represents a DHCP option that MUST, if enabled, be sent in DHCP client requests. All sent DHCP options MUST be listed. + + + + + + + + + + Enables or disables this SentOption table entry. + + + + + + + + + {{datatype|expand}} + + + + + + + + Option tag as defined in {{bibref|RFC2132}}. + + + + + + + + + + A hexbinary encoded option value. + + + + + + + + + + + + Each instance of this object represents a DHCP option that MUST, if enabled, be requested in DHCP client requests. All requested DHCP options MUST be listed. + + + + + + + + + + Enables or disables this ReqOption table entry. + + + + + + + + + Position of the option in the DHCP client request. A value of ''1'' indicates the first entry. + When this value is modified, if the value matches that of an existing entry, the {{param}} value for the existing entry and all lower {{param}} entries is incremented to ensure uniqueness of this value. A deletion causes {{param}} values to be compacted. When a value is changed, incrementing occurs before compaction. + The value of {{param}} on creation of a {{object}} table entry MUST be one greater than the largest current value. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Option tag as defined in {{bibref|RFC2132}}. + + + + + + + + + + A hexbinary encoded, most recently received DHCP option value. + If no option value has been received, then the value MUST represent {{empty}}. + Received DHCP option values MAY, but need not, persist across CPE reboots. + + + + + + + + + + + + DHCP server configuration. + + + + Enables or disables the DHCP server. + + + + + + + + {{numentries}} + + + + + + + + + DHCP conditional serving pool table. + Each instance of this object defines a DHCP conditional serving pool. Client requests are associated with pools based on criteria such as source interface, supplied DHCP options, and MAC address. + Overlapping pool ranges MUST be supported. + For enabled table entries, if {{param|Interface}} is not a valid reference, or {{param|MinAddress}}, {{param|MaxAddress}}, or {{param|SubnetMask}} is not a valid value, then the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + + + + + + + Enables or disables the Pool entry. + + + + + + + + + The status of this entry. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Position of the {{object}} entry in the order of precedence. A value of ''1'' indicates the first entry considered (highest precedence). For each DHCP request, the highest ordered entry that matches the association criteria is applied. All lower order entries are ignored. + When this value is modified, if the value matches that of an existing entry, the {{param}} value for the existing entry and all lower {{param}} entries is incremented (lowered in precedence) to ensure uniqueness of this value. A deletion causes {{param}} values to be compacted. When a value is changed, incrementing occurs before compaction. + The value of {{param}} on creation of a {{object}} table entry MUST be one greater than the largest current value (initially assigned the lowest precedence). + + + + + + + + + + {{reference}} The IP Interface associated with the ''Pool'' entry. + + + + + + + + + + + + Pool association criterion. + Used to identify one or more LAN devices, value of the DHCP Vendor Class Identifier (Option 60) as defined in {{bibref|RFC2132}}, matched according to the criterion in {{param|VendorClassIDMode}}. Case sensitive. + This is a normal string, e.g. "abc" is represented as "abc" and not say "616263" hex. However, if the value includes non-printing characters then such characters have to be represented using XML escapes, e.g. #x0a for line-feed. + {{empty}} indicates this criterion is not used for conditional serving. + + + + + + + + + + + If {{false}}, matching packets are those that match the {{param|VendorClassID}} entry, if specified. + If {{true}}, matching packets are those that do not match the {{param|VendorClassID}} entry, if specified. + + + + + + + + + {{param|VendorClassID}} pattern match criterion. {{enum}} + For example, if {{param|VendorClassID}} is "Example" then an Option 60 value of "Example device" will match with {{param}} values of {{enum|Prefix}} or {{enum|Substring}}, but not with {{enum|Exact}} or {{enum|Suffix}}. + + + + + + + + + + + + + + Pool association criterion. + A hexbinary string used to identify one or more LAN devices, value of the DHCP Client Identifier (Option 61) as defined in {{bibref|RFC2132}}. The option value is binary, so an exact match is REQUIRED. + {{empty}} indicates this criterion is not used for conditional serving. + + + + + + + + + + + If {{false}}, matching packets are those that match the {{param|ClientID}} entry, if specified. + If {{true}}, matching packets are those that do not match the {{param|ClientID}} entry, if specified. + + + + + + + + + Pool association criterion. + A hexbinary string used to identify one or more LAN devices, value of the DHCP User Class Identifier (Option 77) as defined in {{bibref|RFC3004}}. + {{empty}} indicates this criterion is not used for conditional serving. + + + + + + + + + + + If {{false}}, matching packets are those that match the {{param|UserClassID}} entry, if specified. + If {{true}}, matching packets are those that do not match the {{param|UserClassID}} entry, if specified. + + + + + + + + + Pool association criterion. + Hardware address (MAC address) of the physical interface of the DHCP client. + {{empty}} indicates this criterion is not used for conditional serving. + + + + + + + + + Bit-mask for the MAC address, where matching of a packet's MAC address with the {{param|Chaddr}} is only to be done for bit positions set to one in the mask. A mask of FF:FF:FF:FF:FF:FF or {{empty}} indicates all bits of the {{param|Chaddr}} are to be used for conditional serving classification. + + + + + + + + + If {{false}}, matching packets are those that match the (masked) {{param|Chaddr}} entry, if specified. + If {{true}}, matching packets are those that do not match the (masked) {{param|Chaddr}} entry, if specified. + + + + + + + + + Pool association criterion. Determines which devices are allowed, {{enum}} + + + + + + All clients are served. + + + + + Only clients, whose MAC address is listed in the {{object|Client.{i}.}} table (parameter {{param|Client.{i}.Chaddr}}) or in the {{object|StaticAddress.{i}.}} table (parameter {{param|StaticAddress.{i}.Chaddr}}) are served. + The parameter {{param|#.Chaddr}} is not used, if this value is set. + + + + + Only clients, whose MAC address is '''not''' listed in the {{object|Client.{i}.}} table (parameter {{param|Client.{i}.Chaddr}}) or in the {{object|StaticAddress.{i}.}} table (parameter {{param|StaticAddress.{i}.Chaddr}}) are served. + + + + + + + + Specifies first IPv4 address in the pool to be assigned by the DHCP server on the LAN interface. + The parameter value can be overwritten by dynamic values retrieved via a DHCP client with {{param|##.Client.{i}.PassthroughEnable}} or a PPP interface with {{param|.PPP.Interface.{i}.IPCP.PassthroughEnable}} equal to {{true}}. + + + + + + + + Specifies last IPv4 address in the pool to be assigned by the DHCP server on the LAN interface. + The parameter value can be overwritten by dynamic values retrieved via a DHCP client with {{param|##.Client.{i}.PassthroughEnable}} or a PPP interface with {{param|.PPP.Interface.{i}.IPCP.PassthroughEnable}} equal to {{true}}. + + + + + + + + {{list}} List items represent addresses marked reserved from the address allocation pool. + + + + + + + + + + Specifies the client's network subnet mask. + The parameter value can be overwritten by dynamic values retrieved via a DHCP client with {{param|##.Client.{i}.PassthroughEnable}} or a PPP interface with {{param|.PPP.Interface.{i}.IPCP.PassthroughEnable}} equal to {{true}}. + + + + + + + + {{list}} List items represent DNS servers offered to DHCP clients. Support for more than three DNS Servers is OPTIONAL. + The parameter value can be overwritten by dynamic values retrieved via a DHCP client with {{param|##.Client.{i}.PassthroughEnable}} or a PPP interface with {{param|.PPP.Interface.{i}.IPCP.PassthroughEnable}} equal to {{true}}. + + + + + + + + + Sets the domain name to provide to clients on the LAN interface. + + + + + + + + + + {{list}} List items represent addresses of routers on this subnet. Also known as default gateway. Support for more than one Router address is OPTIONAL. + The parameter value can be overwritten by dynamic values retrieved via a DHCP client with {{param|##.Client.{i}.PassthroughEnable}} or a PPP interface with {{param|.PPP.Interface.{i}.IPCP.PassthroughEnable}} equal to {{true}}. + + + + + + + + + Specifies the lease time in {{units}} of client assigned addresses. A value of -1 indicates an infinite lease. + + + + + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + DHCP static address table. + Entries in this table correspond to what {{bibref|RFC2131}} calls "manual allocation", where a client's IP address is assigned by the network administrator, and DHCP is used simply to convey the assigned address to the client. + Each instance of this object specifies a hardware address (MAC address) and an IP address within the pool. When serving from this pool, this IP address MUST, if available, be assigned to the DHCP client with this hardware address, and MUST NOT be assigned to any other client. + Note that it is possible that an IP address in this table is present in one or more of the other conditional serving pools, in which case it is possible that such an address will be assigned to a different client. + + + + + + + + + + Enables or disables the StaticAddress table entry. + Disabling an entry does not return the IP address to the pool. + + + + + + + + + {{datatype|expand}} + + + + + + + + Hardware address (MAC address) of the physical interface of the DHCP client. + + + + + + + + + IPv4 address to be assigned by the DHCP server to the DHCP client with the specified hardware address (MAC address). + + + + + + + + + + This object specifies the DHCP options that MUST, if enabled, be returned to clients whose DHCP requests are associated with this pool. + + + + + + + + + + Enables or disables this Option table entry. + + + + + + + + + {{datatype|expand}} + + + + + + + + Option tag as defined in {{bibref|RFC2132}}. + + + + + + + + + + A hexbinary encoded option value. + + + + + + + + + + + + DHCPv4 client table. + This table lists details of DHCPv4 clients that matched the filter criteria of this {{object|#}} entry. + + + + + + + + + + {{datatype|expand}} + Note: There is no guarantee that the {{param}} value on automatically-created {{object}} instances will be retained. This is because automatically-created {{object}} instances can be transitory. + + + + + + + + MAC address of the DHCPv4 client. + + + + + + + + Whether or not the DHCPv4 client is currently present on the LAN. The method of presence detection is a local matter to the CPE. + The ability to list inactive DHCPv4 clients is OPTIONAL. If the CPE includes inactive DHCPv4 clients in this table, {{param}} MUST be set to {{false}} for each inactive DHCPv4 client. The length of time an inactive DHCPv4 client remains listed in this table is a local matter to the CPE. + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + IPv4 addresses assigned to this client. + + + + + + + IPv4 address. + + + + + + + + The time at which the DHCP lease will expire or {{null}} if not known. For an infinite lease, the parameter value MUST be 9999-12-31T23:59:59Z. + + + + + + + + + DHCPv4 options supplied by this client, e.g. ''VendorClassID'' (Option 60), ''ClientID'' (option 61) or ''UserClassID'' (Option 77). + + + + Option tag as defined in {{bibref|RFC2132}}. + + + + + + + + + + A hexbinary encoded option value. + + + + + + + + + + + DHCP Relay Agent (conditional relaying). + + + + Enables or disables the DHCP Relay Agent function. + + + + + + + + The status of the DHCP relay. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + {{numentries}} + + + + + + + + + DHCP Relay Agent Forwarding table. + For enabled table entries, if {{param|Interface}} is not a valid reference then the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + + + + + + + Enables or disables the Forwarding entry. + + + + + + + + + The status of this entry. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Position of the {{object}} entry in the order of precedence. A value of ''1'' indicates the first entry considered (highest precedence). For each DHCP request, the highest ordered entry that matches the association criteria is applied. All lower order entries are ignored. + When this value is modified, if the value matches that of an existing entry, the {{param}} value for the existing entry and all lower {{param}} entries is incremented (lowered in precedence) to ensure uniqueness of this value. A deletion causes {{param}} values to be compacted. When a value is changed, incrementing occurs before compaction. + The value of {{param}} on creation of a {{object}} table entry MUST be one greater than the largest current value (initially assigned the lowest precedence). + + + + + + + + + + {{reference}} The IP Interface associated with the ''Forwarding'' entry. + + + + + + + + + + + + Pool association criterion. + Used to identify one or more LAN devices, value of the DHCP Vendor Class Identifier (Option 60) as defined in {{bibref|RFC2132}}, matched according to the criterion in {{param|VendorClassIDMode}}. Case sensitive. + This is a normal string, e.g. "abc" is represented as "abc" and not say "616263" hex. However, if the value includes non-printing characters then such characters have to be represented using XML escapes, e.g. #x0a for line-feed. + {{empty}} indicates this criterion is not used as a relay classification criterion. + + + + + + + + + + + If {{false}}, matching packets are those that match the {{param|VendorClassID}} entry, if specified. + If {{true}}, matching packets are those that do not match the {{param|VendorClassID}} entry, if specified. + + + + + + + + + {{param|VendorClassID}} pattern match criterion. {{enum}} + For example, if {{param|VendorClassID}} is "Example" then an Option 60 value of "Example device" will match with {{param}} values of {{enum|Prefix}} or {{enum|Substring}}, but not with {{enum|Exact}} or {{enum|Suffix}}. + + + + + + + + + + + + + + Pool association criterion. + A hexbinary string used to identify one or more LAN devices, value of the DHCP Client Identifier (Option 61) as defined in {{bibref|RFC2132}}. The option value is binary, so an exact match is REQUIRED. + {{empty}} indicates this criterion is not used as a relay classification criterion. + + + + + + + + + + + If {{false}}, matching packets are those that match the {{param|ClientID}} entry, if specified. + If {{true}}, matching packets are those that do not match the {{param|ClientID}} entry, if specified. + + + + + + + + + Pool association criterion. + A hexbinary string used to identify one or more LAN devices, value of the DHCP User Class Identifier (Option 77) as defined in {{bibref|RFC3004}}. + {{empty}} indicates this criterion is not used as a relay classification criterion. + + + + + + + + + + + If {{false}}, matching packets are those that match the {{param|UserClassID}} entry, if specified. + If {{true}}, matching packets are those that do not match the {{param|UserClassID}} entry, if specified. + + + + + + + + + Pool association criterion. + Hardware address (MAC address) of the physical interface of the DHCP client. + {{empty}} indicates this criterion is not used as a relay classification criterion. + + + + + + + + + Bit-mask for the MAC address, where matching of a packet's MAC address with the {{param|Chaddr}} is only to be done for bit positions set to one in the mask. A mask of FF:FF:FF:FF:FF:FF or {{empty}} indicates all bits of the {{param|Chaddr}} are to be used for relay classification. + + + + + + + + + If {{false}}, matching packets are those that match the (masked) {{param|Chaddr}} entry, if specified. + If {{true}}, matching packets are those that do not match the (masked) {{param|Chaddr}} entry, if specified. + + + + + + + + + If {{true}}, incoming DHCP requests will be forwarded to the CPE DHCP Server. If {{false}}, incoming DHCP requests will be forwarded to the {{param|DHCPServerIPAddress}} configured for this forwarding entry. + + + + + + + + + IPv4 address of the DHCP server, where the request has to be sent to when there is a conditional match with this forwarding entry and {{param|LocallyServed}} is {{false}}. If {{param|LocallyServed}} is {{false}} and this parameter is not configured, then the DHCP request is dropped. + + + + + + + + + The Dynamic Host Configuration Protocol (DHCP) IPv6 object {{bibref|RFC3315}}. This entire object applies to IPv6 only. It contains the {{object|Client}} and {{object|Server}} objects. + + + + {{numentries}} + + + + + + + + + This object contains DHCPv6 client settings for an associated ''IP Interface'' indicated by {{param|Interface}}. + For enabled table entries, if {{param|Interface}} is not a valid reference to an IPv6-capable interface (that is attached to the IPv6 stack), then the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + Note: The {{object}} table includes a unique key parameter that is a strong reference. If a strongly referenced object is deleted, the CPE will set the referencing parameter to {{empty}}. However, doing so under these circumstances might cause the updated {{object}} row to then violate the table's unique key constraint; if this occurs, the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}} and disable the offending {{object}} row. + + + + + + + + + + Enables or disables this {{object}} entry. + + + + + + + + + {{datatype|expand}} + + + + + + + + {{reference}} The IP Interface associated with the {{object}} entry. This will reference an IPv6-capable interface (that is attached to the IPv6 stack), otherwise the table entry will be inoperable. + + + + + + + + + + + + The status of this table entry. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + The client's DHCP Unique Identifier (DUID) {{bibref|RFC3315|Section 9}}. {{param}} is set by the CPE. + + + + + + + + + + Enables or disables inclusion of the ''Identity Association (IA) for Non-Temporary Address'' option OPTION_IA_NA(3) {{bibref|RFC3315|Section 22.4}} in Solicit messages. + + + + + + + + + Enables or disables inclusion of the ''Identity Association (IA) for Prefix Delegation'' option OPTION_IA_PD(25) {{bibref|RFC3633|Section 10}} in Solicit messages. + Note that this is only appropriate for an upstream interface on a requesting router, e.g. for an RG WAN interface. + + + + + + + + + Enables or disables inclusion of the ''Rapid Commit'' option OPTION_RAPID_COMMIT(14) {{bibref|RFC3315|Section 22.14}} in Solicit messages. + + + + + + + + + When set to {{true}}, the {{object}} will renew its DHCPv6-supplied information (i.e. the CPE will do a renew or information request as needed, updating both stateful and stateless parameter values discovered by this Client instance). + + + + + + + + + T1 value, in {{units}}, that the client SHOULD use when sending IA options, e.g. OPTION_IA_NA {{bibref|RFC3315|Section 22.4}} and OPTION_IA_PD {{bibref|RFC3633|Section 10}}. + A value of -1 indicates that no T1 value is specified. + + + + + + + + + + + T2 value, in {{units}}, that the client SHOULD use when sending IA options, e.g. OPTION_IA_NA {{bibref|RFC3315|Section 22.4}} and OPTION_IA_PD {{bibref|RFC3633|Section 10}}. + A value of -1 indicates that no T2 value is specified. + + + + + + + + + + + {{list}} The options that the client is able to process in server responses. This list MUST include both top-level and encapsulated options, e.g. if the client is able to process OPTION_IA_NA (3) with an encapsulated OPTION_IAADDR (5), the list would be expected to include both 3 and 5. + + + + + + + + + {{list}} An ordered list of the top-level options (i.e. not encapsulated options) that the client will explicitly request from the server. + This parameter is intended only for options that are not necessary for the basic operation of the protocol, and are not modeled elsewhere. For example, it is appropriate for OPTION_DNS_SERVERS {{bibref|RFC3646}} but is not appropriate for OPTION_SERVERID (which is part of the protocol), OPTION_IA_NA (which is modeled via {{param|RequestAddresses}}) or OPTION_IA_PD (which is modeled via {{param|RequestPrefixes}}). However, the CPE MUST NOT reject an attempt to set this parameter to a value that includes options that it regards as inappropriate; instead, it MUST accept the requested options and handle them as best it can. + Loosely speaking, these are the options that the client will include in OPTION_ORO {{bibref|RFC3315}} but the client is free to decide (in accordance with {{bibref|RFC3315}}) in which messages to request which option, whether also to request additional options, whether not to request inappropriate options, and in which order to request any options that are also in {{param|SupportedOptions}}. + + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + This is a transitory table that lists the discovered DHCPv6 servers (it does ''not'' model a local DHCP server). Table entries are automatically created to correspond with these servers. However, it is a local matter to the CPE when to delete old table entries. + + + + + + + The IP address from which the message most recently received from this server was sent. + + + + + + + + The server's DHCP Unique Identifier (DUID) {{bibref|RFC3315|Section 9}} as received via OPTION_SERVERID. + + + + + + + + + + The OPTION_INFORMATION_REFRESH_TIME value {{bibref|RFC4242}} that was most recently received from this server, converted to the ''dateTime'' at which the associated information will expire. If no such option has been received, the parameter value MUST be the "Unknown Time" {{null}}. If the information will never expire, the parameter value MUST be infinite time 9999-12-31T23:59:59Z. + + + + + + + + + The top-level options and option values (including any encapsulated options) that the client will send to the server. + This table is intended only for options that are not part of the basic operation of the protocol, and whose values are simple, do not often change and are not modeled elsewhere. For example, it is appropriate for OPTION_USER_CLASS (whose value is a list of user classes) but is not appropriate for OPTION_RECONF_MSG (which is part of the protocol), OPTION_IA_NA (which is modeled via {{param|#.RequestAddresses}}) or OPTION_RAPID_COMMIT (which is modeled via {{param|#.RapidCommit}}). + + + + + + + + + + Enables or disables this {{object}} entry. + + + + + + + + + {{datatype|expand}} + + + + + + + + Option tag (code) {{bibref|RFC3315|Section 22.1}}. + + + + + + + + + + A hexbinary encoded option data {{bibref|RFC3315|Section 22.1}}. + Note: The length of the option data is ''option-len'' octets, as specified in {{bibref|RFC3315|Section 22.1}}. + + + + + + + + + + + + This is a transitory table that lists all the options received from all servers. Table entries are automatically created to correspond with received options. However, it is a local matter to the CPE when to delete old table entries. + If the same option is received multiple times, whether from one or more servers, it is up to the CPE to decide which entries to include (i.e. whether the same option will be present multiple times). In order to allow for the same option to be present multiple times within the table, this table has no unique key defined. + + + + Option tag (code) {{bibref|RFC3315|Section 22.1}}. + + + + + + + + + + A hexbinary encoded option data {{bibref|RFC3315|Section 22.1}}. + + + + + + + + + + {{reference}} This is the server that sent the option to the client. Each {{object}} entry MUST have an associated server. + + + + + + + + + + + DHCPv6 server configuration. + + + + Enables or disables the DHCPv6 server function. + + + + + + + + {{numentries}} + + + + + + + + + DHCPv6 server pool table. + Each instance of this object defines a DHCPv6 server pool. Client requests are associated with pools based on criteria such as source interface, supplied DHCPv6 options, and source address. + Overlapping pool ranges MUST be supported. + For enabled table entries, if {{param|Interface}} is not a valid reference to an IPv6-capable interface (that is attached to the IPv6 stack) then the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + + + + + + + + + + Enables or disables this {{object}} entry. + + + + + + + + + The status of this entry. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Position of the {{object}} entry in the order of precedence. A value of ''1'' indicates the first entry considered (highest precedence). For each DHCPv6 request, the highest ordered entry that matches the association criteria is applied. All lower order entries are ignored. + When this value is modified, if the value matches that of an existing entry, the {{param}} value for the existing entry and all lower {{param}} entries is incremented (lowered in precedence) to ensure uniqueness of this value. A deletion causes {{param}} values to be compacted. When a value is changed, incrementing occurs before compaction. + The value of {{param}} on creation of a {{object}} table entry MUST be one greater than the largest current value (initially assigned the lowest precedence). + + + + + + + + + + {{reference}} The IP Interface associated with the {{object}} entry. + + + + + + + + + + + + Pool association criterion. + A hexbinary string used to identify one or more LAN devices, value of the DHCPv6 Client Identifier (Option 1) {{bibref|RFC3315|Section 22.2}}. The option value is binary, so an exact match is REQUIRED. + {{empty}} indicates this criterion is not used. + Note: DHCPv6 Option 1 (DUID) is sometimes referred to as ''Client Identifier''. + + + + + + + + + + + If {{false}}, matching packets are those that match the {{param|DUID}} entry, if specified. + If {{true}}, matching packets are those that do not match the {{param|DUID}} entry, if specified. + + + + + + + + + Pool association criterion. + A hexbinary string used to identify one or more LAN devices, value of the DHCPv6 Vendor Class Identifier (Option 16) {{bibref|RFC3315|Section 22.16}}. The option value is binary, so an exact match is REQUIRED. + {{empty}} indicates this criterion is not used. + + + + + + + + + + + If {{false}}, matching packets are those that match the {{param|VendorClassID}} entry, if specified. + If {{true}}, matching packets are those that do not match the {{param|VendorClassID}} entry, if specified. + + + + + + + + + Pool association criterion. + A hexbinary string used to identify one or more LAN devices, value of the DHCPv6 User Class Identifier (Option 15) {{bibref|RFC3315|Section 22.15}}. + {{empty}} indicates this criterion is not used. + + + + + + + + + + + If {{false}}, matching packets are those that match the {{param|UserClassID}} entry, if specified. + If {{true}}, matching packets are those that do not match the {{param|UserClassID}} entry, if specified. + + + + + + + + + Pool association criterion. + Source address (link-layer address) of DHCPv6 messages sent from the DHCPv6 client. This criterion is only likely to be useful if this is a link-layer address. + {{empty}} indicates this criterion is not used for serving. + + + + + + + + + Bit-mask for the source address, where matching of a packet's source address with the {{param|SourceAddress}} is only to be done for bit positions set to one in the mask. A mask of {{empty}} indicates all bits of the {{param|SourceAddress}} are to be used. + + + + + + + + + If {{false}}, matching packets are those that match the (masked) {{param|SourceAddress}} entry, if specified. + If {{true}}, matching packets are those that do not match the (masked) {{param|SourceAddress}} entry, if specified. + + + + + + + + + Enables or disables IANA offers. + + + + + + + + {{list}} {{reference}} + Manually-configured prefixes from which IA_NA addresses will be assigned. Each referenced prefix MUST have a {{param|.IP.Interface.{i}.IPv6Prefix.{i}.StaticType}} of {{enum|Static|.IP.Interface.{i}.IPv6Prefix.{i}.StaticType}} or {{enum|Child|.IP.Interface.{i}.IPv6Prefix.{i}.StaticType}}. All clients that request IA_NA and match filter criteria on this {{param|Interface}} MUST be offered IA_NA addresses from all of the ''Valid'' ({{param|.IP.Interface.{i}.IPv6Prefix.{i}.ValidLifetime}} is infinite or in the future) /64 prefixes in this list. + Prefixes MUST be associated with the interface instance referenced by {{param|Interface}}. + + + + + + + + + + + + {{list}} {{reference}} + All prefixes from which IA_NA addresses will be assigned. This list can include: + * Prefixes from {{param|IANAManualPrefixes}} that are used for IA_NA offers. + * Prefixes with {{param|.IP.Interface.{i}.IPv6Prefix.{i}.Origin}} = {{enum|Child|.IP.Interface.{i}.IPv6Prefix.{i}.Origin}} or {{enum|AutoConfigured|.IP.Interface.{i}.IPv6Prefix.{i}.Origin}} associated with the interface instance referenced by {{param|Interface}}. + + + + + + + + + + + Enables or disables IAPD offers. + + + + + + + + {{list}} {{reference}} + Manually-configured prefixes from which IA_PD prefixes will be derived. This list can include: + * Prefixes with {{param|.IP.Interface.{i}.IPv6Prefix.{i}.Origin}} = {{enum|Static|.IP.Interface.{i}.IPv6Prefix.{i}.Origin}} or {{enum|PrefixDelegation|.IP.Interface.{i}.IPv6Prefix.{i}.Origin}} associated with upstream interfaces (i.e. interfaces for which the physical layer interface object has ''Upstream'' = {{true}}). + * Prefixes with {{param|.IP.Interface.{i}.IPv6Prefix.{i}.StaticType}} = {{enum|Static|.IP.Interface.{i}.IPv6Prefix.{i}.StaticType}} or {{enum|Child|.IP.Interface.{i}.IPv6Prefix.{i}.StaticType}} associated with with the interface instance referenced by {{param|Interface}}. + All clients that request IA_PD and match filter criteria on this {{param|Interface}} MUST be offered IA_PD prefixes derived from all of the ''Valid'' ({{param|.IP.Interface.{i}.IPv6Prefix.{i}.ValidLifetime}} is infinite or in the future) prefixes in this list. + + + + + + + + + + + + {{list}} {{reference}} + All prefixes for which IA_PD prefixes will be assigned. This list can include: + * Prefixes from {{param|IAPDManualPrefixes}} that are used for IA_PD offers. + * Prefixes with {{param|.IP.Interface.{i}.IPv6Prefix.{i}.Origin}} = {{enum|PrefixDelegation|.IP.Interface.{i}.IPv6Prefix.{i}.Origin}} or {{enum|AutoConfigured|.IP.Interface.{i}.IPv6Prefix.{i}.Origin}} associated with upstream interfaces (i.e. interfaces for which the physical layer interface object has ''Upstream'' = {{true}}). + * Prefixes with {{param|.IP.Interface.{i}.IPv6Prefix.{i}.Origin}} = {{enum|Child|.IP.Interface.{i}.IPv6Prefix.{i}.Origin}} or {{enum|AutoConfigured|.IP.Interface.{i}.IPv6Prefix.{i}.Origin}} associated with the interface instance referenced by {{param|Interface}}. + + + + + + + + + + + The RECOMMENDED minimum number of bits to add to {{param|IAPDManualPrefixes}} or {{param|IAPDPrefixes}} in order to determine the length of prefixes that are offered in an IA_PD. The device is responsible for ensuring that it does not delegate a prefix longer than /64. The device can have additional logic that is used (in conjunction with this parameter) to determine the actual length of prefixes offered in an IA_PD. + + + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + DHCPv6 client table. + This table lists details of DHCPv6 clients that matched the filter criteria of this {{object|#}} entry. + + + + + + + + + + {{datatype|expand}} + Note: There is no guarantee that the {{param}} value on automatically-created {{object}} instances will be retained. This is because automatically-created {{object}} instances can be transitory. + + + + + + + + Source address of the DHCPv6 client. + + + + + + + + Whether or not the DHCPv6 client is currently present on the LAN. The method of presence detection is a local matter to the CPE. + The ability to list inactive DHCPv6 clients is OPTIONAL. If the CPE includes inactive DHCPv6 clients in this table, {{param}} MUST be set to {{false}} for each inactive DHCPv6 client. The length of time an inactive DHCPv6 client remains listed in this table is a local matter to the CPE. + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + IPv6 addresses assigned to this client via IA_NA. + + + + + + + IPv6 address. + + + + + + + + The time at which this address will cease to be preferred (i.e. will become deprecated), or {{null}} if not known. For an infinite lifetime, the parameter value MUST be 9999-12-31T23:59:59Z. + + + + + + + + The time at which this address will cease to be valid (i.e. will become invalid), or {{null}} if unknown. For an infinite lifetime, the parameter value MUST be 9999-12-31T23:59:59Z. + + + + + + + + + IPv6 prefixes delegated to this client via IA_PD. + + + + + + + IPv6 address prefix. + + + + + + + + The time at which this prefix will cease to be preferred (i.e. will become deprecated), or {{null}} if not known. For an infinite lifetime, the parameter value MUST be 9999-12-31T23:59:59Z. + + + + + + + + The time at which this prefix will cease to be valid (i.e. will become invalid), or {{null}} if unknown. For an infinite lifetime, the parameter value MUST be 9999-12-31T23:59:59Z. + + + + + + + + + DHCPv6 options supplied by this client, e.g. ''DUID'' (Option 1), ''UserClassID'' (Option 15) or ''VendorClassID'' (option 16). + + + + Option tag (code) {{bibref|RFC3315|Section 22.1}}. + + + + + + + + + + A hexbinary encoded option value. + + + + + + + + + + + This object specifies the DHCPv6 options that MUST, if enabled, be offered to clients whose DHCPv6 requests are associated with this pool. If {{param|PassthroughClient}} is specified, and the referenced client has a value for a given option then the {{param|PassthroughClient}} option value will be sent instead of {{param|Value}}. Otherwise, {{param|Value}} will be sent. + + + + + + + + + + Enables or disables this {{object}} entry. + + + + + + + + + {{datatype|expand}} + + + + + + + + Option tag (code) {{bibref|RFC3315|Section 22.1}}. + + + + + + + + + + A hexbinary encoded option value. + + + + + + + + + + + {{reference}} Indicates whether this {{object}} entry is configured for passthrough. + If {{param}} is specified, and the referenced client (since boot) has received a value from an associated upstream DHCPv6 server for the given {{param|Tag}} option, then the referenced client's option value will be sent instead of {{param|Value}}. Otherwise, {{param|Value}} will be sent. + {{empty}} indicates that passthrough is not configured for this {{object}} entry. + + + + + + + + + + + + + IEEE 802.1x object {{bibref|802.1x-2004}}, where {{object|Supplicant}} models authentication supplicants. + + + + {{numentries}} + + + + + + + + + 802.1x supplicant authentication provisioning and status information associated with an interface to be authenticated (e.g. an {{object|.Ethernet.Link}} instance). + For enabled table entries, if {{param|Interface}} is not a valid reference then the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + Note: The {{object}} table includes a unique key parameter that is a strong reference. If a strongly referenced object is deleted, the CPE will set the referencing parameter to {{empty}}. However, doing so under these circumstances might cause the updated {{object}} row to then violate the table's unique key constraint; if this occurs, the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}} and disable the offending {{object}} row. + + + + + + + + + + This parameter controls whether this resource will utilize the 802.1x protocol as a supplicant for device authentication purposes. + + + + + + + + + The current operational status of this 802.1x supplicant. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + {{reference}} The interface on which authentication is to be performed. Example: Device.Ethernet.Link.1 + + + + + + + + + + + + The current supplicant state machine as defined in {{bibref|802.1x-2004|9.5.1}}, Supplicant PAE (Port Access Entity) State. {{enum}} + + + + + + + + + + + + + + + + + + The identity to be exchanged between the supplicant and authenticator. + + + + + + + + + + The maximum number of times the device will attempt to send an EAP start message before authentication fails as defined in {{bibref|802.1x-2004|9.5.1}}, maxStart. + This is in support of {{bibref|802.1x-2004|Section 8.4.6}}, Migration Considerations. + + + + + + + + + + The period in {{units}} a supplicant will wait before the device will attempt to re-send an EAP start message as defined in {{bibref|802.1x-2004|9.5.1}}, startPeriod. + + + + + + + + + + + The hold-off period in {{units}} a supplicant will wait before re-attempting authentication as defined in {{bibref|802.1x-2004|9.5.1}}, heldPeriod. + + + + + + + + + + + The period in {{units}} after which a request will be considered timed out as defined in {{bibref|802.1x-2004|9.5.1}}, authPeriod. + + + + + + + + + + {{list}} Indicates the authentication methods supported by the device. {{enum}} + + + + + + + + + + + + The action to be taken when authentication has failed, when the network fails to respond to the supplicant's start message, and the retries have been exceeded (since network does not yet support 802.1x). {{enum}} + This is in support of {{bibref|802.1x-2004|Section 8.4.6}}, Migration Considerations. + + + + + + + + + + + The action to be taken when authentication succeeds and a connection has already received an address and/or policy settings. {{enum}} + + + + + + + + + + + When set to {{true}}, the device MUST reset the session by performing an initial authentication attempt as defined in {{bibref|802.1x-2004|9.6.1.3}}, Initialize Port by sending out the EAP start message. + The device MUST initiate the reset after completion of the current CWMP session. The device MAY delay resetting the resource in order to avoid interruption of a user service such as an ongoing voice call. + + + + + + + + When set to {{true}}, the device MUST disconnect (forced unauthentication) the resource. + The device MUST initiate the disconnect after completion of the current CWMP session. The device MAY delay re-authentication of the resource in order to avoid interruption of a user service such as an ongoing voice call. + + + + + + + + + 802.1x Authentication Supplicant EAP statistics information for this resource. + + + + The number of EAPOL frames of any type that have been received by this Supplicant; {{bibref|802.1x-2004|9.5.2}}, EAPOL frames received. + + + + + + + + + The number of EAPOL frames of any type that have been transmitted by this Supplicant; {{bibref|802.1x-2004|9.5.2}}, EAPOL frames transmitted. + + + + + + + + + The number of EAPOL Start frames that have been transmitted by this Supplicant; {{bibref|802.1x-2004|9.5.2}}, EAPOL Start frames transmitted. + + + + + + + + + The number of EAPOL Logoff frames that have been transmitted by this Supplicant; {{bibref|802.1x-2004|9.5.2}}, EAPOL Logoff frames transmitted. + + + + + + + + + The number of EAP Resp/Id frames that have been transmitted; {{bibref|802.1x-2004|9.5.2}}, EAP Resp/Id frames transmitted. + + + + + + + + + The number of valid EAP Response frames (other than Resp/Id frames) that have been transmitted by this Supplicant; {{bibref|802.1x-2004|9.5.2}}, EAP Resp frames transmitted. + + + + + + + + + The number of EAP Req/Id frames that have been received by this Supplicant; {{bibref|802.1x-2004|9.5.2}}, EAP Req/Id frames received. + + + + + + + + + The number of EAP Request frames (other than Rq/Id frames) that have been received by this Supplicant; {{bibref|802.1x-2004|9.5.2}}, EAP Req frames received. + + + + + + + + + The number of EAPOL frames that have been received by this Supplicant in which the frame type is not recognized; {{bibref|802.1x-2004|9.5.2}}, EAP Req frames received. + + + + + + + + + The number of EAPOL frames that have been received by this Supplicant in which the Packet Body Length field is invalid; {{bibref|802.1x-2004|9.5.2}}, EAP length error frames received. + + + + + + + + + The protocol version number carried in the most recently received EAPOL frame; {{bibref|802.1x-2004|9.5.2}}, Last EAPOL frame version + + + + + + + + The source MAC address carried in the most recently received EAPOL frame; {{bibref|802.1x-2004|9.5.2}}, Last EAPOL frame source. + + + + + + + + + 802.1x Authentication Supplicant provisioning information used for MD5 shared secret exchange. This object will not exist if EAP-MD5 is not a supported authentication type. + + + + This parameter enables or disables the supplicant's support for EAP-MD5. + + + + + + + + The shared secret to be exchanged between the supplicant and authenticator. + + + + + + + 802.1x Authentication Supplicant provisioning information used for TLS certificate authentication. This object will not exist if the EAP-TLS is not a supported authentication type. + + + + This parameter enables or disables the supplicant's support for EAP-TLS. + + + + + + + + The parameter controls if the supplicant will authenticate the authenticator. + + + + + + + + + Users object that contains the {{object|User}} table. + + + + {{numentries}} + + + + + + + + + This object contains parameters relating to the user characteristics. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Enables/disables this user object instance. + If the User being configured is currently accessing the device then a disable MUST apply to the next user session and the current user session MUST NOT be abruptly terminated. + + + + + + + + + Allows this user to remotely access the UserInterface via the mechanism defined in {{object|.UserInterface.RemoteAccess.}} + + + + + + + + + Name of the current user. MUST NOT be {{empty}} for an enabled entry. + + + + + + + + + + + The user's password. + + + + + + String describing the default language for the local configuration interface, specified according to {{bibref|RFC3066}}. + If {{empty}}, {{param|.UserInterface.CurrentLanguage}} is used. + + + + + + + + + + + + SmartCardReaders object that contains the {{object|SmartCardReader}} table. + + + + {{numentries}} + + + + + + + + + This object describes the characteristics of the smart card reader. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Enables or disables this smart card reader. + + + + + + + + Indicates the status of this smart card reader. + + + + + + + Indicates the smart card reader is enabled and functioning properly. + + + + + Indicates the smart card reader is enabled and not functioning properly. + + + + + + + + Human-readable name associated with this smart card reader. + + + + + + + + + + When set to {{true}}, resets the SmartCard Reader and the associated SmartCard. + + + + + + + + The time at which this SmartCard Reader was reset. + Reset can be caused by: + * {{param|Status}} transition from Disabled to Enabled + * {{param|Reset}} set to {{true}}. + * An internal reset of the SmartCard Reader (including a reboot of the device). + Unknown Time value indicates that this SmartCard Reader has never been reset, which can only happen if it has never been enabled. + + + + + + + + Counter incremented once each time decryption cannot be carried out. + This counter relates to the smart card reader, not to the smart card itself, i.e. it is reset when the {{param|Reset}} parameter is used and not when a Smart Card is inserted or removed. + + + + + + + + Counter incremented once each time the key is not available to decrypt it. This is a subset of the more general {{param|DecryptionFailedCounter}} within the same object and thus will always be less than that parameter. + This counter relates to the smart card reader, not to the smart card itself, i.e. it is reset when the {{param|Reset}} parameter is used and not when a Smart Card is inserted or removed. + + + + + + + + + Status of currently associated smart card. + + + + Status of the Smart Card. + + + + + + Indicates that no Smart Card is inserted. + + + + + Indicates a Smart Card is present and working normally. + + + + + Indicates the Smart Card is present and in an error condition. + + + + + + + + Smart Card Type. {{enum}} + Vendors can extend the enumerated values with vendor specific extensions, in which case the rules outlined in {{bibref|TR-106|Section 3.3}} MUST be adhered to. + + + + + + + + + + + + {{list}} Indicates Smart Card Application(s). {{param}} is only relevant when {{param|Type}} has a value of UICC, otherwise it is {{empty}}. {{enum}} + Vendors can extend the enumerated values with vendor specific extensions, in which case the rules outlined in {{bibref|TR-106|Section 3.3}} MUST be adhered to. + + + + + + + + + + + + + The Smart Card Serial Number or {{empty}} if the Smart Card serial Number is not available, e.g. in the case of IPTV due to restrictions of the Service Delivery Platform. + + + + + + + + + + The Smart Card answer to a reset action. Issued by the Smart Card upon reset. + + + + + + + + + + + This object contains all UPnP related objects and parameters including Device and Discovery related objects and parameters. + + + + + This object defines the UPnP devices and UPnP services that are implemented by the CPE. + + + + Enables/Disables UPnP support. + + + + + + + + Enables/Disables UPnP Media Server. + + + + + + + + Enables/Disables UPnP Media Renderer. + + + + + + + + Enables/Disables UPnP Wireless Access Point. + + + + + + + + Enables/Disables UPnP QoS Device. + + + + + + + + Enables/Disables UPnP QoS Policy Holder. + + + + + + + + Enables/Disables UPnP IGD. + + + + + + + + Enables/Disables UPnP-DM Basic Management. + + + + + + + + Enables/Disables UPnP-DM Configuration Management. + + + + + + + + Enables/Disables UPnP-DM Software Management. + + + + + + + + + This object defines what UPnP capabilities this device has. + + + + Numeric value indicating the major version of the supported UPnP architecture. + If UPnP 1.1 is supported the value is 1. If UPnP 2.0 is supported the value is 2. + A value of 0 indicates no UPnP support. + + + + + + + + Numeric value indicating the minor version of the supported UPnP architecture. + If UPnP 1.1 is supported the value is 1. If UPnP 2.0 is supported the value is 0. + If {{param|UPnPArchitecture}} is 0 then this parameter SHOULD be ignored. + + + + + + + + Numeric value indicating the supported revision for UPnP Media Server. + A value of 0 indicates no support. + + + + + + + + Numeric value indicating the supported revision for UPnP Media Renderer. + A value of 0 indicates no support. + + + + + + + + Numeric value indicating the supported revision for UPnP Wireless Access Point. + A value of 0 indicates no support. + + + + + + + + Numeric value indicating the supported revision for UPnP Basic Device. + A value of 0 indicates no support. + + + + + + + + Numeric value indicating the supported revision for UPnP Qos Device. + A value of 0 indicates no support. + + + + + + + + Numeric value indicating the supported revision for UPnP Qos Policy Holder. + A value of 0 indicates no support. + + + + + + + + Numeric value indicating the supported revision for UPnP IGD. + A value of 0 indicates no support. + + + + + + + + Numeric value indicating the supported revision for UPnP-DM Basic Management. + A value of 0 indicates no support. + + + + + + + + Numeric value indicating the supported revision for UPnP-DM Configuration Management. + A value of 0 indicates no support. + + + + + + + + Numeric value indicating the supported revision for UPnP-DM Software Management. + A value of 0 indicates no support. + + + + + + + + + UPnP {{bibref|UPnP-DAv1}} SSDP discovered root devices, embedded devices and embedded services. + The CPE MAY, but need not, retain some or all of the information in this object across reboots. + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + UPnP root device table. This table contains an entry for each UPnP root device that has been discovered via SSDP. + + + + + + + The status of the UPnP root device. {{enum}} + The ability to list inactive UPnP root devices is OPTIONAL. The length of time an inactive device remains listed in this table is a local matter to the CPE. + + + + + + Device is active and UPnP lease has not expired. + + + + + Device is inactive because UPnP lease has expired. + + + + + Device is inactive because byebye message was received. + + + + + + + + This UPnP root device's UUID (Universally Unique IDentifier) {{bibref|RFC4122}}, extracted from any of its USN (Unique Service Name) headers. This is a 36-byte string that uniquely identifies the device, the following is an example: + : ''02c29d2a-dbfd-2d91-99c9-306d537e9856'' + {{pattern}} + + + + + + + + + + + The value of the USN (Unique Service Name) header for this UPnP root device. Three discovery messages are sent for root devices, and this SHOULD be the value of the USN header of the following form: + : ''uuid:device-UUID::urn:domain-name:device:deviceType:v'' + SSDP is an unreliable protocol and it is possible that no discovery message containing the USN header of the above form was ever received. If so, one of the other two forms MAY be used: + : ''uuid:device-UUID::upnp:rootdevice'' + : ''uuid:device-UUID'' (for root device UUID) + + + + + + + + + + The UPnP root device lease time in {{units}}, extracted from the CACHE-CONTROL header. + + + + + + + + + + The value of the LOCATION header for this UPnP root device, which is the {{datatype}} of the root device's DDD (Device Description Document). + + + + + + + + The value of the SERVER header for this UPnP root device, which is a string of the following form: + : ''OS/version UPnP/udaversion product/version'' + where '''UPnP''' is a literal string, '''udaversion''' is the version of the UPnP Device Architecture. + + + + + + + + + + {{list}} Indicates the full path names of all Host table entries, whether active or inactive, that correspond to this UPnP root device. + As such entries are added to or removed from the Host tables, the value of this parameter MUST be updated accordingly. + + + + + + + + + + + + + The date and time at which the last advertisement from this {{object}} was received. + + + + + + + + + UPnP embedded device table. This table contains an entry for each UPnP embedded device that has been discovered via SSDP. + + + + + + + The status of the UPnP embedded device. {{enum}} + The ability to list inactive UPnP embedded devices is OPTIONAL. The length of time an inactive device remains listed in this table is a local matter to the CPE. + + + + + + Device is active and UPnP lease has not expired. + + + + + Device is inactive because UPnP lease has expired. + + + + + Device is inactive because byebye message was received. + + + + + + + + This UPnP embedded device's UUID (Universally Unique IDentifier) {{bibref|RFC4122}}, extracted from any of its USN (Unique Service Name) headers. This is a 36-byte string that uniquely identifies the device, the following is an example: + : ''02c29d2a-dbfd-2d91-99c9-306d537e9856'' + {{pattern}} + + + + + + + + + + + The value of the USN (Unique Service Name) header for this UPnP embedded device. Two discovery messages are sent for embedded devices, and this SHOULD be the value of the USN header of the following form: + : ''uuid:device-UUID::urn:domain-name:device:deviceType:v'' + SSDP is an unreliable protocol and it is possible that no discovery message containing the USN header of the above form was ever received. If so, the other form MAY be used: + : ''uuid:device-UUID'' + + + + + + + + + + The UPnP embedded device lease time in {{units}}, extracted from the CACHE-CONTROL header. + + + + + + + + + + The value of the LOCATION header for this UPnP embedded device, which is the {{datatype}} of the root device's DDD (Device Description Document). + + + + + + + + The value of the SERVER header for this UPnP embedded device, which is a string of the following form: + : ''OS/version UPnP/udaversion product/version'' + where '''UPnP''' is a literal string, '''udaversion''' is the version of the UPnP Device Architecture. + + + + + + + + + + {{list}} Indicates the full path names of all Host table entries, whether active or inactive, that correspond to this UPnP embedded device. + As such entries are added to or removed from the Host tables, the value of this parameter MUST be updated accordingly. + + + + + + + + + + + + + The date and time at which the last advertisement from this {{object}} was received. + + + + + + + + + UPnP embedded service table. This table contains an entry for each UPnP embedded service that has been discovered via SSDP. + + + + + + + The status of the UPnP embedded service. {{enum}} + The ability to list inactive UPnP embedded services is OPTIONAL. The length of time an inactive service remains listed in this table is a local matter to the CPE. + + + + + + Service is active and UPnP lease has not expired. + + + + + Service is inactive because UPnP lease has expired. + + + + + Service is inactive because byebye message was received. + + + + + + + + The value of the USN (Unique Service Name) header for this UPnP embedded service. This is of the following form: + : ''uuid:device-UUID::urn:domain-name:service:serviceType:v'' + + + + + + + + + + The UPnP embedded service lease time in {{units}}, extracted from the CACHE-CONTROL header. + + + + + + + + + + The value of the LOCATION header for this UPnP embedded service, which is the {{datatype}} of the root device's DDD (Device Description Document). + + + + + + + + The value of the SERVER header for this UPnP embedded service, which is a string of the following form: + : ''OS/version UPnP/udaversion product/version'' + where '''UPnP''' is a literal string, '''udaversion''' is the version of the UPnP Device Architecture. + + + + + + + + + + {{list}} Indicates the full path names of all Host table entries, whether active or inactive, that correspond to this UPnP embedded service. + As such entries are added to or removed from the Host tables, the value of this parameter MUST be updated accordingly. + + + + + + + + + + + + + The date and time at which the last advertisement from this {{object}} was received. + + + + + + + + {{reference|the {{object|#.RootDevice}} or {{object|#.Device}} table entries that embeds this {{object}}}} This parameter is populated by extracting the "device-UUID" from the service's USN and matching the value against the root device or embedded device UUID value. + + + + + + + + + + + + This object contains information from the Description Document discovered from the UPnP Devices and Services. + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + This table contains information read from the Device Description Document of discovered root devices. + The CPE MAY, but need not, retain some or all of the information in this table after the associated SSDP advertisement (objects in the UPnP.Discovery. object tables) expires. + In case the SSDP advertisement expires and the CPE deletes the related instances from the tables in UPnP.Discovery., the reference to such instances MUST be set to the empty string. + + + + + + + The value extracted from the URLBase element in the Device Description Document of the discovered root device. If the URLBase element in the root device's Device Description Document is empty or absent, the {{datatype}} from which the device description was retrieved (e.g. the LOCATION from the SSDP message) is utilized as the URLBase. + Note: the URLBase element is not recommended by {{bibref|UPnP-DAv1}} and is not permitted by {{bibref|UPnP-DAv11}}, so the value of {{param}} will usually be the URL from which the device description was retrieved. + + + + + + + + The UPnP Device Architecture version extracted from the specVersion element in the Device Description Document of the discovered root device. The {{param}} is encoded as "major revison.minor revision". {{pattern}} + + + + + + + + + + + {{list}} {{reference|the Host table entries associated with the root device from which the device description was retrieved|ignore}} + + + + + + + + + + + + + + + This table contains the information from Device Description Document retrieved for a discovered UPnP root or embedded device. + + + + + + + Unique Device Name of this device represented as a UUID for the device. + This value is extracted from the UDN element in the Device Description Document with the leading uuid: removed. + + + + + + + + {{reference|a {{object}} table entry (if this is an embedded device) or {{empty}} (if this is a root device)}} + + + + + + + + + + + {{reference|a {{object|##.Discovery.RootDevice}} table entry (if this is a root device) or a {{object|##.Discovery.Device}} table entry (if this is an embedded device)}} + This {{param}} value can be {{empty}} because the referenced object has been deleted or the CPE was unable to retrieve the Description Document due to some out-of-band error. The determination to delete this {{object}} or use {{empty}} is implementation specific. + + + + + + + + + + + The value of the UPnP deviceType element in the Device Description Document for this {{object}}, or {{empty}} if this value is not provided by the device. + + + + + + + + + + The value of the UPnP friendlyName element in the Device Description Document for this {{object}}, or {{empty}} if this value is not provided by the device. + + + + + + + + + + Each list item is the value of an element in the Device Description Document for this {{object}} that indicates a device category (e.g. "AV_TV" and "AV_Recorder"), or the value is {{empty}} if no such element is provided by the device. + Note: It is assumed that the ''htip:X_DeviceCategory'' Device Description Document element is used for HTIP (Home-network Topology Identifying Protocol) {{bibref|JJ-300.00}} and {{bibref|G.9973}}. Standard HTIP device categories are defined in {{bibref|JJ-300.01}}. In this case, the maximum length of the list is 127 and of each item is 31, and any non-HTIP device categories SHOULD NOT conflict with standard HTIP device categories. + Note: {{param}} is different from {{param|DeviceType}} and is included here for the purpose of HTIP usage. + + + + + + + + + The value of the UPnP manufacturer element in the Device Description Document for this {{object}}, or {{empty}} if this value is not provided by the device. + + + + + + + + + + The value of an element in the Device Description Document for this {{object}} that indicates the manufacturer OUI if this value is provided by the device; or {{empty}} if this value is not provided by the device. + {{pattern}} + Note: It is assumed that the ''htip:X_ManufacturerOUI'' element is used for HTIP (Home-network Topology Identifying Protocol) {{bibref|JJ-300.00}} and {{bibref|G.9973}}. + + + + + + + + + + + + The value of the UPnP manufacturerURL element in the Device Description Document for this {{object}}, or {{empty}} if this value is not provided by the device. + + + + + + + + The value of the UPnP modelDescription element in the Device Description Document for this {{object}}, or {{empty}} if this value is not provided by the device. + + + + + + + + + + The value of the UPnP modelName element in the Device Description Document for this {{object}}, or {{empty}} if this value is not provided by the device. + + + + + + + + + + The value of the UPnP modelNumber element in the Device Description Document for this {{object}}, or {{empty}} if this value is not provided by the device. + + + + + + + + + + The value of the UPnP modelURL element in the Device Description Document for this {{object}}, or {{empty}} if this value is not provided by the device. + + + + + + + + The value of the UPnP serialNumber element in the Device Description Document for this {{object}}, or {{empty}} if this value is not provided by the device. + + + + + + + + + + The value of the UPnP UPC element in the Device Description Document for this {{object}}, or {{empty}} if this value is not provided by the device. + + + + + + + + + + The value of the UPnP presentationURL element in the Device Description Document for this {{object}} and MUST be an absolute URL. + The way to obtain an absolute URL from the presentationURL element is specified in {{bibref|UPnP-DAv1}} and {{bibref|UPnP-DAv11}}. + If the presentationURL is not provided by the device then this value MUST be {{empty}}. + + + + + + + + + This table contains the information from Device Description Document retrieved for a discovered UPnP service. + + + + + + + + {{reference|a {{object|#.DeviceInstance}} table entry}} + + + + + + + + + + + The value of the UPnP serviceId element in the Device Description Document for this {{object}}, or {{empty}} if this value is not provided by the service. + If the UPnP serviceId is not provided by the UPnP service, this {{object}} MUST be deleted. + + + + + + + + + + {{reference|a {{object|##.Discovery.Service}} table entry}} + This {{param}} value can be {{empty}} because the referenced object has been deleted or the CPE was unable to retrieve the Description Document due to some out-of-band error. The determination to delete this {{object}} or use {{empty}} is implementation specific. + + + + + + + + + + + The value of the UPnP serviceType element in the Device Description Document for this {{object}}, or {{empty}} if this value is not provided by the service. + + + + + + + + + + The value of the UPnP SCPDURL element in the Device Description Document for this {{object}} and MUST be an absolute {{datatype}}. + The way to obtain an absolute URL from the SCPDURL element is specified in {{bibref|UPnP-DAv1}} and {{bibref|UPnP-DAv11}}. + If the SCPDURL is not provided by the device then this value MUST be {{empty}}. + + + + + + + + The value of the UPnP controlURL element in the Device Description Document for this {{object}} and MUST be an absolute {{datatype}}. + The way to obtain an absolute URL from the controlURL element is specified in {{bibref|UPnP-DAv1}} and {{bibref|UPnP-DAv11}}. + If the controlURL is not provided by the device then this value MUST be {{empty}} + + + + + + + + The value of the UPnP eventSubURL element in the Device Description Document for this {{object}} and MUST be an absolute {{datatype}}. + The way to obtain an absolute URL from the eventSubURLL element is specified in {{bibref|UPnP-DAv1}} and {{bibref|UPnP-DAv11}}. + If the eventSubURL is not provided by the device then this value MUST be {{empty}} + + + + + + + + + This object contains all DLNA related objects and parameters. + + + + + DLNA capabilities. + + + + {{list}} Indicates the supported DLNA Home Network Device Classes {{bibref|DLNA-NDIG|Table 4-1}}. + + + + + + + + + + + {{list}} Indicates the supported DLNA Device Capabilities {{bibref|DLNA-NDIG|Table 4-2}}. + + + + + + + + + + + {{list}} Indicates the supported DLNA Home Infrastructure Device Classes {{bibref|DLNA-NDIG|Table 4-4}}. + + + + + + + + + + + {{list}} Indicates the DLNA Image Class Profile IDs supported by this device, from Tables 5-2 and 5-3 of {{bibref|DLNA-NDIG}}. + + + + + + + + + + + {{list}} Indicates the DLNA Audio Class Profile IDs supported by this device, from Tables 5-4 through 5-10 of {{bibref|DLNA-NDIG}}. + + + + + + + + + + + {{list}} Indicates the DLNA AV Class Profile IDs supported by this device, from Tables 5-11 through 5-15 of {{bibref|DLNA-NDIG}}. + + + + + + + + + + + {{list}} Indicates the DLNA Media Collection Profile IDs supported by this device {{bibref|DLNA-NDIG|Table 5-16}}. + + + + + + + + + + + {{list}} Indicates the DLNA Printer Class Profile IDs supported by this device {{bibref|DLNA-NDIG|Table 5-17}}. + + + + + + + + + + + + This diagnostics test is vendor-specific and MAY include testing hardware, software, and/or firmware. + + + + {{datatype|expand}} + + + + + + + + + + + + + + Results of self-test (vendor specific). + + + + + + + + + + + Firewall configuration object. The {{param|Config}} parameter enables and disables the Firewall, and can select either a predefined configuration ({{enum|High|Config}} or {{enum|Low|Config}}) or an explicitly-defined {{enum|Advanced|Config}} configuration. + For an {{enum|Advanced|Config}} configuration, {{param|AdvancedLevel}} controls the currently active Firewall Level, and the Firewall Levels are defined in the {{object|Level}}, {{object|Chain}} and {{object|Chain.{i}.Rule}} tables. + The Firewall rules modeled by this object operate only on the forwarding path. This means that they affect only routed traffic, and do not affect traffic that is destined for or generated by the CPE. Note that any {{object|#.NAT}} processing on the ingress packet occurs before Firewall rules are applied so, for example, the Firewall rules will see the translated destination IP address and port in a downstream packet that has passed through the NAT. + See {{bibref|TR-181i2|Appendix VIII}} for an example {{enum|Advanced|Config}} configuration. + + + + Enables or disables the Firewall. + Firewalls often implement additional Denial of Service and other vulnerability protections, such as those described in {{bibref|ICSA-Baseline}}. If a {{enum|Stateful|Type}} Firewall is enabled, then it is assumed that all implemented stateful protections are enabled, unless they are overridden by some other part of the data model. + + + + + + + + How this firewall is configured. {{enum}} + Vendors can extend the enumerated values with vendor specific extensions, in which case the rules outlined in {{bibref|TR-106|Section 3.3}} MUST be adhered to. + + + + + + The firewall implements the "Traffic Denied Inbound" and "Minimally Permit Common Services Outbound" components of the ICSA residential certification's Required Services Security Policy {{bibref|ICSA-Residential}}. If DoS and vulnerability protections are implemented {{bibref|ICSA-Baseline}}, these are enabled. + + + + + All Outbound traffic and pinhole-defined Inbound traffic is allowed. If DoS and vulnerability protections are implemented {{bibref|ICSA-Baseline}}, these are enabled. + + + + + All Inbound and Outbound traffic is allowed, and the CPE is only protected by NAT settings (if supported and enabled). If DoS and vulnerability protections are implemented {{bibref|ICSA-Baseline}}, these are disabled. + This value is DEPRECATED because it is the same as setting {{param|Enable}} to {{false}}. + + + + + Advanced firewall configuration applies, as specified by {{param|AdvancedLevel}}. + + + + + + + + Selects the currently active Firewall Level. + {{param}} only applies when {{param|Config}} is {{enum|Advanced|Config}}. + + + + + + + + + + Firewall Type. {{enum}} + A {{enum|Stateless}} Firewall treats each packet individually and thus has no concept of sessions. Therefore a {{enum|Stateless}} Firewall cannot distinguish between unsolicited downstream traffic and downstream traffic in response to outbound messages. This means that it has to accept all incoming downstream traffic. Furthermore, because a {{enum|Stateless}} Firewall treats each packet individually, it does not provide any DoS or vulnerability protections. + A {{enum|Stateful}} Firewall maintains state about previous packets and thus supports sessions. Therefore a {{enum|Stateful}} Firewall can distinguish between solicited and unsolicited downstream traffic. In a {{enum|Stateful}} Firewall, explicitly configured rules only apply to unsolicited traffic, and can not cause packets received in response to an upstream request to be dropped. Furthermore, because a {{enum|Stateful}} Firewall maintains state, it can provide DoS and vulnerability protections. + A device that has a {{enum|Stateless}} Firewall depends on the NAT to provide protection against unsolicited downstream IPv4 traffic. This is because, as noted above, a {{enum|Stateless}} Firewall has to be configured to accept all incoming downstream traffic. For IPv6 there is no NAT, so a {{enum|Stateless}} Firewall can not provide simple security protections against unsolicited downstream IPv6 traffic. + + + + + + The Firewall only implements stateless packet inspection. + + + + + The Firewall implements stateful packet inspection. + + + + + + + + A string identifying the firewall settings version currently used in the CPE, or {{empty}} if the firewall settings are not associated with a version. + + + + + + + + + + The time at which the firewall settings most recently changed. + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + Firewall Level table. When an {{enum|Advanced|#.Config}} configuration is selected, {{param|#.AdvancedLevel}} selects the currently active entry in this table. Each {{object}} table entry references the {{object|#.Chain}} that contains the rules for this level. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Human-readable name associated with this {{object}} entry. + + + + + + + + + + Human-readable description associated with this {{object}} entry. + + + + + + + + + + Position of the {{object}} entry for user interface display; levels can be presented according to an increasing or decreasing level of security. + When this value is modified, if the value matches that of an existing entry, the {{param}} value for the existing entry and all greater-valued {{param}} entries is incremented to ensure uniqueness of this value. A deletion causes {{param}} values to be compacted. When a value is changed, incrementing occurs before compaction. + The value of {{param}} on creation of a {{object}} table entry MUST be one greater than the largest current value. + + + + + + + + + + The Chain containing Firewall Level Rules associated with this {{object}} entry. + On creation of a new {{object}} entry, the device will automatically create a new {{object|#.Chain}} table entry that this {{param}} parameter will reference. + + + + + + + + + + Indicates whether NAT port mapping is enabled or disabled when this is the active Level. For a {{enum|Stateless|#.Type}} Firewall this can be set to {{false}} to force any port mappings to be operationally disabled (for a {{enum|Stateful|#.Type}} Firewall this is not necessary because the same effect can be achieved via Firewall rules). + This parameter affects all the interfaces on which NAT is enabled. It operationally enables or disables port mapping functionality and therefore does not affect the individual {{param|##.NAT.PortMapping.{i}.Enable}} settings. Note that the current NAT status and NAT port mapping status are indicated by the {{param|##.NAT.InterfaceSetting.{i}.Status}} parameter. + + + + + + + + + Default action for packets not matching any of the level rules. {{enum}} + + + + + + The firewall discards packets matching this rule. + + + + + The firewall forwards packets matching this rule. + + + + + The firewall discards packets matching this rule, and sends an ICMP message to the originating host. + + + + + + + + + Enable or disable logging, in a {{object|##.DeviceInfo.VendorLogFile}}, of packets not matching any of the level rules. + + + + + + + + + + Firewall Chain table. Each entry contains an ordered list of {{object|Rule}} objects which can themselves reference other {{object}} instances. A hierarchy of rules can therefore be created. + A given Firewall Chain's rules are all created by the same entity, as indicated by the {{param|Creator}} parameter. + + + + + + + + + + Enables or disables this {{object}} entry. + + + + + + + + + {{datatype|expand}} + + + + + + + + Human-readable name associated with this {{object}} entry. + + + + + + + + + + Creator of this {{object}} entry and of its {{object|Rule}}s. {{enum}} + Note that this is the entity that originally created the {{object}} entry. The value of this parameter does not change if the {{object}} entry or one of its rules is subsequently changed by another entity. + + + + + + The {{object}} entry is present in the factory default configuration. + + + + + The {{object}} entry was created as a side-effect of a {{bibref|UPnP-IGD:1}} or {{bibref|TR-064}} port mapping. + + + + + The {{object}} entry was created by {{bibref|UPnP-IGD:2}} WANIPv6FirewallControl. + + + + + The {{object}} entry was created by the Auto Configuration Server. + + + + + The {{object}} entry was created by device user interface or command line interface. + + + + + The {{object}} entry was created by another entity. + + + + + + + + + {{numentries}} + + + + + + + + + Firewall Rule table. Each entry defines a Firewall packet selection rule. The {{param|Target}} parameter defines the action to perform for traffic matching this rule: the packet can be dropped, accepted, rejected or passed to another {{object|#}}. + This table MUST NOT contain dynamic Firewall rules associated with {{enum|Stateful|##.Type}} Firewall sessions. + All entries are created by the creator of the parent {{object|#}}, as indicated by its {{param|#.Creator}} parameter. {{object}} entries in a {{object|#}} with a {{param|#.Creator}} of {{enum|Defaults|#.Creator}}, {{enum|ACS|#.Creator}}, {{enum|UserInterface|#.Creator}} or (maybe) {{enum|Other|#.Creator}} are referred to as ''Static'' {{object}}s. Whether or not a {{object}} in a {{object|#}} with {{param|#.Creator}} {{enum|Other|#.Creator}} is regarded as ''Static'' is a local matter to the CPE. Some of this object's parameter descriptions refer to whether a {{object}} is ''Static'' when specifying whether or not the parameter value can be modified. + For enabled table entries, if {{param|SourceInterface}} is not a valid reference and {{param|SourceAllInterfaces}} is {{false}}, or if {{param|DestInterface}} is not a valid reference and {{param|DestAllInterfaces}} is {{false}}, then the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + + + + + + + Enables or disables this {{object}} entry. + + + + + + + + + The status of this {{object}} entry. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + Position of the {{object}} entry in the order of precedence. A value of ''1'' indicates the first entry considered (highest precedence). For each packet, the highest ordered entry that matches the rule criteria is applied. All lower order entries are ignored. + When this value is modified, if the value matches that of an existing entry, the {{param}} value for the existing entry and all lower {{param}} entries is incremented (lowered in precedence) to ensure uniqueness of this value. A deletion causes {{param}} values to be compacted. When a value is changed, incrementing occurs before compaction. + The value of {{param}} on creation of a {{object}} table entry MUST be one greater than the largest current value (initially assigned the lowest precedence). + + + + + + + + + + {{datatype|expand}} + + + + + + + + Human-readable description associated with this {{object}} entry. + + + + + + + + + + Action to perform for traffic matching this {{object}} entry. {{enum}} + This parameter can only be modified if the {{object}} is ''Static'' (as explained in the object description). + + + + + + The firewall discards packets matching this rule. + + + + + The firewall forwards packets matching this rule. + + + + + The firewall discards packets matching this rule, and sends an ICMP message to the originating host. + + + + + The firewall doesn't consider the remaining rules (if any) in the current chain. + + + + + The rules in the chain referenced by the {{param|TargetChain}} parameter are matched. + + + + + + + + + Specifies the chain to process when {{param|Target}} equals {{enum|TargetChain|Target}}. If there are no matching rules in the referenced chain, processing continues with the next rule in this chain (if any). In other words, {{enum|TargetChain|Target}} behaves like a subroutine call. + {{empty}} indicates no {{param}} is specified. + This parameter can only be modified if the {{object}} is ''Static'' (as explained in the object description). + + + + + + + + + + + Enable or disable logging, in a {{object|###.DeviceInfo.VendorLogFile}}, of packets matching this {{object}}. + If the {{object}} is not ''Static'' (as explained in the object description), whether changes to this parameter persist across re-boot is a local matter to the CPE. + + + + + + + + + Date and time when this {{object}} entry was created. + + + + + + + + The time at which this {{object}} entry will expire, or {{null}} if not known. For an infinite lifetime, the parameter value MUST be 9999-12-31T23:59:59Z. + The only value that MUST be supported is 9999-12-31T23:59:59Z (i.e. support for rules that expire is OPTIONAL). + When a rule expires, the CPE MUST automatically terminate that rule and MUST automatically delete the corresponding {{object}} table entry. + This parameter can only be modified if the {{object}} is ''Static'' (as explained in the object description). + + + + + + + + + {{object}} criterion. {{reference}} + This specifies the ingress interface associated with the entry. It MAY be a layer 1, 2 or 3 interface, however, the types of interfaces for which Rules can be instantiated is a local matter to the CPE. + This parameter can only be modified if the {{object}} is ''Static'' (as explained in the object description). + + + + + + + + + + + + If {{false}}, the rule matches only those packets that match the {{param|SourceInterface}} entry, if specified. + If {{true}}, the rule matches all packets except those that match the {{param|SourceInterface}} entry, if specified. + This parameter can only be modified if the {{object}} is ''Static'' (as explained in the object description). + + + + + + + + + {{object}} criterion. This specifies that all ingress interfaces are associated with the entry. If {{true}}, the values of {{param|SourceInterface}} and {{param|SourceInterfaceExclude}} are ignored since all ingress interfaces are indicated. + This parameter can only be modified if the {{object}} is ''Static'' (as explained in the object description). + + + + + + + + + {{object}} criterion. {{reference}} + This specifies the egress interface associated with the entry. It MAY be a layer 1, 2 or 3 interface, however, the types of interfaces for which Rules can be instantiated is a local matter to the CPE. + This parameter can only be modified if the {{object}} is ''Static'' (as explained in the object description). + + + + + + + + + + + + If {{false}}, the rule matches only those packets that match the {{param|DestInterface}} entry, if specified. + If {{true}}, the rule matches all packets except those that match the {{param|DestInterface}} entry, if specified. + This parameter can only be modified if the {{object}} is ''Static'' (as explained in the object description). + + + + + + + + + {{object}} criterion. This specifies that all egress interfaces are associated with the entry. If {{true}}, the values of {{param|DestInterface}} and {{param|DestInterfaceExclude}} are ignored since all ingress interfaces are indicated. + This parameter can only be modified if the {{object}} is ''Static'' (as explained in the object description). + + + + + + + + + {{object}} criterion. + IP Protocol Version (e.g. 4 for IPv4 and 6 for IPv6). A value of -1 indicates this criterion is not used for matching. + This parameter can only be modified if the {{object}} is ''Static'' (as explained in the object description). + + + + + + + + + + + {{object}} criterion. + Destination IP address. {{empty}} indicates this criterion is not used for matching. + Note that Firewall rules are applied after any {{object|###.NAT}} processing, so if NAT is enabled on the source interface this is always the translated address. + This parameter can only be modified if the {{object}} is ''Static'' (as explained in the object description). + + + + + + + + + Destination IP address mask, represented as an IP routing prefix using CIDR notation [RFC4632]. The IP address part MUST be {{empty}} (and, if specified, MUST be ignored). + + + + + + + + + If {{false}}, the rule matches only those packets that match the (masked) {{param|DestIP}} entry, if specified. + If {{true}}, the rule matches all packets except those that match the (masked) {{param|DestIP}} entry, if specified. + This parameter can only be modified if the {{object}} is ''Static'' (as explained in the object description). + + + + + + + + + {{object}} criterion. + Source IP address. {{empty}} indicates this criterion is not used for matching. + This parameter can only be modified if the {{object}} is ''Static'' (as explained in the object description). + + + + + + + + + Source IP address mask, represented as an IP routing prefix using CIDR notation [RFC4632]. The IP address part MUST be {{empty}} (and, if specified, MUST be ignored). + + + + + + + + + If {{false}}, the rule matches only those packets that match the (masked) {{param|SourceIP}} entry, if specified. + If {{true}}, the rule matches all packets except those that match the (masked) {{param|SourceIP}} entry, if specified. + This parameter can only be modified if the {{object}} is ''Static'' (as explained in the object description). + + + + + + + + + {{object}} criterion. + Protocol number. A value of -1 indicates this criterion is not used for matching. + This parameter can only be modified if the {{object}} is ''Static'' (as explained in the object description). + + + + + + + + + + + If {{false}}, the rule matches only those packets that match the {{param|Protocol}} entry, if specified. + If {{true}}, the rule matches all packets except those that match the {{param|Protocol}} entry, if specified. + This parameter can only be modified if the {{object}} is ''Static'' (as explained in the object description). + + + + + + + + + {{object}} criterion. + Destination port number. A value of -1 indicates this criterion is not used for matching. + Note that Firewall rules are applied after any {{object|###.NAT}} processing, so if NAT is enabled on the source interface this is always the translated port number. + This parameter can only be modified if the {{object}} is ''Static'' (as explained in the object description). + + + + + + + + + + + {{object}} criterion. + If specified, indicates the {{object}} criterion is to include the port range from {{param|DestPort}} through {{param}} (inclusive). If specified, {{param}} MUST be greater than or equal to {{param|DestPort}}. + A value of -1 indicates that no port range is specified. + Note that Firewall rules are applied after any {{object|###.NAT}} processing, so if NAT is enabled on the source interface this is always the translated port number. + This parameter can only be modified if the {{object}} is ''Static'' (as explained in the object description). + + + + + + + + + + + If {{false}}, the rule matches only those packets that match the {{param|DestPort}} entry (or port range), if specified. + If {{true}}, the rule matches all packets except those that match the {{param|DestPort}} entry (or port range), if specified. + This parameter can only be modified if the {{object}} is ''Static'' (as explained in the object description). + + + + + + + + + {{object}} criterion. + Source port number. A value of -1 indicates this criterion is not used for matching. + This parameter can only be modified if the {{object}} is ''Static'' (as explained in the object description). + + + + + + + + + + + {{object}} criterion. + If specified, indicates the {{object}} criterion is to include the port range from {{param|SourcePort}} through {{param}} (inclusive). If specified, {{param}} MUST be greater than or equal to {{param|SourcePort}}. + A value of -1 indicates that no port range is specified. + This parameter can only be modified if the {{object}} is ''Static'' (as explained in the object description). + + + + + + + + + + + If {{false}}, the rule matches only those packets that match the {{param|SourcePort}} entry (or port range), if specified. + If {{true}}, the rule matches all packets except those that match the {{param|SourcePort}} entry (or port range), if specified. + This parameter can only be modified if the {{object}} is ''Static'' (as explained in the object description). + + + + + + + + + {{object}} criterion. + DiffServ codepoint (defined in {{bibref|RFC2474}}). + If set to a Class Selector Codepoint (defined in {{bibref|RFC2474}}), all DSCP values that match the first 3 bits will be considered a valid match. + A value of -1 indicates this criterion is not used for matching. + This parameter can only be modified if the {{object}} is ''Static'' (as explained in the object description). + + + + + + + + + + + If {{false}}, the rule matches only those packets that match the {{param|DSCP}} entry, if specified. + If {{true}}, the rule matchess all packets except those that match the {{param|DSCP}} entry, if specified. + This parameter can only be modified if the {{object}} is ''Static'' (as explained in the object description). + + + + + + + + + + This object configures collection of periodic statistics for the device. + Periodic statistics are measured over a sample interval (which can be aligned with absolute time) and are made available to the Controller as a comma-separated list of the most recent <n> samples. + This object provides a single set of global settings that affect the entire device unless overridden locally. + + + + Minimum sample interval in {{units}} that the CPE is able to support. + A value of 0 indicates no specific minimum sample interval. + + + + + + + + + + Maximum number of samples of each statistic that the CPE is able to store and report. + A value of 0 indicates no specific maximum number of samples. + + + + + + + + {{numentries}} + + + + + + + + + Periodic statistics sample set table. Each sample set has its own sample interval etc. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Enables or disables collection of periodic statistics for this sample set. + When collection of periodic statistics is enabled, any stored samples are discarded, and the first sample interval begins immediately. + + + + + + + + + Indicates availability of Sample statistics. {{enum}} + The {{enum|Trigger}} value is only used for triggering the Controller to fetch the collected data and can only be used when {{param|FetchSamples}} is in the range [1:{{param|ReportSamples}}]. + The transition from {{enum|Enabled}} to {{enum|Trigger}} to {{enum|Enabled}} MUST be instantaneous and so will result in only a single value change for notification purposes. + + + + + + Collection is disabled. + + + + + Collection is enabled. + + + + + Collection is enabled and the Controller SHOULD now fetch the collected data. + + + + + + + + + The name of this sample set, which uniquely distinguishes each sample set. + + + + + + + + + + + The sample interval in {{units}}. Each statistic is measured over this sample interval. + The CPE MAY reject a request to set {{param}} to less than {{param|.PeriodicStatistics.MinSampleInterval}}. + Sample intervals MUST begin every {{param}} {{units}}, with no delay between samples. + If {{param}} is changed while collection of periodic statistics is enabled, any stored samples are discarded, and the first sample interval begins immediately. + For example, if {{param|ReportSamples}} is 24 and {{param}} is 3600 (an hour), the CPE can store up to a day's worth of samples for each statistic. + + + + + + + + + + + + The number of samples that the CPE will store and report for each statistic. + The CPE MUST permit {{param}} to be set to at least {{param|.PeriodicStatistics.MaxReportSamples}}. + If {{param}} is changed while collection of periodic statistics is enabled, the CPE will truncate or extend its statistics buffers as appropriate, but statistics collection MUST NOT otherwise be affected. + For example, if {{param}} is 24 and {{param|SampleInterval}} is 3600 (an hour), the CPE can store up to a day's worth of samples for each statistic. + + + + + + + + + + + An absolute time reference in UTC to determine when sample intervals will complete. Each sample interval MUST complete at this reference time plus or minus an integer multiple of {{param|SampleInterval}}. + {{param}} is used only to set the "phase" of the sample and fetch intervals. The actual value of {{param}} can be arbitrarily far into the past or future. + This time reference also determines when the {{param|Status}} {{enum|Enabled|Status}} to {{enum|Trigger|Status}} to {{enum|Enabled|Status}} transitions that are controlled by {{param|FetchSamples}} will occur. If collection of periodic statistics is enabled and {{param|FetchSamples}} is in the range [1:{{param|ReportSamples}}] then each such {{param|Status}} transition MUST occur at this reference time plus or minus an integer multiple of {{param|FetchSamples}} * {{param|SampleInterval}} (the fetch interval). + If {{param}} is changed while collection of periodic statistics is enabled, any stored samples are discarded, and the first sample interval begins immediately. + The Unknown Time value defined in {{bibref|TR-106}} indicates that no particular time reference is specified. That is, the CPE MAY locally choose the time reference, and is required only to adhere to the specified sample and fetch intervals. + If absolute time is not available to the CPE, its sample and fetch interval behavior MUST be the same as if the {{param}} parameter was set to the Unknown Time value. + For example, if {{param|SampleInterval}} is 3600 (an hour) and if {{param}} is set to UTC midnight on some day (in the past, present, or future) then sample intervals will complete on each UTC hour (00:00, 01:00, 02:00 etc). + If, in addition, {{param|FetchSamples}} is 24, then the fetch interval is 86400 (a day) and {{param|Status}} {{enum|Enabled|Status}} to {{enum|Trigger|Status}} to {{enum|Enabled|Status}} transitions will occur every day at UTC midnight. + Note that, if {{param}} is set to a time other than the Unknown Time, the first sample interval (which has to begin immediately) will almost certainly be shorter than {{param|SampleInterval}}). This is why {{param}} is defined in terms of when sample intervals complete rather than start. + + + + + + + + + The number of sample intervals to be collected before transitioning {{param|Status}} from {{enum|Enabled|Status}} to {{enum|Trigger|Status}} to {{enum|Enabled|Status}}. + If this SampleSet is enabled and {{param}} is in the range [1:{{param|ReportSamples}}] then {{param|Status}} MUST transition from {{enum|Enabled|Status}} to {{enum|Trigger|Status}} to {{enum|Enabled|Status}} on completion of every {{param}} sample intervals. Otherwise, the transition MUST NOT occur. + For example, if {{param|ReportSamples}} is 25 and {{param}} is 24, then the CPE will store 25 values for each monitored parameter and the above {{param|Status}} transition will occur as the CPE stores each 24th of 25 sample intervals, which means that the Controller could delay for up to two sample intervals before reading the stored values and would still not miss any samples (see also {{param|ForceSample}}). + To disable this trigger mechanism and still collect sampled statistics, {{param}} can be set to either 0 or a value greater than {{param|ReportSamples}}. + + + + + + + + + When set to {{true}}, forces statistics for the current sample to be calculated and updated in the data model. Setting it to {{false}} has no effect. {{hidden}} + If this is the first time that {{param}} has been set to {{true}} during the current sample interval, this MUST cause a new value to be added to each of the periodic statistics comma-separated list parameters, and the {{param|ReportEndTime}} and all {{param|SampleSeconds}} parameters MUST be updated accordingly. + If this is not the first time that {{param}} has been set to {{true}} during the current sample interval, then the new values that were added as described in the previous paragraph, and the {{param|ReportEndTime}} and all {{param|SampleSeconds}} parameters, MUST be updated accordingly. + Note that {{param}} just provides a "sneak preview" of the current sample. It does not create a new sample and it does not interfere with the sample interval schedule. + At the end of each sample interval, if {{param}} was set to {{true}} during the sample interval then the new values that were added as described above, and the {{param|ReportEndTime}} and all {{param|SampleSeconds}} parameters, will be updated accordingly. In other words, the partial sample data that was created when {{param}} was set to {{true}} will be updated one last time at the end of the sample interval. + + + + + + + + + The absolute time at which the sample interval for the first stored sample (for each statistic) started. + + + + + + + + + The absolute time at which the sample interval for the last stored sample (for each statistic) ended. + If {{param|ForceSample}} has been used to force statistics for the current sample to be calculated and updated in the data model, then {{param}} MUST be updated to reflect the actual time over which stored data was collected. + + + + + + + + + {{list}} Each entry indicates the number of {{units}} during which data was collected during the sample interval. + Individual {{param}} values can be less than {{param|SampleInterval}}, for several reasons, including: + : {{param|TimeReference}} has been set to a time other than the Unknown Time and the current sample interval started part of the way through a scheduled sample interval. + : {{param|ForceSample}} has been used to force statistics for the current sample to be calculated and updated in the data model. + + + + + + + + + + + + {{numentries}} + + + + + + + + + Periodic statistics parameter table for this sample set. This table contains entries for parameters whose values are to be sampled. + Note that the comma-separated lists in this object (SampleSeconds, SuspectData and Values) only ever change (a) when first enabled, (b) when ForceSample is set to true (a "sneak preview" of the current sample), or (c) at the end of the sample interval. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Enables or disables this object instance. + + + + + + + + + {{reference}} This is the parameter being monitored by the Periodic Statistics mechanism. + + + + + + + + + + + + Controls how this parameter's value is sampled. {{enum}} + Parameters of non-numeric types can only support {{enum|Current}}. The value of the {{param}} MUST be ignored for such parameters. + + + + + + Sampled value is current value + + + + + Sampled value is change in value since start of sample interval + + + + + + + + + Controls how this parameter's statistic is calculated from the sampled value(s). {{enum}} + Parameters of non-numeric types can only support {{enum|Latest}}. The value of the {{param}} MUST be ignored for such parameters. + {{param|SampleMode}} MUST be applied before {{param}}, i.e. the inputs to the calculation will have already accounted for {{param|SampleMode}}. + + + + + + Statistic is sampled value at end of sample interval + + + + + Statistic is minimum sampled value during sample interval + + + + + Statistic is maximum sampled value during sample interval + + + + + Statistic is average (mean) sampled value during sample interval + + + + + + + + + The low threshold value that controls the calculation of {{param|Failures}}. + A value equal to {{param|HighThreshold}} disables the threshold/failure mechanism. + Parameters of non-numeric types cannot support the threshold/failure mechanism. The value of this parameter MUST be ignored for such parameters. + + + + + + + + + The high threshold value that controls the calculation of {{param|Failures}}. + A value equal to {{param|LowThreshold}} disables the threshold/failure mechanism. + Parameters of non-numeric types cannot support the threshold/failure mechanism. The value of this parameter MUST be ignored for such parameters. + + + + + + + + + {{list}} Each entry indicates the number of {{units}} during which data was collected for this parameter during the sample interval. + Individual {{param}} values can be less than {{param|.PeriodicStatistics.SampleSet.{i}.SampleInterval}}, for several reasons, including: + : Any of the reasons for which {{param|.PeriodicStatistics.SampleSet.{i}.SampleSeconds}} values might be less than {{param|.PeriodicStatistics.SampleSet.{i}.SampleInterval}}. + : The parameter doesn't exist, or was created or deleted during a sample interval. + + + + + + + + + + + + {{list}} Each entry is 0 if the sampled value is believed to be valid, or 1 if an event that might affect the validity of the sampled value occurred during the sample interval. + For example, if the parameter value were to be reset during the sample interval then it would be appropriate to set {{param}} to 1. + + + + + + + + + + + + {{list}} Each entry indicates the value of the referenced parameter, as determined by {{param|SampleMode}}, during the sample interval. + The statistics values in this comma-separated lists MUST be in time order, with the oldest one first and the most recent one last. + If the {{param|SampleMode}} parameter is not present, or is inappropriate for the referenced parameter, the statistics values MUST be collected in Current mode. + + + + + + + + + + Counts the number of times (since this object instance was last enabled) that a newly-calculated sample value (accounting for {{param|SampleMode}}) transitioned from the "in range" state to the "out of range" state, or between the "out of range (low)" and "out of range (high)" states. The states are defined as follows: + * "in range" : current value is greater than {{param|LowThreshold}} and less than {{param|HighThreshold}}. + * "out of range" : current value is less than or equal to {{param|LowThreshold}}, or greater than or equal to {{param|HighThreshold}}. + * "out of range (low)" : current value is less than or equal to {{param|LowThreshold}}. + * "out of range (high)" : current value is greater than or equal to {{param|HighThreshold}}. + Note that, if {{param|LowThreshold}} and {{param|HighThreshold}} are both the same, the threshold/failure mechanism is disabled, so the value of this parameter will not increment. + This parameter can be incremented at any time during a sample interval, and might be incremented more than once during a single sample interval. For this reason, the CPE SHOULD place a locally specified limit on the frequency at which it will notify the Controller of such changes. + Parameters of non-numeric types cannot support the threshold/failure mechanism. The value of this parameter MUST be ignored for such parameters. + + + + + + + + + + This object contains parameters relating to Fault/Alarm Management. + + + + {{numentries}} + + + + + + + + The maximum number of entries allowed in the {{object|.FaultMgmt.CurrentAlarm.{i}.}} table. + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + Supported Alarm Entries which can be raised by the device. + The instance numbers for this table SHOULD be maintained across firmware upgrades of the device. + + + + + + + + + + Indicates the type of event. + + + + + + + + + + Qualifies the alarm and provides further information than {{param|EventType}}. + + + + + + + + + + Provides further qualification on the alarm beyond {{param|EventType}} and {{param|ProbableCause}}. + This is vendor defined and will be {{empty}} if the device doesn't support unique indexing of the table using {{param}}. + The string can be set to "*" to indicate the default case if only a subset of {{param}} are to be contained within the table. + + + + + + + + + + Indicates the relative level of urgency for operator attention, see {{bibref|ITU-X.733}}. {{enum}} + This will be {{empty}} if the device doesn't support unique indexing of the table using {{param}}. + The string can be set to "*" to indicate the default case if only a subset of {{param}} are to be contained within the table. + + + + + + {{empty}} + + + + + + + + + + + + + + + Indicates the reporting mechanism setting of the alarm. {{enum}} + + + + + + The device inserts the alarm into the {{object|.FaultMgmt.ExpeditedEvent.{i}.}} table and the {{object|.FaultMgmt.ExpeditedEvent.{i}.}} table. + + + + + The device inserts the alarm into the {{object|.FaultMgmt.QueuedEvent.{i}.}} table and the {{object|.FaultMgmt.QueuedEvent.{i}.}} table. + + + + + The device inserts the alarm into the {{object|.FaultMgmt.HistoryEvent.{i}.}} table. + + + + + The device ignores the alarm. + + + + + + + + + Contains all currently active alarms (whose {{param|.FaultMgmt.SupportedAlarm.{i}.PerceivedSeverity}} is not {{enum|Cleared|.FaultMgmt.SupportedAlarm.{i}.PerceivedSeverity}}). + Newly raised alarms result in a new entry in this table being added, any changes to the alarm as a result of an update event are updated in the existing table entry, and a clear event raised against an alarm results in the alarm being removed from this table. + If maximum entries as indicated by {{param|.FaultMgmt.MaxCurrentAlarmEntries}} is reached, the next event overrides the object with the oldest {{param|AlarmChangedTime}}. + When a new alarm replaces an existing alarm, then all parameter values for that instance are considered as changed for the purposes of value change notifications to the Controller (even if their new values are identical to those of the prior alarm). + + + + + + + + + + + + Identifies one Alarm Entry in the Alarm List. This value MUST be uniquely allocated by the device to the alarm instance during the lifetime of the individual alarm. + + + + + + + + + + Indicates the date and time when the alarm was first raised by the device. + + + + + + + + Indicates the date and time when the alarm was last changed by the device. + + + + + + + + Specifies the instance of the Informational Object Class in which the alarm occurred by carrying the Distinguished Name (DN) of this object instance. The format of the DN is specific to the application that is using this {{object}}. + + + + + + + + + + Indicates the type of event. + + + + + + + + + + Qualifies the alarm and provides further information than {{param|EventType}}. + + + + + + + + + + Provides further qualification on the alarm beyond {{param|EventType}} and {{param|ProbableCause}}. + This is vendor defined and will be {{empty}} if the device doesn't support inclusion of this information. + + + + + + + + + + Indicates the relative level of urgency for operator attention, see {{bibref|ITU-X.733}}. {{enum}} + + + + + + + + + + + + + + This provides a textual string which is vendor defined. + This will be {{empty}} if the device doesn't support inclusion of this information. + + + + + + + + + + This contains additional information about the alarm and is vendor defined. + + + + + + + + + + + Alarm events added or updated in {{object|.FaultMgmt.CurrentAlarm.{i}.}} are simultaneously entered into the this table. This table also contains alarm clearing events. + Active alarms at the time of a power failure or reboot might not get an alarm clearing event. + This object has a fixed number of entries with instance numbers from 1 to {{param|.FaultMgmt.HistoryEventNumberOfEntries}}. + If maximum instance number {{param|.FaultMgmt.HistoryEventNumberOfEntries}} is reached, the next event overrides the object with instance number 1. Subsequent entries override objects at sequentially increasing instance numbers. This logic provides for automatic "rolling" of records. + + + + + + + + Indicates the date and time when the alarm event occurs. + + + + + + + + Identifies one Alarm Entry in the Alarm List. This value MUST be uniquely allocated by the device to the alarm instance during the lifetime of the individual alarm. + + + + + + + + + + Indicates the reason for the specific alarm notification event. {{enum}} + + + + + + + + + + + + Specifies the instance of the Informational Object Class in which the alarm occurred by carrying the Distinguished Name (DN) of this object instance. The format of the DN is specific to the application that is using this {{object}}. + + + + + + + + + + Indicates the type of event. + + + + + + + + + + Qualifies the alarm and provides further information than {{param|EventType}}. + + + + + + + + + + Provides further qualification on the alarm beyond {{param|EventType}} and {{param|ProbableCause}}. + This is vendor defined and will be {{empty}} if the device doesn't support inclusion of this information. + + + + + + + + + + Indicates the relative level of urgency for operator attention, see {{bibref|ITU-X.733}}. {{enum}} + + + + + + + + + + + + + + + This provides a textual string which is vendor defined. + This will be {{empty}} if the device doesn't support inclusion of this information. + + + + + + + + + + This contains additional information about the alarm and is vendor defined. + + + + + + + + + + + Alarm events added or updated in {{object|.FaultMgmt.CurrentAlarm.{i}.}} are simultaneously entered into the this table if their corresponding entry in {{object|.FaultMgmt.SupportedAlarm.{i}.}} has {{param|.FaultMgmt.SupportedAlarm.{i}.ReportingMechanism}} set to {{enum|0 Expedited|.FaultMgmt.SupportedAlarm.{i}.ReportingMechanism}}. This table also contains alarm clearing events. + This object has a fixed number of entries with instance numbers from 1 to {{param|.FaultMgmt.ExpeditedEventNumberOfEntries}}. + Initially the table starts with all instances having {{param|EventTime}} set to the Unknown Time value, as defined in {{bibref|TR-106}}. + If maximum instance number {{param|.FaultMgmt.ExpeditedEventNumberOfEntries}} is reached, the next event overrides the object with instance number 1. Subsequent entries override objects at sequentially increasing instance numbers. This logic provides for automatic "rolling" of records. + When a new alarm replaces an existing alarm, then all parameter values for that instance are considered as changed for the purposes of value change notifications to the Controller (even if their new values are identical to those of the prior alarm). + + + + + + + Indicates the date and time when the alarm event occurs. + For an unpopulated entry, the value is the Unknown Time as defined in {{bibref|TR-106}}. + + + + + + + + Identifies one Alarm Entry in the Alarm List. This value MUST be uniquely allocated by the device to the alarm instance during the lifetime of the individual alarm. + For an unpopulated entry, the value is {{empty}}. + + + + + + + + + + Indicates the reason for the specific alarm notification event. {{enum}} + + + + + + + + + + + + Specifies the instance of the Informational Object Class in which the alarm occurred by carrying the Distinguished Name (DN) of this object instance. The format of the DN is specific to the application that is using this {{object}}. + + + + + + + + + + Indicates the type of event. + + + + + + + + + + Qualifies the alarm and provides further information than {{param|EventType}}. + + + + + + + + + + Provides further qualification on the alarm beyond {{param|EventType}} and {{param|ProbableCause}}. + This is vendor defined and will be {{empty}} if the device doesn't support inclusion of this information. + + + + + + + + + + Indicates the relative level of urgency for operator attention, see {{bibref|ITU-X.733}}. {{enum}} + + + + + + + + + + + + + + + This provides a textual string which is vendor defined. + This will be {{empty}} if the device doesn't support inclusion of this information. + + + + + + + + + + This contains additional information about the alarm and is vendor defined. + + + + + + + + + + + Alarm events added or updated in {{object|.FaultMgmt.CurrentAlarm.{i}.}} are simultaneously entered into the this table if their corresponding entry in {{object|.FaultMgmt.SupportedAlarm.{i}.}} has {{param|.FaultMgmt.SupportedAlarm.{i}.ReportingMechanism}} set to {{enum|1 Queued|.FaultMgmt.SupportedAlarm.{i}.ReportingMechanism}}. This table also contains alarm clearing events. + This object has a fixed number of entries with instance numbers from 1 to {{param|.FaultMgmt.QueuedEventNumberOfEntries}}. + Initially the table starts with all instances having {{param|EventTime}} set to the Unknown Time value, as defined in {{bibref|TR-106}}. + If maximum instance number {{param|.FaultMgmt.QueuedEventNumberOfEntries}} is reached, the next event overrides the object with instance number 1. Subsequent entries override objects at sequentially increasing instance numbers. This logic provides for automatic "rolling" of records. + When a new alarm replaces an existing alarm, then all parameter values for that instance are considered as changed for the purposes of value change notifications to the Controller (even if their new values are identical to those of the prior alarm). + + + + + + + Indicates the date and time when the alarm event occurs. + For an unpopulated entry, the value is the Unknown Time as defined in {{bibref|TR-106}}. + + + + + + + + Identifies one Alarm Entry in the Alarm List. This value MUST be uniquely allocated by the device to the alarm instance during the lifetime of the individual alarm. + For an unpopulated entry, the value is {{empty}}. + + + + + + + + + + Indicates the reason for the specific alarm notification event. {{enum}} + + + + + + + + + + + + Specifies the instance of the Informational Object Class in which the alarm occurred by carrying the Distinguished Name (DN) of this object instance. The format of the DN is specific to the application that is using this {{object}}. + + + + + + + + + + Indicates the type of event. + + + + + + + + + + Qualifies the alarm and provides further information than {{param|EventType}}. + + + + + + + + + + Provides further qualification on the alarm beyond {{param|EventType}} and {{param|ProbableCause}}. + This is vendor defined and will be {{empty}} if the device doesn't support inclusion of this information. + + + + + + + + + + Indicates the relative level of urgency for operator attention, see {{bibref|ITU-X.733}}. {{enum}} + + + + + + + + + + + + + + + This provides a textual string which is vendor defined. + This will be {{empty}} if the device doesn't support inclusion of this information. + + + + + + + + + + This contains additional information about the alarm and is vendor defined. + + + + + + + + + + + This object contains general information related to managing security features on the device. + + + + {{numentries}} + + + + + + + + + This table provides information about all types of public key-based credentials, such as X.509 certificates, see {{bibref|RFC5280}}. + + + + + + + + Enables or disables this certificate. + + + + + + + + The last modification time of this certificate. + + + + + + + + The Serial Number field in an X.509 certificate, see {{bibref|RFC5280}}. + + + + + + + + + + The Issuer field in an X.509 certificate, see {{bibref|RFC5280}}; i.e. the Distinguished Name (DN) of the entity who has signed the certificate. + + + + + + + + + + The beginning of the certificate validity period; i.e. the Not Before field in an X.509 certificate, see {{bibref|RFC5280}}. + + + + + + + + The end of the certificate validity period; i.e., the Not After field in an X.509 certificate, see {{bibref|RFC5280}}. + + + + + + + + The Distinguished Name (DN) of the entity associated with the Public Key; i.e., the Subject field in an X.509 certificate, see {{bibref|RFC5280}}. + + + + + + + + + + {{list}} Each item is a DNS Name. + The Subject Alternative Names extension field in an X.509 certificate, see {{bibref|RFC5280}}. + + + + + + + + + + + The algorithm used in signing the certificate; i.e. the Signature Algorithm field in an X.509 certificate, see {{bibref|RFC5280}}. + + + + + + + + + + + This object is the container for all Femto related component objects, to prevent pollution of the so-called global namespace of the BBF with FAP specific objects. + + + + + This object contains the parameters relating to the GPS scan. + + + + Enables or disables GPS scans during the device start up. + + + + + + + + + Enables or disables periodic GPS scans. + + + + + + + + + When {{param|ScanPeriodically}} is {{true}}, this value indicates the interval in {{units}} which GPS scan is performed. + + + + + + + + + + An absolute time reference in UTC to determine when the CPE will initiate the periodic GPS scan. Each GPS scan MUST occur at (or as soon as possible after) this reference time plus or minus an integer multiple of the {{param|PeriodicInterval}}. + {{param}} is used only to set the "phase" of the GPS scan. The actual value of {{param}} can be arbitrarily far into the past or future. + For example, if {{param|PeriodicInterval}} is 86400 (a day) and if {{param}} is set to UTC midnight on some day (in the past, present, or future) then periodic GPS scans will occur every day at UTC midnight. These MUST begin on the very next midnight, even if {{param}} refers to a day in the future. + The Unknown Time value defined in {{bibref|TR-106|Section 3.2}} indicates that no particular time reference is specified. That is, the CPE MAY locally choose the time reference, and needs only to adhere to the specified PeriodicInformInterval. + If absolute time is not available to the CPE, its periodic GPS scan behavior MUST be the same as if {{param}} parameter was set to the Unknown Time value. + + + + + + + + Whether or not the device SHOULD maintain a continuous GPS lock (e.g. as a frequency stability source). + + + + + + + + Specifies the time-out value in {{units}} since the scan started after which the scan will time out. A timed out scan is to be reported as {{enum|Error_TIMEOUT|ScanStatus}} with {{param|ErrorDetails}} indicating "Timed out" + + + + + + + + + + Indicates the current status of this scan. + + + + + + The scan has not been executed and there are no valid scan results available + + + + + + + + + + + + Provides more detail when the {{param|ScanStatus}} is either {{enum|Error|ScanStatus}} or {{enum|Error_TIMEOUT|ScanStatus}}. + + + + + + + + + + The date and time when the last GPS scan completed. + + + + + + + + Specifies the date and time, when the GPS scan last completed successfully. + This value is retained across reboot and is only reset after another scan completes successfully or {{param|GPSReset}} is set to {{true}}. + The values for {{param|LockedLatitude}}, {{param|LockedLongitude}} and {{param|NumberOfSatellites}} correspond to this time. If a scan has never succeeded before, the value will be the Unknown Time value, as defined in {{bibref|TR-106|Section 3.2}}. + + + + + + + + This parameter specifies the latitude of the device's position in degrees, multiplied by 1 million. The positive value signifies the direction, north of the equator. The negative value signifies the direction, south of the equator. + Range is from: 90d00.00' South (-90,000,000) to 90d00.00' North (90,000,000). + Example: A latitude of 13d19.43' N would be represented as 13,323,833, derived as (13*1,000,000)+((19.43*1,000,000)/60). Latitude of 50d00.00' S would be represented as value -50,000,000. + This value is retained across reboots and is only reset after another scan completes successfully or {{param|GPSReset}} is set to {{true}}. If a scan has never succeeded before, the value 0 is reported. + + + + + + + + + + This parameter specifies the longitude of the device's position in degrees, multiplied by 1 million. The positive value signifies the direction, east of the prime meridian. The negative value signifies the direction, west of the prime meridian. + Range is from: 180d00.00' West (-180,000,000) to 180d00.00' East (180,000,000). + Example: A longitude of 13d19.43' E would be represented as 13,323,833, derived as (13*1,000,000)+((19.43*1,000,000)/60). A longitude of 50d00.00' W would be represented as value -50,000,000. + This value is retained across reboots and is only reset after another scan completes successfully or {{param|GPSReset}} is set to {{true}}. If a scan has never succeeded before, the value 0 is reported. + + + + + + + + + + The number of satellites that were locked during the test execution. The greater the number of satellites the better the precision of the results. + This value is retained across reboots and is only reset after another scan completes successfully or {{param|GPSReset}} is set to {{true}}. If a scan has never succeeded before, the value 0 is reported. + + + + + + + + Setting this to {{true}} will cause a reset on the GPS Hardware. Setting this to {{false}} has no effect. + + + + + + + + + When {{param|#.ContinuousGPS}} is {{true}}, the parameters in this object contain the GPS status as it is continuously monitored. + When {{param|#.ContinuousGPS}} is {{false}}, the parameters in this object are not being updated and their values are not accurate. + + + + The value is {{true}} if the location fix is currently valid (i.e. GPS receiver is currently tracking satellite signals), otherwise it is {{false}}. After a reboot the value is {{false}} until the GPS receivers has a valid current position. + + + + + + + + The value is {{true}} if {{param|CurrentFix}} has transitioned to {{true}} at least once since {{param|#.ContinuousGPS}} was enabled, otherwise it is {{false}}. After a reboot the value is {{false}} until {{param|CurrentFix}} has transitioned to {{true}} again. + The GPS coordinates ({{param|Latitude}}, {{param|Longitude}}, and {{param|Elevation}}) are not valid until {{param}} has a value of {{true}}. + + + + + + + + The value is {{true}} if the timing synchronization is good, otherwise it is {{false}}. After a reboot the value is {{false}} until the timing is synchronized again. + + + + + + + + This parameter represents the most recent latitude reading for the device's position in degrees, multiplied by 1 million. The positive value signifies the direction, north of the equator. The negative value signifies the direction, south of the equator. + Range is from: 90 deg 00.00' South (-90,000,000) to 90 deg 00.00' North (90,000,000). + Example: A latitude of 13 deg 19.43' N would be represented as 13,323,833, derived as (13*1,000,000)+((19.43*1,000,000)/60). Latitude of 50 deg 00.00' S would be represented as value -50,000,000. + {{param}} is not valid until {{param|GotFix}} is {{true}}. + If the parameter has never been set before, the value 0 is reported. The value SHOULD be maintained over a reboot. + + + + + + + + + + This parameter represents the most recent longitude reading for the device's position in degrees, multiplied by 1 million. The positive value signifies the direction, east of the prime meridian. The negative value signifies the direction, west of the prime meridian. + Range is from: 180d00.00' West (-180,000,000) to 180d00.00' East (180,000,000). + Example: A longitude of 13d19.43' E would be represented as 13,323,833, derived as (13*1,000,000)+((19.43*1,000,000)/60). A longitude of 50d00.00' W would be represented as value -50,000,000. + {{param}} is not valid until {{param|GotFix}} is {{true}}. + If the parameter has never been set before, the value 0 is reported. The value SHOULD be maintained over a reboot. + + + + + + + + + + This parameter represents the most recent elevation reading for the device's position in {{units}}, relative to the WGS84 ellipsoid. The positive value signifies the direction, above sea level. The negative value signifies the direction, below sea level. + Range is from: 5,000.000 meters below sea level (-5,000,000) to 25,000.000 meters above sea level (25,000,000). + {{param}} is not valid until {{param|GotFix}} is {{true}}. + If the parameter has never been set before, the value 0 is reported. The value SHOULD be maintained over a reboot. + + + + + + + + + + + Represents the date and time when the last GPS Fix was acquired. + The Unknown Time value defined in {{bibref|TR-106|Section 3.2}} is used when {{param|GotFix}} is {{false}}. This applies too after a reboot of the device until a valid location is determined and {{param|GotFix}} transsitions to {{true}}. + + + + + + + + Number of {{units}} of continuous GPS fix time. After a reboot this value is reset to 0. + + + + + + + + + + Number of {{units}} to wait for first GPS fix before declaring a GPS fault. + A value of -1 means that there is no timeout and no fault logging. + + + + + + + + + + + The number of satellites the receiver is tracking. + + + + + + + + The interval in {{units}} at which the GPS tracking information gets reported. + + + + + + + + + + + The output of the GPS receiver's status. + + + + + + + + + + Indicates whether the {{param|Latitude}}, {{param|Longitude}}, and {{param|Elevation}} values are determined via a GPS Fix (where the value of this parameter would be {{enum|Real}}) or via some other means (where the value of this parameter would be {{enum|Reference}}). + + + + + + + + + + + The timer duration, in {{units}}, for which the device waits for GPS to acquire lock. + + + + + + + + + + + + This object contains parameters for the configuration of the Assisted Global Positioning System (A-GPS) server. See also {{bibref|3GPP-TS.25.171|Section 3.2}} + + + + Enables or disables the {{object}} entry. + + + + + + + + A-GPS server host name or IP address. + + + + + + + + + + The port to use when communicating to the A-GPS Server. + + + + + + + + + + Username to be used by the device to authenticate with the A-GPS server. This string is set to {{empty}} if no authentication is used. + + + + + + + + + + Password to be used by the device to authenticate with the A-GPS server. This string is set to {{empty}} if no authentication is used. + + + + + + This parameter specifies the reference latitude for an A-GPS request position in degrees, multiplied by 1 million. The positive value signifies the direction, north of the equator. The negative value signifies the direction, south of the equator. + Range is from: 90d00.00' South (-90,000,000) to 90d00.00' North (90,000,000). + Example: A latitude of 13d19.43' N would be represented as 13,323,833, derived as (13*1,000,000)+((19.43*1,000,000)/60). Latitude of 50d00.00' S would be represented as value -50,000,000. + + + + + + + + + + This parameter specifies the reference longitude for an A-GPS request position in degrees, multiplied by 1 million. The positive value signifies the direction, east of the prime meridian. The negative value signifies the direction, west of the prime meridian. + Range is from: 180d00.00' West (-180,000,000) to 180d00.00' East (180,000,000). + Example: A longitude of 13d19.43' E would be represented as 13,323,833, derived as (13*1,000,000)+((19.43*1,000,000)/60). A longitude of 50d00'00'' W would be represented as value -50,000,000. + + + + + + + + + + The value is {{true}} if the device has successfully contacted and received A-GPS info from the A-GPS server, otherwise the value is {{false}}. + After a reboot the value is {{false}} until the server could be contacted again. + + + + + + + + + This object contains parameters relating to Performance Management in a Femto-related environment. + + + + {{numentries}} + + + + + + + + + This object contains parameters relating to File Management configuration for uploading of Performance Files to a designated File Server. Each table entry can be referenced by zero or more radio-specific objects contained in the FAPService instances. The periodic upload will upload data for all of the radio-specific objects that reference it. + + + + + + + + + + + + Enables or disables this entry. If this entry is disabled then its periodic uploads are not performed. + + + + + + + + {{datatype|expand}} + + + + + + + + {{datatype}} specifying the destination file location. HTTP and HTTPS transports MUST be supported. Other transports MAY be supported. + This argument specifies only the destination file location, and does not indicate in any way the name or location of the local file to be uploaded. + + + + + + + + Username to be used by the device to authenticate with the file server. This string is set to {{empty}} if no authentication is used. + + + + + + + + + + Password to be used by the device to authenticate with the file server. This string is set to {{empty}} if no authentication is used. + + + + + + The duration in {{units}} of the interval for which the device MUST create a Performance File and attempt to upload the file to {{param|URL}} if {{param|Enable}} is {{true}}. + + + + + + + + + + + An absolute time reference in UTC to determine when the device will initiate the periodic file upload. Each file upload MUST occur at this reference time plus or minus an integer multiple of the {{param|PeriodicUploadInterval}}. + {{param}} is used only to set the "phase" of the periodic uploads. The actual value of {{param}} can be arbitrarily far into the past or future. + For example, if {{param|PeriodicUploadInterval}} is 86400 (a day) and if {{param}} is set to UTC midnight on some day (in the past, present, or future) then periodic file uploads will occur every day at UTC midnight. These MUST begin on the very next midnight, even if {{param}} refers to a day in the future. + The Unknown Time value as defined in {{bibref|TR-106|Section 3.2}} indicates that no particular time reference is specified. That is, the device MAY locally choose the time reference, and is REQUIRED only to adhere to the specified {{param|PeriodicUploadInterval}}. + If absolute time is not available to the device, its periodic file upload behavior MUST be the same as if the {{param}} parameter was set to the Unknown Time value. + + + + + + + + + This object defines the data model for the following Femtozone APIs. + * Femto Awareness + * SMS + * MMS + * Terminal Location + Femto Awareness, SMS, MMS, and Terminal Location APIs are defined in the Release 1 API Specifications of the Service SIG in the Femto Forum (non public document). + {{bibref|TR-262|appendix I}} provides the "Theory of Operation" for the usage of this object. + + + + Version of Femto Application Platform running on this device + + + + + + + + + + Enable or disable the Femto ApplicationPlatform + + + + + + + + Current state of the Femto Application Platform. + + + + + + The Femto Application Platform is not available + + + + + The Femto Application Platform is available + + + + + The FemtoApplicationPlatform is in the process of being reset and will transition to the {{enum|Disabled}} state when the reset operation is completed + + + + + The FemtoApplicationPlatform is being initialized and will transition to the {{enum|Enabled}} state once the initialization is completed + + + + + + + + Determines how many Femtozone Applications can be supported by the Femto Application Platform simultaneously. + + + + + + + + Specifies how many Femtozone Applications are currently communicating with the Femto Application Platform. + + + + + + + + + This object contains parameters related to the capabilities of the Femtozone Application Platform and the Femtozone APIs. + + + + Specifies whether the Femto Application Platform supports Presence-Based Femtozone Applications + + + + + + + + Specifies whether the Femto Awareness API is supported on this device. + + + + + + + + Specifies whether the SMS API is supported on this device. + + + + + + + + Specifies whether the SubscribeToNotificationsOfSMSSentToApplication functionality is supported by the FAP SMS API. + + + + + + + + Specifies whether the QuerySMSDeliveryStatus functionality is supported by the FAP SMS API. + + + + + + + + Specifies whether the MMS API is supported on this device. + + + + + + + + Specifies whether the QueryMMSDeliveryStatus functionality is supported by the FAP MMS API. + + + + + + + + Specifies whether the SubscribeToNotificationsOfMMSSentToApplication functionality is supported by the FAP MMS API. + + + + + + + + Specifies whether the Terminal Location API is supported on this device. + + + + + + + + Specifies the supported methods that 3rd Party Applications can use to authenticate with the Femto Application Platform at initialization. Comma separated list of strings. + + + + + + + + + + + + + Specifies the supported access levels that 3rd Party Applications can request when authenticating with the Femto Application Platform at initialization. This access level is with respect to resources within the Femto Application Platform only (not to be confused with Access Mode parameter in .FAPService.{i}.AccessMgmt). + + + + + + + + + + + + + + + Specifies the supported types of addresses SMSs can be sent to. + + + + + + + + + + + + + Specifies the supported types of addresses MMSs can be sent to. + + + + + + + + + + + + + + This object contains parameters related to the operation of the Femtozone APIs. + + + + Specifies how 3rd Party Applications have to authenticate against Femto APIs in order to use it. {{reference}} + '''''Note:''''' The credentials are not part of the data model and have to be supplied externally. + + + + + + + + + + + This is the reference to the IPsec tunnel instance to be used by the Application Platform traffic. + The {{param}} MUST point to a tunnel instance defined in the data model. + If the referenced object is deleted, the parameter value MUST be set to an empty string. + + + + + + + + + + + This object contains parameters related to the Femto Awareness API. + + + + Enable or disable FemtoAwareness API exposure on FAP + + + + + + + + Enable or disable Request queueing for the API + + + + + + + + Determines how FAP handles simultaneous requests from different Applications to Femto Awareness API. + + + + + + + + + + + Determines the Max Number of different Applications that can send Requests to Femto Awareness API. + + + + + + + + + + Specifies Identifier of the Femtozone. + + + + + + + + + + Specifies whether the Mobile Station International Subscriber Directory Number (MSISDN) has to be used as UserIdentifier in Femto Awareness Notifications. A value of {{true}} means that the MSISDN is send as user identifier, a value of {{false}} means that an anonymous reference is used. + + + + + + + + Specifies whether the OPTIONAL Argument "Callback Data" has to be used in Responses to Requests to "Subscribe To Femto Awareness Notifications". + + + + + + + + Specifies whether the OPTIONAL Argument "Timezone" has to be used in Responses to Requests to "Query Femtocell Status". + + + + + + + + + This object contains parameters related to the SMS API. + + + + Enable or disable SMS API exposure on FAP + + + + + + + + Enable or disable Request queueing for the API + + + + + + + + Determines how FAP handles simultaneous requests from different Applications to SMS API. + + + + + + + + + + + Determines the Max Number of different Applications that can send Requests to SMS API. + + + + + + + + + + Determines the Minimum Time Interval in {{units}} between two consecutive Send SMS Requests by the same Application. + + + + + + + + + + + Enable or disable "QuerySMSDeliveryStatus" Operation on SMS API. When disabled, QuerySMSDeliveryStatus Requests to SMS API are ignored. + + + + + + + + Enable or disable "SubscribeToNotificationsOfMessageSentToApplication" Operation on SMS API. When disabled, SubscribeTo NotificationsOfMessageSentToApplication Requests to SMS API are ignored. + + + + + + + + + This object contains parameters related to the MMS API. + + + + Enable or disable MMS API exposure on FAP + + + + + + + + Enable or disable Request queueing for the API + + + + + + + + Determines how FAP handles simultaneous requests from different Applications to MMS API. + + + + + + + + + + + Determines the Max Number of different Applications that can send Requests to MMS API. + + + + + + + + + + Determines the Minimum Time Interval in {{units}} between two consecutive Send MMS Requests by the same Application. + + + + + + + + + + + Enable or disable "QuerySMSDeliveryStatus" Operation on MMS API. When disabled, QuerySMSDeliveryStatus Requests to MMS API are ignored. + + + + + + + + Enable or disable "SubscribeTo NotificationsOfMessageSentToApplication" Operation on MMS API. When disabled, SubscribeTo NotificationsOfMessageSentToApplication Requests to MMS API are ignored. + + + + + + + + + This object contains parameters related to the TerminalLocation API. + + + + Enable or disable TerminalLocation API exposure on FAP + + + + + + + + Enable or disable Request queueing for the API + + + + + + + + Determines how FAP handles simultaneous requests from different Applications to TerminalLocation API. + + + + + + + + + + + Determines the Max Number of different Applications that can send Requests to TerminalLocation API. + + + + + + + + + + Specifies Terminal Address Format to be used in QueryMobileLocation Responses. + + + + + + + + + + + Include or exclude FAP Longitude and Latitude arguments in Responses to QueryMobileLocation Requests. + + + + + + + + Include or exclude FAP Altitude argument in Responses to QueryMobileLocation Requests . + + + + + + + + Specifies Response Timestamp in {{units}}. + + + + + + + + + + + + This object contains parameters related to the monitoring of the Femtozone Application Platform and the Femtozone APIs. + + + + Enables and disables this entry. + + + + + + + + Specifies the interval in {{units}} used to collect the monitoring measurements. + + + + + + + + + + Specifies the total number of authentication requests received by the Femto Application Platform. The counter will be reset whenever the device reboots or the {{param|Enable}} parameter is set to {{true}}. + + + + + + + + Specifies the number of authentication requests received by the Femto Application Platform that were rejected. The counter will be reset whenever the device reboots or the {{param|Enable}} parameter is set to {{true}}. + + + + + + + + + This object contains parameters related to the Monitoring of the FemtoAwareness API. + + + + Specifies whether the FemtoAwareness API is currently available on this device (the API could be disabled or could have exhausted its resources) + + + + + + + + Specifies the current number of Applications using the Femto Awareness API. + + + + + + + + + + Specifies the state of the Femto Awareness API Queue. + + + + + + + + + + + + Specifies the current number of requests waiting in the Femto Awareness API Queue. + + + + + + + + + + Specifies the number of requests in the Femto Awareness API Queue that have been received. The counter will be reset whenever the device reboots or the {{param|#.Enable}} parameter is set to {{true}}. + + + + + + + + Specifies the number of requests in the Femto Awareness API Queue that have been discarded. The counter will be reset whenever the device reboots or the {{param|#.Enable}} parameter is set to {{true}}. + + + + + + + + + This object contains parameters related to the Monitoring of the SMS API. + + + + Specifies whether the SMS API is currently available on this device (the API could be disabled or could have exhausted its resources).. + + + + + + + + Specifies the current number of Applications using the SMS API. + + + + + + + + + + Specifies the state of the SMS API Queue. + + + + + + + + + + + + Specifies the current number of requests waiting in the SMS API Queue. + + + + + + + + + + Specifies the number of requests in the SMS API Queue that have been received. The counter will be reset whenever the device reboots or the {{param|#.Enable}} parameter is set to {{true}}. + + + + + + + + Specifies the number of requests in the SMS API Queue that have been discarded. The counter will be reset whenever the device reboots or the {{param|#.Enable}} parameter is set to {{true}}. + + + + + + + + + This object contains parameters related to the Monitoring of the MMS API. + + + + Specifies whether the MMS API is currently available on this device (the API could be disabled or could have exhausted its resources).. + + + + + + + + Specifies the current number of Applications using the MMS API. + + + + + + + + + + Specifies the state of the MMS API Queue. + + + + + + + + + + + + Specifies the current number of requests waiting in the MMS API Queue. + + + + + + + + + + Specifies the number of requests in the MMS API Queue that have been received. The counter will be reset whenever the device reboots or the {{param|#.Enable}} parameter is set to {{true}}. + + + + + + + + Specifies the number of requests in the MMS API Queue that have been discarded. The counter will be reset whenever the device reboots or the {{param|#.Enable}} parameter is set to {{true}}. + + + + + + + + + This object contains parameters related to the Monitoring of the TerminalLocation API. + + + + Specifies whether the TerminalLocation API is currently available on this device (the API could be disabled or could have exhausted its resources).. + + + + + + + + Specifies the current number of Applications using the Terminal Location API. + + + + + + + + + + Specifies the state of the Terminal Location API Queue. + + + + + + + + + + + + Specifies the current number of requests waiting in the Terminal Location API Queue. + + + + + + + + + + Specifies the number of requests in the Terminal Location API Queue that have been received. The counter will be reset whenever the device reboots or the {{param|#.Enable}} parameter is set to {{true}}. + + + + + + + + Specifies the number of requests in the Terminal Location API Queue that have been discarded. The counter will be reset whenever the device reboots or the {{param|#.Enable}} parameter is set to {{true}}. + + + + + + + + + This object provides bulk data collection capabilities and global collection settings that affect the entire device. + Bulk Data utilizes various solutions (e.g., IPDR, HTTP) to collect data from devices and transfer the data to a collection server. + The IPDR solution is based on a service specification described in {{bibref|TR-232}}. + The HTTP solution is based on transfer mechanisms described in {{template|BULK-DATA-HTTP-REF}}. + {{template|BULK-DATA-OPT-SOLNS}} + The Bulk Data Collection Profiles are measured over a reporting interval (which can be aligned with absolute time) and are made available to the collection server. + + + + Enables or disables all collection profiles. + If {{false}}, bulk data will not be collected or reported. + + + + + + + + Indicates the status of the Bulk Data Collection mechanism. + + + + + + Bulk Data Collection is enabled and working as intended. + + + + + Bulk Data Collection is disabled. + + + + + Bulk Data Collection is enabled, but there is an error condition preventing the successful collection of bulk data. + + + + + + + + Minimum reporting interval in {{units}} that the CPE is capable of supporting. + A value of 0 indicates no minimum reporting interval. + + + + + + + + + + Represents the IPDR and transport protocols that this device is capable of supporting. + + + + + + + IPDR Streaming Protocol {{bibref|IPDR-SP}} + + + + + IPDR File Transfer Protocol {{bibref|IPDR-FTP}} + + + + + Hypertext Transfer Protocol {{bibref|RFC2616}} + + + + + + + + Represents the Encoding Types for the protocols that this device is capable of supporting. + + + + + + + Used with the IPDR Streaming and File Protocols. {{bibref|IPDR-XML}} + + + + + Used with the IPDR Streaming and File Protocols. {{bibref|IPDR-XDR}} + + + + + Comma Separated Values. Used with the HTTP Protocol. {{bibref|RFC4180}} + + + + + JavaScript Object Notation. Used with the HTTP Protocol {{bibref|RFC7159}} + + + + + + + + When {{true}}, the Device supports the use of wildcards to determine the parameters that are reported using a Profile. + + + + + + + + The maximum number of profiles that can exist at any given time. Specifically, the maximum number of {{object|Profile.{i}.}} instances that the Controller can create. + If the value of this parameter is -1, then it means that the CPE doesn't have a limit to the number of profiles that can exist. + + + + + + + + + + The maximum number of parameters that can be referenced via the bulk data collection mechanism. Specifically, the maximum number of parameters that can be referenced via {{param|Profile.{i}.Parameter.{i}.Reference}} across all Profile and Parameter instances (including the expansion of partial paths within the Reference parameter). + If the value of this parameter is -1, then it means that the CPE doesn't have a limit to the number of parameter that can be referenced via the bulk data collection mechanism. + + + + + + + + + + {{numentries}} + + + + + + + + + A set of Bulk Data Collection profiles. + Each profile represents a bulk data report, including its own timing configuration, communications configuration, and set of parameters. This allows the Controller to configure multiple reports to be generated at different times for different sets of data. + + + + + + + Enables or disables this specific bulk data profile. + If {{false}}, this profile will not be collected or reported. + + + + + + + + + {{datatype|expand}} + + + + + + + + The name of the profile. + + + + + + + + + + The number of failed reports to be retained and transmitted (in addition to the current report) at the end of the current reporting interval. + If the value of the {{param|EncodingType}} parameter is modified any outstanding failed reports are deleted. + If the CPE cannot retain the number of failed reports from previous reporting intervals while transmitting the report of the current reporting interval, then the oldest failed reports are deleted until the CPE is able to transmit the report from the current reporting interval. + A value of 0 indicates that failed reports are not to be retained for transmission in the next reporting interval. + A value of -1 indicates that the CPE will retain as many failed reports as possible. + + + + + + + + + + + The Bulk Data Protocol being used for this collection profile. + + + + + + + + + + The Bulk Data encoding type being used for this collection profile. + + + + + + + + + + The reporting interval in {{units}}. Each report is generated based on this interval and {{param|TimeReference}}. + The CPE MAY reject a request to set {{param}} to less than {{param|#.MinReportingInterval}}. + Reporting intervals MUST begin every {{param}} {{units}}. + If {{param}} is changed while collection is enabled, the first reporting interval begins immediately. + For example, if {{param}} is 86400 (a day) and if {{param|TimeReference}} is set to UTC midnight on some day (in the past, present, or future) then the CPE will generate (and transmit, if the {{param|Protocol}} parameter is set to {{enum|Streaming|#.Protocols}}) its report at midnight every 24 hours. + + + + + + + + + + + + An absolute time reference in UTC to determine when will be transmitted. Each reporting interval MUST complete at this reference time plus or minus an integer multiple of {{param|ReportingInterval}}, unless unable to due to higher prioritized operations. + {{param}} is used only to set the "phase" of the reporting intervals. The actual value of {{param}} can be arbitrarily far into the past or future. + If {{param}} is changed while collection of bulk data is enabled, the first reporting interval begins immediately. + The Unknown Time value as defined in {{bibref|TR-106}} indicates that no particular time reference is specified. That is, the CPE MAY locally choose the time reference, and is required only to adhere to the specified reporting intervals. + If absolute time is not available to the CPE, its reporting interval behavior MUST be the same as if the {{param}} parameter was set to the Unknown Time value. + For example, if {{param|ReportingInterval}} is 86400 (a day) and if {{param}} is set to UTC midnight on some day (in the past, present, or future) then the CPE will generate (and transmit, if in a "ITPush" mode) its report at midnight every 24 hours. + Note that, if {{param}} is set to a time other than the Unknown Time, the first reporting interval (which has to begin immediately) will almost certainly be shorter than {{param|ReportingInterval}}). This is why {{param}} is defined in terms of when reporting intervals complete rather than start. + + + + + + + + + This is the host name or IP Address of the IPDR Collector to be used by the CPE to stream bulk data records if this collection profile is configured for the IPDR Streaming Protocol {{bibref|IPDR-SP}} (the {{param|Protocol}} parameter has a value of {{enum|Streaming|#.Protocols}}). + + + + + + + + + + This is the port number of the IPDR Collector to be used by the CPE to stream bulk data records if this collection profile is configured for the IPDR Streaming Protocol {{bibref|IPDR-SP}} (the {{param|Protocol}} parameter has a value of {{enum|Streaming|#.Protocols}}). + + + + + + + + + + + This is the unique identification of an IPDR Session to be used when this collection profile is configured for the IPDR Streaming Protocol {{bibref|IPDR-SP}} (the {{param|Protocol}} parameter has a value of {{enum|Streaming|#.Protocols}}). + A Controller MUST NOT configure multiple IPDR Streaming Protocol collection profiles with the same {{param}}. Doing so MUST cause the CPE to fail the SetParameterValues. + Within the IPDR Streaming Protocol specification the Session ID has a type of a single 'char', but we are restricting the range even further (ASCII values of '0' - '9' and 'A' - 'Z'. + + + + + + + + + + + This is the {{datatype}} within the CPE that is used by an IPDR Collector to retrieve the IPDRDocs when this collection profile is configured for the IPDR File Transfer Protocol {{bibref|IPDR-FTP}} (the {{param|Protocol}} parameter has a value of {{enum|File|#.Protocols}}). + + + + + + + + Username used for authentication of the {{param|FileTransferURL}}. + This is the {{param}} that the IPDR Collector uses to access the CPE when this collection profile is configured for the IPDR File Transfer Protocol {{bibref|IPDR-FTP}} (the {{param|Protocol}} parameter has a value of {{enum|File|#.Protocols}}). + + + + + + + + + + Password used for authentication of the {{param|FileTransferURL}}. + This is the {{param}} that the IPDR Collector uses to access the CPE when this collection profile is configured for the IPDR File Transfer Protocol {{bibref|IPDR-FTP}} (the {{param|Protocol}} parameter has a value of {{enum|File|#.Protocols}}). + + + + + + If this collection profile is configured for the IPDR File Transfer Protocol {{bibref|IPDR-FTP}} (the {{param|Protocol}} parameter has a value of {{enum|File|#.Protocols}}) then the control file names will be of the following format: + : <ControlFilePrefix>_<ControlFilePolicy>.<ControlFileSuffix> + Where the following rules apply: + * ControlFilePrefix MUST NOT contain an underscore '_' or any other character not suitable for a file name. + * ControlFilePolicy MUST contain one or more 'N' characters, where the number of 'N' characters denotes the number of digits in the sequence number, including leading zeros as necessary to match the number of 'N' characters. + * ControlFileSuffix is a file extension. + For example, BulkData_NNNN.log where "BulkData" would be the prefix, "NNNN" would be the policy, and "log" would be the suffix. Files adhering to this file format would look like: BulkData_0000.log, BulkData_0001.log, etc. + + + + + + + + + + {{numentries}} + + + + + + + + + Bulk data parameter table. + Each entry in this table represents a parameter (or set of parameters if a partial path is provided) to be collected and reported. + + + + Name of the parameter in the report body. + If the value of this parameter is {{empty}}, then the value of the {{param|Reference}} parameter is used as the name. + When the value {{param|Reference}} parameter contains wildcards and/or partial parameter names, the rules for determining the value of this parameter are specified in {{template|BULK-DATA-WILD-REF}}. + + + + + + + + + + Represents the parameter(s) that are part of this Bulk Data collection profile. The value MUST be a path name of a parameter or an object. + When the {{param|##.ParameterWildCardSupported}} parameter has a value of {{true}}, patterns for instance identifiers are permitted with wildcards (an "*" character) in place of instance identifiers; any attempt to set the value otherwise MUST be rejected by the CPE. + In the case where a partial parameter path is specified, the sub-objects of the resolved pattern and contained parameters will be part of the bulk data collected and reported. If the path name refers to an object then it MUST end with a '.'. + + + + + + + + + + + + + This object defines the properties to be used when the {{object|##.Profile}} object's {{param|#.EncodingType}} parameter value is {{enum|CSV|##.EncodingTypes}}. + + + + Field separator to use when encoding CSV data. + + + + + + + + + Row separator to use when encoding CSV data. + + + + + + + + + Escape character to use when encoding CSV data. + + + + + + + + + This parameter describes the formatting used for reports defined by this profile as described in {{template|BULK-DATA-CSV-REF}}. + Note: This parameter is encoded as a token in the BBF-Report-Format header field and MUST NOT include spaces or other characters excluded from token characters defined in {{bibref|RFC2616}}. + + + + + + Reports are formatted with each parameter formatted as a row entry. + + + + + Reports are formatted with each parameter formatted as a column entry. + + + + + + + + + The format of the timestamp to use for data inserted into the row. + + + + + + Timestamp is inserted using the UNIX epoch time (milliseconds since Jan 1, 1970 UTC) timestamp format. If the CPE is unable to acquire a time, then the time that has elapsed since the last reboot of the device is used. + + + + + Timestamp is inserted using the ISO-8601 timestamp format{{template|BULK-DATA-TIMESTAMP}}. + + + + + Timestamp is not inserted in the row. + + + + + + + + + + This object defines the properties to be used when the {{object|##.Profile}} object's {{param|#.EncodingType}} parameter value is {{enum|JSON|##.EncodingTypes}}. + + + + This parameter describes the formatting used for the report as described in {{template|BULK-DATA-JSON-REF}}. + Note: This parameter is encoded as a token in the BBF-Report-Format header field and MUST NOT include spaces or other characters excluded from token characters defined in {{bibref|RFC2616}}. + + + + + + Reports are formatted with each object in the object hierarchy of the data model encoded as a corresponding hierarchy of JSON Objects with the parameters of the object specified as name/value pairs of the JSON Object. + + + + + Reports are formatted with each parameter of the data model encoded as a corresponding array of JSON Objects with the parameters specified as name/value pairs. + + + + + + + + + The format of timestamp to use for the JSON Object named "CollectionTime" as described in {{template|BULK-DATA-JSON-REF}}. + + + + + + Timestamp is inserted using the UNIX epoch time (milliseconds since Jan 1, 1970 UTC) timestamp format. If the CPE is unable to acquire a time, then the time that has elapsed since the last reboot of the device is used. + + + + + Timestamp is inserted using the ISO-8601 timestamp format{{template|BULK-DATA-TIMESTAMP}}. + + + + + Timestamp is not inserted. + + + + + + + + + + This object defines the properties to be used when transporting bulk data using the HTTP/HTTPS protocol. This object is used when the {{param|#.Protocol}} parameter has a value of {{enum|HTTP|##.Protocols}}. For authentication purposes the CPE MUST support HTTP Basic and Digest Access Authentication as defined in {{bibref|RFC2616}}. + + + + The {{datatype}} for the collection server to receive the Bulk Data transmitted by the CPE. + + + + + + + + Username used to authenticate the CPE when making a connection to the collection server. + + + + + + + + + + Password used to authenticate the CPE when making a connection to the collection server. + + + + + + Indicates the HTTP Compression mechanism(s) supported by this CPE for the purposes of transferring bulk data. + + + + + + + As defined in {{bibref|RFC2616|Section 3.5}} + + + + + As defined in {{bibref|RFC2616|Section 3.5}} + + + + + As defined in {{bibref|RFC2616|Section 3.5}} + + + + + + + + The value of this parameter represents the HTTP Compression mechanism to be used by the CPE when transferring data to the collection server. + + + + + + + + + + + Indicates the HTTP method(s) supported by this CPE for the purposes of transferring bulk data. + + + + + + + As defined in {{bibref|RFC2616|Section 9.5}} + + + + + As defined in {{bibref|RFC2616|Section 9.6}} + + + + + + + + The value of this parameter represents the HTTP method to be used by the CPE when transferring data to the collection server. + + + + + + + + + + + When {{true}}, the CPE encodes the HTTP Date Header {{bibref|RFC2616|Section 14.18}} in the HTTP client request. + + + + + + + + + When {{true}}, the CPE retries unsuccessful attempts to transfer data. + + + + + + + + + Configures the data transfer retry wait interval, in seconds, as specified in {{template|BULK-DATA-HTTP-RETRY-REF}}. + The device MUST use a random value between {{param}} and ({{param}} * {{param|RetryIntervalMultiplier}} / 1000) as the first retry wait interval. Other values in the retry pattern MUST be calculated using this value as a starting point. + + + + + + + + + + + Configures the retry interval multiplier as specified in {{template|BULK-DATA-HTTP-RETRY-REF}}. + This value is expressed in units of 0.001. Hence the values of the multiplier range between 1.000 and 65.535. + The device MUST use a random value between {{param|RetryMinimumWaitInterval}} and ({{param|RetryMinimumWaitInterval}} * {{param}} / 1000) as the first retry wait interval. Other values in the retry pattern MUST be calculated using this value as a starting point. + + + + + + + + + + + {{numentries}} + + + + + + + + Determines whether or not data transfers that have failed are required to be persisted across reboots. + If {{param}} is {{true}}, then failed data transfers MUST be persisted across reboots. + If {{param}} is {{false}}, then failed data transfers are not required to be persisted across reboots. + + + + + + + + + + This object represents an instance of a parameter to be used in the report header used as part of the HTTP Request-URI transmitted by the CPE to the collection server using the Request-URI in addition to the parameters required by {{template|BULK-DATA-HTTP-QUERY-REF}}. + + + + Name of the Request-URI parameter. + If {{param}} is {{empty}}, the name of the Request-URI parameter is the value of {{param|Reference}}. + + + + + + + + + + The value MUST be the path name of a parameter to be used as the Request-URI parameter. + If the value of this parameter is empty, then this object is not encoded in the report header. + + + + + + + + + + + + The {{object}} represents the XMPP capabilities of the device{{template|XMPP-APP-REF}}. + + + + {{numentries}} + + + + + + + + The algorithms supported by the CPE for resolving XMPP server addresses and ports. {{enum}} + + + + + + + Use the preferred connection algorithm as specified in {{bibref|RFC6120|Section 3.2.1}} where the value of the {{param|Connection.{i}.Domain}} parameter is used to look up the server address and port to use. + + + + + Use the fallback connection mechanism as specified in {{bibref|RFC6120|Section 3.2.2}}, where the value of the {{param|Connection.{i}.Domain}} parameter is used to look up the server address, and the port is the ''xmpp-client'' port (5222). + + + + + Use the instances of the {{object|Connection.{i}.Server}} table based on the values of the {{param|Connection.{i}.Server.{i}.Priority}} and {{param|Connection.{i}.Server.{i}.Weight}} parameters as the basis for reconnect. Instances MUST be reachable and reachable instances with the lowest value MUST be preferred. + + + + + Use the discovery and connection algorithm as specified in {{bibref|RFC7395|Section 4}} where the value of the {{param|Connection.{i}.Domain}} parameter is used to create a secure HTTP request to discover the URL to use for the XMPP over WebSocket connection. + + + + + + + + + The {{object}} represents a XMPP connection between the device and a server. The {{param|Username}}, {{param|Domain}} and {{param|Resource}} comprise the full identity (JabberID) of this {{object}} for this device. + + + + + + + + + + + + Enables or disables this {{object}}. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + + {{datatype|expand}} + + + + + + + + The proposed local-part of the Jabber ID of this {{object}}, and the value to be used to authenticate this {{object}} when making a connection to the Server using the procedure outlined in {{bibref|RFC6120|Section 6}}. + + + + + + + + + + Password used to authenticate this {{object}} when making a connection to the {{object|Server}} using the procedure outlined in {{bibref|RFC6120|Section 6}}. + Note that on a factory reset of the CPE, the value of this parameter might be reset to its factory value. If a Controller modifies the value of this parameter, it SHOULD be prepared to accommodate the situation that the original value is restored as the result of a factory reset. + + + + + + The proposed domain-part of the Jabber ID of this {{object}}. + + + + + + + + + + The proposed resource-part of the Jabber ID of this {{object}}. + + + + + + + + + + The complete Jabber ID as determined by the first-hop XMPP server at time of connection establishment. This Jabber ID will usually be the standard concatentation of the local-part (Username), domain-part (Domain), and resource-part (Resource) as defined in {{bibref|RFC6120|Section 2.1}} (local-part@domain-part/resource-part), but since the Jabber ID is owned by the first-hop XMPP Server there are cases where the value will be different. + + + + + + + + The current operational state of this {{object}} (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Disabled}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Enabled}} if and only if the interface is able to transmit and receive PDUs; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Enabled}} if still operable when the expected actions have completed); it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + + + + + + + + + + + + + + + + + + The date and time at which this {{object}} entered into its current operational state. + + + + + + + + The algorithm the {{object}} uses when connecting with the associated lists of servers. + + + + + + + + + + + The number of {{units}} that keep alive events as specified in {{bibref|RFC6120|Section 4.6.1}} are sent by this {{object}}. + A value of 0 disables the keep alive functionality. A value of -1 indicates that the keep alive interval is a vendor specific implementation. + {{bibref|RFC6120|Section 4.6.4}} recommends not checking more frequently than every 5 minutes (or 300 {{units}}). + + + + + + + + + + + + The number of times that this {{object}} attempts to connect to a given IP address before moving on to the current server's next IP address, or to the next server if the current server has no more IP addresses. + If {{param}}, {{param|ServerRetryInitialInterval}}, {{param|ServerRetryIntervalMultiplier}} and {{param|ServerRetryMaxInterval}} all have their default values, the maximum reconnection wait intervals, in ''minutes'', will be ''{1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 512, 512, 512, 512, 512}''. After the initial attempt there are 15 further attempts, making a total of 16. The maximum reconnection wait interval is reached on the 10th retry, i.e. the 11th attempt. + NOTE: If this {{object}} fails to connect to any of the servers' IP addresses, fallback behavior SHOULD be as specified in {{bibref|RFC6120|Section 3.2}}. + NOTE: If the value of this parameter is 0, server connection and reconnection behavior is implementation-dependent. + + + + + + + + + The maximum first reconnection wait interval, in {{units}}{{template|XMPP-REF}}. + The Device MUST use a random value between ''0'' and {{param}} as the first reconnection wait interval. + NOTE: If the value of the {{param|ServerConnectAttempts}} parameter is 0, the value of this parameter is ignored. + + + + + + + + + + + + The reconnection interval multiplier{{template|XMPP-REF}}. This value is expressed in units of 0.001. Hence the values of the multiplier range between 1.000 and 65.535. + For the ''n''th reconnection wait interval, the Device MUST use a random value, in ''seconds'', between ''0'' and {{param|ServerRetryInitialInterval}} * ({{param}} / 1000) ** (''n'' - ''1''). + NOTE: If the value of the {{param|ServerConnectAttempts}} parameter is 0, the value of this parameter is ignored. + + + + + + + + + + + The maximum reconnection wait interval, in {{units}}. + If the ''n''th reconnection wait interval calculated from {{param|ServerRetryInitialInterval}} and {{param|ServerRetryIntervalMultiplier}} exceeds the value of this parameter, then the Device MUST use the value of this parameter as the next reconnection wait interval. + NOTE: If the value of the {{param|ServerConnectAttempts}} parameter is 0, the value of this parameter is ignored. + + + + + + + + + + + + This parameter allows a Controller to configure whether or not this XMPP Connection is required to use TLS independent of whether or not the XMPP Server that is being connected to is configured for TLS "mandatory-to-negotiate". + If the value of {{param}} is {{true}} then the CPE will initiate TLS negotiation if not required to by the XMPP Server. + If the value of {{param}} is {{false}} then the CPE will not initiate TLS negotiation if not required to by the XMPP Server. + + + + + + + + + This parameter represents the TLS state of this XMPP Connection. + If this XMPP Connection is established and is secured by TLS then the value of this parameter is {{true}}. + If this XMPP Connection is either not established or established but not secured by TLS then the value of this parameter is {{false}}. + + + + + + + + {{numentries}} + + + + + + + + + The {{object}} represents an XMPP server to be used for a {{object|##.Connection}}. + This table is only relevant when {{param|##.Connection.{i}.ServerConnectAlgorithm}} is set to {{enum|ServerTable|##.Connection.{i}.ServerConnectAlgorithm}}. If {{param|##.Connection.{i}.ServerConnectAlgorithm}} is set to {{enum|DNS-SRV|##.Connection.{i}.ServerConnectAlgorithm}} then any instances of this table are ignored by this {{object|##.Connection}}. + + + + + + + + + + + Enables or disables this {{object}}. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + + {{datatype|expand}} + + + + + + + + The priority of this {{object}} that is used by the {{object|##.Connection}} when determining the {{object}} to connect. The {{object|##.Connection}} MUST contact the {{object}} with the lowest-numbered priority that the {{object|##.Connection}} can reach as defined in {{bibref|RFC2782}}. The selection of {{object}}s with the same {{param}} value utilizes the {{param|Weight}} parameter to determine which {{object}} is selected by the {{object|##.Connection}}. + + + + + + + + + + This parameter specifies a relative weight for entries with the same {{param|Priority}}. The mechanism is defined in {{bibref|RFC2782}}. A value of -1 indicates that the implementation of this parameter is specific to the Vendor. + + + + + + + + + + Fully Qualified Domain Name (FQDN) or IP address of the XMPP server for this {{object|##.Connection}}. + If the value of this Parameter is a FQDN that resolves to multiple addresses then each address SHOULD be attemtped (in an implemnetation-specific order) until a connection can be made or all addresses are exhausted, in which case the next {{object}} instance (based on {{param|Priority}} and {{param|Weight}}) SHOULD be used. + + + + + + + + + + Port number of the XMPP server for this {{object|##.Connection}}. + + + + + + + + + + + + XMPP Connection statistics information for this resource. + + + + The number of XMPP stanzas (iq, presence, or message) that have been received on this {{object|##.Connection}}. + + + + + + + + + The number of XMPP stanzas (iq, presence, or message) that have been transmitted by this {{object|##.Connection}}. + + + + + + + + + The number of XMPP stanzas (iq, presence, or message) that have been received on this {{object|##.Connection}} where the type attribute had a value of "error". + + + + + + + + + The number of XMPP stanzas (iq, presence, or message) that have been transmitted by this {{object|##.Connection}} where the type attribute had a value of "error". + + + + + + + + + + This object represents the management functions for the 1905 capabilities as defined in {{bibref|IEEE1905.1a}}. + + + + 1905 profile version number of the AL as would be sent in a Higher Layer response message as defined in {{bibref|IEEE1905.1a|Table 6-37: 1905 profile version TLV}}. + + + + + + + + + + + + This object represents the management functions for the 1905 Abstraction Layer as defined in {{bibref|IEEE1905.1a|Section 4.4 Abstraction Layer}}. + + + + 1905 AL MAC Address. + + + + + + + + The current operational state of the 1905 Abstraction Layer. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + NOT RECOMMENDED for use; if used it means {{enum|Enabled}} + + + + + NOT RECOMMENDED for use; if used it means {{enum|Disabled}} + + + + + NOT RECOMMENDED for use; if used it means {{enum|Error}} + + + + + NOT RECOMMENDED for use; if used it means {{enum|Error}} + + + + + NOT RECOMMENDED for use; if used it means {{enum|Error}} + + + + + NOT RECOMMENDED for use; if used it means {{enum|Error}} + + + + + + + + + This parameter is NOT RECOMMENDED to be used because IEEE1905 is not an interface. The accumulated time in {{units}} since the 1905 Abstraction Layer entered its current operational state. + + + + + + + + + + This parameter is NOT RECOMMENDED to be used because IEEE1905 is not an interface. {{list}} {{reference}} See {{bibref|TR-181i2|Section 4.2.1}}. + + + + + + + + + + + + + {{list}} See {{bibref|IEEE1905.1a|Table 6-25: SupportedFreqBand TLV}}. {{enum}} + + + + + + + + + + + + + + + {{numentries}} + + + + + + + + + The 1905 interface table (described in {{bibref|IEEE1905.1a|sub-clause 5 Abstraction Layer Management}}). + + + + + + + MAC Address of this interface. This is the value of the intfAddress parameter defined in {{bibref|IEEE1905.1a|Table 5-2: intfDescriptor elements}} + + + + + + + + This parameter is NOT RECOMMENDED to be used because it is not a parameter defined in a 1905 ALME primitive or protocol TLV. The current operational state of the interface (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + It SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD normally be {{enum|Down}} when the interface cannot transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + This parameter is NOT RECOMMENDED to be used because it is not a parameter defined in a 1905 ALME primitive or protocol TLV. The accumulated time in {{units}} since the interface entered its current operational state. + + + + + + + + + + This parameter is NOT RECOMMENDED to be used because it is not a parameter defined in a 1905 ALME primitive or protocol TLV. {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + + + + + + + + + + + + + Path name of an interface object described by this 1905 {{object}}. Referenced interface object MUST have a MACAddress and the InterfaceId MUST be the same as the interface object MACAddress. + + + + + + + + + + Media type of this {{object}}. This is derived from the value of the intfType parameter defined in {{bibref|IEEE1905.1a|Tables 5.2: intfDescriptor elements}}. {{enum}} + + + + + + IEEE 802.3u Fast Ethernet + + + + + IEEE 802.3ab Gigabit Ethernet + + + + + IEEE 802.11b (2.4GHz) + + + + + IEEE 802.11g (2.4GHz) + + + + + IEEE 802.11a (5GHz) + + + + + IEEE 802.11n (2.4GHz) + + + + + IEEE 802.11n (5GHz) + + + + + IEEE 802.11ac (5GHz) + + + + + IEEE 802.11ad (60GHz) + + + + + IEEE 802.11af + + + + + IEEE 1901 Wavelet + + + + + IEEE 1901 FFT + + + + + MoCAv1.1 + + + + + + + + + OUI of the Generic Phy networking technology of the local interface that would be included in a Generic Phy Device Information Type TLV defined in {{bibref|IEEE1905.1a|Tables 6-29: Generic Phy Device Information type TLV}}. + + + + + + + + + + + Variant Index of the Generic Phy networking technology of the local interface that would be included in a Generic Phy Device Information Type TLV defined in {{bibref|IEEE1905.1a|Tables 6-29: Generic Phy Device Information type TLV}}. + + + + + + + + + + {{datatype}} to the Generic Phy XML Description of the Generic Phy networking technology of the local interface that would be included in a Generic Phy Device Information Type TLV defined in {{bibref|IEEE1905.1a|Table 6-29: Generic Phy device information type TLV}}. + + + + + + + + Enables or disables the Abstraction Layer's ability to set the power state for the interface. Boolean can be {{true}} for "enabled" and {{false}} for "disabled". + + + + + + + + The Power State of this {{object}}. This is derived from the value of the powerState parameter as defined in {{bibref|IEEE1905.1a|Tables 5.3: ALME-SET-INTF-PWR-STATE.request parameters and Table 5.7: ALME-GET-INTF-PWR-STATE.response parameters}}. {{enum}} + + + + + + + not used when written + + + + + + not used when written + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + This object defines the vendor specific properties (vendorSpecificInfo field) of this {{object|##.Interface}} as defined in {{bibref|IEEE1905.1a|Table 5-2: intfDescriptor elements}}. + + + + Organizationally unique identifier of a manufacturer of this {{object|##.Interface}}. Represented as a six hexadecimal-digit value using all upper-case letters and including any leading zeros according to {{bibref|IEEE1905.1a|Table 5-20: VendorSpecificInfo information element}}. {{pattern}} + + + + + + + + + + + A hexbinary string used to to provide vendor specific information about this {{object|##.Interface}}. This is the value of the vendorSpecificInfo parameter defined in {{bibref|IEEE1905.1a|Table 5-20: VendorSpecificInfo information element}}. + + + + + + + + + + + This object defines the 1905 neighbors and link properties. + + + + + + + + MAC Address of the interface of the Neighbor for this {{object}}. This value comes from the neighbor’s Topology discovery message as defined in {{bibref|IEEE1905.1a|Table 6-9: MAC address typeTLV}}. + + + + + + + + MAC Address of the 1905 AL entity of the Neighbor device on this {{object}}. This value comes from the neighbor’s Topology discovery message as defined in {{bibref|IEEE1905.1a|Table 6-8: AL MAC address type TLV}}. + + + + + + + + Media type of this {{object}}. This value is derived from the neighbor’s Topology response message 1905 device information type TLV Media Type field as defined in {{bibref|IEEE1905.1a|Table 6-12: Media type}}. {{enum}} + + + + + + IEEE 802.3u Fast Ethernet + + + + + IEEE 802.3ab Gigabit Ethernet + + + + + IEEE 802.11b (2.4GHz) + + + + + IEEE 802.11g (2.4GHz) + + + + + IEEE 802.11a (5GHz) + + + + + IEEE 802.11n (2.4GHz) + + + + + IEEE 802.11n (5GHz) + + + + + IEEE 802.11ac (5GHz) + + + + + IEEE 802.11ad (60GHz) + + + + + IEEE 802.11af + + + + + IEEE 1901 Wavelet + + + + + IEEE 1901 FFT + + + + + MoCAv1.1 + + + + + + + + + OUI of the Generic Phy networking technology of the interface of the Neighbor for this {{object|#.Link}}. This value is from a Generic Phy response message field as defined in {{bibref|IEEE1905.1a|Tables 6-29: Generic Phy Device Information type TLV}}. + + + + + + + + + + + Variant Index of the Generic Phy networking technology of the interface of the Neighbor for this {{object|#.Link}}. This value is from a Generic Phy response message variant index field as defined in {{bibref|IEEE1905.1a|Tables 6-29: Generic Phy Device Information type TLV}}. + + + + + + + + + + {{datatype}} to the Generic Phy XML Description of the Generic Phy networking technology of the interface of the Neighbor for this {{object|#.Link}}. This value is from a Generic Phy response message URL to Generic Phy field as defined in {{bibref|IEEE1905.1a|Table 6-29: Generic Phy device information type TLV}}. + + + + + + + + + This object represents the metrics for this {{object|##.Link}} as defined in {{bibref|IEEE1905.1a|Tables 6-18: 1905 transmitter link metrics and Table 6-20: 1905 receiver link metrics}}. + + + + Indicates whether or not the 1905 link includes one or more IEEE 802.1 bridges. If {{false}}, the 1905 link does not include an IEEE 802.1 bridge. If {{true}}, the 1905 link does include one or more IEEE 802.1 bridges. + + + + + + + + Estimated number of lost {{units}} on the transmit side of the link {{bibref|IEEE1905.1a|Table 6-18: 1905 transmitter link metrics}} during a measurement period. + + + + + + + + + + Estimated number of lost {{units}} on the receive side of the link {{bibref|IEEE1905.1a|Table 6-20: 1905 receiver link metrics}} during a measurement period. + + + + + + + + + + Estimated number of {{units}} sent to the Neighbor on this {{object|##.Link}}, in the same measurement period used to estimate {{param|PacketErrors}}. + + + + + + + + + + Estimated number of {{units}} received from this Neighbor on this {{object|##.Link}} {{bibref|IEEE1905.1a|Table 6-20: 1905 receiver link metrics}}, in the same measurement period used to estimate {{param|PacketErrors}}. + + + + + + + + + + The maximum MAC throughput in {{units}} between this {{object|###.Interface}} and the Neighbor on this {{object|##.Link}} that is estimated at this {{object|###.Interface}}. + + + + + + + + + + The estimated average {{units}} of time that the {{object|##.Link}} is available for data transmissions. + + + + + + + + + + + The Physical Layer (PHY) rate in {{units}} between this {{object|###.Interface}} and the Neighbor on this {{object|##.Link}} that is estimated at this {{object|###.Interface}}. + + + + + + + + + + The estimated Received Signal Strength Indicator (RSSI) ratio in {{units}} between this {{object|###.Interface}} and the Neighbor on this {{object|##.Link}} that is estimated at the receive side of this {{object|###.Interface}}. + + + + + + + + + + + + This object represents the rules to forward PDUs between interfaces within the 1905 Abstraction Layer. + + + + Abstraction Layer ability to set, modify, and remove {{object|ForwardingRule}} entries for interfaces. Boolean can be {{true}} for "enabled" and {{false}} for "disabled". + + + + + + + + {{numentries}} + + + + + + + + + The 1905 fowarding rule for the ALME-SET-FWD-RULE.request and ALME-GET-FWD-RULES.response with classification criteria as defined in {{bibref|IEEE1905.1a|Table 5-9: ClassificationSet elements}}. + + + + The list of interfaces to which a frame satisfying the following classification criteria should be forwarded (intfAddressList parameter as defined in {{bibref|IEEE1905.1a|Table 5-8: ALME-SET-FWD-RULE.request parameters and Table 5-12: fwdRuleList elements}}). {{list}} Each list item MUST be the path name of an object, which MUST be a row of an {{object|##.Interface}} object. If the referenced item is deleted, the corresponding item MUST be removed from the list. {{noreference}} + + + + + + + + + + + + + Classification criterion. + The destination MAC address. + + + + + + + + If {{false}}, the classification criterion {{param|MACDestinationAddress}} is ignored. If {{true}}, the classification criterion {{param|MACDestinationAddress}} is used. + + + + + + + + + Classification criterion. + The source MAC address. + + + + + + + + If {{false}}, the classification criterion {{param|MACSourceAddress}} is ignored. If {{true}}, the classification criterion {{param|MACSourceAddress}} is used. + + + + + + + + + Classification criterion. + Ether Type Field in a frame. + + + + + + + + If {{false}}, the classification criterion {{param|EtherType}} is ignored. If {{true}}, the classification {{param|EtherType}} is used. + + + + + + + + + Classification criterion. + IEEE 802.1Q VLAN ID in a frame. + + + + + + + + + + If {{false}}, the classification criterion {{param|Vid}} is ignored. If {{true}}, the classification {{param|Vid}} is used. + + + + + + + + + Classification criterion. + IEEE 802.1Q Priority Code Point field. + + + + + + + + + + If {{false}}, the classification criterion {{param|PCP}} is ignored. If {{true}}, the classification {{param|PCP}} is used. + + + + + + + + + + This object represents the 1905 Network Topology capabilities of this device. + + + + Enables or disables the 1905 Network Topology reporting (via a Controller). When {{true}}, the device clears and (re)populates the {{object|IEEE1905Device}} and {{object|ChangeLog}} tables. When {{false}}, the contents of the {{object|IEEE1905Device}} and {{object|ChangeLog}} tables have no meaning. + + + + + + + + When {{param|Enable}} is set to {{true}}, this parameter indicates the transient phase of the discovery of the {{object}}. + {{enum}} + + + + + + Indicates that the device is populating the topology object during the transient phase. + + + + + Indicates that the transient phase is over and the device is maintaining and updating the topology object as changes occur. + + + + + NOT RECOMMENDED for use; if used, indicates that a necessary configuration value is undefined or invalid. + + + + + + + + The maximum number of entries allowed in the {{object|ChangeLog}} table. + + + + + + + + + + {{reference}} If the {{object|ChangeLog}} is modified the parameter is modified to reflect the last entry added to the {{object|ChangeLog}}. + + + + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + This object represents log entries for changes in the 1905 Network Topology. The Change Log is a First In First Out queue where the oldest entries (defined by values of the {{param|TimeStamp}} parameter) are deleted once the log is full. + + + + Date and Time at which the entry was added to the {{object}} table. + + + + + + + + Type of event for this entry. {{enum}} + + + + + + Entry represents a discovery of a Neighbor. + + + + + Entry represents the loss of a Neighbor. + + + + + + + + 1905 AL MAC Address of device which reported the change. + + + + + + + + MAC Address of the interface of the reporting device on which the change has been detected. + + + + + + + + Type of Neighbor for this event. {{enum}} + + + + + + + + + + + MAC Address of the Neighbor of this event. If the value of the {{param|EventType}} parameter is {{enum|NewNeighbor|EventType}}, then the value of this parameter represents the MAC Address of the new Neighbor that joined the network; if the value of the {{param|EventType}} parameter is {{enum|LostNeighbor|EventType}}, then the value of this parameter represents the MAC Address of the Neighbor that left the network. + If value of the {{param|NeighborType}} parameter is {{enum|IEEE1905|NeighborType}}, then the value of this parameter is the 1905 AL MAC Address of the Neighbor. + + + + + + + + + This object represents an instance of discovered 1905 Devices in the network (received Topology discovery message as defined in {{bibref|IEEE1905.1a|Clause 6.3.1}}). + + + + + + + 1905 AL MAC Address. + + + + + + + + 1905 profile version number in Higher Layer Response message as defined in {{bibref|IEEE1905.1a|Table 6-37: 1905 profile version TLV}}. + + + + + + + + + + + {{list}} of frequency bands identified as supported for a registrar role in an AP-autoconfiguration response message as defined in {{bibref|IEEE1905.1a|Table 6-25: SupportedFreqBand TLV}} {{enum}}. + + + + + + + + + + + + + + + Friendly Name String received in Higher Layer response message as defined in {{bibref|IEEE1905.1a|Table 6-30: Device Identification Type TLV}}. + + + + + + + + + + Manufacturer Name String received in Higher Layer response message as defined in {{bibref|IEEE1905.1a|Table 6-30: Device Identification Type TLV}}. + + + + + + + + + + Manufacturer Model String received in Higher Layer response message as defined in {{bibref|IEEE1905.1a|Table 6-30: Device Identification Type TLV}}. + + + + + + + + + + Control {{datatype}} received in Higher Layer response message as defined in defined in {{bibref|IEEE1905.1a|Table 6-31: Control URL Type TLV}}. + + + + + + + + {{param}} is a reference to the Wi-Fi Network "APDevice". Since IEEE 1905.1 is the protocol used by the Wi-Fi Alliance's EasyMesh specification for communications, this parameter allows the IEEE 1905.1 portion of the data model to reference the associated EasyMesh portion of the data model. + + + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + This object represents represents all IPv4 addresses reported for a MAC address (AL or interface) in a Higher Layer response message for the IEEE1905Device as defined in {{bibref|IEEE1905.1a|Table 6-32: IPv4 type TLV}}. + + + + + + + + MAC Address. + + + + + + + + IPv4 Address. + + + + + + + + The IPv4 Address Type of this {{param|IPv4Address}}. {{enum}} + + + + + + + + + + + + + Either IPv4 address of DHCPv4 server or IPv6 address of DHCPv6 server. + + + + + + + + + This object represents represents all IPv6 addresses reported for a MAC address (AL or interface) in a Higher Layer response message for the IEEE1905Device as defined in {{bibref|IEEE1905.1a|Table 6-34: IPv6 type TLV}}. + + + + + + + + MAC Address. + + + + + + + + IPv6 Address. + + + + + + + + The IPv6 Address Type of this {{param|IPv6Address}}. {{enum}} + + + + + + + + + + + + + + "::" or the IPv6 address of the origin of this IPv6 address. + + + + + + + + + This object represents vendor specific information received in a message with a Vendor specific TLV (as defined in in {{bibref|IEEE1905.1a|Table 6-7: Vendor specific TLV}}). + + + + The Message type of a message received from this IEEE1905Device that contained a Vendor specific TLV, as defined in {{bibref|IEEE1905.1a|Table 6-4: Message type}}. + + + + + + + + + + This is the value of the Vendor specific OUI defined in {{bibref|IEEE1905.1a|Table 6-7: Vendor specific TLV}}. {{pattern}} + + + + + + + + + + + A hexbinary string used to provide vendor specific information. This is the value of the Vendor specific information parameter defined in {{bibref|IEEE1905.1a|Table 6-7: Vendor specific TLV}}. + + + + + + + + + + + This object represents an instance of an interface for the {{object|##.IEEE1905Device}}. + + + + + + + MAC Address of the interface. This comes from the Topology response message as defined in {{bibref|IEEE1905.1a|Table 6-10: 1905 device information type TLV}}. + + + + + + + + Media type of this {{object}}. This comes from the Topology response message as defined in {{bibref|IEEE1905.1a|Table 6-10: 1905 device information type TLV}}. {{enum}} + + + + + + IEEE 802.3u Fast Ethernet + + + + + IEEE 802.3ab Gigabit Ethernet + + + + + IEEE 802.11b (2.4GHz) + + + + + IEEE 802.11g (2.4GHz) + + + + + IEEE 802.11a (5GHz) + + + + + IEEE 802.11n (2.4GHz) + + + + + IEEE 802.11n (5GHz) + + + + + IEEE 802.11ac (5GHz) + + + + + IEEE 802.11ad (60GHz) + + + + + IEEE 802.11af + + + + + IEEE 1901 Wavelet + + + + + IEEE 1901 FFT + + + + + MoCAv1.1 + + + + + + + + + The Power State of this {{object}}. "{{enum|Off}}" is used for interfaces identified in a Power Off Interface TLV as defined in {{bibref|IEEE1905.1a|Table 6-38}}. "{{enum|On}}" is used for all other interfaces. "{{enum|Power_Save}}" and "{{enum|Unsupported}}" are not used at this time. Updated as a result of a received Interface Power Change response with “request completed” or “alternate change made” Interface Power Change status as defined in {{bibref|IEEE1905.1a|Table 6-40: Interface Power Change status TLV}}. {{enum}} + + + + + + + + + + + + + {{param}} of this {{object|#.Interface}}. {{pattern}} + + + + + + + + + + + Variant Index of the Generic Phy networking technology of this {{object|#.Interface}}. This value is from a Generic Phy response message variant index field as defined in {{bibref|IEEE1905.1a|Table 6-29: Generic Phy device information type TLV}}. + + + + + + + + + + {{datatype}} to the Generic Phy XML Description of the Generic Phy networking technology of this {{object|#.Interface}}. This value is from a Generic Phy response message URL to generic phy field as defined in {{bibref|IEEE1905.1a|Table 6-29: Generic Phy device information type TLV}}. + + + + + + + + MACAddress Field from Media specific information for an 802.11 interface provided in a Topology response message 1905 device information type TLV as defined in {{bibref|IEEE1905.1a|Table 6-13: IEEE 802.11 specific information}}. + + + + + + + + Field from Media specific information for an 802.11 interface provided in a Topology response message 1905 device information type TLV as defined in {{bibref|IEEE1905.1a|Table 6-13: IEEE 802.11 specific information}}. {{enum}} + + + + + + + + + + + + + + Hexadecimal digit. Field from Media specific information for an 802.11 interface provided in a Topology response message 1905 device information type TLV as defined in {{bibref|IEEE1905.1a|Table 6-13: IEEE 802.11 specific information}} + + + + + + + + + + Field from Media specific information for an 802.11 interface provided in a Topology response message 1905 device information type TLV as defined in {{bibref|IEEE1905.1a|Table 6-13: IEEE 802.11 specific information}} + + + + + + + + + + Field from Media specific information for an 802.11 interface provided in a Topology response message 1905 device information type TLV as defined in {{bibref|IEEE1905.1a|Table 6-13: IEEE 802.11 specific information}} + + + + + + + + + + + This object represents an instance of a Non-IEEE1905 Neighbor for the {{object|##.IEEE1905Device}}. These fields come from a Topology response message as defined in {{bibref|IEEE1905.1a|Table 6-14: Non-1905 neighbor device TLV}}. + + + + + + + + {{reference}} + + + + + + + + + + + MAC Address of the interface for the {{object}}. + + + + + + + + + This object represents an instance of an L2 Neighbor for the {{object|##.IEEE1905Device}}. These fields come from a Topology response message as defined in {{bibref|IEEE1905.1a|Table 6-41: L2 neighbor device TLV}}. + + + + + + + + {{reference}} + + + + + + + + + + + MAC Address of the {{object}}. + + + + + + + + {{list}} Behind MAC Addresses of the {{object}}. + + + + + + + + + + + + This object represents an instance of an {{object}} for the {{object|##.IEEE1905Device}}. These values are from the Topology response message as defined in {{bibref|IEEE1905.1a|Table 6-15: 1905 neighbor device TLV}}. + + + + + + + + {{reference}} + + + + + + + + + + + 1905 AL MAC Address of the Neighbor. + + + + + + + + {{numentries}} + + + + + + + + + This object represents the metrics included in a Link metric response from the IEEE1905Device where {{param|#.LocalInterface}} is the MAC address of an interface in the receiving 1905 AL as defined in {{bibref|IEEE1905.1a|Table 6-17: 1905 transmitter link metric TLV}}. + + + + + + + The MAC address of an interface in a neighbor 1905 device as defined in {{bibref|IEEE1905.1a|Table 6-17: 1905 transmitter link metric TLV or Table 6-19: 1905 receiver link metric TLV}}. + + + + + + + + Indicates whether or not the 1905 link includes one or more IEEE 802.1 bridges. If {{false}}, the 1905 link does not include an IEEE 802.1 bridge. If {{true}}, the 1905 link does include one or more IEEE 802.1 bridges. + + + + + + + + Estimated number of lost {{units}} on the transmit side of the link {{bibref|IEEE1905.1a|Table 6-18: 1905 transmitter link metrics}} during a measurement period. + + + + + + + + + + Estimated number of lost {{units}} on the receive side of the link {{bibref|IEEE1905.1a|Table 6-20: 1905 receiver link metrics}} during a measurement period. + + + + + + + + + + Estimated number of {{units}} sent to the Neighbor on this link, in the same measurement period used to estimate {{param|PacketErrors}}. + + + + + + + + + + Estimated number of {{units}} received from this Neighbor {{bibref|IEEE1905.1a|Table 6-20: 1905 receiver link metrics}} on this link, in the same measurement period used to estimate {{param|PacketErrors}}. + + + + + + + + + + The maximum MAC throughput in {{units}} between this Interface and the Neighbor on this link that is estimated at this Interface. + + + + + + + + + + The estimated average {{units}} of time that this link is idle. + + + + + + + + + + + The Physical Layer (PHY) rate in {{units}} between this Interface and the Neighbor on this link that is estimated at this Interface. + + + + + + + + + + The estimated Received Signal Strength Indicator (RSSI) ratio in {{units}} between this Interface and the Neighbor on this link that is estimated at the receive side of this Interface. Note: This parameter is valid only for IEEE 802.11 Neighbors. + + + + + + + + + + + + This object represents an instance of an {{object}} for the {{object|##.IEEE1905Device}}. These values come from the 1905 Device’s Topology response message as defined in {{bibref|IEEE1905.1a|Table 6-11: Device bridging capability TLV}}. + + + + {{list}} {{reference}} + + + + + + + + + + + + + This object represents the Security configuration for the 1905 device as defined in {{bibref|IEEE1905.1a|Section 9.2 Security Setup Methods}}. + + + + {{list}} Supported security setup method(s) for the network. {{enum}} + + + + + + + + + User Configured Passphrase or Key + + + + + Push Button Configuration + + + + + Near-field Communication Network Key + + + + + + + + 1905 network passphrase for generating security keys. + + + + + + + This object represents the detected Network Registrars detection function for the IEEE 1905 network. They are determined by received AP-autoconfiguration response messages with Registrar role, with supported band as defined in {{bibref|IEEE1905.1a|Table 6-25: SupportedFreqBand TLV}} + + + + {{list}} 1905 AL MAC addresses as determined by source MAC address in received AP-autoconfiguration response messages with supported frequency band of 802.11 2.4 GHz. + + + + + + + + + + + {{list}} 1905 AL MAC addresses as determined by source MAC address in received AP-autoconfiguration response messages with supported frequency band of 802.11 5 GHz. + + + + + + + + + + + {{list}} 1905 AL MAC addresses as determined by source MAC address in received AP-autoconfiguration response messages with supported frequency band of 802.11 60 GHz. + + + + + + + + + + + + MQTT Base object describing all MQTT related parameters and objects. + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + Indicates the MQTT capabilities of the device. + + + + Indicates the supported protocol versions. {{enum}} + + + + + + + Protocol according to {{bibref|MQTT31}} + + + + + Protocol according to {{bibref|MQTT31}} + + + + + Protocol according to {{bibref|MQTT50}} + + + + + + + + Indicates the supported transport protocols. {{enum}} + + + + + + + + + + + + + Indicates the maximum number of subscriptions per MQTT client, which can be stored in the {{object|#.Client.{i}.Subscription}} table. A value of 0 means no limit. + + + + + + + + Indicates the maximum number of bridges, which can be configured in the {{object|#.Broker.{i}.Bridge}} table. A value of 0 means no limit. + + + + + + + + Indicates the maximum number of subscriptions, which can be stored per bridge instance in the {{object|#.Broker.{i}.Bridge.{i}.Subscription}} table. A value of 0 means no limit. + + + + + + + + + MQTT client table. Contains a list of configured MQTT clients. + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the MQTT client. + + + + + + + + + + Allows to enable or disable the MQTT client. + If a MQTT client gets enabled then the MQTT client has first to establish a MQTT broker session and then subscribe for all enabled topics in the {{object|Subscription.}} table. + If the {{param|ProtocolVersion}} is set to {{enum|3.1|#.Capabilities.ProtocolVersionsSupported}} or {{enum|3.1.1|#.Capabilities.ProtocolVersionsSupported}} and {{param|CleanSession}} is set to {{false}} a subscription MUST only be sent for topics which haven't been subscribed before (see {{bibref|MQTT31|section 3.1.2.4}}). + If the {{param|ProtocolVersion}} is set to {{enum|5.0|#.Capabilities.ProtocolVersionsSupported}} and {{param|CleanStart}} is set to {{false}} a subscription MUST only be sent for topics which haven't been subscribed before (see {{bibref|MQTT50|section 3.1.2.4}}). + If a connected MQTT client gets disabled ({{param|Status}} is either {{enum|Connecting|Status}} or {{enum|Connected|Status}}) then the MQTT client has to send a MQTT DISCONNECT packet to disconnect from the MQTT broker ({{bibref|MQTT31|section 3.14}},{{bibref|MQTT31|section 3.14}}) or {{bibref|MQTT50|section 3.14}}), before setting the {{param|Status}} to {{enum|Disabled|Status}}. + + + + + + + + Indicates the status of this MQTT client. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid (e.g. The MQTT client can not use the defined port, because it is blocked) + The {{enum|Error_BrokerUnreachable}} value indicates that the connection to the MQTT broker could not be established. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + + Specifies the MQTT protocol version used in the communication with the MQTT broker. + + + + + + + + + + When {{true}}, encryption MUST be used for this MQTT {{object}} instance. + + + + + + + + + Host name or IP address of the MQTT Broker. + + + + + + + + + + Port number of the MQTT broker. + + + + + + + + + + + Indicates the transport protocol to be used for the MQTT broker connection. + + + + + + + + + + + The value of the MQTT clean session flag in the MQTT CONNECT packet (see {{bibref|MQTT31|section 3.1}} and {{bibref|MQTT31|section 3.1.2.4}}). If this flag is set to {{true}} (default), the MQTT broker will delete all subscription information after a Disconnect. + {{template|MQTTReconnect}} + This parameter only applies if {{param|ProtocolVersion}} is set to {{enum|3.1|#.Capabilities.ProtocolVersionsSupported}} or {{enum|3.1.1|#.Capabilities.ProtocolVersionsSupported}}. + + + + + + + + + The value of the MQTT Clean Start flag in the MQTT CONNECT packet (see {{bibref|MQTT50|section 3.1.2.4}}. If this flag is set to {{true}} (default), the MQTT broker will delete all subscription information after a Disconnect. + {{template|MQTTReconnect}}. + {{template|MQTT50ONLY}} + + + + + + + + + Enables or disables the will handling (see {{bibref|MQTT31|section 3.1}}, {{bibref|MQTT31|section 3.1.2.5}}) or {{bibref|MQTT50|section 3.1.2.5}}). + If the connection gets enabled and this parameter is set to {{true}} and either the parameter {{param|WillTopic}} or {{param|WillValue}} are {{empty}}, the CPE MUST set the {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + {{template|MQTTReconnect}}. + + + + + + + + The MQTT QoS level assigned with the will message (see {{bibref|MQTT31|section 3.1}}, {{bibref|MQTT31|section 3.1.2.6}}) or {{bibref|MQTT50|section 3.1.2.6}}). This parameter is only used if {{param|WillEnable}} is set to {{true}}. + {{template|MQTTWillChange}} + + + + + + + + + + Indicate to the MQTT broker to retain the Will over a Disconnect (see {{bibref|MQTT31|section 3.1}}, {{bibref|MQTT31|section 3.1.2.7}}) or {{bibref|MQTT50|section 3.1.2.7}}). This parameter is only used if {{param|WillEnable}} is set to {{true}}. + {{template|MQTTWillChange}} + + + + + + + + Keep Alive Time in {{units}} defines the maximum wait time after which a packet has to be sent to the MQTT broker (see {{bibref|MQTT31|section 3.1}}, {{bibref|MQTT31|section 3.1.2.10}}) or {{bibref|MQTT50|section 3.1.2.10}}). If no regular packet can be sent a MQTT PINGREQ packet is sent. + A value of zero (0) means no keep alive packets are sent and the MQTT client is not disconnected by the server. + {{template|MQTTReconnect}} + + + + + + + + + + + + Disconnects the MQTT client from the MQTT broker and reconnects it again (toggle connection). It is only effective if the MQTT client is currently connected to the MQTT broker (Parameter {{param|Status|}} is {{enum|Connected|Status}}). + If the MQTT client is in a different state, the parameter has no effect. + This action parameter may be used to immediately apply changes in the MQTT connection settings. + + + + + + + + Session expiry interval in {{units}} defines the wait time before a session expires after the connection has been closed by the MQTT client {{bibref|MQTT50|section 3.1.2.11.2}}). + {{template|MQTT50ONLY}} + + + + + + + + + + The MQTT client uses this value to limit the number of QoS 1 and QoS 2 publications that it is willing to process concurrently (see {{bibref|MQTT50|section 3.1.2.11.3}}). + {{template|MQTTReconnect}} + {{template|MQTT50ONLY}} + + + + + + + + The maximum packet size in {{units}} the MQTT client can and will accept from the MQTT broker. A value of 0 means no limit. If the value is set to another value, the MQTT client will inform the broker in the next CONNECT packet {{bibref|MQTT50|section 3.1.2.11.4}}). + {{template|MQTTReconnect}} + {{template|MQTT50ONLY}} + + + + + + + + + + This value indicates the highest value that the MQTT client will accept as a Topic Alias sent by the Server (see {{bibref|MQTT50|section 3.1.2.11.5}}). The MQTT client uses this value to limit the number of Topic Aliases that it is willing to hold on this connection. + A value of 0 indicates that Topic Alias is not supported. + {{template|MQTTReconnect}} + {{template|MQTT50ONLY}} + + + + + + + + + + The MQTT client uses this value in a MQTT CONNECT packet to request the Server to return Response Information in the MQTT CONNACK (see {{bibref|MQTT50|section 3.1.2.11.6}}). + {{template|MQTTReconnect}} + {{template|MQTT50ONLY}} + + + + + + + + This value indicates whether the Reason String or User Properties are sent in the case of failures.(see {{bibref|MQTT50|section 3.1.2.11.7}}). + {{template|MQTTReconnect}} + {{template|MQTT50ONLY}} + + + + + + + + This value defines the extended authentication method to be used (see {{bibref|MQTT50|section 3.1.2.11.9}}). + If the parameter is empty, no extended authentication is performed. + {{template|MQTTReconnect}} + {{template|MQTT50ONLY}} + + + + + + + + + + The MQTT client identifier used in the MQTT CONNECT packet (see {{bibref|MQTT31|section 3.1}}, {{bibref|MQTT31|section 3.1.3.1}}) or {{bibref|MQTT50|section 3.1.3.1}}). + If {{param|ProtocolVersion}} is set to {{enum|3.1|#.Capabilities.ProtocolVersionsSupported}} or {{enum|3.1.1|#.Capabilities.ProtocolVersionsSupported}}, this parameter MUST NOT be an empty string. + If {{param|ProtocolVersion}} is set to {{enum|5.0|#.Capabilities.ProtocolVersionsSupported}}, an empty string is allowed. + {{template|MQTTReconnect}} + + + + + + + + + + The delay in {{units}} after the session is disconnected, before sending the Will message {{bibref|MQTT50|section 3.1.3.2.2}}). A value of 0 indicates that there is no delay. + {{template|MQTTWillChange}} + {{template|MQTT50ONLY}} + + + + + + + + + + + The lifetime in {{units}} of a Will Message (see {{bibref|MQTT50|section 3.1.3.2.4}}). A value of 0 indicates that no message expiry interval value is specified for in the will message properties of a CONNECT packet. + {{template|MQTT50ONLY}} + + + + + + + + + + Describes the type of the {{param|WillValue}} {{bibref|MQTT50|section 3.1.3.2.5}}). + {{template|MQTTWillChange}} + {{template|MQTT50ONLY}} + + + + + + + + + + Topic Name for a will response message. The presence of a Response Topic identifies the Will Message as a Request {{bibref|MQTT50|section 3.1.3.2.6}}). + If the {{param}} is an empty string the will response topic will not be sent in a MQTT CONNECT packet. + {{template|MQTTWillChange}} + {{template|MQTT50ONLY}} + + + + + + + + + + The Topic sent in the Will Message (see {{bibref|MQTT31|section 3.1}}, {{bibref|MQTT31|section 3.1.3.3}}) or {{bibref|MQTT50|section 3.1.3.3}}). This parameter is only used if {{param|WillEnable}} is set to {{true}}. + {{template|MQTTWillChange}} + + + + + + + + + + The value sent in the Will Message (see {{bibref|MQTT31|section 3.1}}, {{bibref|MQTT31|section 3.1.2.5}}) or {{bibref|MQTT50|section 3.1.3.4}}). This parameter is only used if {{param|WillEnable}} is set to {{true}}. + {{template|MQTTWillChange}} + + + + + + + + + + Username used to authenticate the MQTT client when making a connection to the MQTT broker. The value is sent in the MQTT CONNECT packet (see {{bibref|MQTT31|section 3.1}}, {{bibref|MQTT31|section 3.1.3.4}} or {{bibref|MQTT50|section 3.1.3.5}}). + For MQTT 3.1 {{bibref|MQTT31|section 3.1}} recommends that the user name has 12 characters or fewer, but this is not required. + If this parameter is {{empty}} no authentication parameters are sent in the MQTT CONNECT packet. + + + + + + + + + + Password used to authenticate the MQTT client when making a connection to the MQTT broker. The value is sent in the MQTT CONNECT packet (see {{bibref|MQTT31|section 3.1}}, {{bibref|MQTT31|section 3.1.3.5}} or {{bibref|MQTT50|section 3.1.3.6}}). + This password is only sent in the MQTT CONNECT packet if {{param|Username}} is not {{empty}}. + + + + + + The lifetime in {{units}} of a PUBLISH Message (see {{bibref|MQTT50|section 3.3.2.3.3}}). A value of 0 indicates that no message expiry interval value is included in the PUBLISH packet. + {{template|MQTT50ONLY}} + + + + + + + + + + Message retry time in {{units}} defines the wait time before a MQTT message that expects a response (QoS value of message is > 0, or PUBLISH, PUBREL, SUBSCRIBE, UNSUBSCRIBE message) is resent, because the response is not received (see {{bibref|MQTT31|section 4.2}}). + This parameter only applies if {{param|ProtocolVersion}} is set to {{enum|3.1|#.Capabilities.ProtocolVersionsSupported}}. + + + + + + + + + + + + Connect retry time in {{units}} defines the wait time before a failed MQTT broker connection is retried. + A failure can either be on the connection level (the TCP/IP or TLS can not be established) or on the Protocol level, the MQTT client does not receive a MQTT CONNACK packet on a MQTT CONNECT packet sent. + If the parameter {{param|ConnectRetryIntervalMultiplier}} is defined, the MQTT client MUST use a random value between {{param}}*({{param|ConnectRetryIntervalMultiplier}}/1000)^(n-1) and {{param}}*({{param|ConnectRetryIntervalMultiplier}}/1000)^n for the connect retry time, with n equals the current retry number. The max number of n is 10, starting with the 11th retry always the value n = 10 is used. + If the parameters {{param|ConnectRetryIntervalMultiplier}} and {{param|ConnectRetryMaxInterval}} are defined, the MQTT client MUST use the value of {{param|ConnectRetryMaxInterval}} if the calculated random value exceeds the value of {{param|ConnectRetryMaxInterval}}. + + + + + + + + + + + + Configures the retry interval multiplier. + This value is expressed in units of 0.001. Hence the values of the multiplier range between 1.000 and 65.535. + + + + + + + + + + + The maximum reconnection wait interval, in {{units}}. + + + + + + + + + + + + The value of the CONNACK Response Information property supplied by a MQTT 5.0 server. This value is used by a MQTT 5.0 client as the basis for the PUBLISH Response Topic property for all PUBLISH packets that expect a response. If the value of {{param}} is not a subset (wildcarded or precise match) of any of the {{param|Subscription.{i}.Topic}} values the MQTT client MUST subscribe to this Topic. + + + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + List of MQTT subscriptions handled by the MQTT client. + The MQTT client MUST subscribe with the MQTT broker for all subscription instances, whose parameter {{param|Enable}} is set to {{true}}, when it establishes a new connection to the MQTT broker. Disabled subscription instances with {{param|Enable}} set to {{false}} will be ignored during connection establishment. + + + + + + + + + + {{datatype|expand}} + + + + + + + + When a MQTT client connects to a MQTT server, it MUST send a SUBSCRIBE message including all instances with {{param}} set to {{true}}. If the MQTT client is already connected with the MQTT server ({{param|#.Status}} is {{enum|Connected|#.Status}}), a MQTT SUBSCRIBE or UNSUBSCRIBE message MUST be sent directly when {{param}} is changed to {{true}} or {{false}}, respectively. + The actual status of the subscription is indicated with {{param|Status}}. + + + + + + + + Indicates the status of this subscription. {{enum}} + The {{enum|Subscribed}} value indicates that the topic was successfully subscribed with the MQTT broker, the MQTT client received the SUBACK message for this topic from the server. + The {{enum|Subscribing}} value MAY be used by the CPE to indicate that the a SUBSCRIBE message for this topic was sent, and the CPE is waiting for a SUBACK message. + The {{enum|Unsubscribed}} value indicates that the topic is not registered with the MQTT broker. + The {{enum|Unsubscribing}} value MAY be used by the CPE to indicate that the an UNSUBSCRIBE message for this topic was sent, and the CPE is waiting for an UNSUBACK message. + If the {{param|Enable}} is set to {{false}} the status MUST be either {{enum|Unsubscribed}} or if the unsubscription failed {{enum|Error}}. + + + + + + + + + + + + + + Name of the subscribed topic. Topic names may contain wildcards according to the rules specified in {{bibref|MQTT31|section Appendix A}}, {{bibref|MQTT31|section 4.7}} or {{bibref|MQTT50|4.7}}. + + + + + + + + + + The MQTT QoS level assigned with the subscription (see {{bibref|MQTT31|section 4.1}}, {{bibref|MQTT31|section 4.3}}) or {{bibref|MQTT50|4.3}}. + + + + + + + + + + + List of user properties used by the MQTT client. + This table only applies if {{param|#.ProtocolVersion}} is set to {{enum|5.0|##.Capabilities.ProtocolVersionsSupported}}. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Setting Enable to {{true}} means the user property is used in the indicated control packet(s). The user property will be applied to all control packets of the same control packet type (e.g PUBLISH). + + + + + + + + Name of the user property + + + + + + + + + + Value of the user property + + + + + + + + + + {{list}} Each entry defines the control packet type(s) in which the user property is included. + + + + + + + User property will be added in the AUTH control packet (see {{bibref|MQTT50|section 3.15.2.2.5}}) + + + + + User property will be added in the CONNECT packet (see {{bibref|MQTT50|section 3.1.3.2.8}}) + + + + + User property will be added in the DISCONNECT packet (see {{bibref|MQTT50|section 3.14.2.2.4}}) + + + + + User property will be added in the PUBLISH packet (see {{bibref|MQTT50|section 3.3.2.3.7}}) + + + + + User property will be added in the PUBACK packet (see {{bibref|MQTT50|section 3.4.2.2.3}}) + + + + + User property will be added in the PUBREC packet (see {{bibref|MQTT50|section 3.5.2.2.3}}) + + + + + User property will be added in the PUBREL packet (see {{bibref|MQTT50|section 3.6.2.2.3}}) + + + + + User property will be added in the PUBCOMP packet (see {{bibref|MQTT50|section 3.7.2.2.3}}) + + + + + User property will be added in the SUBSCRIBE packet (see {{bibref|MQTT50|section 3.8.2.1.3}}) + + + + + User property will be added in the UNSUBSCRIBE packet (see {{bibref|MQTT50|section 3.10.2.1.2}}) + + + + + User property will be added in the WILL properties (see {{bibref|MQTT50|section 3.1.3.2}}) + + + + + + + + + Contains the MQTT client statistics and usage information. + The CPE MUST reset the Stats parameters after the MQTT client gets (re-)enabled or if the MQTT client connects with a new MQTT broker (e.g. {{param|#.BrokerAddress}} has changed). The CPE MAY retain the values across a reboot if it reconnects with the same MQTT broker. + + + + Time when the MQTT broker connection was established. + + + + + + + + Time when the last publish message was sent to the MQTT broker. + + + + + + + + Time when the last publish message was received from the MQTT broker. + + + + + + + + Number of publish messages sent to the MQTT broker. + + + + + + + + Number of publish messages received from to the MQTT broker. + + + + + + + + Number of subscribe messages sent to the MQTT broker. + + + + + + + + Number of unsubscribe messages sent to the MQTT broker. + + + + + + + + Total number of MQTT messages sent to the MQTT broker. + + + + + + + + Total number of MQTT messages received from the MQTT broker. + + + + + + + + Number of connection errors. + + + + + + + + Number of errors which prevented sending publish messages. + + + + + + + + + MQTT broker table. Contains a list of configured MQTT brokers. + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the MQTT broker. + + + + + + + + + + Allows to enable or disable the MQTT broker. + + + + + + + + Indicates the status of the MQTT broker. {{enum}} + The "{{enum|Error_Misconfigured}}" value indicates that a necessary configuration value is undefined or invalid. + The "{{enum|Error}}" value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + Port used by the MQTT Broker. + + + + + + + + + + + If {{empty}} is specified, the CPE MUST bind the MQTT broker to all available interfaces. + + + + + + + + + + + User name used to authenticate the MQTT clients, which connect to the MQTT broker. + If this parameter is {{empty}} no authentication is used. + + + + + + + + + + Password used used to authenticate the MQTT clients, which connect to the MQTT broker. + This password is only used if {{param|Username}} is not {{empty}}. + + + + + + {{numentries}} + + + + + + + + + Configures MQTT bridges, which are used to communicate with other MQTT brokers. + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the MQTT bridge used for identification. + + + + + + + + + + Allows to enable or disable the MQTT Bridge. + + + + + + + + Indicates the status of this MQTT Bridge. {{enum}} + The {{enum|Disabled}} value indicates that the MQTT bridge is not in service; parameter {{param|Enable}} is set to {{false}}. + The {{enum|Connecting}} value indicates that the MQTT bridge is currently established. + The {{enum|Connected}} value indicates that the MQTT bridge is currently active. + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid (e.g. No active Server entry, the MQTT broker can not use the defined bridge port, because it is blocked) + The {{enum|Error_BrokerUnreachable}} value indicates that the MQTT bridge connection to the remote MQTT broker could not be established. + The {{enum|Error}} value MAY be used to indicate a locally defined error condition. + + + + + + + + + + + + + + + + Specifies the MQTT protocol version used in the MQTT bridge connection. + + + + + + + + + + Indicates the transport protocol to be used for the MQTT bridge connection. + + + + + + + + + + + The value of the MQTT clean session flag in the MQTT CONNECT packet (see {{bibref|MQTT31|section 3.1}} and {{bibref|MQTT31|section 3.1.2.4}}) to establish a MQTT bridge connection. If this flag is set to {{true}} (default), the remote MQTT broker will delete all subscription information after a Disconnect. + {{template|MQTTReconnect}} + This parameter only applies if {{param|ProtocolVersion}} is set to {{enum|3.1|##.Capabilities.ProtocolVersionsSupported}} or {{enum|3.1.1|##.Capabilities.ProtocolVersionsSupported}}. + + + + + + + + + The value of the MQTT Clean Start flag in the MQTT CONNECT packet (see {{bibref|MQTT50|section 3.1.2.4}} to establish a MQTT bridge connection. If this flag is set to {{true}} (default), the remote MQTT broker will delete all subscription information after a Disconnect. + {{template|MQTTReconnect}}. + This parameter only applies if {{param|ProtocolVersion}} is set to {{enum|5.0|##.Capabilities.ProtocolVersionsSupported}}. + + + + + + + + + Keep Alive Time in {{units}} defines the maximum wait time after which a packet has to be sent to the remote MQTT broker (see {{bibref|MQTT31|section 3.1}}, {{bibref|MQTT31|section 3.1.2.10}}) or {{bibref|MQTT50|section 3.1.2.10}}). If no regular packet can be sent a MQTT PINGREQ packet is sent. + A value of zero (0) means no keep alive packets are sent and the bridge is not disconnected by the server. + {{template|MQTTReconnect}} + + + + + + + + + + + + Disconnects the MQTT bridge to the remote MQTT broker and reconnects it again (toggle connection). It is only effective if the MQTT bridge is currently connected to the remote MQTT broker (Parameter {{param|Status|}} is {{enum|Connected|Status}}). + If the MQTT bridge is in a different state, the parameter has no effect. + This action parameter may be used to immediately apply changes in the MQTT connection settings. + + + + + + + + The MQTT client identifier used in the CONNECT packet (see {{bibref|MQTT31|section 3.1}}, {{bibref|MQTT31|section 3.1.3.1}}) or {{bibref|MQTT50|section 3.1.3.1}}). + If {{param|ProtocolVersion}} is set to {{enum|3.1|##.Capabilities.ProtocolVersionsSupported}} or {{enum|3.1.1|##.Capabilities.ProtocolVersionsSupported}}, this parameter MUST NOT be an empty string. + If {{param|ProtocolVersion}} is set to {{enum|5.0|##.Capabilities.ProtocolVersionsSupported}}, an empty string is allowed. + {{template|MQTTReconnect}} + + + + + + + + + + User name used to authenticate the MQTT broker when making a connection over the MQTT bridge. The value is sent in the MQTT CONNECT packet (see {{bibref|MQTT31|section 3.1}}, {{bibref|MQTT31|section 3.1.3.4}} or {{bibref|MQTT50|section 3.1.3.5}}). + For MQTT 3.1 {{bibref|MQTT31|section 3.1}} recommends that the user name has 12 characters or fewer, but this is not required. + If this parameter is {{empty}} no authentication parameters are sent in the MQTT CONNECT packet. + + + + + + + + + + Password used to authenticate the MQTT broker when making a connection over the MQTT bridge. The value is sent in the MQTT CONNECT packet (see {{bibref|MQTT31|section 3.1}}, {{bibref|MQTT31|section 3.1.3.5}} or {{bibref|MQTT50|section 3.1.3.6}}). + This password is only sent in the MQTT CONNECT packet if {{param|Username}} is not {{empty}}. + + + + + + Message retry time in {{units}} defines the wait time before a MQTT message that expects a response (QoS value of message is > 0, or PUBLISH, PUBREL, SUBSCRIBE, UNSUBSCRIBE message) is resent, because the response is not received (see {{bibref|MQTT31|section 4.2}}. + This parameter only applies if {{param|ProtocolVersion}} is set to {{enum|3.1|##.Capabilities.ProtocolVersionsSupported}}. + + + + + + + + + + + + Connect retry time in {{units}} defines the wait time before a failed bridge connection is retried. + A failure can either be on the connection level (e.g. the TCP/IP or TLS connection can not be established) or on the Protocol level, the MQTT client does not receive a MQTT CONNACK packet on a MQTT CONNECT packet sent. + + + + + + + + + + + + The algorithm used to select a server entry from the {{object|Server}} table + + + + + + Select the server from the {{object|Server.}} table according to the sequence defined with the {{param|Server.{i}.Priority}} and {{param|Server.{i}.Weight}} values. + + + + + Select the servers round robin. + + + + + Select the servers randomly. + + + + + + + + {{reference|the {{object|Server.}} instance that is used for this {{object}}, while the {{param|Status}} is {{enum|Connecting|Status}} or {{enum|Connected|Status}}. If the MQTT bridge is not connected the value MUST be an empty string}} + + + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + Each {{object}} instance represents a MQTT bridge server to be used for a {{object|##.Bridge}}. A remote MQTT broker, which is connected by a MQTT bridge can be reachable via several host addresses each represented by its own {{object}} table entry. For an active MQTT bridge at least one enabled entry has to exist. + If a MQTT bridge gets enabled by setting the parameter {{param|##.Bridge.{i}.Enable}} to {{true}}, which either has an empty {{object}} table or the {{object}} table only contains instances whose {{param|Enable}} is set to {{false}}, the {{param|##.Bridge.{i}.Status}} has to be set to {{enum|Error_Misconfigured|##.Bridge.{i}.Status}}. + Any attempt to delete an instance, which is currently in use ({{param|##.Bridge.{i}.ServerConnection}} refers to the instance to be deleted), has to be rejected. + + + + + + + + + + + Enables or disables this {{object}}. + + + + + + + + + {{datatype|expand}} + + + + + + + + The priority of this {{object}} that is used by the {{object|##.Bridge}} when determining the {{object}} to connect to. The {{object|##.Bridge}} MUST contact the {{object}} with the lowest-numbered priority that the {{object|##.Bridge}} can reach as defined in {{bibref|RFC2782}}. The selection of {{object}}s with the same {{param}} value utilizes the {{param|Weight}} parameter to determine which {{object}} is selected by the {{object|##.Bridge}}. + This value is only used if {{param|##.Bridge.{i}.ServerSelectionAlgorithm}} is set to {{enum|Priority|##.Bridge.{i}.ServerSelectionAlgorithm}}. + + + + + + + + + + This parameter specifies a relative weight for entries with the same {{param|Priority}}. The mechanism is defined in {{bibref|RFC2782}}. A value of -1 indicates that the implementation of this parameter is specific to the Vendor. + This value is only used if {{param|##.Bridge.{i}.ServerSelectionAlgorithm}} is set to {{enum|Priority|##.Bridge.{i}.ServerSelectionAlgorithm}}. + + + + + + + + + + Fully Qualified Domain Name (FQDN) or IP address of the MQTT broker server this {{object|##.Bridge}} connects to. + If the value of this parameter is a FQDN that resolves to multiple addresses then each address SHOULD be attempted (in an implementation-specific order) until a connection can be made or all addresses are exhausted, in which case the next {{object}} instance (based on rules defined over the selected {{param|##.Bridge.{i}.ServerSelectionAlgorithm}}) SHOULD be used. + + + + + + + + + + Port number of the MQTT broker server this {{object|##.Bridge}} connects to. + + + + + + + + + + + + List of MQTT subscriptions handled over the bridge. + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Setting Enable to {{true}} activates the handling of this subscription instance. In case of incoming directions ({{param|Direction}} is either {{enum|in|Direction}} or {{enum|both|Direction}}) the topic is subscribed over the bridge at the remote MQTT broker with a MQTT SUBSCRIBE message if {{param}} is set to {{true}} or unsubscribed from the remote MQTT broker with a MQTT UNSUBSCRIBE message if the value is set to {{false}}. + The actual status of the subscription is indicated with {{param|Status}}. + + + + + + + + Indicates the status of this subscription. {{enum}} + The {{enum|Enabled}} value indicates that the this subscription is active. In case of incoming directions ({{param|Direction}} is either {{enum|in|Direction}} or {{enum|both|Direction}}) the topic was successfully subscribed with the remote MQTT broker. + The {{enum|Disabled}} value indicates that this subscription is not used. + The {{enum|Error}} value indicates that an error occurred (e.g. an subscription could not be made with the remote MQTT broker) and the subscription is not in use. + + + + + + + + + + + + Name of the subscribed topic. Topic names may contain wildcards according to the rules specified in {{bibref|MQTT31|section Appendix A}}, {{bibref|MQTT31|section 4.7}} or {{bibref|MQTT50|4.7}}. + + + + + + + + + + The direction of the subscription. {{enum}}. + + + + + + Indicates that all matching topics will be sent over the bridge to the next MQTT broker. + + + + + Indicates that all matching topics will be received over the bridge from the next MQTT broker. + + + + + Indicates that all matching topics will be sent and received over the bridge. + + + + + + + + The MQTT QoS level assigned with the subscription (see {{bibref|MQTT31|section 4.1}}, {{bibref|MQTT31|section 4.3}}) or {{bibref|MQTT50|4.3}}. + + + + + + + + + + The local prefix is used for remapping received topics to the local topics of the MQTT broker and to select the topics to be sent over bridge to the remote MQTT broker. + * In incoming direction ({{param|Direction}} is either {{enum|in|Direction}} or {{enum|both|Direction}}): + : For remote topics received over the bridge the MQTT broker adds the LocalPrefix in front of the received topic, before processing it. + :: '' '' + : ''Example:'' + :: Topic is "/bus/+", LocalPrefix is "/local", Direction is "in" + :: MQTT broker receives message with topic "/bus/tr181" over bridge => MQTT broker uses topic "/local/bus/tr181" for internal processing + * In outgoing direction ({{param|Direction}} is either {{enum|out|Direction}} or {{enum|both|Direction}}): + : For selection of the topics to be sent over the bridge the MQTT broker uses the combination of {{param}} and {{param|Topic}} to match the topics to be sent over bridge, and removes the {{param}} from the selected topic before sending it over the bridge. + :: '' '' + : ''Example:'' + :: Topic is "/bus/+", LocalPrefix is "/local", Direction is "out" + :: MQTT broker receives message with topic "/local/bus/tr181" from a MQTT client => MQTT broker sends topic "/bus/tr181" to remote MQTT broker + + + + + + + + + + The remote prefix is used for remapping topics to the remote MQTT broker topic lists. + * In incoming direction ({{param|Direction}} is either {{enum|in|Direction}} or {{enum|both|Direction}}): + : For remote topics received over the bridge the MQTT broker removes the remote prefix topic from the received topic (before handling the {{param|LocalPrefix}}), before processing it. + :: '' '' + : ''Example:'' + :: Topic is "/bus/+", LocalPrefix is "/local", RemotePrefix is "/remote", Direction is "in" + :: MQTT broker receives message with topic "/remote/bus/tr181" over bridge => MQTT broker uses topic "/local/bus/tr181" for internal processing + : During activation of the bridge, the MQTT broker prepends the {{param|Topic}} with {{param}} topic and subscribes to the remote MQTT broker with it, in order to receive all applicable remote topics. + :: '' '' + : ''Example:'' + :: Topic is "/bus/+", RemotePrefix is "/remote", Direction is "in" + :: MQTT broker sends a subscription to the remote MQTT broker with the topic "/remote/bus/+". + * In outgoing direction ({{param|Direction}} is either {{enum|out|Direction}} or {{enum|both|Direction}}): + : For all topics to be sent over the bridge ({{param|Direction}} is either {{enum|out|Direction}} or {{enum|both|Direction}}), the RemotePrefix will be prepended to the topic after the {{param|LocalPrefix}} has been processed and before sending the message over the bridge. + :: '' '' + : ''Example:'' + :: Topic is "/bus/+", LocalPrefix is "/local", RemotePrefix is "/remote" Direction is "out" + :: MQTT broker receives message with topic "/local/bus/tr181" from a MQTT client => MQTT broker sends topic "/remote/bus/tr181" to remote MQTT broker + + + + + + + + + + + The MQTT broker statistics values. These will reset with each MQTT broker start, either after reboot or if the MQTT broker gets (re-)enabled. + + + + Total number of MQTT clients registered with the MQTT broker. + + + + + + + + Number of MQTT clients, which have a connection with the MQTT broker established. + + + + + + + + Number of MQTT clients, which have no connection with the MQTT broker established. + + + + + + + + Number of subscriptions held by the MQTT broker. + + + + + + + + Number of publish messages sent by the MQTT broker. + + + + + + + + Number of publish messages received by the MQTT broker. + + + + + + + + Total number of MQTT messages sent by the MQTT broker. + + + + + + + + Total number of MQTT messages received by the MQTT broker. + + + + + + + + Number of connection errors. + + + + + + + + Number of errors which prevented sending publish messages + + + + + + + + + Properties for Dynamic DNS. + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + List of Dynamic DNS service names that are supported by the CPE. + + + + + + + + + + + + Client properties for Dynamic DNS. + A dynamic DNS client is responsible for verifying IP address changes and updating information from a subscribed account on a Dynamic DNS Server. + For enabled table entries, if {{param|Server}} is not a valid reference then the table entry is inoperable and the CPE MUST set the {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + + + + + + + + + + + Enables or disables this Dynamic DNS Client. + + + + + + + + Status of this Dynamic DNS Client. + + + + + + The Dynamic DNS Client is trying to connect to the Server. + + + + + The Dynamic DNS Client is in the authentication phase. + + + + + The Dynamic DNS Client has performed an update request since the last IP address change. + + + + + Error due to configuration. + + + + + An error has occurred during the communication with the Server. The {{param|LastError}} parameter is updated with the detail of this error. + + + + + The Client is disabled. + + + + + + + + {{datatype|expand}} + + + + + + + + The last error this Dynamic DNS Client has encountered. + The parameter MAY instead indicate a vendor-specific cause, which MUST use the format defined in {{bibref|TR-106}}. + + + + + + + + + + + + + + + + The DynamicDNS server associated with this Dynamic DNS Client. + {{reference}} + + + + + + + + + + + The IP interface over which update queries to the server are sent. + {{reference}} + If an empty string is specified, the CPE MUST use its routing policy (Forwarding table entries), to determine the appropriate interface. + + + + + + + + + + + Username used by this Dynamic DNS Client to authenticate with the Server. + + + + + + + + + + Password used by this Dynamic DNS Client to authenticate with the Server. + + + + + + {{numentries}} + + + + + + + + + Each table entry represents a fully qualified domain name updated by this Dynamic DNS Client. + + + + + + + Enables or disables this Hostname. + + + + + + + + Status of this Hostname. + + + + + + The Hostname has been updated with the current IP address. + + + + + The IP address has changed since last update. + + + + + The Client is trying to update this Hostname. + + + + + The Hostname doesn't exist for this Dynamic DNS account. + + + + + The Hostname is disabled. + + + + + + + + Fully qualified domain name that has to be updated with the IP address. + If the name is set to another value, the Client MUST immediately send an update request to the Server. + + + + + + + + + + The date time of the last successful update of this name to the Dynamic DNS Server. + + + + + + + + + Table of Dynamic DNS servers available for this CPE. + + + + + + + + + + Enables or disables Dynamic DNS Server. + + + + + + + + + + The textual name of the Dynamic DNS Server. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Dynamic DNS service used to contact this server. + {{reference}} + + + + + + + + + + + Host name or IP address of the Dynamic DNS server. + + + + + + + + + + Port number of the Dynamic DNS server. + + + + + + + + + + Indicates the protocols that are supported by the CPE for sending requests to the Dynamic DNS server. {{list}} This list depends on the Dynamic DNS service defined by the {{param|ServiceName}} parameter. + + + + + + + As defined in {{bibref|RFC2616}} + + + + + As defined in {{bibref|RFC2818}} + + + + + + + + Indicates the protocol used to send requests to the Dynamic DNS server. + + + + + + + + + + Interval (in {{units}}) between two checks for IP change. + A value of zero indicates that the CPE knows when IP changes and doesn’t need to check it periodically. + + + + + + + + + + Initial retry interval (in {{units}}) after a failed request. This parameter can be used as a fixed value or as part of a retry interval calculation. + + + + + + + + + + Maximum number of retries after a failed request. When the maximum number is reached, no further requests are sent until the context changes. + A value of 0 means that there are no retries after a failed request. + + + + + + + + + This object describes the LEDs on the device. + + + + {{numentries}} + + + + + + + + + Each instance of this object describes an LED on the device. + The default illumination characteristics (e.g., Color, Brightness) of an in use LED is vendor specific. When a cycle completes (i.e., {{param|CyclePeriodRepetitions}} = 0), the LED reverts back to its default illumination characteristics. + When the value of the {{param|Status}} parameter is {{enum|Controlled|Status}}, then the value of {{param|CycleElementNumberOfEntries}} and {{param|CycleElementNumberOfEntries}} parameters SHOULD be 0. + When the value of the {{param|RelativeXPosition}} and {{param|RelativeYPosition}} parameters are 0, this indicates that the position of the LED is unknown. + + + + + + + + + + {{datatype|expand}} + + + + + + + + The internal name used to identify this LED. + + + + + + + + The status of the LED. + + + + + + The LED is currently not in use. + + + + + The LED is currently being used by the CPE. + + + + + Indicates that the LED is controlled from an electronic circuit which cannot be monitored. + + + + + The LED status cannot be determined by the CPE. + + + + + + + + The textual purpose that represents the visual display of the LED (e.g., Broadband Down). + + + + + + + + The number of cycle periods left for this LED. As each cycle period is completed this parameter is reduced by 1. A value of -1 indicates an infinite number of cycle period repetitions. + + + + + + + + + + The location of the LED as the user looks at the front of the device in its typical orientation (e.g., on-end, flat). + + + + + + + + + + + + + + + The relative x position of the LED from left to right (x) and top to bottom (y) as the user looks at the device from the orientation identified in the {{param|Location}} parameter in its typical orientation (e.g., on-end, flat). + + + + + + + + The relative y position of the LED from left to right (x) and top to bottom (y) as the user looks at the device from the orientation identified in the {{param|Location}} parameter in its typical orientation (e.g., on-end, flat). + + + + + + + + {{numentries}} + + + + + + + + + Each instance of this object describes the LED characteristics for a portion of the LED cycle period. + The pattern of lighting for the LED corresponding to this table (i.e., the LED cycle period) is defined by the illumination of the LED according to the entries in this table, taken sequentially in the order specified by the {{param|Order}} parameter, with the duration for the portion of the LED illumination corresponding to a given instance specified by the {{param|Duration}} parameter. + The other parameters of the instance of this object (e.g., Color, Brightness) describes the illumination characteristics applied to the LED for this {{object}} instance. + The length of the complete LED cycle is the sum of the Duration parameters for all of the entries in this table. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Enables or disables this {{object}} instance. + + + + + + + + The relative order of this {{object}} in the LED's cycle period. + + + + + + + + + + The color being displayed by the LED RGB hexadecimal notation (e.g., FF0088). + Note: If the parameter is set to an unsupported color the CPE MUST NOT infer a different color. + + + + + + + + + + The duration, in {{units}}, for this element of the cycle period. + + + + + + + + + + The interval corresponding to this {{object}} instance, in {{units}}, from the starting from the target illumination characteristics of the previous {{object}} instance to the target illumination characteristics of this {{object}} instance. + The transition to the target illumination characteristics is uniformly interpolated "perceptually" over the value of this {{param}} parameter. + + + + + + + + + + + This object describes the status of the current cycle element for this LED. + + + + This object describes the current properties of the {{object|#.CycleElement.{i}}} object instance that is currently active. + {{reference}} If the LED instances does not have a current cycle element active, this parameter MUST be set to {{empty}}. + + + + + + + + + + The color, formatted as RGB hexadecimal notation (e.g., FF0088), that is currently being displayed by the LED. + + + + + + + + + + The remaining duration, in {{units}}, for this element of the cycle period. + + + + + + + + + + + This object represents the objects necessary to manage and control the functionality for tests that utilize the Broadband Access Service Attributes and Performance Metrics measurement test framework as defined in by {{bibref|TR-304}}. + + + + {{numentries}} + + + + + + + + + This object represents the measurement endpoint that provides additional contextual information regarding the measurement agent. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Enables or disables this {{object}} instance. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + {{reference|a {{object|##.LMAP.MeasurementAgent}} object that is associated with this measurement endpoint.}} + + + + + + + + + + This parameter describes the ownership of the device that hosts the measurement endpoint. + {{enum}} + + + + + + ISP Owned Device + + + + + Customer Owned Device + + + + + + + + This parameter describes the operational domain for this measurement endpoint + + + + + + + + + + The top level Internet domain used to identify this measurement endpoint. + + + + + + + + + + If the value of this parameter is {{false}} then the Measurement Endpoint MUST not be included in measurement reports. + + + + + + + + + This object represents the information necessary to utilize an ISP owned device within the measurement endpoint. + + + + This parameter describes the measurement reference point of the measurement endpoint. + {{enum}} + + + + + + Internet Source Test Point + + + + + Internet Drain Test Point + + + + + Regional Network Test Point + + + + + Internal Regional Test Point + + + + + Metro Test Point + + + + + Internal Access Test Point + + + + + User Network Interface Test Point + + + + + Customer End Device Test Point + + + + + + + + {{reference|a {{object|###.DeviceInfo.Location}} object that describes the geographic location of the measurement endpoint}} + + + + + + + + + + + This object represents the information necessary to utilize customer owned device within the measurement endpoint. + + + + This parameter describes the customer equipment identifier of the measurement endpoint. + + + + + + + + + + The unique customer identifier within the operational domain for this measurement endpoint. + + + + + + + + + + + This object represents the objects necessary to manage and control the functionality for Large-Scale Measurement of Broadband Performance{{bibref|RFC7594}} as defined in by {{bibref|LMAPIFM}}. + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + This object represents the measurement agent that performs measurement tasks and reporting functions defined in {{bibref|RFC7594}}. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Enables or disables this {{object}} instance. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + Version of the measurement agent. + + + + + + + + Date and time, based on {{bibref|RFC3339}}, in UTC that the measurement agent was successfully started. + + + + + + + + Capabilities of the measurement agent that cannot be expressed elsewhere in the data model. + + + + + + + + + Identifier of the {{object}} instance. + + + + + + + + Identifier of the measurement group of interest to which the measurement agent belongs. + + + + + + + + + + Identifier of the measurement point indicating where the measurement agent is located on a path as defined in [bibref|RFC7398}}. + + + + + + + + + + If the value of the {{param|Identifier}} parameter is not {{empty}} and the value of this parameter is {{false}} then the value of the {{param|Identifier}} parameter MUST not be included in measurement reports. + + + + + + + + + If the value of the {{param|GroupIdentifier}} parameter is not {{empty}} and the value of this parameter is {{false}} then the value of the {{param|GroupIdentifier}} parameter MUST not be included in measurement reports. + + + + + + + + + If the value of the {{param|MeasurementPoint}} parameter is not {{empty}} and the value of this parameter is {{false}} then the value of the {{param|MeasurementPoint}} parameter MUST not be included in measurement reports. + + + + + + + + + {{reference|a {{object|##.Security.Certificate}} object that is used to identify this measurement agent}} + + + + + + + + + + {{reference|a {{object|##.Security.Certificate}} object that is used to contain the private keys for this measurement agent}} + + + + + + + + + + {{reference|a {{object|##.DeviceInfo.VendorLogFile}} object that is used to record events for this measurement agent}} + + + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + This object represents a capabilities, in the context of a task, that are supported by the measurement agent. Types of capabilities include: Report tasks, Configuration Tasks and Instruction Tasks. + + + + + + + Name of the supported task. + + + + + + + + + + Version of the task. + + + + + + + + + + {{numentries}} + + + + + + + + + This object represents a registry function and an associated list of roles supported by this measurement agent + + + + + + + A URI ({{bibref|RFC3986}}) that is the value of the task registry entry as defined in {{bibref|LMAPREG}} or a value for a task that is understood by the measurement agent, measurement controller and measurement collector. + + + + + + + + {{list| representing the roles of the function}} + + + + + + + + + + + + This objects represents the measurement controller that is assigned to a measurement agent. + + + + The timer, in {{units}}, that is started after each successful contact with a measurement controller. + When the timer reaches the timeout en event is raised indicating that connectivity to the controller has been lost. + + + + + + + + + + + {{list}} {{reference|a {{object|#.Schedule}} object}} + This parameter lists the available control schedules for invoking control tasks by the measurement agent. + + + + + + + + + + + {{list}} {{reference|a {{object|#.Task}} object}} + This parameter lists the available control tasks that can be invoked by the measurement agent. + + + + + + + + + + + {{list}} {{reference|a {{object|#.CommunicationChannel}} object}} + The measurement agent to measurement controller channel is used for conveying results of communication sessions with the configuration, instruction status and logging information elements defined in defined in {{bibref|LMAPIFM}}. + + + + + + + + + + + + This object represents a schedule that is associated with a set of scheduled actions to be performed by a measurement agent. + Note: Actions of an occurrence of this {{object}} are gracefully terminated by the defining either the {{param|End}} or {{param|Duration}} parameters. Only one of these parameters may be defined at a time. + + + + + + + + + + Enables or disables this {{object}} instance. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + {{datatype|expand}} + + + + + + + + Name of the schedule. + + + + + + + + + + The current operational state of the Schedule. Only one instance of the schedule is active. An active schedule is defined where the {{param}} parameter has a value of {{enum|Running|State}}. + {{enum}} + + + + + + + + + + + + + {{reference|a {{object|##.Event}} object that is used define the event to start an occurrence of this {{object}}}} + + + + + + + + + + {{reference|a {{object|##.Event}} object that is used define the event to gracefully terminate all actions associated with an occurrence of this {{object}}}}. + + + + + + + + + + + When the {{param}} value is not 0, this parameter is used define the duration, in {{units}}, where after this duration all actions associated with an occurrence of this {{object}} are gracefully terminated. + + + + + + + + + + + {{list|each entry represents tags that are to be reported together with the measurement results.}} + + + + + + + + + {{list|representing the suppression tags to be matched}} + + + + + + + + + This parameter describes the execution method to apply to this schedule for the associated Actions. + {{enum}} + + + + + + Actions are executed in sequence as defined by the value of the {{param|Action.{i}.Order}} parameter. + The first Scheduled Action of the DestinationOutput is provided the input. + + + + + Actions are executed in parallel. + The all Scheduled Actions of the DestinationOutput are provided the input. + + + + + Actions are executed in sequence where the output of one Action is used as the input of subsequent Action. + The first Scheduled Action of the DestinationOutput is provided the input. + + + + + + + + + Date and time, based on {{bibref|RFC3339}}, in UTC that the {{object}} was invoked by the measurement agent. + + + + + + + + The amount of secondary storage, in {{units}}, allocated to an instance of this {{object}}. + The value of this parameter reflects the amount of allocated physical storage and not the storage used by logical data records. + For example the secondary storage can be the storage allocated in a file system holding temporary data. + + + + + + + + + + {{numentries}} + + + + + + + + + This object represents the statistics associated with this object. + + + + Number of invocations of this schedule. This counter does not include suppressed invocations or invocations that were prevented due to an overlap with a previous invocation of this schedule. + + + + + + + + Number of suppressed executions of this schedule. + + + + + + + + Number of executions prevented due to overlaps with a previous invocation of this schedule. + + + + + + + + Number of failed executions of this schedule. A failed execution is an execution where at least one action failed. + + + + + + + + + This object represents an action that is associated with the this {{object|##.Schedule}} object. + + + + + + + Enables or disables this {{object|##.Schedule.{i}.Action}} object. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + {{datatype|expand}} + + + + + + + + The current operational state of the {{object}}. {{enum}} + + + + + + + + + + + + + The order of the scheduled action. + + + + + + + + {{reference|a {{object|##.Task}} object used in this scheduled action}} + + + + + + + + + + {{list}} {{reference|a {{object|##.Schedule}} object used to receive the output(s) of this scheduled action}} + + + + + + + + + + + {{list|representing the suppression tags to be matched}} + + + + + + + + + {{list|each entry represents tags that are to be reported together with the measurement results.}} + + + + + + + + + The amount of secondary storage, in {{units}}, allocated to an instance of this {{object}}. + The value of this parameter reflects the amount of allocated physical storage and not the storage used by logical data records. + For example the secondary storage can be the storage allocated in a file system holding temporary data. + + + + + + + + + + Date and time, based on {{bibref|RFC3339}}, in UTC that the {{object}} was invoked by the measurement agent. + + + + + + + + Date and time, based on {{bibref|RFC3339}}, in UTC of a successful completion of the {{object}}. + + + + + + + + The status code returned by successful execution of the {{object}}. A value of 0 indicates successful completion. + + + + + + + + The message associated with the successful completion of the {{object}}. + + + + + + + + Date and time, based on {{bibref|RFC3339}}, in UTC of a failure to complete the {{object}}. + + + + + + + + The status code returned by failed execution of the {{object}}. A value of 0 indicates successful completion. + + + + + + + + The message associated with the failure to complete the task. + + + + + + + + {{numentries}} + + + + + + + + + This object represents the statistics associated with this object. + + + + Number of invocations of this action. This counter does not include suppressed invocations or invocations that were prevented due to an overlap with a previous invocation of this schedule. + + + + + + + + Number of suppressed executions of this action. + + + + + + + + Number of executions prevented due to overlaps with a previous invocation of this action. + + + + + + + + Number of failed executions of this action. A failed execution is an execution where at least one action failed. + + + + + + + + + This object represents an option associated with the Scheduled Action. When an option with the same Name exists between the Seheduled Action's Option and The Task's option, the option of the Scheduled Action takes precedence over the option associated with the Task. + + + + + + + + + + Enables or disables this {{object}} instance. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + {{datatype|expand}} + + + + + + + + The order of the Option. + + + + + + + + The name of the option. + When the value of this parameter is equal to "channel", the option value specifies the Communication Channel used for this scheduled task. + + + + + + + + The value associated with the Option. + + + + + + + + + The {{object}} object defines the configuration for a task that can be performed by {{object|##.MeasurementAgent}} objects. + Tasks are performed by {{object|##.MeasurementAgent}} objects when a {{object|#.Schedule}} object invokes the Task. + + + + + + + + + + Enables or disables this {{object}} instance. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + {{datatype|expand}} + + + + + + + + Name of the task. + + + + + + + + + + {{list|each entry represents tags that are to be reported together with the measurement results.}} + + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + This object represents a registry function and an associated list of roles for this task + + + + + + + + + + Enables or disables this {{object}} instance. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + {{datatype|expand}} + + + + + + + + A URI ({{bibref|RFC3986}}) that is the value of the task registry entry as defined in {{bibref|LMAPREG}} or a value for a task that is understood by the measurement agent, measurement controller and measurement collector. + + + + + + + + {{list| representing the roles of the function}} + + + + + + + + + + + + This object represents an option associated with the task. + + + + + + + + + + Enables or disables this {{object}} instance. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + {{datatype|expand}} + + + + + + + + The order of the Option. + + + + + + + + The name of the option. + When the value of this parameter is equal to "channel", the option value specifies the Communication Channel used for this task. + + + + + + + + The value associated with the Option. + + + + + + + + + This object represents the properties communication channel used to establish communication between a measurement agent and other elements of the LMAP framework (e.g., measurement controller, measurement collector). The value of the {{param|Name}} parameter used for conveying information is defined as an option in the Task's or scheduled Task's option parameter. + When this object uses the BulkData capability, a {{object|###.BulkData.Profile.{i}}} object instance referred to by this object. + + + + + + + + + + Enables or disables this {{object}} instance. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + {{datatype|expand}} + + + + + + + + Name of the channel. + + + + + + + + + + Enables or disables the ability to use a bulk data profile for this communication channel + + + + + + + + {{reference|a {{object|###.BulkData.Profile}} object that is used to represent communication channel}} + + + + + + + + + + The {{datatype}} of the LMAP component that is the target of this communication channel. + + + + + + + + {{reference|a {{object|###.Security.Certificate}} object that is used to identify the target of this channel}} + + + + + + + + + + {{reference|an interface object used to restrict the data transmitted or received using this channel to a specific interface}} If the value of this parameter is {{empty}} the data that is transmitted or received using this channel is able to use any available interface. + + + + + + + + + + + The {{object}} object defines the instruction to the measurement agent by the measurement controller. At most one {{object}} object for the {{object|##.MeasurementAgent}} instance is enabled at a time. . + + + + + + + Enables or disables this {{object}} instance. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + {{datatype|expand}} + + + + + + + + Date and time, based on {{bibref|RFC3339}}, in UTC that the {{object}} object or its sub-object's configuration was changed by a measurement agent's controller. + + + + + + + + {{list}} {{reference|a {{object|#.Schedule}} object}} + This parameter lists the available instruction schedules for invoking control tasks by the measurement agent. + + + + + + + + + + + {{list}} {{reference|a {{object|#.Task}} object}} + This parameter lists the available instruction tasks that can be invoked by the measurement agent. + + + + + + + + + + + {{list}} {{reference|a {{object|#.CommunicationChannel}} object}} + This parameter defines the corresponding report channels to be used when reporting results of tasks to a measurement collector. + + + + + + + + + + + {{numentries}} + + + + + + + + + This object defines the schedules and actions that are suppressed based on criteria defined in the {{param|SuppressionMatch}} parameter. + + + + + + + + + + Enables or disables this {{object}} instance. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + {{datatype|expand}} + + + + + + + + Name of the suppression object. + + + + + + + + + + The current operational state of the {{object}}. {{enum}} + + + + + + + + + + + + When {{true}}, the measurement agent is instructed to stop running schedules or actions that have been matched by this object. + + + + + + + + + {{reference|a {{object|###.Event}} object that is used define the event that to start an occurrence of this {{object}}}} When {{empty}} the default behavior is to perform the suspension event immediately. + + + + + + + + + + + {{reference|a {{object|###.Event}} object that is used define the event to gracefully suspend all actions associated with an occurrence of this {{object}}}} When {{empty}} the default behavior is for the suspension period to be indefinite. + + + + + + + + + + + {{list|representing the match patterns to be used for applying suppression to {{object|##.Schedule.{i}}} (and their actions) and all {{object|##.Schedule.{i}.Action.{i}}} object instances that have a matched using their SuppressionTags parameters}} The match pattern syntax is defined in {{bibref|LMAPIFM}}. + + + + + + + + + + This {{object}} object instance represents a report that is generated by a reporting task where the reporting task is defined as a {{object|#.MeasurementAgent.{i}.Task.{i}}} and executed as a scheduled action ({{object|#.MeasurementAgent.{i}.Schedule.{i}.Action.{i}}}). + The {{object}} replicates the {{object|#.MeasurementAgent.{i}}} object instance's data at the time of the action exection. + When a {{object|##.BulkData.Profile.{i}}} object instance is used to communicate a {{object}} instance, the CPE adds a {{object|##.BulkData.Profile.{i}.Parameter.{i}}} object instance referring to this {{object}} object instance. + + + + The report date and time, based on {{bibref|RFC3339}}, that the report was sent to the collector. + + + + + + + + Identifier of the measurement agent at the time the measurement was run. + + + + + + + + Identifier of the measurement group of interest to which the MA belongs. + + + + + + + + Identifier of the measurement point indicating where the measurement agent is located on a path as defined in {{bibref|RFC7398}}. + + + + + + + + + + {{numentries}} + + + + + + + + + The {{object}} object provides the meta-data of the result report of a single executed action that produced the result. + + + + + + + + + Name of the task that produced the result. + + + + + + + + + + Name of the schedule that produced the result. + + + + + + + + + + Name of the action that produced the result. + + + + + + + + + + The date and time, based on {{bibref|RFC3339}}, that the event that triggered the schedule of the action that produced the reported result values in UTC. + + + + + + + + The date and time, based on {{bibref|RFC3339}}, that the action started in UTC. + + + + + + + + The date and time, based on {{bibref|RFC3339}}, that the action was completed in UTC. + + + + + + + + The cycle number derived from the {{param|EventTime}}. + The cycle number is the time, in UTC, closest to the {{param|EventTime}} that is a multiple of the cycle interval of the event that triggered the execution of the schedule. + The value is valid if the event that triggered the execution of the schedule has a defined cycle interval. An {{empty}} value represent an invalid CycleNumber. + {{pattern}} + + + + + + + + + + The status code returned by the execution of the action. + + + + + + + + {{list|each entry represents tags defined for the schedule, task and action objects that produced this result}} + + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + This object represents an option associated with the task or action object that produced the result. + + + + + + + The order of the Option. + + + + + + + + The name of the Option. + When the value of this parameter is equal to "channel", the option value specifies the Communication Channel used for this task. + + + + + + + + The value associated with the Option. + + + + + + + + + This object represents actions that might have impacted the results being reported. + + + + + + + + + Name of the task. + + + + + + + + + + Name of the schedule. + + + + + + + + + + Name of the action. + + + + + + + + + + + This {{object}} object instances represents a row of results. + + + + {{list}} This parameter contains the column labels used for the result. + The column labels are ordered with the corresponding entries in the {{object|ResultRow}} table. + + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + This {{object}} object instances represents a row of results for the report. + + + + {{list}} This parameter contains an ordered set of values that align to the columns defined in the {{param|#.ColumnLabels}} parameter. + + + + + + + + + + This object represents a registry function and an associated list of roles for this result report. + + + + + + + A URI ({{bibref|RFC3986}}) that is the value of the registry entry as defined in {{bibref|LMAPREG}} or a value for a task that is understood by the measurement agent, measurement controller and measurement collector. + + + + + + + + {{list| representing the roles of the function}} + + + + + + + + + + + + This object defines the information associated with an event used within the measurement agent. Event instances may be referenced by various objects within the LMAP model. + + + + + + + + + + Enables or disables this {{object}} instance. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + {{datatype|expand}} + + + + + + + + Name of the Event. + + + + + + + + + + This parameter describes the type of {{object}} for this object instance. The timing of the event occurrence is adjusted based on the value of the {{param|RandomnessSpread}} parameter. + {{enum}} + + + + + + Periodic Timing Event. When selected one or more event occurrences are emitted based on the parameters defined in the {{object|PeriodicTimer}} object. + + + + + Calendar Timing Event. When selected one or more event occurrences are emitted based on the parameters defined in the {{object|CalendarTimer}} object. + + + + + One-off Timing Event. When selected a single event occurrence is emitted based on the parameters defined in the {{object|OneOff}} object. + + + + + Immediate Timing Event. When selected a single event occurrence is emitted as soon as possible. + + + + + Startup Timing Event. When selected a single event occurrence is emitted when the corresponding measurement agent starts up. + + + + + Controller Lost Event. When selected a single event occurrence is emitted when the connectivity to the controller is lost. + + + + + Controller Connected Event. When selected a single event occurrence is emitted when the connectivity to the controller is established. + + + + + + + + + The spread, in {{units}}, of the Uniform Discrete random distribution algorithm. A value of 0 means that the random algorithm is not applied. + + + + + + + + + + The duration of the time interval, in {{units}}, that used to calculate cycle numbers. + + + + + + + + + + + This object defines a periodic timer instance. The periodic timer instance has attributes for when the timer is to begin ({{param|StartTime}}) and end ({{param|EndTime}}) as well as the interval to use. + + + + Date and time, based on {{bibref|RFC3339}}, that the {{object}} instance is to begin operation. + + + + + + + + Date and time, based on {{bibref|RFC3339}}, that the {{object}} instance is to end operation. + + + + + + + + The tolerable duration, in {{units}}, of the interval for this {{object}} instance. + + + + + + + + + + + This object defines a calendar timer instance. + The calendar timer instance has attributes for when the timer is to begin ({{param|StartTime}}) and end ({{param|EndTime}}) as well as the schedule of the recurrence. + The algrorithm that defines how the schedule elements are evaluated is defined in {{bibref|LMAPIFM}}. + If the value of any of the {{param|ScheduleMonths}}, {{param|ScheduleDaysOfMonth}}, {{param|ScheduleDaysOfWeek}}, {{param|ScheduleHoursOfDay}}, {{param|ScheduleMinutesOfHour}} or {{param|ScheduleSecondsOfMinute}} is {{empty}} then any actions that use this object will not be invoked. + + + + Date and time that the {{object}} instance is to begin this operation. + + + + + + + + Date and time that the {{object}} instance is to end this operation. + + + + + + + + This parameter represents either a list of the months of year that are applied to the schedule or an asterisk (*) that represents all the elements of the list. + Each entry in the months of the year list can be a numeric value or the name of the month (january (1), february (2), march (3), april (4), may (5), june (6), july (7), august (8), september (9), october (10), november (11), december (12)). + + + + + + + + This parameter represents either a list of the days of the month (1-31) that are applied to the schedule or an asterisk (*) that represents all the elements of the list. + + + + + + + + This parameter represents either a list of the days of the week that are applied to the schedule or an asterisk (*) that represents all the elements of the list. + Each entry in the days of the week list can be a numeric value or the name of the day (sunday (1), monday (2), tuesday (3), wednesday (4), thursday (5), friday (6), saturday (7)). + + + + + + + + This parameter represents either a list of the hours of the day (0-23) that are applied to the schedule or an asterisk (*) that represents all the elements of the list. + + + + + + + + This parameter represents either a list of the minutes of the hour (0-59) that are applied to the schedule or an asterisk (*) that represents all the elements of the list. + + + + + + + + This parameter represents either a list of the minutes of the hour (0-59) that are applied to the schedule or an asterisk (*) that represents all the elements of the list. + + + + + + + + When {{true}}, the value of the {{param|ScheduleTimezoneOffset}} parameter is applied to the schedule elements. + When {{false}}, the device's system timezone offset is applied to the schedule elements. + + + + + + + + The timezone offset, in {{units}}, to be applied to the schedule elements. + + + + + + + + + + + + This object defines a one off timer instance. + + + + Date and time, based on {{bibref|RFC3339}}, that the {{object}} instance is to begin operation. + + + + + + + + + Base object for Wireline Wireless Convergence. The controller can use this object to learn the supported 5G features and whether the 5G-RG is operating in 5G mode. + + + + {{list}} Wireline Wireless Convergence hardware capabilities supported by the CPE. {{enum}} + + + + + + + Able to use the 5G Radio Access Network + + + + + Able to use the 4G (LTE) Radio Access Network + + + + + Able to use fixed access networks + + + + + + + + {{list}} Wireline Wireless Convergence software capabilities supported by the CPE. {{enum}} + + + + + + + Able to use PPPoE or IPoE as specified in {{bibref|TR-124i5}} or earlier + + + + + Able to use 5G capabilities such as specified in {{bibref|TR-124i6}} + + + + + Able to support multi access PDUs using Access Traffic Steering Switching Splitting (ATSSS) + + + + + + + + Sets the mode the CPE is operating in. Whilst the CPE is expected to auto-negotiate, a service provider may need to lock the CPE in {{enum|FN-RG}} or {{enum|5G-RG}} mode for stability. {{enum}} + + + + + + The CPE only attempts to authenticate using PPPoE or IPoE + + + + + The CPE only attempts to register using 5G NAS + + + + + The CPE may operate in either mode + + + + + + + + + The mode the CPE is operating in. A CPE in {{enum|Negotiating}} is deemed to be auto-negotiating its operational mode. {{enum}} + + + + + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + Each table entry describes a single access network. The entire table is built by the 5G-RG upon startup. The primary purpose is to show the registration and connectivity status of each access network. Typically a 5G-RG would register on each available access network. A minimum of one access network must be in the CM-CONNECTED state in order to support N1 messaging. + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the Access Network entry as assigned by the CPE. + + + + + + + + + + {{reference}} Specifies the egress interface associated with this "AccessNetwork" entry. This MUST be a layer 1 interface. + + + + + + + + + + + The registration status of this entry. See {{bibref|3GPP-TS.23.501|Clause 5.3.2}}. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + The 5G-RG has sucessfully authenticated and has been assigned an AMF to manage it. + + + + + The 5G-RG is no longer managed by an AMF. + + + + + The access network will always start in this state and indicates that the 5G-RG has never registered to the access network. This state is only used by the 5G-RG and is never present in the AMF. + + + + + The {{param|LastError}} parameter is updated with the detail of this error. + + + + + + + + The connection status of this entry. A 5G-RG is deemed in the {{enum|CM_CONNECTED|ConnectionStatus}} state if there is a NAS signalling connection established between the 5G-RG and AMF. If {{param|RegistrationStatus}} transitions from {{enum|RM_REGISTERED|RegistrationStatus}} to {{enum|RM_DEREGISTERED|RegistrationStatus}}, the status of {{param}} must change to {{enum|CM_UNDEFINED||ConnectionStatus}}. See {{bibref|3GPP-TS.23.501|Clause 5.3.3}}. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + The 5G-RG does not have a NAS connection over N1 to the AMF. + + + + + The 5G-RG does have a NAS connection over N1 to the AMF. + + + + + The access network will always start in this state and indicates that the 5G-RG is not registered to the access network. This state is only used by the 5G-RG and is never present in the AMF. + + + + + The {{param|LastError}} parameter is updated with the detail of this error. + + + + + + + + The access network type of this entry. {{enum}} + + + + + + + + + + + + Error code. See {{bibref|3GPP-TS.24.501|Clause 9.11.4.2}} + + + + + + + + + A 5G Globally Unique Temparary Identity (GUTI) securely identifes an CPE by keeping the permanent User Equipment (UE identifier (IMSI) hidden. This identity is globally unique and assigned by the AMF at the time of registration. + See {{bibref|3GPP-TS.23.003|.Clause 2.10}}. + + + + The Public Land Mobile Network (PLMN) globally identifies the service provider. A PLMN consists of a country code (MCC) and a network code (MNC). + See {{bibref|3GPP-TS.23.003|Clause 12.1}}. + For example, a PLMN of 50101 refers to MCC 501 (Australia) and MNC 01 (Telstra). + + + + + + + + The AMFId identifies an AMF instance within a service provider's network. In conjunction with the PLMN, it forms a Globally Unique AMF Id (GUAMI) which globally uniquely identifes an AMF. + See {{bibref|3GPP-TS.23.003|Clause 2.10}}. + + + + + + + + The Temporary Mobile Subscriber Identity (TMSI) is allocatred by the AMF at the time of registration and uniquely identifies the CPE. + See {{bibref|3GPP-TS.23.003|Clause 2.4}}. + + + + + + + + + User equipment Router Selection Policy (URSP) is a table of rules used to determine which network slice and data network to route a PDU over. Typically a 5G-RG would search the URSP table in precedence order matching the traffic descriptor types against the service it was setting up. For example a 5G-RG would search for 'connection capabilities' matching 'ims' in order to establish a dedicated PDU session for telephony. + See {{bibref|3GPP-TS.24.526|Clause 5.2}} for a full descrption of the URSP data elements. + + + + + + + + + + {{datatype|expand}} + + + + + + + + The precedence value of URSP rule field is used to specify the precedence of the URSP rule among all URSP rules in the URSP. The precedence value in the range from 0 to 255 (decimal). The higher the value of the precedence value field, the lower the precedence of the URP rule is. Multiple URSP rules in the URSP shall not have the same precedence value. + + + + + + + + + + {{numentries}} + + + + + + + + + A set of rules for a given precedence that must be matched in order to select a router in the form of data network and slice. Selection criteria range from destination IP addresses to connection capabilities. + + + + + + + {{datatype|expand}} + + + + + + + + Traffic Descriptor Type. See {{bibref|3GPP-TS.24.526|Clause 5.2}}. + + + + + + + + Traffic descriptor value. See {{bibref|3GPP-TS.24.526|Clause 5.2}}. + + + + + + + + + + {{numentries}} + + + + + + + + + This object describes the URSP Route Selection Descriptor table which provides a table of data networks and network slices used in PDU establishment. Table entries are used in precedence order until a successful PDU session is established. + See ((bibref|3GPP-TS.23.503|Annex A}} for an example URSP rule traversal. + + + + + + + + + + {{datatype|expand}} + + + + + + + + The precedence value of route selection descriptor field is used to specify the precedence of the route selection descriptor among all route selection descriptors in the URSP rule. The precedence value in the range from 0 to 255 (decimal). The higher the value of the precedence value field, the lower the precedence of the route selection descriptor is. + + + + + + + + + + Session and Service Continuity (SSC) Mode: Indicates that the traffic of the matching application shall be routed via a PDU Session supporting the included SSC Mode. See {{bibref|3GPP-TS.24.501|Clause 9.11.4.16}}. + + + + + + + + + + The DNN value contains an APN as defined in {{bibref|3GPP-TS.23.003|Clause 9.1.1}}. + + + + + + + + + + PDU session type. See {{bibref|3GPP-TS.24.501|Clause 9.11.4.11}}. {{enum}} + + + + + + + + + + + + + The preferred access type for the PDU session. For a 5G-RG non-3GPP refers to any fixed access technology. + See {{bibref|3GPP-TS.24.501|Clause 9.11.3.11}}. {{enum}} + + + + + + + + + + + + Describes a S-NSSAI Information element providing network slice specification. + See {{bibref|3GPP-TS.24.501|Clause 9.11.2.8}} + + + + The Slice Service Type (SST). {{enum}} + See {{bibref|3GPP-TS.23.501|Clause 5.15.2.2}}. + + + + + + + + The Slice differentiator is an optional number used to differentiate network slices with the same SST. + See {{bibref|3GPP-TS.23.501|Clause 5.15.2.1}}. + + + + + + + + + The logical connection between the 5G-RG and data network is the Protocol Data Unit (PDU). The Device.PDU subtree describes each PDU sessions properties together with the QoS rules specific to that PDU session. + + + + {{numentries}} + + + + + + + + + Contains all the properties of a PDU session instance, ranging from maximum bitrate through to assigned network slice. This object contains the {{object}} table. + + + + + + + + + + {{datatype|expand}} + + + + + + + + {{reference}} The IP Interface associated with the ''PDU'' entry. + + + + + + + + + + + PDU session identity. See {{bibref|3GPP-TS.24.501|Clause 9.4}}. + + + + + + + + + + Procedure transaction identity. See {{bibref|3GPP-TS.24.501|Clause 9.6}}. + + + + + + + + + + The PDU session type indicating the protocol the PDU is capable of carrying. See {{bibref|3GPP-TS.24.501|Clause 9.11.4.11}}. {{enum}} + + + + + + + + + + + + + Session and Service Continuity (SSC) Mode: Indicates that the traffic of the matching application shall be routed via a PDU Session supporting the included SSC Mode. See {{bibref|3GPP-TS.24.501|Clause 9.11.4.16}} + + + + + + + + + + Downlink Aggregate Maximum Bit Rate in {{units}}. See {{bibref|3GPP-TS.24.501|Clause 9.11.4.14}}. + + + + + + + + + + Uplink Aggregate Maximum Bit Rate in {{units}}. See {{bibref|3GPP-TS.24.501|Clause 9.11.4.14}}. + + + + + + + + + + Error code. See {{bibref|3GPP-TS.24.501|Clause 9.11.4.2}} + + + + + + + + The IPv4 address allocated to the PDU session by the SMF. This parameter is only valid if {{param|SessionType}} has a value of {{enum|IPv4|SessionType}} or {{enum|IPv4v6|SessionType}}. See {{bibref|3GPP-TS.24.501|Clause 9.11.4.10}}. + + + + + + + + The interface identifier for the IPv6 link local address allocated to the PDU session by the SMF. This parameter is only valid if {{param|SessionType}} has a value of {{enum|IPv6|SessionType}} or {{enum|IPv4v6|SessionType}}. See {{bibref|3GPP-TS.24.501|Clause 9.11.4.10}}. + + + + + + + + Reflective QoS timeout in {{units}}. See {{bibref|3GPP-TS.24.501|Clause 9.11.2.3}}. + + + + + + + + + + Always on PDU session indication. The purpose of the Always-on PDU session indication information element is to indicate whether a PDU session is established as an always-on PDU session. + See {{bibref|3GPP-TS.24.501|clause 9.11.4.3}}. + + + + + + + + The Data Network Name used by the PDU. The DNN value may be from the optional S-NSSAI specified at the time of PDU establishment or a default determined by the 5G core. A DNN is analagous to an LTE APN used the same format defined in {{bibref|3GPP-TS.24.501|clause 9.11.2.1A}}. + + + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + Policy Configuration Options (PCO) is an optional set of configuration parameters supplied by the network at the request of the 5G-RG as defined in {{bibref|3GPP-TS.24.008|clause 10.5.6.3}}. + + + + The IPv6 address of the P-CSCF used for VoLTE telephony. + + + + + + + + A comma separated list of IPv6 DNS servers. + + + + + + + + + + The IPv4 address of the P-CSCF used for VoLTE telephony. + + + + + + + + A comma separated list of IPv4 DNS servers. + + + + + + + + + + + Describes a S-NSSAI Information element providing network slice specification. + See {{bibref|3GPP-TS.24.501|Clause 9.11.2.8}} + + + + The Slice Service Type (SST). {{enum}} + See {{bibref|3GPP-TS.23.501|Clause 5.15.2.2}}. + + + + + + + + The Slice differentiator is an optional number used to differentiate network slices with the same SST. + See {{bibref|3GPP-TS.23.501|Clause 5.15.2.1}}. + + + + + + + + + This object describes the PDU QoS Rule table. The purpose of the QoS Rule table is to assign a QFI to mark traffic based on a set of classification rules. The rules are set by the netowrk operator and are specific for each PDU. + For example: + * A QoS Rule with a default used for general traffic has the following parameters. + * QFI=1 + * DQR=1 - Default rule + * Filter 1 for rule + * Direction=bidirectional + * Type=1 - Match all + * A QoS Rule matchihg a voice service. + * QFI=32 + * DQR=0 + * Filter 1 for rule + * Direction=bidirectional + * Type=33 - Destination IPv6 range + * Value=2001:8000/48 - Destination IPv6 range + * Filter 2 for rule + * Direction=bidirectional + * Type=16 - Destination IPv4 address with netmask + * Value=203.1.0.0 255.255.255.0 - Destination IPv4 address with netmask + A full description can be found at {{bibref|3GPP-TS.24.501|clause 9.11.4.13}} QoS Rules + + + + + + + + + + {{datatype|expand}} + + + + + + + + The QoS rule identifier field is used to identify the QoS rule. + + + + + + + + + + The QoS rule precedence field is used to specify the precedence of the QoS rule among all QoS rules. The higher the value of the QoS rule precedence field, the lower the precedence of that QoS rule is. + + + + + + + + + + In the UE to network direction the segregation bit indicates whether the UE is requesting the network to bind service data flows described by the QoS rule to a dedicated QoS Flow. When {{true}} segregation is requested. + + + + + + + + QoS Flow identifier. + + + + + + + + + + Default QoS rule flag. When {{true}} this QoS rule is the default QoS rule. + + + + + + + + {{numentries}} + + + + + + + + + This object describes the PDU QoS Rule Filter table. As each packet filter is logically anded with the others, there shall not be more than one occurrence of each packet filter component type. + + + + + + + {{datatype|expand}} + + + + + + + + The packet filter direction field is used to indicate for what traffic direction the filter applies. See {{bibref|3GPP-TS.24.501|Clause 9.11.4.13}} {{enum}} + + + + + + + + + + + + Packet filter component type identifier. See {{bibref|3GPP-TS.24.501|Clause 9.11.4.13}}. + + + + + + + + Matching value for the component type. See {{bibref|3GPP-TS.24.501|Clause 9.11.4.13}}. + + + + + + + + + + + Table of all QoS Flow Indicators (QFI) and their properties supported by the access network for this particular PDU. + For example: + * A QoS Flow with a QFI of 1 used for general traffic has the following parameters. + * FiveQI=8 + * A QoS Flow with a QFI of 32 used for voice traffic with a guaranteed bitrate of 150k has the following parameters. + * FiveQI=1 + * GFBRUplink=150 + * GFBRDownlink=150 + + + + + + + + + + {{datatype|expand}} + + + + + + + + QoS Flow Identifier. + + + + + + + + + + 5G QoS Identifier. See {{bibref|3GPP-TS.23.501|Clause 5.7.4}} for a table of standardised 5QI QoS characteristics. + + + + + + + + + + Guaranteed Flow Bitrate - Upstream (expressed in {{units}}). + + + + + + + + + + Guaranteed Flow Bitrate - Downstream (expressed in {{units}}). + + + + + + + + + + Maximum Flow Bitrate - Upstream (expressed in {{units}}). + + + + + + + + + + Maximum Flow Bitrate - Downstream (expressed in {{units}}). + + + + + + + + + + Averaging window for both uplink and downlink in {{units}}. + + + + + + + + + + EPS Bearer Identity. See {{bibref|3GPP-TS.24.301|Clause 9.3.2}}. + + + + + + + + + 5G Wireline wireless Encapsulation transport for data plane. See {{bibref|FWEREG}}. + + + + {{numentries}} + + + + + + + + + 5G Wireline wireless Encapsulation link layer table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). + + + + + + + + + + The current operational state of the link (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the link as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the link entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + + + + + + + + + + + + + + Throughput statistics for this interface. + The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled). Operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + The total number of {{units}} transmitted out of the interface, including framing characters. + + + + + + + + + + The total number of {{units}} received on the interface, including framing characters. + + + + + + + + + + The total number of packets transmitted out of the interface. + + + + + + + + The total number of packets received on the interface. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of packets requested for transmission which were not addressed to a multicast or broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were not addressed to a multicast or broadcast address at this layer. + + + + + + + + The total number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a multicast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a multicast address at this layer. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a broadcast address at this layer. + + + + + + + + The total number of packets received via the interface which were discarded because of an unknown or unsupported protocol. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + REQUIRED only for devices that support NAT. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + REQUIRED only for IPv4 capable devices. + + + + + REQUIRED only for IPv4 capable devices. + + + + + REQUIRED only for IPv6 capable devices. + + + + + REQUIRED only for IPv6 capable devices. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Note: This profile is valid for G.992.1 modems. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Note: This profile is valid for G.992.3 and G.992.5 modems. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Note that support for this profile implies support for the requirements of {{bibref|TR-069|Annex O}}. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + REQUIRED only for IPv4 capable devices. + + + + + REQUIRED only for IPv6 capable devices. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + REQUIRED only for IPv4 capable devices. + + + + + REQUIRED only for IPv6 capable devices. + + + + + + REQUIRED only for IPv4 capable devices. + + + + + + REQUIRED only for IPv6 capable devices. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 802.1x Authentication provisioning information used for MD5 shared secret exchange. This object will not exist if EAP-MD5 is not a supported authentication type. + + + + + + + 802.1x Authentication provisioning information used for TLS certificate authentication. This object will not exist if the EAP-TLS is not a supported authentication type. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + This table is REQUIRED to support sending of option 60 (Vendor Class Identifier) and option 77 (User Class Identifier) values. + + + + + + + + This table is REQUIRED to support requesting of option 60 (Vendor Class Identifier), option 61 (Client Identifier) and option 77 (User Class Identifier) values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Note: This profile is valid for G.992.1 modems. + + + + + + + + + + + + + + + + + + Note: This profile is valid for G.992.3 and G.992.5 modems. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Note: This profile is valid for G.993.2 modems. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Provides MQTT client control + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Provides basic MQTT client control and statistics + + + + + + + + + + + + + + + + + + + + + + + + + + Adds client subscription control and access to received topics + + + + + + + + + + + + + Provides basic MQTT broker control and statistics + + + + + + + + + + + + + + + + + + + + + + Adds parameters for MQTT network interconnection with Bridges + + + + + + + + + + + + + + + + + + + + + + + + + + + + Adds client authentication and extends statistics + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Note: This profile is valid for G.9701 modems. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + This profile implies support for all of the Gateway requirements defined in {{bibref|TR-069|Annex F}}. + + + + + + + + + + + + + + This profile only applies to Internet Gateway Devices that are acting as CPE behind a NAT gateway as described in {{bibref|TR-069|Annex G}}, and implies support for all of the CPE requirements defined within Annex G. + + + + + + + + + + + + + + + + Note that support for this profile implies support for the requirements of {{bibref|TR-069|Annex L}}. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + This profile is IPv4 specific. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + REQUIRED only for IPv6 capable devices. + + + + + + REQUIRED only for IPv6 capable devices. + + + + + + + + + + + + + + + + + + + + + Adds client authentication, will handling and extends statistics + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/test/tools/tr-181-2-14-1-usp-full.xml b/test/tools/tr-181-2-14-1-usp-full.xml new file mode 100644 index 00000000..2070c36b --- /dev/null +++ b/test/tools/tr-181-2-14-1-usp-full.xml @@ -0,0 +1,64192 @@ + + + + + + {{docname|Device:2 Root Data Model for USP (TR-369)}} + {{appdate|November 2020}} + {{trname|TR-181i2a14}} + November 2020: {{xmlref|tr-181-2-14-0-usp|Original}} + * Added WWC (5G Wireline Wireless Convergence), PDU (Protocol Data Unit) and FWE (5G Wireline wireless Encapsulation) top-level objects + * Updated Cellular object to be applicable to 5G Residential Gateways + * Extended support for TR-471 IP-layer metrics, including new IP-layer capacity test + * Supported LAN device time-based access-control + * Various Wi-Fi improvements + November 2020: {{xmlref|tr-181-2-14-1-usp|Corrigendum 1}} + * Fixed Device.LocalAgent.Subscription.{i}.ID constraints + * Removed duplicate remarks about CWMP BOOTSTRAP from descriptions + * Fixed typos + + + + A non-volatile handle used to reference this instance. + '''This is intended only for use in protocol-independent "common" definitions, and MUST NOT be used in protocol-specific definitions.''' + + + + + + + + A non-volatile handle used to reference this instance. Alias provides a mechanism for an ACS to label this instance for future reference. + If the CPE supports the Alias-based Addressing feature as defined in {{bibref|TR-069|3.6.1}} and described in {{bibref|TR-069|Appendix II}}, the following mandatory constraints MUST be enforced: + * Its value MUST NOT be empty. + * Its value MUST start with a letter. + * If its value is not assigned by the ACS, it MUST start with a "cpe-" prefix. + * The CPE MUST NOT change the parameter value. + + + + + + A non-volatile unique key used to reference this instance. Alias provides a mechanism for a Controller to label this instance for future reference. + The following mandatory constraints MUST be enforced: + * The value MUST NOT be empty. + * The value MUST start with a letter. + * If the value is not assigned by the Controller at creation time, the Agent MUST assign a value with an "cpe-" prefix. + The value MUST NOT change once it's been assigned. + + + + + + The value is measured in ''dBm/1000'', i.e. the value divided by 1000 is dB relative to 1 mW. For example, -12345 means -12.345 dBm, 0 means 0 dBm (1 mW) and 12345 means 12.345 dBm. + + + + + + + Indicates the availability of diagnostics data. Enumeration of: + {{enum}} + If the ACS sets the value of this parameter to {{enum|Requested}}, the CPE MUST initiate the corresponding diagnostic test. When writing, the only allowed values are {{enum|Requested}} and {{enum|Canceled}}. To ensure the use of the proper test parameters (the writable parameters in this object), the test parameters MUST be set, and any errors or inconsistencies in the test parameters MUST be detected, either prior to or at the same time as (in the same SetParameterValues) setting this parameter to {{enum|Requested}}. + When requested, the CPE SHOULD wait until after completion of the communication session with the ACS before starting the diagnostic test. + When the test is completed, the value of this parameter MUST be either {{enum|Complete}} (if the test completed successfully), or one of the ''Error'' values listed above. + If the value of this parameter is anything other than {{enum|Complete}}, the values of the results parameters for this test are indeterminate. + When the diagnostic initiated by the ACS is completed (successfully or not), but not if it is canceled for any reason, the CPE MUST establish a new connection to the ACS to allow the ACS to view the results, indicating the Event code ''8 DIAGNOSTICS COMPLETE'' in the Inform message. + After the diagnostic is complete, the value of all result parameters (all read-only parameters in this object) MUST be retained by the CPE until either this diagnostic is run again, or the CPE reboots. After a reboot, if the CPE has not retained the result parameters from the most recent test, it MUST set the value of this parameter to {{enum|None}}. + Modifying any of the writable parameters in this object except for this one MUST result in the value of this parameter being set to {{enum|None}}. + While the test is in progress, modifying any of the writable parameters in this object except for this one MUST result in the test being terminated and the value of this parameter being set to {{enum|None}}. + While the test is in progress, setting this parameter to {{enum|Requested}} (and possibly modifying other writable parameters in this object) MUST result in the test being terminated and then restarted using the current values of the test parameters. + While the test is in progress, setting this parameter to {{enum|Canceled}} MUST result in the test being canceled and the value of this parameter being set to {{enum|None}}. If the CPE does not support the {{enum|Canceled}} value, it MUST return a SPV error with "Invalid Parameter value" (9007) to the ACS instead. + + + + + + + + + + + + The IEEE EUI 64-bit identifier as defined in {{bibref|IEEE_EUI64}}. The IEEE defined 64-bit extended unique identifier (EUI-64) is a concatenation of: + * The 24-bit (OUI-24) or 36-bit (OUI-36) company_id value assigned by the IEEE Registration Authority (IEEE-RA), and + * The extension identifier (40 bits for OUI-24 or 28 bits for OUI-36) assigned by the organization with that company_id assignment. + + + + + + + + + + IP address, i.e. IPv4 address (or IPv4 subnet mask) or IPv6 address. + All IPv4 addresses and subnet masks MUST be represented as strings in IPv4 dotted-decimal notation. Here are some examples of valid IPv4 address textual representations: + * 216.52.29.100 + * 192.168.1.254 + All IPv6 addresses MUST be represented using any of the 3 standard textual representations defined in {{bibref|RFC4291}} Sections 2.2.1, 2.2.2 and 2.2.3. Both lower-case and upper-case letters can be used, but use of lower-case letters is RECOMMENDED. Here are some examples of valid IPv6 address textual representations: + * 1080:0:0:800:ba98:3210:11aa:12dd + * 1080::800:ba98:3210:11aa:12dd + * 0:0:0:0:0:0:13.1.68.3 + IPv6 addresses MUST NOT include zone identifiers. Zone identifiers are discussed in {{bibref|RFC4007|Section 6}}. + Unspecified or inapplicable addresses (or IPv4 subnet masks) MUST be represented as empty strings unless otherwise specified by the parameter definition. + + + + + + + + IPv4 address (or subnet mask). + Can be any IPv4 address that is permitted by the ''IPAddress'' data type. + + + + + + + + IPv6 address. + Can be any IPv6 address that is permitted by the ''IPAddress'' data type. + + + + + + IPv4 or IPv6 routing prefix in Classless Inter-Domain Routing (CIDR) notation {{bibref|RFC4632}}. This is specified as an IP address followed by an appended "/n" suffix, where ''n'' (the prefix size) is an integer in the range 0-32 (for IPv4) or 0-128 (for IPv6) that indicates the number of (leftmost) '1' bits of the routing prefix. + * IPv4 example: 192.168.1.0/24 + * IPv6 example: 2001:edff:fe6a:f76::/64 + If the IP address part is unspecified or inapplicable, it MUST be {{empty}} unless otherwise specified by the parameter definition. In this case the IP prefix will be of the form "/n". + If the entire IP prefix is unspecified or inapplicable, it MUST be {{empty}} unless otherwise specified by the parameter definition. + + + + + + + + IPv4 address prefix. + Can be any IPv4 prefix that is permitted by the ''IPPrefix'' data type. + + + + + + + + + IPv6 address prefix. + Can be any IPv6 prefix that is permitted by the ''IPPrefix'' data type. + + + + + + A JSON Object as defined in {{bibref|RFC7159|Section 4}}. + + + + + + + All MAC addresses are represented as strings of 12 hexadecimal digits (digits 0-9, letters A-F or a-f) displayed as six pairs of digits separated by colons. Unspecified or inapplicable MAC addresses MUST be represented as empty strings unless otherwise specified by the parameter definition. + + + + + + + + + + A 32-bit statistics parameter, e.g. a byte counter. + This data type SHOULD NOT be used for statistics parameters whose values might become greater than the maximum value that can be represented as an ''unsignedInt'' (i.e. 0xffffffff, referred to below as ''maxval''). ''StatsCounter64'' SHOULD be used for such parameters. + The value ''maxval'' indicates that no data is available for this parameter. In the unlikely event that the actual value of the statistic is ''maxval'', the CPE SHOULD return ''maxval - 1''. + The actual value of the statistic might be greater than ''maxval''. Such values SHOULD wrap around through zero. + The term ''packet'' is to be interpreted as the transmission unit appropriate to the protocol layer in question, e.g. an IP packet or an Ethernet frame. + + + + + + + A 64-bit statistics parameter, e.g. a byte counter. + This data type SHOULD be used for all statistics parameters whose values might become greater than the maximum value that can be represented as an ''unsignedInt''. + The maximum value that can be represented as an ''unsignedLong'' (i.e. 0xffffffffffffffff) indicates that no data is available for this parameter. + The term ''packet'' is to be interpreted as the transmission unit appropriate to the protocol layer in question, e.g. an IP packet or an Ethernet frame. + + + + + + + Universally Unique Identifier. See {{bibref|RFC4122}}. + + + + + + + + + Uniform Resource Identifier. See {{bibref|RFC3986}}. + + + + + + + + Uniform Resource Name. See {{bibref|RFC3986}} (URI) and {{bibref|RFC8141}} (''urn'' URI scheme). + + + + + + + Uniform Resource Locator. See {{bibref|RFC3986}} (URI), {{bibref|IANA-uri-schemes}}, and individual URI scheme RFCs such as {{bibref|RFC7252}} (''coap'', ''coaps'') and {{bibref|RFC7230}} (''http'', ''https''). + + + + + + The ZigBee 16-bit network address (NWK) as defined in {{bibref|ZigBee2007}}. The address is assigned to a device by the network layer and used by the network layer for routing messages between devices. + + + + + + + + + + A non-volatile unique key used to reference this instance. Alias provides a mechanism for a Controller to label this instance for future reference. + The following mandatory constraints MUST be enforced: + * The value MUST NOT be empty. + * The value MUST start with a letter. + * If the value is not assigned by the Controller at creation time, the Agent MUST assign a value with an "cpe-" prefix. + The value MUST NOT change once it's been assigned. + + + + + + Possible Unit types used for decimal values. {{enum}} + + + + + Dimensionless quantity + + + + + Percent + + + + + Decimal degrees + + + + + Celsius + + + + + Fahrenheit + + + + + Kelvin [SI] + + + + + Kilometer [SI] + + + + + Meter [SI] + + + + + Centimeter [SI] + + + + + Millimeter [SI] + + + + + Hour + + + + + Minute + + + + + Second [SI] + + + + + Millisecond + + + + + Square kilometer + + + + + Square meter + + + + + Square cm + + + + + Cubic meter + + + + + Liter [SI] + + + + + Centiliter [SI] + + + + + Milliliter [SI] + + + + + Kilogram [SI] + + + + + Gram [SI] + + + + + Milligram [SI] + + + + + Watt hour + + + + + Kilowatt hour + + + + + Watt [SI] + + + + + Ampere [SI] + + + + + Hertz [SI] + + + + + Volt [SI] + + + + + Newton [SI] + + + + + Pascal [SI] + + + + + Coulomb [SI] + + + + + Farad [SI] + + + + + Ohm [SI] + + + + + Siemens [SI] + + + + + Weber [SI] + + + + + Tesla [SI] + + + + + Henry [SI] + + + + + Lumen [SI] + + + + + Lux [SI] + + + + + Meter per second + + + + + Candela [SI] + + + + + Mole [SI] + + + + + Ultraviolet index + + + + + RGB color, encoded as integer value between 0 (usually represented as 0x000000) and 16777215 (usually represented as 0xFFFFFF), e.g. Blue would be 255 (usually represented as 0x0000FF) + + + + + Parts per million (Alternative use percent: 1ppm = 0.0001%) + + + + + Sievert (J/kg) [SI] + + + + + Joule [SI] + + + + + + + Describes the type of Device that the {{object}} instance is representing. {{enum}} + + + + + + + + + + + + + + + + + + + + + + + + + Describes the type of IoT Level Controller or Sensor that the {{object}} instance is representing. {{enum}} + + + + + + + + + + + + + + + + + + + + + + + + + Amount of space that an object or substance occupies + + + + + + + + Describes the type of IoT Enum Controller that the {{object}} instance is representing. {{enum}} + + + + + + + + + + + + + + Describes the type of IoT Enum Sensor that the {{object}} instance is representing. {{enum}} + + + + + + + + + + + + + + Pair of 32-bit signed integers a(i),b(i) with each pair representing a complex component of the uncalibrated echo response (UER); + # Real UER component, a(i) + # Imaginary UER component, b(i) + for values of i starting at i=0. Both values are represented as signed integers. + The interpretation of the UER value is as defined in {{bibref|G.996.2|Clause A.2.2.1}}. + + + + + + + + # the Power Spectral Density (PSD) breakpoint sub-carrier index in the range [0:49152] with Df = 4.3125 kHz frequency spacing, and + # the value of the level of the PSD at this sub-carrier expressed in ''0.1 dBm/Hz'' with an offset of -200 dBm/Hz. The range of valid values for PSD is -30 to -200 dBm/Hz. + Both values are represented as unsignedInt. + + + + + + + + # The PSM breakpoint sub-carrier index in the range [0:4095], and + # the value of the level of the PSM at this sub-carrier expressed in ''0.1 dBm/Hz'' with an offset of -140 dBm/Hz. + Both values are represented as unsignedInt. + {{bibref|G.9964|Clause 5.2}} defines limits on PSM breakpoint levels. + + + + + + + + # The paired frequency spacing index in the range [0:8191], and + # The transfer function log value, i.e. [i, TFlog(i * {{param|TFlogGroupSize}} * Df)], where the reference frequency spacing Df = 4.3125 kHz, the index i valid range is 0 to 8191, and TFlog(i * {{param|TFlogGroupSize}} * Df) spans a range from +6.0 dB down to -96.2 dB with units of 0.1 dB. + Both values are represented as unsignedInt. + + + + + + + + Service Slice Type (SST). {{enum}} + See {{bibref|3GPP-TS.23.501|Clause 5.15.2.2}}. + + + + + 5G Enhanced Mobile Broadband + + + + + Ultra-Reliable Low Latency Communications + + + + + Massive IoT + + + + + Vehicle to Everything + + + + + + + High Speed Packet data Access (HSPA) + 3GPP + https://www.3gpp.org/technologies/keywords-acronyms/99-hspa + + + 3GPP TS 23.003 + Numbering, addressing and identification + 3GPP CT WG4 + https://www.3gpp.org/ftp/Specs/html-info/23003.htm + + + 3GPP TS 23.501 + System architecture for the 5G System (5GS); Stage 2 + 3GPP SA WG2 + https://www.3gpp.org/ftp/Specs/html-info/23501.htm + + + 3GPP TS 24.008 + Mobile radio interface Layer 3 specification; Core network protocols; Stage 3 + 3GPP CT WG1 + https://www.3gpp.org/ftp/Specs/html-info/24008.htm + + + 3GPP TS 24.301 + Non-Access-Stratum (NAS) protocol for Evolved Packet System (EPS); Stage 3 + 3GPP CT WG1 + https://www.3gpp.org/ftp/Specs/html-info/24301.htm + + + 3GPP TS 24.501 + Non-Access-Stratum (NAS) protocol for 5G System (5GS); Stage 3 + 3GPP CT WG1 + https://www.3gpp.org/ftp/Specs/html-info/24501.htm + + + 3GPP TS 24.526 + User Equipment (UE) policies for 5G System (5GS); Stage 3 + 3GPP CT WG1 + https://www.3gpp.org/ftp/Specs/html-info/24526.htm + + + 3GPP TS 25.171 + Requirements for support of Assisted Global Positioning System (A-GPS) + 3GPP RAN WG4 + https://www.3gpp.org/ftp/Specs/html-info/25171.htm + + + IEEE Std 802.11-2007 + Wireless LAN Medium Access Control (MAC) and Physical Layer (PHY) Specifications + IEEE + 2007 + https://standards.ieee.org/getieee802/download/802.11-2007.pdf + + + IEEE Std 802.11-2012 + Wireless LAN Medium Access Control (MAC) and Physical Layer (PHY) Specifications + IEEE + March 2012 + https://standards.ieee.org/getieee802/download/802.11-2012.pdf + + + IEEE Std 802.11-2016 + Wireless LAN Medium Access Control (MAC) and Physical Layer (PHY) Specifications + IEEE + December 2016 + https://ieeexplore.ieee.org/document/7786995 + + + IEEE Std 802.11a-1999 + High-speed Physical Layer in the 5 GHz band + IEEE + 1999 + https://standards.ieee.org/getieee802/download/802.11a-1999.pdf + + + IEEE Std 802.11ac-2013 + Enhancements for Very High Throughput for Operation in Bands below 6 GHz + IEEE + December 2013 + https://www.ieee802.org/11/Reports/tgac_update.htm + + + IEEE Std 802.11ax + IEEE + + + IEEE Std 802.11b-1999 + Higher Speed Physical Layer Extension in the 2.4 GHz band + IEEE + 1999 + https://standards.ieee.org/getieee802/download/802.11b-1999.pdf + + + IEEE Std 802.11g-2003 + Further Higher Data Rate Extension in the 2.4 GHz Band + IEEE + 2003 + https://standards.ieee.org/getieee802/download/802.11g-2003.pdf + + + IEEE Std 802.11h-2003 + Spectrum and Transmit Power Management Extensions + IEEE + 2003 + https://standards.ieee.org/getieee802/download/802.11h-2003.pdf + + + IEEE Std 802.11n-2009 + Amendment 5: Enhancements for Higher Throughput + IEEE + 2009 + https://ieeexplore.ieee.org/xpl/freeabs_all.jsp?reload=true&arnumber=5307322 + + + IEEE Std 802.1AB-2009 + Station and Media Access Control Connectivity Discovery + IEEE + 2009 + https://standards.ieee.org/getieee802/download/802.1AB-2009.pdf + + + IEEE Std 802.1ad-2005 + Virtual Bridged Local Area Networks Amendment 4: Provider Bridges + IEEE + May 2005 + https://standards.ieee.org/getieee802/download/802.1ad-2005.pdf + + + IEEE Std 802.1AX-2014 + IEEE Standard for Local and metropolitan area networks -- Link Aggregation + IEEE + 2014 + https://ieeexplore.ieee.org/servlet/opac?punumber=6997981 + + + IEEE Std 802.1D-2004 + Media Access Control (MAC) Bridges + IEEE + 2004 + https://standards.ieee.org/getieee802/download/802.1D-2004.pdf + + + IEEE Std 802.1Q-2005 + Virtual Bridged Local Area Networks + IEEE + 2006 + https://standards.ieee.org/getieee802/download/802.1Q-2005.pdf + + + IEEE Std 802.1Q-2011 + MAC Bridges and Virtual Bridge Local Area Networks + IEEE + 2011 + https://standards.ieee.org/getieee802/download/802.1Q-2011.pdf + + + IEEE Std 802.1x-2004 + Standards for Local and Metropolitan Area Networks: Port based Network Access Control + IEEE + 2004 + https://standards.ieee.org/getieee802/download/802.1X-2004.pdf + + + IEEE Std 802.3-2015 + IEEE Standard for Ethernet + IEEE + 2015 + https://ieeexplore.ieee.org/servlet/opac?punumber=7428774 + + + IEEE 802.3-2012 - Section Six + IEEE Standard for Ethernet - Section Six + IEEE + December 2012 + https://standards.ieee.org/getieee802/download/802.3-2012_section6.pdf + + + Blue + A New Class of Active Queue Management Algorithms + https://www.thefengs.com/wuchang/work/blue + + + BPF + Berkeley Packet Filter Syntax + FreeBSD.org + October 2016 + https://www.freebsd.org/cgi/man.cgi?query=bpf + + + Data Elements Specification + Data Elements Specification Version 1.0 + January 2019 + https://www.wi-fi.org/discover-wi-fi/specifications + + + DLNA Networked Device Interoperability Guidelines + DLNA Networked Device Interoperability Guidelines, Volume 2: Media Format Profiles. + DLNA + October 2006 + https://www.dlna.org/industry/certification/guidelines/ + + + RFC 6763 + DNS-Based Service Discovery + IETF + RFC + 2013 + https://tools.ietf.org/html/rfc6763 + + + RFC 6333 + Dual-Stack Lite Broadband Deployments Following IPv4 Exhaustion + IETF + RFC + 2011 + https://tools.ietf.org/html/rfc6333 + + + RFC 6334 + Dynamic Host Configuation Protocol for IPv6 (DHCPv6) Option for Dual-Stack Lite + IETF + RFC + 2011 + https://tools.ietf.org/html/rfc6334 + + + ETSI EN 301 893 + Broadband Radio Access Networks (BRAN); 5 GHz high performance RLAN; Harmonized EN covering the essential requirements of article 3.2 of the RTTE Directive + ETSI + https://www.etsi.org/deliver/etsi_en/301800_301899/301893/01.08.01_60/en_301893v010801p.pdf + + + draft-allan-5g-fmc-encapsulation + 5G Wireless Wireline Convergence User Plane Encapsulation (5WE) + IETF + Internet Draft + March 2020 + https://tools.ietf.org/html/draft-allan-5g-fmc-encapsulation + + + G.988 + ONU management and control interface (OMCI) specification + ITU-T + 2010 + https://www.itu.int/rec/T-REC-G.988-201010-P/en + + + G.9701 + Fast access to subscriber terminals (G.fast)- Physical layer specification + ITU-T + 2014 + https://www.itu.int/rec/T-REC-G.9701-201412-P + + + G.9954 + Phoneline networking transceivers - Enhanced physical, media access, and link layer specifications (HPNA 3.0 and 3.1) + ITU-T + 2007 + https://www.itu.int/rec/T-REC-G.9954/en + + + G.9960 + Unified high-speed wire-line based home networking transceivers - System architecture and physical layer specification + ITU-T + G.hn series + https://www.itu.int/rec/T-REC-G.9960-201006-P + + + G.9961 + Unified high-speed wire-line based home networking transceivers - Data link layer specification + ITU-T + G.hn series + https://www.itu.int/rec/T-REC-G.9961-201006-P + + + G.9962 + Unified high-speed wire-line based home networking transceivers - Management specification + ITU-T + G.hn series + https://www.itu.int/rec/T-REC-G.9962-201308-P + + + G.9964 + Unified high-speed wire-line based home networking transceivers - Power spectral density specification + ITU-T + G.hn series + https://www.itu.int/rec/T-REC-G.9962-201308-P + + + G.9973 + Protocol for identifying home network topology + ITU-T + 2011 + https://www.itu.int/rec/T-REC-G.9973-201110-I/en + + + G.993.1 + Very high speed digital subscriber line transceivers + ITU-T + https://www.itu.int/rec/T-REC-G.993.1 + + + G.993.2 + Very high speed digital subscriber line transceivers 2 (VDSL2) + ITU-T + https://www.itu.int/rec/T-REC-G.993.2 + + + G.996.2 + Single-ended line testing for digital subscriber lines (DSL) + ITU-T + https://www.itu.int/rec/T-REC-G.996.2 + + + G.997.1 + Physical layer management for digital subscriber line (DSL) transceivers + ITU-T + https://www.itu.int/rec/T-REC-G.997.1 + + + G.997.2 + Physical layer management for FAST transceivers + ITU-T + 2015 + https://www.itu.int/rec/T-REC-G.997.2-201505-I + + + G.998.1 + ATM-based Multi-Pair Bonding + ITU-T + 2005 + https://www.itu.int/rec/T-REC-G.998.1 + + + G.998.2 + Ethernet-based Multi-Pair Bonding + ITU-T + 2005 + https://www.itu.int/rec/T-REC-G.998.2 + + + G.998.3 + Multi-Pair Bonding Using Time-Division Inverse Multiplexing + ITU-T + 2005 + https://www.itu.int/rec/T-REC-G.998.2 + + + HomePlug AV Specification + Version 1.1 + HomePlug + 2007 + https://www.homeplug.org + + + HTML 4.01 Specification + W3C + https://www.w3.org/TR/html4 + + + IANA Protocol Numbers + Protocol Numbers + IANA + https://www.iana.org/assignments/protocol-numbers + + + IANAifType + IANAifType-MIB DEFINITIONS + IANA + 2009 + https://www.iana.org/assignments/ianaiftype-mib/ianaiftype-mib + + + ICSA Baseline Modular Firewall Certification Criteria + Baseline module - version 4.1 + ICSA Labs + 2008 + https://www.icsalabs.com/sites/default/files/baseline.pdf + + + ICSA Residential Modular Firewall Certification Criteria + Required Services Security Policy - Residential Category module - version 4.1 + ICSA Labs + 2008 + https://www.icsalabs.com/sites/default/files/residential.pdf + + + IEEE 1905.1a + IEEE Std 1905.1a, Convergent Digital Home Network for Heterogeneous Technologies Amendment 1: Support of new MAC/PHYs and enhancements, IEEE, December 2014. + IEEE + December 2014 + https://www.IEEE.org + + + IKEv2 Parameters + Internet Key Exchange Version 2 (IKEv2) Parameters + IANA + https://www.iana.org/assignments/ikev2-parameters/ikev2-parameters.xml + + + IPDR File Transfer Protocol + IPDR/File Transfer Protocol + TM Forum + https://www.ipdr.org/public/ + + + IPDR Streaming Protocol + IPDR Streaming Protocol (IPDR/SP) Specification + TM Forum + https://www.ipdr.org/public/ + + + IPDR XDR Encoding Format + IPDR/XDR Encoding Format + TM Forum + https://www.ipdr.org/public/ + + + IPDR XML File Encoding Format + IPDR/XML File Encoding Format + TM Forum + https://www.ipdr.org/public/ + + + ISO 3166-1 + Codes for the representation of names of countries and their subdivisions - Part 1: Country codes + ISO + 2006 + https://www.iso.org/iso/country_codes.htm + + + ISO 639-1 + Codes for the representation of names of Languages - Part 1: Alpha-2 code + ISO + 2002 + https://www.iso.org/iso/language_codes + + + ISO/IEC 646-1991 + Information Technology - ISO 7-bit coded character set for information interchange + ISO + 1991 + + + ITU E.118 + The international telecommunication charge card + International Telecommunication Union + May 2006 + https://www.itu.int/rec/T-REC-E.118-200605-I/en + + + ITU E.164 + The international public telecommunication numbering plan + International Telecommunication Union + October 2010 + https://www.itu.int/rec/T-REC-E.164-201011-I/en + + + ITU X.733 + Information technology - Open Systems Interconnection - Systems Management: Alarm reporting function + International Telecommunication Union + February 1992 + https://www.itu.int/rec/T-REC-X.733/en + + + JJ-300.00 + Home-network Topology Identifying Protocol + TTC + 2011 + https://www.ttc.or.jp/jp/document_list/pdf/e/STD/JJ-300.00(E)v1.1.pdf + + + JJ-300.01 + The List of Device Categories + TTC + 2011 + https://www.ttc.or.jp/jp/document_list/pdf/e/STD/JJ-300.01(E)v1.1.pdf + + + Libpcap + Libpcap File Format + Wireshark + 2015 + https://wiki.wireshark.org/Development/LibpcapFileFormat + + + RFC 8193 + Information Model for Large-Scale Measurement Platforms (LMAPs) + IETF + Informational RFC + August 2017 + https://tools.ietf.org/html/rfc8193 + + + draft-ietf-ippm-metric-registry-12 + Registry for Performance Metrics + IETF + Internet Draft + June 30, 2017 + https://datatracker.ietf.org/doc/draft-ietf-ippm-metric-registry/ + + + Multi-AP Specification + Multi-AP Specification Version 1.0 + June 2018 + https://www.wi-fi.org/discover-wi-fi/specifications + + + MOCA11-MIB + Remote Management of MoCA Interfaces using SNMP MIB + MoCA Alliance + 2009 + https://www.mocalliance.org + + + MoCA v1.0 + MoCA MAC/PHY Specification v1.0 + MoCA Alliance + 2009 + https://www.mocalliance.org + + + MoCA v1.1 + MoCA MAC/PHY Specification v1.1 Extensions + MoCA Alliance + 2009 + https://www.mocalliance.org + + + MQTT v3.1 + MQ Telemetry Transport (MQTT) V3.1 Protocol Specification + 2010 + https://www.ibm.com/developerworks/webservices/library/ws-mqtt/index.html + + + MQTT Version 5.0 + MQTT Version 5.0, Candidate OASIS Standard 02. + OASIS Message Queuing Telemetry Transport (MQTT) TC + February 2019 + https://docs.oasis-open.org/mqtt/mqtt/v5.0/mqtt-v5.0.html + + + MQTT Version 3.1.1 + MQTT v3.1.1 + OASIS Message Queuing Telemetry Transport (MQTT) TC + October 2014 + https://www.oasis-open.org/standards#mqttv3.1.1 + + + Organizationally Unique Identifiers (OUIs) + https://standards.ieee.org/faqs/OUI.html + + + PCP Proxy Function + Port Control Protocol (PCP) Proxy Function + IETF + RFC + September 2015 + https://tools.ietf.org/html/pcpproxyfunction + + + References on RED (Random Early Detection) Queue Management + https://www.icir.org/floyd/red.html + + + RFC 793 + Transmission Control Protocol + IETF + RFC + September 1981 + https://tools.ietf.org/html/rfc793 + + + RFC 862 + Echo Protocol + IETF + RFC + 1983 + https://tools.ietf.org/html/rfc862 + + + RFC 959 + File Transfer Protocol + IETF + RFC + 1985 + https://tools.ietf.org/html/rfc959 + + + RFC 1035 + Domain Names - Implementation and Specification + IETF + RFC + 1987 + https://tools.ietf.org/html/rfc1035 + + + RFC 1323 + TCP Extensions for High Performance + IETF + RFC + May 1992 + https://tools.ietf.org/html/rfc1323 + + + RFC 1332 + The PPP Internet Protocol Control Protocol (IPCP) + IETF + RFC + 1992 + https://tools.ietf.org/html/rfc1332 + + + RFC 1378 + The PPP AppleTalk Control Protocol (ATCP) + IETF + RFC + 1992 + https://tools.ietf.org/html/rfc1378 + + + RFC 1552 + The PPP Internetwork Packet Exchange Control Protocol (IPXCP) + IETF + RFC + 1993 + https://tools.ietf.org/html/rfc1552 + + + RFC 1661 + The Point-to-Point Protocol (PPP) + IETF + RFC + 1994 + https://tools.ietf.org/html/rfc1661 + + + RFC 1877 + PPP Internet Protocol Control Protocol Extensions for Name Server Addresses + IETF + RFC + 1995 + https://tools.ietf.org/html/rfc1877 + + + RFC 1974 + PPP Stac LZS Compression Protocol + IETF + RFC + 1996 + https://tools.ietf.org/html/rfc1974 + + + RFC 2080 + RIPng for IPv6 + IETF + RFC + 1997 + https://tools.ietf.org/html/rfc2080 + + + RFC 2097 + The PPP NetBIOS Frames Control Protocol (NBFCP) + IETF + RFC + 1997 + https://tools.ietf.org/html/rfc2097 + + + RFC 2131 + Dynamic Host Configuration Protocol + IETF + RFC + https://tools.ietf.org/html/rfc2131 + + + RFC 2132 + DHCP Options and BOOTP Vendor Extensions + IETF + RFC + https://tools.ietf.org/html/rfc2132 + + + RFC 2225 + Classical IP and ARP over ATM + IETF + RFC + https://tools.ietf.org/html/rfc2225 + + + RFC 2364 + PPP Over AAL5 + IETF + RFC + 1998 + https://tools.ietf.org/html/rfc2364 + + + RFC 2474 + Definition of the Differentiated Services Field (DS Field) in the IPv4 and IPv6 Headers + IETF + RFC + https://tools.ietf.org/html/rfc2474 + + + RFC 2581 + TCP Congestion Control + IETF + RFC + April 1999 + https://tools.ietf.org/html/rfc2581 + + + RFC 2582 + The NewReno Modification to TCP's Fast Recovery Algorithm + IETF + RFC + April 1999 + https://tools.ietf.org/html/rfc2582 + + + RFC 2616 + Hypertext Transfer Protocol -- HTTP/1.1 + IETF + RFC + 1999 + https://tools.ietf.org/html/rfc2616 + + + RFC 2684 + Multiprotocol Encapsulation over ATM Adaptation Layer 5 + IETF + RFC + https://tools.ietf.org/html/rfc2684 + + + RFC 2697 + A Single Rate Three Color Marker + IETF + RFC + https://tools.ietf.org/html/rfc2697 + + + RFC 2698 + A Two Rate Three Color Marker + IETF + RFC + https://tools.ietf.org/html/rfc2698 + + + RFC 2782 + A DNS RR for specifying the location of services (DNS SRV) + IETF + RFC + 2000 + https://tools.ietf.org/html/rfc2782 + + + RFC 2784 + Generic Routing Encapsulation (GRE) + IETF + RFC + November 2000 + https://tools.ietf.org/html/rfc2784 + + + RFC 2818 + HTTP Over TLS + IETF + RFC + May 2000 + https://tools.ietf.org/html/rfc2818 + + + RFC 2819 + Remote Network Monitoring Management Information Base + IETF + RFC + 2000 + https://tools.ietf.org/html/rfc2819 + + + RFC 2863 + The Interfaces Group MIB + IETF + RFC + 2000 + https://tools.ietf.org/html/rfc2863 + + + RFC 2865 + Remote Authentication Dial In User Service (RADIUS) + IETF + RFC + 2000 + https://tools.ietf.org/html/rfc2865 + + + RFC 2866 + RADIUS Accounting + IETF + RFC + 2000 + https://tools.ietf.org/html/rfc2866 + + + RFC 2869 + RADIUS Extensions + IETF + RFC + 2000 + https://tools.ietf.org/html/rfc2869 + + + RFC 2890 + Key and Sequence Number Extensions to GRE + IETF + RFC + November 2000 + https://tools.ietf.org/html/rfc2890 + + + RFC 2898 + PKCS #5: Password-Based Cryptography Specification Version 2.0 + IETF + RFC + https://tools.ietf.org/html/rfc2898 + + + RFC 3004 + The User Class Option for DHCP + IETF + RFC + https://tools.ietf.org/html/rfc3004 + + + RFC 3066 + Tags for the Identification of Languages + IETF + RFC + https://tools.ietf.org/html/rfc3066 + + + RFC 3174 + US Secure Hash Algorithm 1 (SHA1) + IETF + Draft Standard + September, 2001 + https://tools.ietf.org/html/rfc3174 + + + RFC 3232 + "Assigned Numbers: RFC 1700 is Replaced by an On-line Database" + IETF + RFC + 2002 + https://tools.ietf.org/html/rfc3232 + + + RFC 3315 + Dynamic Host Configuration Protocol for IPv6 (DHCPv6) + IETF + RFC + 2003 + https://tools.ietf.org/html/rfc3315 + + + RFC 3339 + Date and Time on the Internet: Timestamps + IETF + Draft Standard + July, 2002 + https://tools.ietf.org/html/rfc3339 + + + RFC 3596 + DDNS Extensions to Support IP Version 6 + IETF + RFC + 2003 + https://tools.ietf.org/html/rfc3596 + + + RFC 3633 + IPv6 Prefix Options for Dynamic Host Configuration Protocol (DHCP) version 6 + IETF + RFC + 2003 + https://tools.ietf.org/html/rfc3633 + + + RFC 3646 + DNS Configuration options for Dynamic Host Configuration Protocol for IPv6 (DHCPv6) + IETF + RFC + 2003 + https://tools.ietf.org/html/rfc3646 + + + RFC 3775 + Mobility Support in IPv6 + IETF + RFC + 2004 + https://tools.ietf.org/html/rfc3775 + + + RFC 3925 + Vendor-Identifying Vendor Options for Dynamic Host Configuration Protocol version 4 (DHCPv4) + IETF + RFC + https://tools.ietf.org/html/rfc3925 + + + RFC 3927 + Dynamic Configuration of IPv4 Link-Local Addresses + IETF + RFC + 2005 + https://tools.ietf.org/html/rfc3927 + + + RFC 3931 + Layer Two Tunneling Protocol - Version 3 (L2TPv3) + IETF + RFC + March 2005 + https://tools.ietf.org/html/rfc3931 + + + RFC 3948 + UDP Encapsulation of IPsec ESP Packets + IETF + RFC + January 2005 + https://tools.ietf.org/html/rfc3948 + + + RFC 3986 + Uniform Resource Identifier (URI): Generic Syntax + IETF + RFC + https://tools.ietf.org/html/rfc3986 + + + RFC 4122 + A Universally Unique IDentifier (UUID) URN Namespace + IETF + RFC + 2005 + https://tools.ietf.org/html/rfc4122 + + + RFC4180 + Common Format and MIME Type for Comma-Separated Values (CSV) Files + IETF + RFC + October 2005 + https://tools.ietf.org/html/rfc4180 + + + RFC 4191 + Default Router Preferences and More-Specific Routes + IETF + RFC + 2005 + https://tools.ietf.org/html/rfc4191 + + + RFC 4193 + Unique Local IPv6 Unicast Addresses + IETF + RFC + 2005 + https://tools.ietf.org/html/rfc4193 + + + RFC 4242 + Information Refresh Time Option for Dynamic Host Configuration Protocol for IPv6 (DHCPv6) + IETF + RFC + 2005 + https://tools.ietf.org/html/rfc4242 + + + RFC 4291 + IP Version 6 Addressing Architecture + IETF + RFC + 2006 + https://tools.ietf.org/html/rfc4291 + + + RFC 4292 + IP Forwarding Table MIB + IETF + RFC + 2006 + https://tools.ietf.org/html/rfc4292 + + + RFC 4293 + Management Information Base for the Internet Protocol (IP) + IETF + RFC + 2006 + https://tools.ietf.org/html/rfc4293 + + + RFC 4301 + Security Architecture for the Internet Protocol + IETF + RFC + December 2005 + https://tools.ietf.org/html/rfc4301 + + + RFC 4302 + IP Authentication Header + IETF + RFC + December 2005 + https://tools.ietf.org/html/rfc4302 + + + RFC 4303 + IP Encapsulating Security Payload (ESP) + IETF + RFC + December 2005 + https://tools.ietf.org/html/rfc4303 + + + RFC 4389 + Neighbor Discovery Proxies (ND Proxy) + IETF + RFC + 2006 + https://tools.ietf.org/html/rfc4389 + + + RFC 4632 + Classless Inter-domain Routing (CIDR): The Internet Address Assignment and Aggregation Plan + IETF + RFC + 2006 + https://tools.ietf.org/html/rfc4632 + + + RFC 4719 + Transport of Ethernet Frames over Layer 2 Tunneling Protocol Version 3 (L2TPv3) + IETF + RFC + November 2006 + https://tools.ietf.org/html/rfc4719 + + + RFC 4835 + Cryptographic Algorithm Implementation Requirements for Encapsulating Security Payload (ESP) and Authentication Header (AH) + IETF + RFC + 2007 + https://tools.ietf.org/html/rfc4835 + + + RFC 4861 + Neighbor Discovery for IP version 6 (IPv6) + IETF + RFC + 2007 + https://tools.ietf.org/html/rfc4861 + + + RFC 4862 + IPv6 Stateless Address Autoconfiguration + IETF + RFC + 2007 + https://tools.ietf.org/html/rfc4862 + + + RFC 5072 + IP Version 6 over PPP + IETF + RFC + 2007 + https://tools.ietf.org/html/rfc5072 + + + RFC 5139 + Revised Civic Location Format For Presence Information Data Format Location Object (PIDF-LO) + IETF + RFC + February 2008 + https://tools.ietf.org/html/rfc5139 + + + RFC 5280 + Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile + IETF + RFC + May 2008 + https://tools.ietf.org/html/rfc5280 + + + RFC 5491 + GEOPRIV Presence Information Data Format Location Object (PIDF-LO) Usage Clarification, Considerations, and Recommendations + IETF + RFC + March 2009 + https://tools.ietf.org/html/rfc5491 + + + RFC 5625 + DNS Proxy Implementation Guidelines + IETF + RFC + 2009 + https://tools.ietf.org/html/rfc5625 + + + RFC 5969 + IPv6 Rapid Deployment on IPv4 Infrastructures (6rd) - Protocol Specification + IETF + RFC + 2010 + https://tools.ietf.org/html/rfc5969 + + + RFC 5996 + Internet Key Exchange Protocol Version 2 (IKEv2) + IETF + RFC + September 2010 + https://tools.ietf.org/html/rfc5996 + + + RFC 6106 + IPv6 Router Advertisement Option for DNS Configuration + IETF + RFC + 2010 + https://tools.ietf.org/html/rfc6106 + + + RFC 6120 + Extensible Messaging and Presence Protocol (XMPP) : Core + IETF + RFC + 2011 + https://tools.ietf.org/html/rfc6120 + + + RFC 6234 + US Secure Hash Algorithms (SHA and SHA-based HMAC and HKDF) + IETF + Draft Standard + May, 2011 + https://tools.ietf.org/html/rfc6234 + + + RFC 6455 + The WebSocket Protocol + IETF + RFC + December 2011 + https://tools.ietf.org/html/rfc6455 + + + RFC 6762 + Multicast DNS + IETF + RFC + February 2013 + https://tools.ietf.org/html/rfc6762 + + + RFC 6838 + Media Type Specifications and Registration Procedures + IETF + Best Current Practice + January 2013 + https://tools.ietf.org/html/rfc6838 + + + RFC 6887 + Port Control Protocol (PCP) + IETF + RFC + 2013 + https://tools.ietf.org/html/rfc6887 + + + RFC 6970 + Universal Plug and Play (UPnP) Internet Gateway Device (IGD) - Port Control Protocol (PCP) Interworking Function + IETF + RFC + 2013 + https://tools.ietf.org/html/rfc6970 + + + RFC7159 + The JavaScript Object Notation (JSON) Data Interchange Format + IETF + RFC + March 2014 + https://tools.ietf.org/html/rfc7159 + + + RFC 7252 + The Constrained Application Protocol (CoAP) + IETF + RFC + June 2014 + https://tools.ietf.org/html/rfc7252 + + + RFC 7291 + DHCP Options for the Port Control Protocol (PCP) + IETF + RFC + 2014 + https://tools.ietf.org/html/rfc7291 + + + RFC 7348 + Virtual eXtensible Local Area Network (VXLAN) + IETF + RFC + August 2014 + https://tools.ietf.org/html/rfc7348 + + + RFC 7395 + An Extensible Messaging and Presence Protocol (XMPP) Subprotocol for WebSocket + IETF + Standards Track + October 2014 + https://tools.ietf.org/html/rfc7395 + + + RFC 7398 + A Reference Path and Measurement Points for Large-Scale Measurement of Broadband Performance + IETF + Informational RFC + February 2015 + https://tools.ietf.org/html/rfc7398 + + + RFC 7468 + Textual Encoding of PKIX, PKCS, and CMS Structures + IETF + Standards Track + April 2015 + http://tools.ietf.org/html/rfc7468 + + + RFC 7594 + A Framework for Large-Scale Measurement of Broadband Performance (LMAP) + IETF + Informational RFC + September 2015 + https://tools.ietf.org/html/rfc7594 + + + RFC 7597 + Mapping of Address and Port with Encapsulation (MAP) + IETF + RFC + July 2015 + https://tools.ietf.org/html/rfc7597 + + + RFC 7598 + DHCPv6 Options for configuration of Softwire Address and Port Mapped Clients + IETF + RFC + July 2015 + https://tools.ietf.org/html/rfc7598 + + + RFC 7599 + Mapping of Address and Port using Translation (MAP-T) + IETF + RFC + July 2015 + https://tools.ietf.org/html/rfc7599 + + + Simple Object Access Protocol (SOAP) 1.1 + W3C + https://www.w3.org/TR/2000/NOTE-SOAP-20000508 + + + STOMP Protocol Specification + STOMP Protocol Specification, Version 1.2 + https://stomp.github.io/stomp-specification-1.2.html + + + TR-064 Corrigendum 1 + LAN-Side DSL CPE Configuration Specification + Broadband Forum + Technical Report + August 2015 + https://www.broadband-forum.org/technical/download/TR-064.pdf + + + TR-106 Amendment 8 + Data Model Template for CWMP Endpoints and USP Agents + Broadband Forum + Technical Report + May 2018 + https://www.broadband-forum.org/technical/download/TR-106.pdf + + + TR-106 Amendment 8 + Data Model Template for CWMP Endpoints and USP Agents + Broadband Forum + Technical Report + May 2018 + https://www.broadband-forum.org/technical/download/TR-106_Amendment-8.pdf + + + TR-124 Issue 5 + Functional Requirements for Broadband Residential Gateway Devices + Broadband Forum + Technical Report + July 2016 + https://www.broadband-forum.org/technical/download/TR-124_Issue-5.pdf + + + TR-124 Issue 6 + Functional Requirements for Broadband Residential Gateway Devices + Broadband Forum + Technical Report + July 2020 + https://www.broadband-forum.org/technical/download/TR-124_Issue-6.pdf + + + TR-143 Amendment 3 + Enabling Network Throughput Performance Tests and Statistical Monitoring + Broadband Forum + Technical Report + May 2017 + https://www.broadband-forum.org/technical/download/TR-143.pdf + + + TR-159 + Management Framework for xDSL Bonding + Broadband Forum + Technical Report + December 2008 + https://www.broadband-forum.org/technical/download/TR-159.pdf + + + TR-181 Issue 2 Amendment 13 + Device Data Model + Broadband Forum + Technical Report + September 2019 + https://www.broadband-forum.org/technical/download/TR-181_Issue-2.pdf + + + TR-232 + Bulk Data Collection + Broadband Forum + Technical Report + May 2012 + https://www.broadband-forum.org/technical/download/TR-232.pdf + + + TR-262 + Femto Component Objects + Broadband Forum + Technical Report + November 2011 + https://www.broadband-forum.org/technical/download/TR-262.pdf + + + TR-304 + Broadband Access Service Attributes and Performance Metrics + Broadband Forum + Technical Report + February 2015 + https://www.broadband-forum.org/technical/download/TR-304.pdf + + + TR-369 Issue 1 Corrigendum 2 + User Services Platform + Broadband Forum + Technical Report + November 2018 + https://usp.technology/specification + + + TR-390 + Performance Measurement from Customer Equipment to IP Edge + Broadband Forum + Technical Report + May 2017 + https://www.broadband-forum.org/technical/download/TR-390.pdf + + + TR-471 + Maximum IP-Layer Capacity Metric, Related Metrics, and Measurements + Broadband Forum + Technical Report + TBD + https://www.broadband-forum.org/technical/download/TR-471.pdf + + + Universal Powerline Association + UPA + https://www.upaplc.org + + + UPnP Device Architecture + UPnP Device Architecture 1.0 + UPnP Forum + April 2008 + https://www.upnp.org/specs/arch/UPnP-arch-DeviceArchitecture-v1.0-20080424.pdf + + + UPnP Device Architecture 1.1 + UPnP Device Architecture 1.1 + UPnP Forum + October, 2008 + https://www.upnp.org/specs/arch/UPnP-arch-DeviceArchitecture-v1.1.pdf + + + UPnP Device Management:1 + UPnP Device Management v1 + https://upnp.org/specs/dm/dm1/ + + + UPnP InternetGatewayDevice:1 + InternetGatewayDevice:1 Device Template Version 1.01 + UPnP + SDCP + 2001 + https://upnp.org/specs/gw/UPnP-gw-InternetGatewayDevice-v1-Device.pdf + + + UPnP InternetGatewayDevice:2 + InternetGatewayDevice:2 Device Template Version 1.01 + UPnP + SDCP + 2010 + https://upnp.org/specs/gw/UPnP-gw-InternetGatewayDevice-v2-Device.pdf + + + USB 1.0 + USB 1.0 Specification + USB-IF + January 1996 + https://www.usb.org/developers/docs/ + + + USB 2.0 + USB 2.0 Specification + USB-IF + April 2000 + https://www.usb.org/developers/docs/usb_20_122208.zip + + + USB 3.0 + USB 3.0 Specification + USB-IF + November 2008 + https://www.usb.org/developers/docs/usb_30_spec.zip + + + WSC 2.0 + Wi-Fi Simple Configuration Technical Specification Version 2.0.x + Wi-Fi Alliance + https://www.wi-fi.org/discover-wi-fi/wi-fi-protected-setup + + + Wi-Fi Protected Setup Specification Version 1.0h + Wi-Fi Alliance + 2006 + https://www.wi-fi.org + + + Z-Wave + Z-Wave website + https://www.z-wave.com + + + ZigBee + ZigBee Alliance website + https://www.zigbee.org + + + ZigBee 2007 Specification + ZigBee 2007 Specification + ZigBee Alliance + October 2007 + https://www.zigbee.org/Specifications/ZigBee/download.aspx + + + + + + + + + + + + + + + + + + + + The top-level object for a Device. + + + + Root data model version, e.g. ''2.4''. For a vendor-defined root data model, this is the standard Broadband Forum model on which the vendor-defined model is based. + + + + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + Reboot the entity associated with the containing {{object}}. + + + + + Boot event indicating that the {{object}} was rebooted. + + + + The ''command_key'' supplied when requesting the boot, or {{empty}} if the boot was not requested via a USP operation. + + + + + + + + The cause of the boot. + + + + + + A {{object}} Event that was the result of a reboot triggered locally on the Device (NOT as a result of a {{command|#.Reboot()}} Command) + + + + + A {{object}} Event that was the result of a reboot triggered via the {{command|#.Reboot()}} Command + + + + + A {{object}} Event that was the result of a factory reset triggered locally on the Device (NOT as a result of a {{command|#.FactoryReset()}} Command) + + + + + A {{object}} Event that was the result of a factory reset triggered via the {{command|#.FactoryReset()}} Command + + + + + + + + {{true}} if the firmware was updated as a result of the boot that caused this Event Notification; otherwise {{false}}. + + + + + + + + Boot parameters configured via the recipient Controller's {{object|.LocalAgent.Controller.{i}.BootParameter}} table. + Formatted as a {{datatype|expand}} + + + + + + + + + Factory reset the entity associated with the containing {{object}}. + + + + + This diagnostics test is vendor-specific and MAY include testing hardware, software, and/or firmware. + + + + Output arguments. + + + + Indicates the availability of diagnostics data. {{enum}} + If the value of this parameter is anything other than {{enum|Complete}}, the values of the other results parameters for this test are indeterminate. + + + + + + + + + + + + Results of self-test (vendor specific). + + + + + + + + + + + + This diagnostic command is used to record packet capture data on a valid (layer 2 or above) interface in libpcap or pcapng format. + + + + Input arguments. + + + + A reference to a (layer 2 or above) interface object that will be the target of this packet capture diagnostic. + + + + + + + + + + + This indicates whether the network trace will be recorded in libpcap {{bibref|LIBPCAP}} or pcapng format, and is dependent on the underlying method of performing a network trace. + + + + + + The packet data is recorded in libpcap {{bibref|LIBPCAP}} format. + + + + + The packet data is recorded in pcapng format. + + + + + + + + The duration in {{units}} to copy packets to the file target. The diagnostic completes when either the {{param}}, {{param|PacketCount}}, or {{param|ByteCount}} conditions are met. + + + + + + + + + + + The maximum number of packets to record to the file target. A value of zero (0) indicates no limit. The diagnostic completes when the {{param|Duration}}, {{param|ByteCount}}, or {{param}} conditions are met. + + + + + + + + The maximum number of bytes to record to the file target. A value of zero (0) indicates no limit. The diagnostic completes when {{param|Duration}}, {{param|PacketCount}} or {{param}} conditions are met. + + + + + + + + The {{datatype}} specifying the destination file location. HTTP and HTTPS transports MUST be supported. Other transports MAY be supported. + + + + + + + + A ({{bibref|BPF}}) formatted expression used to restrict the types of network packets that are recorded to {{param|FileTarget}}. + + + + + + + + + + Username to be used by the Agent to authenticate with the file location. This string is set to {{empty}} if no authentication is required. + + + + + + + + + + Password to be used by the Agent to authenticate with the file location. This string is set to {{empty}} if no authentication is required. When read, this parameter returns an empty string, regardless of the actual value. + + + + + + + Output arguments. + + + + Indicates the availability of diagnostics data. {{enum}} + If the value of this parameter is anything other than {{enum|Complete}}, the values of the other results parameters for this test are indeterminate. + + + + + + + + + + + + + + Results for individual packet capture diagnostics. Packet capture files whose FileLocation is local to the system SHOULD be deleted when the next diagnostic is run, or upon a system reboot. + + + + The {{datatype}} specifying the resulting file location of the packet capture record that triggered this result. This MAY be different than the location specified in FileTarget. + + + + + + + + The local system time at which the capture was started. + + + + + + + + The local system time at which the capture was completed. + + + + + + + + The number of packets recorded to the file target. + + + + + + + + + + + Schedule an async timer operation. A scheduled timer MUST persist across reboots. + NOTE: This command changed from synchronous to asynchronous in version 2.14. + + + + Input arguments. + + + + The number of {{units}} from the time this command is invoked until the Agent responds with an OperationComplete Event notification (based on the associated subscriptions). + + + + + + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + This object contains general services information. + + + + + This object contains general device information. + + + + Each list item is a device category (e.g. "AV_TV" and "AV_Recorder"), or the value is {{empty}} if no such element is provided by the device. + Note: It is assumed that this list might be used for HTIP (Home-network Topology Identifying Protocol) {{bibref|JJ-300.00}} and {{bibref|G.9973}}. Standard HTIP device categories are defined in {{bibref|JJ-300.01}}. In this case, the maximum length of the list is 127 and of each item is 31, and any non-HTIP device categories SHOULD NOT conflict with standard HTIP device categories. + + + + + + + + + The manufacturer of the CPE (human readable string). + + + + + + + + + + Organizationally unique identifier of the device manufacturer. Represented as a six hexadecimal-digit value using all upper-case letters and including any leading zeros. {{pattern}} + The value MUST be a valid OUI as defined in {{bibref|OUI}}. + This value MUST remain fixed over the lifetime of the device, including across firmware updates. + Any change would indicate that it's a new Agent and would therefore require a {{event|#.Boot!}} Event with a {{enum|LocalFactoryReset|#.Boot!.Cause}} enumerated value in the {{param|#.Boot!.Cause}} argument. + + + + + + + + + + + Company identifier assigned and registered by the IEEE Registration Authority to the entity responsible for this Agent. Represented as a six hexadecimal-digit value using all upper-case letters and including any leading zeros. {{pattern}} + This value MUST remain fixed over the lifetime of the Agent, including across firmware updates. Any change would indicate that it's a new Agent and would therefore require a {{event|#.Boot!}} Event with a {{enum|LocalFactoryReset|#.Boot!.Cause}} enumerated value in the {{param|#.Boot!.Cause}} argument. + + + + + + + + + + + Private Enterprise Number assigned and registered by IANA to the entity responsible for this Agent. Represented as a decimal encoding of the IANA-assinged number. + This value MUST remain fixed over the lifetime of the Agent, including across firmware updates. Any change would indicate that it's a new Agent and would therefore require a {{event|#.Boot!}} Event with a {{enum|LocalFactoryReset|#.Boot!.Cause}} enumerated value in the {{param|#.Boot!.Cause}} argument. + + + + + + + + + + The friendly name of the device. + In {{bibref|TR-369}} the friendly name is used during the advertisement of an endpoint - see section IANA-Registered USP Service Names of {{bibref|TR-369}}. + + + + + + + + + + Model name of the CPE (human readable string). + + + + + + + + + + The model number of the device (human readable string), or {{empty}} if no model number is provided by the device. + Note: It is assumed that this string might be used for HTIP (Home-network Topology Identifying Protocol) {{bibref|JJ-300.00}} and {{bibref|G.9973}}. In this case, the maximum length of the string is 31. + + + + + + + + + + A full description of the CPE device (human readable string). + + + + + + + + + + Identifier of the class of product for which the serial number applies. That is, for a given manufacturer, this parameter is used to identify the product or class of product over which the {{param|SerialNumber}} parameter is unique. + This value MUST remain fixed over the lifetime of the device, including across firmware updates. + + + + + + + + + + Identifier of the particular device that is unique for the indicated class of product and manufacturer. + This value MUST remain fixed over the lifetime of the device, including across firmware updates. + + + + + + + + + + A string identifying the particular CPE model and version. + + + + + + + + + + A string identifying the software version currently installed in the CPE (i.e. version of the overall CPE firmware). + To allow version comparisons, this element SHOULD be in the form of dot-delimited integers, where each successive integer represents a more minor category of variation. For example, ''3.0.21'' where the components mean: ''Major.Minor.Build''. + For CPEs that support multiple firmware images, the value for this parameter MUST be the software version of the active firmware image. + + + + + + + + + + {{noreference}}A full path reference to the row in the {{object|FirmwareImage}} table representing the currently running firmware image. + + + + + + + + + + {{noreference}}A full path reference to the row in the {{object|FirmwareImage}} table of the firmware image that is to be loaded the next time the device boots. + This parameter value cannot be empty and must point to a valid and enabled {{object|FirmwareImage}} object where the ({{param|FirmwareImage.{i}.Available}} parameter is set to 'true'). Out of the factory, this parameter should be set to point to the firmware image the CPE will attempt to boot when first powered on. + The firmware image instance referenced by this parameter must also have an Available parameter value of 'true'. Attempting to set this parameter to point to a non-enabled firmware image MUST result in the CPE responding with a CWMP fault (9007). + In situations where the CPE cannot boot the firmware image specified by this parameter and manages to boot a different firmware image, the CPE MUST NOT modify this value to point to the alternate firmware image that is currently active. + + + + + + + + + + {{list}} Each entry is an additional version. Represents any additional hardware version information the vendor might wish to supply. + + + + + + + + + + + {{list}} Each entry is an additional version. Represents any additional software version information the vendor might wish to supply. + + + + + + + + + + + Identifier of the primary service provider and other provisioning information, which MAY be used by the ACS to determine service provider-specific customization and provisioning parameters. + + + + + + + + + + Time in {{units}} since the CPE was last restarted. + + + + + + + + + + Date and time in UTC that the CPE first both successfully established an IP-layer network connection and acquired an absolute time reference using NTP or equivalent over that network connection. The CPE MAY reset this date after a factory reset. + If NTP or equivalent is not available, this parameter, if present, SHOULD be set to the Unknown Time value. + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + Every instance of this object is a Vendor Configuration File, and contains parameters associated with the Vendor Configuration File. + This table of Vendor Configuration Files is for information only and does not allow the Controller to operate on these files in any way. + Whenever the CPE successfully downloads a configuration file as a result of the Download RPC with the FileType argument of ''3 Vendor Configuration File'', the CPE MUST update this table. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Name of the vendor configuration file. + If the CPE is able to obtain the name of the configuration file from the file itself, then the value of this parameter MUST be set to that name. + Otherwise, if the CPE can extract the file name from the URL used to download the configuration file, then the value of this parameter MUST be set to that name. + Otherwise, the value of this parameter MUST be set to the value of the TargetFileName argument of the Download RPC used to download this configuration file. + + + + + + + + + + A string identifying the configuration file version currently used in the CPE. + If the CPE is able to obtain the version of the configuration file from the file itself, then the value of this parameter MUST be set to the obtained value. + Otherwise, the value of this parameter MUST be {{empty}}. + + + + + + + + + + Date and time when the content of the current version of this vendor configuration file was first applied by the CPE. + + + + + + + + A description of the vendor configuration file (human-readable string). + + + + + + + + + + When {{true}}, this parameter indicates that this {{object}} instance is to be used for backup and restoration purposes. + Note: The backup and restore operations may require the use of multiple {{object}} instances. In this scenario the mechanism for detemining the order and combination of {{object}} instances used for backup and restoration purposes is implementation specific. + + + + + + + + This command is issued to upload the configuration file specified by this {{object}} instance. + All results of the actual upload will be contained within the {{event|Device.LocalAgent.TransferComplete!}} event. + + + + Input arguments. + + + + The {{datatype}} specifying the destination file location. HTTP and HTTPS transports MUST be supported. + This argument specifies only the destination file location, and does not indicate in any way the name or location of the local file to be uploaded. + If the Agent receives multiple upload requests with the same URL, the Agent MUST perform each upload as requested, and MUST NOT assume that the content of the file to be uploaded is the same each time. + This URL MUST NOT include the "userinfo" component, as defined in {{bibref|RFC3986}}. + + + + + + + + Username to be used by the Agent to authenticate with the file server. This string is set to {{empty}} if no authentication is required. + + + + + + + + + + Password to be used by the Agent to authenticate with the file server. This string is set to {{empty}} if no authentication is required. + + + + + + + + + + + + This command is issued to download a configuration file into this {{object}} instance. + All results of the actual download will be contained within the {{event|Device.LocalAgent.TransferComplete!}} event. + + + + Input arguments. + + + + The {{datatype}} specifying the source file location. HTTP and HTTPS transports MUST be supported. + If the Agent receives multiple download requests with the same source URL, the Agent MUST perform each download as requested, and MUST NOT assume that the content of the file to be downloaded is the same each time. + This URL MUST NOT include the "userinfo" component, as defined in {{bibref|RFC3986}}. + + + + + + + + Username to be used by the Agent to authenticate with the file server. This string is set to {{empty}} if no authentication is required. + + + + + + + + + + Password to be used by the Agent to authenticate with the file server. This string is set to {{empty}} if no authentication is required. + + + + + + + + + + The size of the file to be downloaded in bytes. + The FileSize argument is intended as a hint to the Agent, which the Agent MAY use to determine if it has sufficient space for the file to be downloaded, or to prepare space to accept the file. + The Controller MAY set this value to zero. The Agent MUST interpret a zero value to mean that that the Controller has provided no information about the file size. In this case, the Agent MUST attempt to proceed with the download under the presumption that sufficient space is available, though during the course of download, the Agent might determine otherwise. + The Controller SHOULD set the value of this Parameter to the exact size of the file to be downloaded. If the value is non-zero, the Agent MAY reject the ScheduleDownload request on the basis of insufficient space. + If the Agent attempts to proceed with the download based on the value of this argument, but the actual file size differs from the value of this argument, this could result in a failure of the download. However, the Agent MUST NOT cause the download to fail solely because it determines that the value of this argument is inaccurate. + + + + + + + + The name of the file to be used on the target file system. This argument MAY be {{empty}} if the target file name can be extracted from the downloaded file itself, or from the URL argument, or if no target file name is needed. + If this argument is specified, but the target file name is also indicated by another source (for example, if it is extracted from the downloaded file itself), this argument MUST be ignored. + If the target file name is used, the downloaded file would replace any existing file of the same name (whether or not the Agent archives the replaced file is a local matter). + If present, this Parameter is treated as an opaque string with no specific requirements for its format. That is, the TargetFileName value is to be interpreted based on the Agent's vendor-specific file naming conventions. + Note that this specification does not preclude the use of a file naming convention in which the file’s path can be specified as part of the file name. + + + + + + + + + + The hash algorithm to use when performing a checksum validation of the downloaded file. + If the {{param|CheckSum}} input argument is specified, the Agent MUST validate the integrity of the downloaded file by comparing the value contained in the {{param|CheckSum}} input argument against a hash of the downloaded file. + + + + + + As specified in {{bibref|RFC3174}}. + + + + + As specified in {{bibref|RFC6234}}. + + + + + As specified in {{bibref|RFC6234}}. + + + + + As specified in {{bibref|RFC6234}}. + + + + + As specified in {{bibref|RFC6234}}. + + + + + + + + The hash value of the downloaded file used to validate the integrity of the downloaded file. + If this argument is specified, the Agent MUST validate the integrity of the downloaded file by comparing the provided value against a hash of the downloaded file using the hashing algorithm specified in the {{param|CheckSumAlgorithm}} input argument. + If this argument is {{empty}}, the Agent MUST NOT perform a checksum validation of the downloaded file. + + + + + + + + + + + Status of the device's volatile physical memory. + + + + The total physical RAM, in {{units}}, installed on the device. + + + + + + + + + + The free physical RAM, in {{units}}, currently available on the device. + + + + + + + + + + + Status of the processes on the device. + + + + The total amount of the CPU, in {{units}}, rounded up to the nearest whole {{units}}. In the case that multiple CPU are present, this value represents the average of all CPU. + + + + + + + + + + + {{numentries}} + + + + + + + + + List of all processes running on the device. + + + + + + + The Process Identifier. + + + + + + + + The name of the command that has caused the process to exist. + + + + + + + + + + The size in {{units}} of the memory occupied by the process. + + + + + + + + + + The priority of the process where 0 is highest. + + + + + + + + + + The amount of time in {{units}} that the process has spent taking up CPU time since the process was started. + + + + + + + + + + The current state that the process is in. + + + + + + + + + + + + + + + + Status of the temperature of the device. + + + + {{numentries}} + + + + + + + + + This object represents information that the device has obtained via sampling an internal temperature sensor. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Indicates whether or not the temperature sensor is enabled. + + + + + + + + The status of this temperature sensor. + + + + + + The sensor is not currently sampling the temperature. + + + + + The sensor is currently sampling the temperature. + + + + + The sensor error currently prevents sampling the temperature. + + + + + + + + The time at which this temperature sensor was reset. + Reset can be caused by: + * {{param|Status}} transition from {{enum|Disabled|Status}} to {{enum|Enabled|Status}} + * {{param|Reset}} set to {{true}}. + * An internal reset of the temperature sensor (including a reboot of the device). + The Unknown Time value, as defined in {{bibref|TR-106}}, indicates that this temperature sensor has never been reset, which can only happen if it has never been enabled. + + + + + + + + Name of this temperature sensor. This text MUST be sufficient to distinguish this temperature sensor from other temperature sensors. + + + + + + + + + + This temperature sensor's last good reading in {{units}}. + A value of -274 (which is below absolute zero) indicates a good reading has not been obtained since last reset. + + + + + + + + + + + The time at which this temperature sensor's last good reading was obtained. + The Unknown Time value, as defined in {{bibref|TR-106}}, indicates a good reading has not been obtained since last reset. + + + + + + + + This temperature sensor's lowest value reading in {{units}} since last reset. + A value of -274 (which is below absolute zero) indicates a good reading has not been obtained since last reset. + + + + + + + + + + + The time at which this temperature sensor's lowest value was read. + The Unknown Time value, as defined in {{bibref|TR-106}}, indicates a good reading has not been obtained since last reset. + + + + + + + + This temperature sensor's highest value reading in {{units}} since last reset. + A value of -274 (which is below absolute zero) indicates a good reading has not been obtained since last reset. + + + + + + + + + + + The time at which this temperature sensor's highest value was read. + The Unknown Time value, as defined in {{bibref|TR-106}}, indicates a good reading has not been obtained since last reset. + + + + + + + + This temperature sensor's low alarm value in {{units}}. + A value of -274 (which is below absolute zero) indicates a non configured value. + A change to this value will cause {{param|LowAlarmTime}} to be reset. + + + + + + + + + + + Initial time at which this temperature sensor's {{param|LowAlarmValue}} was encountered. + This value is only set the first time the alarm is seen and not changed until the next reset. + The Unknown Time value, as defined in {{bibref|TR-106}}, indicates that an alarm has not been encountered since the last reset. + + + + + + + + This temperature sensor's high alarm value in {{units}}. + A value of -274 (which is below absolute zero) indicates a non configured value. + A change to this value will cause {{param|HighAlarmTime}} to be reset. + + + + + + + + + + + The interval, measured in {{units}}, in which the device polls this {{object}}. + If the value is 0 then the device selects its own polling interval. + If the value is greater than 0 then the device MUST use this value as the polling interval. + + + + + + + + + + Initial time at which this temperature sensor's {{param|HighAlarmValue}} was encountered. + This value is only set the first time the alarm is seen and not changed until the next reset. + The Unknown Time value, as defined in {{bibref|TR-106}}, indicates that an alarm has not been encountered since the last reset. + + + + + + + + Resets the temperature sensor. + + + + + + This object defines the parameters that describe how the device handles network traffic. + + + + The maximum number of {{units}} of outstanding data a sender can send on a particular connection prior to an acknowledgment {{bibref|RFC793}}. Any scaling factor SHOULD be included in this parameter {{bibref|RFC1323}}. + + + + + + + + + + {{list}} Indicates the TCP congestion control mechanism(s) implemented. {{enum}} + Tahoe, Reno, and New Reno are defined in {{bibref|RFC2582}} + + + + + + + Represents the base TCP implementation in {{bibref|RFC793}} and elements of {{bibref|RFC2582}} + + + + + Represents the base TCP implementation in {{bibref|RFC793}} with the additional algorithms defined in {{bibref|RFC2581}} + + + + + Described as a modification to the Reno algorithms in {{bibref|RFC2582}} + + + + + An emerging TCP congestion control mechanism + + + + + + + + + Each table entry represents a hardware or virtual processor that resides on this device. + + + + + + + {{datatype|expand}} + + + + + + + + The architecture of the processor on the underlying hardware. {{enum}} + For processor architectures not included in this list, the vendor MAY include vendor-specific values, which MUST use the format defined in {{bibref|TR-106|Section 3.3}}. + + + + + + + + + + big-endian + + + + + little-endian + + + + + + big-endian + + + + + little-endian + + + + + + + + + + Each table entry represents a Vendor Log File. + This table of log files is informational only and does not allow the Controller to operate on these files in any way. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Name of the log file. + Typically this will be the full file system path, but provided that it is guaranteed to be unique across current and future log files, it MAY be a shorter name derived from the file system path, or be derived via another mechanism. + + + + + + + + + + The maximum size of the log file in {{units}}. If the device doesn't know the maximum file size then {{param}} will be 0. + + + + + + + + + + When {{true}}, the log file contents are preserved across a device reboot. + When {{false}}, the log file contents will be purged when the device is rebooted. + + + + + + + + This command is issued to upload the log file specified by this Vendor Log File instance. + All results of the actual upload will be contained within the {{event|Device.LocalAgent.TransferComplete!}} event. + + + + Input arguments. + + + + The {{datatype}} specifying the destination file location. HTTP and HTTPS transports MUST be supported. + This argument specifies only the destination file location, and does not indicate in any way the name or location of the local file to be uploaded. + If the Agent receives multiple upload requests with the same URL, the Agent MUST perform each upload as requested, and MUST NOT assume that the content of the file to be uploaded is the same each time. + This URL MUST NOT include the "userinfo" component, as defined in {{bibref|RFC3986}}. + + + + + + + + Username to be used by the Agent to authenticate with the file server. This string is set to {{empty}} if no authentication is required. + + + + + + + + + + Password to be used by the Agent to authenticate with the file server. This string is set to {{empty}} if no authentication is required. + + + + + + + + + + + + + This object contains Location information. + + + + + + + + Identifies the source of the location data. + + + + + + + + + + + + + + The time when the location was acquired. + + + + + + + + URL, MAC address, or other identifier that identifies an "External" source of this location. + Meaningful only if {{param|Source}} has a value of {{enum|External|Source}}, otherwise it MUST be {{empty}}. + If {{param|ExternalProtocol}} has a value of {{enum|CWMP|ExternalProtocol}}, this is the URL or IP address of the Controller. + + + + + + + + Protocol used to acquire a location from an "External" source. {{enum}} + Meaningful only if {{param|Source}} has a value of {{enum|External|Source}}, otherwise it MUST be {{empty}}. + + + + + + {{empty}} + + + + + + + + + + + + + + + + + + + + The currently valid location information. + Writable only when {{param|ExternalProtocol}} has a value of {{enum|CWMP|ExternalProtocol}} or {{enum|USP|ExternalProtocol}}. + If obtained through the local GPS/AGPS then the location information is formatted according to {{bibref|RFC5491}}. + If manually configured then location information will be XML-formatted according to {{bibref|RFC5491}} (geographical information) and {{bibref|RFC5139}} (civic addresses). + If obtained by an external source this is the location information as received. + If it's an XML document (e.g. CWMP, OMA-DM, UPnP, HELD, MLP) the location information will be represented as-is, otherwise it will be converted to base64. + CWMP or USP configured location information will be XML-formatted according to {{bibref|RFC5491}} (geographical information) and {{bibref|RFC5139}} (civic addresses). + Only zero or one Location object instance with value {{enum|CWMP|ExternalProtocol}} or {{enum|USP|ExternalProtocol}} MUST exist at any given time. + + + + + + + + + + + This object describes an image of the device. + + + + + + + + + + {{datatype|expand}} + + + + + + + + The location of the device that represents the image as the user looks at the front of the device in its typical orientation (e.g., on-end, flat). + + + + + + + + + + + + + + + The device image in PNG, JPEG or GIF format. + + + + + + + + + Top-level object for mapping firmware images. + This is a static table – the number of object instances in this table is defined by the firmware that is currently running. + + + + + + + {{datatype|expand}} + + + + + + + + Firmware/software image name. Descriptive text of the image or filename. + The value of {{param}} is {{empty}} if {{param|Status}} is anything other than {{enum|Available|Status}}, {{enum|InstallationFailed|Status}}, or {{enum|ActivationFailed|Status}}. + + + + + + + + + + A string identifying the version of the firmware image represented by this {{object}}. Whenever this firmware image is active (ie, the device has booted this firmware image), the value of the {{param|.DeviceInfo.SoftwareVersion}} parameter MUST be the same as the value contained in this parameter. + To allow version comparisons, this element SHOULD be in the form of dot-delimited integers, where each successive integer represents a more minor category of variation. For example, 3.0.21 where the components mean: ''Major.Minor.Build''. + The value of {{param}} is {{empty}} if {{param|Status}} is anything other than {{enum|Available|Status}}, {{enum|InstallationFailed|Status}}, or {{enum|ActivationFailed|Status}}. + + + + + + + + + + Specifies whether or not this particular firmware image can be used by the Agent. An Agent will only attempt to boot this particular firmware image if this parameter value is set to {{true}}. + This value MUST be set to {{true}} by the device whenever a new firmware image is installed. + This value cannot be set to {{false}} if the firmware image is active or is referenced by the {{param|#.BootFirmwareImage}} parameter. + Firmware image instances cannot be deleted, so a Controller MAY use this parameter to subsequently mark a particular firmware as being invalid, which will prevent the Agent from attempting to boot it. + + + + + + + + Status of the firmware image, as determined by the Agent. {{enum}} + + + + + + This Firmware Image instance is empty. + This value could happen on an Agent that supports multiple firmware images, but only has a single image installed. + + + + + This Firmware Image instance is the currently active image. + + + + + This Firmware Image instance is being downloaded. + + + + + This Firmware Image instance has been downloaded, and is in the process of being validated. + + + + + This Firmware Image instance has been downloaded, validated, and installed, and is ready to be activated. + + + + + The Agent has attempted to download this Firmware Image instance, but ultimately failed while retrieving it from the source URL. + + + + + The Agent has attempted to validate a Firmware Image downloaded to this instance, but ultimately failed while validating it. + + + + + The Agent has attempted to install a Firmware Image downloaded and validated to this instance, but ultimately failed while installing it. + + + + + The Agent has attempted to active this Firmware Image instance, but ultimately failed while being activated. + + + + + + + + If the Agent is unable to boot into this firmware image, when specified, the Agent can use this parameter to record some information as to why the boot failed. + If the Agent successfully boots into this firmware, the value of this parameter SHOULD be {{empty}}. When a new firmware image is installed into this object instance, this parameter MUST be cleared. + The length of this string is defined as implementation-specific by the Agent. + + + + + + + + This command is issued to download a firmware into this Firmware Image instance. + All results of the actual download will be contained within the {{event|Device.LocalAgent.TransferComplete!}} event. + + + + Input arguments. + + + + The {{datatype}} specifying the source file location. HTTP and HTTPS transports MUST be supported. + If the Agent receives multiple download requests with the same source URL, the Agent MUST perform each download as requested, and MUST NOT assume that the content of the file to be downloaded is the same each time. + This URL MUST NOT include the "userinfo" component, as defined in {{bibref|RFC3986}}. + + + + + + + + If {{true}} the Agent MUST automatically activate the firmware once it is successfully downloaded. + If {{false}} the Agent MUST NOT activate the firmware until explicitly instructed to do so by either invoking {{command|#.Activate()}} or setting {{param|##.BootFirmwareImage}} and rebooting the Agent. + + + + + + + + Username to be used by the Agent to authenticate with the file server. This argument is omitted if no authentication is required. + + + + + + + + + + Password to be used by the Agent to authenticate with the file server. This argument is omitted if no authentication is required. + + + + + + + + + + The size of the file to be downloaded in bytes. + The FileSize argument is intended as a hint to the Agent, which the Agent MAY use to determine if it has sufficient space for the file to be downloaded, or to prepare space to accept the file. + The Controller MAY set this value to zero. The Agent MUST interpret a zero value to mean that that the Controller has provided no information about the file size. In this case, the Agent MUST attempt to proceed with the download under the presumption that sufficient space is available, though during the course of download, the Agent might determine otherwise. + The Controller SHOULD set the value of this Parameter to the exact size of the file to be downloaded. If the value is non-zero, the Agent MAY reject the ScheduleDownload request on the basis of insufficient space. + If the Agent attempts to proceed with the download based on the value of this argument, but the actual file size differs from the value of this argument, this could result in a failure of the download. However, the Agent MUST NOT cause the download to fail solely because it determines that the value of this argument is inaccurate. + + + + + + + + The hash algorithm to use when performing a checksum validation of the downloaded file. + If the {{param|CheckSum}} input argument is specified, the Agent MUST validate the integrity of the downloaded file by comparing the value contained in the {{param|CheckSum}} input argument against a hash of the downloaded file. + + + + + + As specified in {{bibref|RFC3174}}. + + + + + As specified in {{bibref|RFC6234}}. + + + + + As specified in {{bibref|RFC6234}}. + + + + + As specified in {{bibref|RFC6234}}. + + + + + As specified in {{bibref|RFC6234}}. + + + + + + + + The hash value of the downloaded file used to validate the integrity of the downloaded file. + If this argument is specified, the Agent MUST validate the integrity of the downloaded file by comparing the provided value against a hash of the downloaded file using the hashing algorithm specified in the {{param|CheckSumAlgorithm}} input argument. + If this argument is {{empty}}, the Agent MUST NOT perform a checksum validation of the downloaded file. + + + + + + + + + + This command is issued to activate this {{object}} instance. + A {{object}} instance can also be activated by setting the {{param|Device.DeviceInfo.BootFirmwareImage}} parameter and causing the Agent to reboot. + A successful activation will result in a reboot of the device with this {{object}} as the currently running firmware image. Furthermore, this {{object}} will be referenced by the {{param|Device.DeviceInfo.ActiveFirmwareImage}} parameter. + A failed activation will result in this {{object}} instance's {{param|BootFailureLog}} being updated. + + + + Input arguments. + + + + The time window(s) that dictate when the Agent activates the firmware image. + An Agent MUST be able to accept a request with either one or two {{object}} instances. + The time windows MUST NOT overlap, i.e. if there are two time windows, the second window’s Start value has to be greater than or equal to the first window’s End value. + + + + Start of this time window as an offset in {{units}} after invoking the command. An offset is used in order to avoid a dependence on absolute time. + + + + + + + + + + End of this time window as an offset in {{units}} after invoking the command. An offset is used in order to avoid a dependence on absolute time. + + + + + + + + + + Specifies when within this time window the Agent is permitted to activate the specified firmware image. + + + + + + The Agent MAY activate the firmware image at any time during the time window even if this results in interruption of service for the subscriber. + + + + + The Agent MUST activate the firmware image immediately at the start of the time window even if this results in interruption of service for the subscriber. + + + + + The Agent MUST NOT cause an interruption of service from the subscriber's standpoint while activating the firmware image during the time window. + How the Agent determines this is outside the scope of this specification. + + + + + The Agent MUST ask for and receive confirmation before activating the firmware image. + It is outside the scope of this specification how the Agent asks for and receives this confirmation. + If confirmation is not received, this time window MUST NOT be used. + + + + + + + + A message that informs the user of a request to activate a new firmware image. + The Agent MAY use this message when seeking confirmation from the user, e.g. when {{param|Mode}} is {{enum|ConfirmationNeeded|Mode}}. + When there is no need for such a message, it SHOULD be {{empty}} and MUST be ignored. + + + + + + + + The maximum number of retries for activating the firmware image before regarding the transfer as having failed. Refers only to this time window (each time window can specify its own value). + A value of 0 means “No retries are permitted”. A value of -1 means “the Agent determines the number of retries”, i.e. that the Agent can use its own retry policy, not that it has to retry forever. + Only applicable when the {{param|Mode}} input argument is {{enum|ConfirmationNeeded|Mode}}, otherwise this input argument MUST be ignored. + + + + + + + + + + + + + + This object contains parameters relating an NTP or SNTP time client in the CPE. + + + + Enables or disables the NTP or SNTP time client. + + + + + + + + Status of Time support on the CPE. {{enum}} + The {{enum|Unsynchronized}} value indicates that the CPE's absolute time has not yet been set. + The {{enum|Synchronized}} value indicates that the CPE has acquired accurate absolute time; its current time is accurate. + The {{enum|Error_FailedToSynchronize}} value indicates that the CPE failed to acquire accurate absolute time; its current time is not accurate. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + First NTP timeserver. Either a host name or IP address. + + + + + + + + + + Second NTP timeserver. Either a host name or IP address. + + + + + + + + + + Third NTP timeserver. Either a host name or IP address. + + + + + + + + + + Fourth NTP timeserver. Either a host name or IP address. + + + + + + + + + + Fifth NTP timeserver. Either a host name or IP address. + + + + + + + + + + The current date and time in the CPE's local time zone. + + + + + + + + The local time zone definition, encoded according to IEEE 1003.1 (POSIX). The following is an example value: + : EST+5 EDT,M4.1.0/2,M10.5.0/2 + + + + + + + + + + + This object contains parameters relating to the user interface of the CPE. + + + + Enables and disables the CPE's user interface. + + + + + + + + + Present only if the CPE provides a password-protected LAN-side user interface. + Indicates whether or not the local user interface MUST require a password to be chosen by the user. If {{false}}, the choice of whether or not a password is used is left to the user. + + + + + + + + Present only if the CPE provides a password-protected LAN-side user interface and supports LAN-side Auto-Configuration. + Indicates whether or not a password to protect the local user interface of the CPE MAY be selected by the user directly (i.e. {{param|.Users.User.{i}.Password}}), or MUST be equal to the password used by the LAN-side Auto-Configuration protocol (i.e. {{param|.LANConfigSecurity.ConfigPassword}}). + + + + + + + + Indicates that a CPE upgrade is available, allowing the CPE to display this information to the user. + + + + + + + + Indicates the date and time in UTC that the warranty associated with the CPE is to expire. + + + + + + + + The name of the customer's ISP. + + + + + + + + + + The help desk phone number of the ISP. + + + + + + + + + + The {{datatype}} of the ISP's home page. + + + + + + + + The {{datatype}} of the ISP's on-line support page. + + + + + + + + Base64 encoded GIF or JPEG image. The binary image is constrained to 4095 bytes or less. + + + + + + + + + + Un-encoded binary image size in bytes. + If ISPLogoSize input value is 0 then the ISPLogo is cleared. + ISPLogoSize can also be used as a check to verify correct transfer and conversion of Base64 string to image size. + + + + + + + + + + The {{datatype}} of the ISP's mail server. + + + + + + + + The {{datatype}} of the ISP's news server. + + + + + + + + The color of text on the GUI screens in RGB hexadecimal notation (e.g., FF0088). + + + + + + + + + + The color of the GUI screen backgrounds in RGB hexadecimal notation (e.g., FF0088). + + + + + + + + + + The color of buttons on the GUI screens in RGB hexadecimal notation (e.g., FF0088). + + + + + + + + + + The color of text on buttons on the GUI screens in RGB hexadecimal notation (e.g., FF0088). + + + + + + + + + + The server the CPE can check to see if an update is available for direct download to it. + + + + + + + + + + The server where a user can check via a web browser if an update is available for download to a PC. + + + + + + + + + + {{list}} List items represent user-interface languages that are available, where each language is specified according to {{bibref|RFC3066}}. + + + + + + + + + + + Current user-interface language, specified according to {{bibref|RFC3066}}. The value MUST be a member of the list reported by the {{param|AvailableLanguages}} parameter. + + + + + + + + + + Present only if the Agent provides a password-protected LAN-side user interface and supports LAN-side Auto-Configuration. + Reset {{param|.LANConfigSecurity.ConfigPassword}} to its factory value. + + + + + + This object contains parameters relating to remotely accessing the CPE's user interface. + Remote access is defined as any entity not of a local subnet attempting to connect to the CPE. + Remote access requires user authentication. To provide remote access authentication the CPE MUST support a "User" table with at least one instance that has "RemoteAccessCapable" set to {{true}}. + + + + Enables/Disables remotely accessing the CPE's user interface. + + + + + + + + Destination TCP port required for remote access connection. + + + + + + + + + + {{list}} Indicates the protocols that are supported by the CPE for the purpose of remotely accessing the user interface. + + + + + + + As defined in {{bibref|RFC2616}} + + + + + As defined in {{bibref|RFC2818}} + + + + + + + + This is the protocol currently being used for remote access. + + + + + + + + + + + This object describes how to remotely manage the initial positioning of a user interface on a device's local display. + + + + Controls whether the user is allowed to change the GUI window position on the local CPE's display. + + + + + + + + Controls whether the user is allowed to resize the GUI window on the local CPE's display. + + + + + + + + The horizontal position of the User Interface's top left corner within the local CPE's display measured from the top left corner, expressed in {{units}}. + + + + + + + + + + The vertical position of the User Interface's top left corner within the local CPE's display measured from the top left corner, expressed in {{units}}. + + + + + + + + + + The width of the user interface within the local CPE's display, expressed in {{units}}. + + + + + + + + + + The height of the user interface within the local CPE's display, expressed in {{units}}. + + + + + + + + + + The width of the local CPE's display, expressed in {{units}}. + + + + + + + + + + The height of the local CPE's display, expressed in {{units}}. + + + + + + + + + + + Definition of user information message displays. + + + + Enables and displays the user information message. + + + + + + + + + Message title to be displayed. + + + + + + + + + + Message sub title to be displayed. + + + + + + + + + + Message text. + + + + + + + + Icon to be displayed. + + + + + + + + + + + + + + + + The color of message text in RGB hexadecimal notation (e.g., FF0088). + + + + + + + + + + The color of the message screen background in RGB hexadecimal notation (e.g., FF0088). + + + + + + + + + + The color of the message title in RGB hexadecimal notation (e.g., FF0088). + + + + + + + + + + The color of the sub title in RGB hexadecimal notation (e.g., FF0088). + + + + + + + + + + The number of times the device SHOULD repeat the message. + + + + + + + + The number of times the device repeated the message. + + + + + + + + + This table contains information about the relationships between the multiple layers of interface objects ({{bibref|TR-181i2|Section 4.3}}). In particular, it contains information on which interfaces run ''on top of'' which other interfaces. + This table is auto-generated by the CPE based on the ''LowerLayers'' parameters on individual interface objects. + Each table row represents a "link" between two interface objects, a higher-layer interface object (referenced by {{param|HigherLayer}}) and a lower-layer interface object (referenced by {{param|LowerLayer}}). Consequently, if a referenced interface object is deleted, the CPE MUST delete the corresponding {{object}} row(s) that had referenced it. + + + + + + + + + + + {{datatype|expand}} + + + + + + + + {{noreference}}A reference to the interface object corresponding to the higher layer of the relationship, i.e. the interface which runs on ''top'' of the interface identified by the corresponding instance of {{param|LowerLayer}}. + When the referenced higher layer interface is deleted, the CPE MUST delete the table row. + + + + + + + + + + + {{noreference}}A reference to the interface object corresponding to the lower layer of the relationship, i.e. the interface which runs ''below'' the interface identified by the corresponding instance of {{param|HigherLayer}}. + When the referenced lower layer interface is deleted, the CPE MUST delete the table row. + + + + + + + + + + + The value of the ''Alias'' parameter for the interface object referenced by {{param|HigherLayer}}. + + + + + + + + + + The value of the ''Alias'' parameter for the interface object referenced by {{param|LowerLayer}}. + + + + + + + + + + + This object models DSL lines, DSL channels, DSL bonding, and DSL diagnostics. The specific interface objects defined here are {{object|Line}}, {{object|Channel}}, and {{object|BondingGroup}}. Each {{object|Line}} models a layer 1 DSL Line interface, and each {{object|Channel}} models a layer 1 DSL Channel interface where multiple channels can run over a DSL line. In the case where bonding is configured, it is expected that {{object|BondingGroup}} is stacked above the {{object|Channel}} instances within its group. + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + DSL Line table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). + This table models physical DSL lines. + + + + + + + + + + Enables or disables the DSL line. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + Enables or disables data gathering on the DSL line. + + + + + + + + The current operational state of the DSL line (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the DSL line as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the DSL line entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + Note: Since {{object}} is a layer 1 interface, it is expected that {{param}} will not be used. + + + + + + + + + + + + + Indicates whether the interface points towards the Internet ({{true}}) or towards End Devices ({{false}}). + For example: + * For an Internet Gateway Device, {{param}} will be {{true}} for all WAN interfaces and {{false}} for all LAN interfaces. + * For a standalone WiFi Access Point that is connected via Ethernet to an Internet Gateway Device, {{param}} will be {{true}} for the Ethernet interface and {{false}} for the WiFi Radio interface. + * For an End Device, {{param}} will be {{true}} for all interfaces. + + + + + + + + A string identifying the version of the modem firmware currently installed for this interface. This is applicable only when the modem firmware is separable from the overall CPE software. + + + + + + + + + + Status of the DSL physical link. {{enum}} + When {{param}} is {{enum|Up}}, {{param|Status}} is expected to be {{enum|Up|Status}}. When {{param}} is {{enum|Initializing}} or {{enum|EstablishingLink}} or {{enum|NoSignal}} or {{enum|Disabled}}, {{param|Status}} is expected to be {{enum|Down|Status}}. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + + {{list}} List items indicate which DSL standards and recommendations are supported by the {{object}} instance. {{enum}} + Note: In G.997.1, this parameter is called "xDSL Transmission system capabilities". See ITU-T Recommendation {{bibref|G.997.1}}. + This parameter was DEPRECATED because its entries are out-of-date; {{param|XTSE}} points to a current list. Therefore its value MAY be {{empty}} if (and only if) {{param|XTSE}} is supported. + This parameter is OBSOLETED in 2.14. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + This configuration parameter defines the transmission system types to be allowed by the xTU on this {{object}} instance. Each bit is 0 if not allowed or 1 if allowed, as defined for the xTU transmission system enabling (XTSE) in ITU-T G.997.1. + Note: This parameter is defined as xDSL Transmission system enabling (XTSE) in ITU-T G.997.1. For a full definition, see Clause 7.3.1.1.1 of ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + Indicates the standard that the {{object}} instance is using for the connection. + Note: In G.997.1, this parameter is called "xDSL Transmission system". See ITU-T Recommendation {{bibref|G.997.1}}. + This parameter was DEPRECATED because its entries are out-of-date; {{param|XTSE}} points to a current list. Therefore its value MAY be {{empty}} if (and only if) {{param|XTSUsed}} is supported. + This parameter is OBSOLETED in 2.14. + + + + + + + + + + This parameter indicates which DSL standard and recommendation are currently in use by the {{object}} instance. Only one bit is set, as defined for the xTU transmission system enabling (XTSE) in ITU-T G.997.1. + + + + + + + + + + The line encoding method used in establishing the Layer 1 DSL connection between the CPE and the DSLAM. {{enum}} + Note: Generally speaking, this variable does not change after provisioning. + + + + + + + + + + + + + + + {{list}} List items indicate which VDSL2 profiles are allowed on the line. {{enum}} + Note: In G.997.1, this parameter is called PROFILES. See ITU-T Recommendation {{bibref|G.997.1}}. + Note: This parameter is OPTIONAL at the G and S/T interfaces in G.997.1 Amendment 1. If the parameter is implemented but no value is available, its value MUST be {{empty}}. + + + + + + + + + + + + + + + + + + + + Indicates which VDSL2 profile is currently in use on the line. + Note: This parameter is OPTIONAL at the G and S/T interfaces in G.997.1 Amendment 1. If the parameter is implemented but no value is available, its value MUST be {{empty}}. + + + + + + + + + + The power management state of the line. {{enum}} + Note: See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + + + + + The success failure cause of the initialization. An enumeration of the following integer values: + * 0: Successful + * 1: Configuration error. This error occurs with inconsistencies in configuration parameters, e.g. when the line is initialized in an xDSL Transmission system where an xTU does not support the configured Maximum Delay or the configured Minimum or Maximum Data Rate for one or more bearer channels. + * 2: Configuration not feasible on the line. This error occurs if the Minimum Data Rate cannot be reached on the line with the Minimum Noise Margin, Maximum PSD level, Maximum Delay and Maximum Bit Error Ratio for one or more bearer channels. + * 3: Communication problem. This error occurs, for example, due to corrupted messages or bad syntax messages or if no common mode can be selected in the G.994.1 handshaking procedure or due to a timeout. + * 4: No peer xTU detected. This error occurs if the peer xTU is not powered or not connected or if the line is too long to allow detection of a peer xTU. + * 5: Any other or unknown Initialization Failure cause. + * 6: ITU T G.998.4 retransmission mode was not selected while RTX_MODE = FORCED or with RTX_MODE = RTX_TESTMODE. + Note: In G.997.1, this parameter is called "Initialization success/failure cause". See Clause 7.5.1.6 of ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + This parameter contains the estimated electrical loop length estimated by the VTU-R expressed in {{units}} at 1MHz (see O-UPDATE in section 12.2.4.2.1.2/G.993.2). The value is coded as an unsignedInt in the range 0 (coded as 0) to 128 dB (coded as 1280) in steps of {{units}}. + Note: This parameter is defined as UPBOKLE-R in Clause 7.5.1.23.2 of ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + + VTU-O estimated upstream power back-off electrical length per band. + This parameter is a vector of UPBO electrical length per-band estimates for each supported downstream band, expressed in {{units}} at 1 MHz (kl0) calculated by the VTU-R, based on separate measurements in the supported upstream bands. The value of each list element ranges from 0 to 128 dB in steps of {{units}}, with special value 204.7 which indicates that the estimate is greater than 128 dB. This parameter is required for the alternative electrical length estimation method (ELE-M1). + Note: This parameter is defined as UPBOKLE-pb in Clause 7.5.1.23.3 of ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + + + + VTU-R estimated upstream power back-off electrical length per band. + This parameter is a vector of UPBO electrical length per-band estimates for each supported downstream band, expressed in {{units}} at 1 MHz (kl0) calculated by the VTU-R, based on separate measurements in the supported downstream bands. The value of each list element ranges from 0 to 128 dB in steps of {{units}}, with special value 204.7 which indicates that the estimate is greater than 128 dB. This parameter is required for the alternative electrical length estimation method (ELE-M1). + The value of each list element is coded as an unsigned 16 bit number in the range 0 (coded as 0) to 128 dB (coded as 1280) in steps of {{units}}. + Note: This parameter is defined as UPBOKLE-R-pb in Clause 7.5.1.23.4 of ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + + + + UPBO downstream receiver signal level threshold. + This parameter reports the downstream received signal level threshold value used in the alternative electrical length estimation method (ELE-M1). This parameter represents an offset from -100 dBm/Hz, and ranges from -64 dB to 0 dB in steps of {{units}}. + The value is coded as a 16 bit number in the range -64 (coded as -640) to 0 dB (coded as 0) in steps of {{units}}. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + + This parameter indicates the actual active rate adaptation mode in the downstream direction. + * If {{param}} equals 1, the link is operating in RA-MODE 1 (MANUAL). + * If {{param}} equals 2, the link is operating in RA-MODE 2 (AT_INIT). + * If {{param}} equals 3, the link is operating in RA-MODE 3 (DYNAMIC). + * If {{param}} equals 4, the link is operating in RA-MODE 4 (DYNAMIC with SOS). + Note: This parameter is defined as ACT-RA-MODEds in Clause 7.5.1.33.1 of ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + This parameter indicates the actual active rate adaptation mode in the upstream direction. + * If {{param}} equals 1, the link is operating in RA-MODE 1 (MANUAL). + * If {{param}} equals 2, the link is operating in RA-MODE 2 (AT_INIT). + * If {{param}} equals 3, the link is operating in RA-MODE 3 (DYNAMIC). + * If {{param}} equals 4, the link is operating in RA-MODE 4 (DYNAMIC with SOS). + Note: This parameter is defined as ACT-RA-MODEus in Clause 7.5.1.33.2 of ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + This parameter reports the actual impulse noise protection (INP) of the robust overhead channel (ROC) in the downstream direction. The format and usage is identical to the channel status parameter {{param|#.Channel.{i}.ACTINP}}. + Note: This parameter is defined as ACTINP-ROC-ds in Clause 7.5.1.34.1 of ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + This parameter reports the actual impulse noise protection (INP) of the robust overhead channel (ROC) in the upstream direction. The format and usage is identical to the channel status parameter {{param|#.Channel.{i}.ACTINP}}. + Note: This parameter is defined as ACTINP-ROC-us in Clause 7.5.1.34.2 ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + This parameter reports the actual signal-to-noise margin of the robust overhead channel (ROC) in the downstream direction (expressed in {{units}}). The format is identical to the format of the line status parameter SNRM margin {{param|DownstreamNoiseMargin}}. + Note: This parameter is defined as SNRM-ROC-ds in Clause 7.5.1.35.1 ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + This parameter reports the actual signal-to-noise margin of the robust overhead channel (ROC) in the upstream direction (expressed in {{units}}). The format is identical to the format of the line status parameter SNRM margin ({{param|UpstreamNoiseMargin}}). + Note: This parameter is defined as SNRM-ROC-us in Clause 7.5.1.35.2 ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + This parameter represents the last successful transmitted initialization state in the downstream direction in the last full initialization performed on the line. Initialization states are defined in the individual xDSL Recommendations and are counted from 0 (if G.994.1 is used) or 1 (if G.994.1 is not used) up to Showtime. This parameter needs to be interpreted along with the xDSL Transmission System. + This parameter is available only when, after a failed full initialization, the line diagnostics procedures are activated on the line. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + This parameter represents the last successful transmitted initialization state in the upstream direction in the last full initialization performed on the line. Initialization states are defined in the individual xDSL Recommendations and are counted from 0 (if G.994.1 is used) or 1 (if G.994.1 is not used) up to Showtime. This parameter needs to be interpreted along with the xDSL Transmission System. + This parameter is available only when, after a failed full initialization, the line diagnostics procedures are activated on the line. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + This parameter contains the estimated electrical loop length expressed in {{units}} at 1MHz (see O-UPDATE in section 12.2.4.2.1.2/G.993.2). The value SHALL be coded as an unsigned 16 bit number in the range 0 (coded as 0) to 128 dB (coded as 1280) in steps of 0.1 dB. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + + This parameter SHALL contain the set of breakpoints exchanged in the MREFPSDds fields of the O-PRM message of G.993.2. Base64 encoded of the binary representation defined in Table 12-19/G.993.2 (maximum length is 145 octets, which requires 196 bytes for Base64 encoding). + Note: See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + This parameter SHALL contain the set of breakpoints exchanged in the MREFPSDus fields of the R-PRM message of G.993.2. Base64 encoded of the binary representation defined in Table 12-19/G.993.2 (maximum length is 145 octets, which requires 196 bytes for Base64 encoding). + Note: See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + Indicates the enabled VDSL2 Limit PSD mask of the selected PSD mask class. Bit mask as specified in ITU-T Recommendation G.997.1. + Note: For a VDSL2-capable multimode device operating in a mode other than VDSL2, the value of this parameter SHOULD be set to 0. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + Indicates the allowed VDSL2 US0 PSD masks for Annex A operation. Bit mask as specified in see ITU-T Recommendation G.997.1. + Note: For a VDSL2-capable multimode device operating in a mode other than VDSL2, the value of this parameter SHOULD be set to 0. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + Reports whether trellis coding is enabled in the downstream direction. A value of 1 indicates that trellis coding is in use, and a value of 0 indicates that the trellis is disabled. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to -1. + + + + + + + + Reports whether trellis coding is enabled in the upstream direction. A value of 1 indicates that trellis coding is in use, and a value of 0 indicates that the trellis is disabled. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to -1. + + + + + + + + Reports whether the OPTIONAL virtual noise mechanism is in use in the downstream direction. A value of 1 indicates the virtual noise mechanism is not in use, and a value of 2 indicates the virtual noise mechanism is in use. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 0. + + + + + + + + Reports whether the OPTIONAL virtual noise mechanism is in use in the upstream direction. A value of 1 indicates the virtual noise mechanism is not in use, and a value of 2 indicates the virtual noise mechanism is in use. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 0. + + + + + + + + Reports the virtual noise PSD for the downstream direction. Base64 encoded of the binary representation defined in G.997.1 by the parameter called TXREFVNds (maximum length is 97 octets, which requires 132 bytes for Base64 encoding). + See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to {{empty}}. + + + + + + + + + + Reports the virtual noise PSD for the upstream direction. Base64 encoded of the binary representation defined in G.997.1by the parameter called TXREFVNus (maximum length is 49 octets, which requires 68 bytes for Base64 encoding). + See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to {{empty}}. + + + + + + + + + + Reports the actual cyclic extension, as the value of m, in use for the connection. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 99. + + + + + + + + Signifies the line pair that the modem is using to connection. {{param}} = 1 is the innermost pair. + + + + + + + + + + The current maximum attainable data rate upstream (expressed in {{units}}). + Note: This parameter is related to the G.997.1 parameter ATTNDRus, which is measured in bits/s. See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + The current maximum attainable data rate downstream (expressed in {{units}}). + Note: This parameter is related to the G.997.1 parameter ATTNDRds, which is measured in bits/s. See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + The current signal-to-noise ratio margin (expressed in {{units}}) in the upstream direction. + Note: In G.997.1, this parameter is called SNRMus. See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + The current signal-to-noise ratio margin (expressed in {{units}}) in the downstream direction. + Note: In G.997.1, this parameter is called SNRMds. See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + {{list}} Indicates the current signal-to-noise ratio margin of each upstream band. Interpretation of the values is as defined in ITU-T Rec. G.997.1. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + + {{list}} Indicates the current signal-to-noise ratio margin of each band. Interpretation of the values is as defined in ITU-T Rec. G.997.1. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + + The Impulse Noise Monitoring (INM) Inter Arrival Time (IAT) Offset, measured in DMT symbols, that the xTU receiver uses to determine in which bin of the IAT histogram the IAT is reported. + Note: In G.997.1, this parameter is called INMIATO. See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + The Impulse Noise Monitoring (INM) Inter Arrival Time (IAT) Step that the xTU receiver uses to determine in which bin of the IAT histogram the IAT is reported. + Note: In G.997.1, this parameter is called INMIATS. See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + The Impulse Noise Monitoring (INM) Cluster Continuation value, measured in DMT symbols, that the xTU receiver uses in the cluster indication process. + Note: In G.997.1, this parameter is called INMCC. See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + The Impulse Noise Monitoring (INM) Equivalent Impulse Noise Protection (INP) Mode that the xTU receiver uses in the computation of the Equivalent INP. + Note: In G.997.1, this parameter is called INM_INPEQ_MODE. See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + The current upstream signal loss (expressed in {{units}}). + Doesn't apply to VDSL2 {{bibref|G.993.2}}. Otherwise has the same value as the single element of {{param|TestParams.SATNus}}. + + + + + + + + + + The current downstream signal loss (expressed in {{units}}). + Doesn't apply to VDSL2 {{bibref|G.993.2}}. Otherwise has the same value as the single element of {{param|TestParams.SATNds}}. + + + + + + + + + + The current output power at the CPE's DSL line (expressed in {{units}}). + + + + + + + + + + The current received power at the CPE's DSL line (expressed in {{units}}). + + + + + + + + + + xTU-R vendor identifier as defined in G.994.1 and T1.413. In the case of G.994.1 this corresponds to the four-octet provider code, which MUST be represented as eight hexadecimal digits. + Note: This parameter is OPTIONAL at the G and S/T interfaces in G.997.1 Amendment 1. If the parameter is implemented but no value is available, it MUST have the value "00000000". + Note: In G.997.1, this parameter is called "xTU-R G.994.1 Vendor ID". See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + T.35 country code of the xTU-R vendor as defined in G.994.1, where the two-octet value defined in G.994.1 MUST be represented as four hexadecimal digits. + Note: This parameter is OPTIONAL at the G and S/T interfaces in G.997.1 Amendment 1. If the parameter is implemented but no value is available, it MUST have the value "0000". + Note: In G.997.1, this parameter is called "xTU-R G.994.1 Vendor ID". See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + xTU-R T1.413 Revision Number as defined in T1.413 Issue 2. + When T1.413 modulation is not in use, the parameter value SHOULD be 0. + + + + + + + + xTU-R Vendor Revision Number as defined in T1.413 Issue 2. + When T1.413 modulation is not in use, the parameter value SHOULD be 0. + + + + + + + + xTU-C vendor identifier as defined in G.994.1 and T1.413. In the case of G.994.1 this corresponds to the four-octet provider code, which MUST be represented as eight hexadecimal digits. + Note: This parameter is OPTIONAL at the G and S/T interfaces in G.997.1 Amendment 1. If the parameter is implemented but no value is available, it MUST have the value "00000000". + + + + + + + + + + T.35 country code of the xTU-C vendor as defined in G.994.1, where the two-octet value defined in G.994.1 MUST be represented as four hexadecimal digits. + Note: This parameter is OPTIONAL at the G and S/T interfaces in G.997.1 Amendment 1. If the parameter is implemented but no value is available, it MUST have the value "0000". + + + + + + + + + + xTU-C T1.413 Revision Number as defined in T1.413 Issue 2. + When T1.413 modulation is not in use, the parameter value SHOULD be 0. + + + + + + + + xTU-C Vendor Revision Number as defined in T1.413 Issue 2. + When T1.413 modulation is not in use, the parameter value SHOULD be 0. + + + + + + + + + Throughput statistics for this interface. + The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + The total number of bytes transmitted out of the interface, including framing characters. + + + + + + + + The total number of bytes received on the interface, including framing characters. + + + + + + + + The total number of packets transmitted out of the interface. + + + + + + + + The total number of packets received on the interface. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + DSL-specific statistic. The Number of {{units}} since the beginning of the period used for collection of {{object|Total}} statistics. + Statistics SHOULD continue to be accumulated across CPE reboots, though this might not always be possible. + Note: {{param}} SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + + + + + + + DSL-specific statistic. The Number of {{units}} since the most recent DSL Showtime - the beginning of the period used for collection of {{object|Showtime}} statistics. + Showtime is defined as successful completion of the DSL link establishment process. The ''Showtime'' statistics are those collected since the most recent establishment of the DSL link. + Note: {{param}} SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + + + + + + + DSL-specific statistic. The Number of {{units}} since the second most recent DSL Showtime-the beginning of the period used for collection of {{object|LastShowtime}} statistics. + If the CPE has not retained information about the second most recent Showtime (e.g., on reboot), the start of ''LastShowtime'' statistics MAY temporarily coincide with the start of ''Showtime'' statistics. + Note: {{param}} SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + + + + + + + DSL-specific statistic. The Number of {{units}} since the beginning of the period used for collection of {{object|CurrentDay}} statistics. + The CPE MAY align the beginning of each ''CurrentDay'' interval with days in the UTC time zone, but is not required to do so. + Statistics SHOULD continue to be accumulated across CPE reboots, though this might not always be possible. + Note: {{param}} SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + + + + + + + DSL-specific statistic. The Number of {{units}} since the beginning of the period used for collection of {{object|QuarterHour}} statistics. + The CPE MAY align the beginning of each ''QuarterHour'' interval with real-time quarter-hour intervals, but is not required to do so. + Statistics SHOULD continue to be accumulated across CPE reboots, though this might not always be possible. + Note: {{param}} SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + + + + + + + + This object contains DSL line total statistics. See {{bibref|G.997.1|Chapter 7.2.6}}. + Note: The {{object}} parameters SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + Total number of errored {{units}} (ES-L as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: This parameter is OPTIONAL at the G and S/T interfaces in G.997.1 Amendment 1. If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + + + Total number of severely errored {{units}} (SES-L as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: This parameter is OPTIONAL at the G and S/T interfaces in G.997.1 Amendment 1. If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + + + + This object contains DSL line statistics accumulated since the most recent DSL Showtime. See {{bibref|G.997.1|Chapter 7.2.6}}. + Note: The {{object}} parameters SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + Number of errored {{units}} since the most recent DSL Showtime (ES-L as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: This parameter is OPTIONAL at the G and S/T interfaces in G.997.1 Amendment 1. If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + + + Number of severely errored {{units}} since the most recent DSL Showtime (SES-L as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: This parameter is OPTIONAL at the G and S/T interfaces in G.997.1 Amendment 1. If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + + + + This object contains DSL line statistics accumulated since the second most recent DSL Showtime. See {{bibref|G.997.1|Chapter 7.2.6}}. + Note: The {{object}} parameters SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + Number of errored {{units}} since the second most recent DSL Showtime (ES-L as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: This parameter is OPTIONAL at the G and S/T interfaces in G.997.1 Amendment 1. If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + + + Number of severely errored {{units}} since the second most recent DSL Showtime (SES-L as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: This parameter is OPTIONAL at the G and S/T interfaces in G.997.1 Amendment 1. If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + + + + This object contains DSL line statistics accumulated during the current day. See {{bibref|G.997.1|Chapter 7.2.6}}. + Note: The {{object}} parameters SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + Number of errored {{units}} since the second most recent DSL Showtime (ES-L as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: This parameter is OPTIONAL at the G and S/T interfaces in G.997.1 Amendment 1. If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + + + Number of severely errored {{units}} since the second most recent DSL Showtime (SES-L as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: This parameter is OPTIONAL at the G and S/T interfaces in G.997.1 Amendment 1. If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + + + + This object contains DSL line statistics accumulated during the current quarter hour. See {{bibref|G.997.1|Chapter 7.2.6}}. + Note: The {{object}} parameters SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + Number of errored {{units}} since the second most recent DSL Showtime (ES-L as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: This parameter is OPTIONAL at the G and S/T interfaces in G.997.1 Amendment 1. If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + + + Number of severely errored {{units}} since the second most recent DSL Showtime (SES-L as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: This parameter is OPTIONAL at the G and S/T interfaces in G.997.1 Amendment 1. If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + + + + This object contains the DSL line test parameters that are available during the L0 (i.e., Showtime) state. + + + + Number of sub-carriers per sub-carrier group in the downstream direction for {{param|HLOGpsds}}. Valid values are 1, 2, 4, 8, and 16. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 1. + + + + + + + + Number of sub-carriers per sub-carrier group in the upstream direction for {{param|HLOGpsus}}. Valid values are 1, 2, 4, and 8. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 1. + + + + + + + + {{list}} Indicates the downstream logarithmic line characteristics per sub-carrier group. The maximum number of elements is 256 for G.992.3, and 512 for G.992.5. For G.993.2, the number of elements will depend on the value of {{param|HLOGGds}} but will not exceed 512. Interpretation of the values is as defined in ITU-T Rec. G.997.1. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to ''None''. + Note: {{param}} is measured during initialization and is not updated during Showtime. + + + + + + + + + + + {{list}} Indicates the upstream logarithmic line characteristics per sub-carrier group. The maximum number of elements is 64 for G.992.3 and G.992.5. For G.993.2, the number of elements will depend on the value of {{param|HLOGGus}} but will not exceed 512. Interpretation of the values is as defined in ITU-T Rec. G.997.1. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to ''None''. + Note: {{param}} is measured during initialization and is not updated during Showtime. + + + + + + + + + + + Indicates the number of symbols over which {{param|HLOGpsds}} was measured. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 0. + + + + + + + + Indicates the number of symbols over which {{param|HLOGpsus}} was measured. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 0. + + + + + + + + Number of sub-carriers per sub-carrier group in the downstream direction for {{param|QLNpsds}}. Valid values are 1, 2, 4, 8, and 16. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 1. + + + + + + + + Number of sub-carriers per sub-carrier group in the upstream direction for {{param|QLNpsus}}. Valid values are 1, 2, 4, and 8. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 1. + + + + + + + + {{list}} Indicates the downstream quiet line noise per subcarrier group. The maximum number of elements is 256 for G.992.3 and G.992.5. For G.993.2, the number of elements will depend on the value of {{param|QLNGds}} but will not exceed 512. Interpretation of the values is as defined in ITU-T Rec. G.997.1. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to ''None''. + Note: {{param}} is measured during initialization and is not updated during Showtime. + + + + + + + + + + + {{list}} Indicates the upstream quiet line noise per subcarrier group. The maximum number of elements is 64 for G.992.3 and G.992.5. For G.993.2, the number of elements will depend on the value of {{param|QLNGus}} but will not exceed 512. Interpretation of the values is as defined in ITU-T Rec. G.997.1. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to ''None''. + Note: {{param}} is measured during initialization and is not updated during Showtime. + + + + + + + + + + + Indicates the number of symbols over which {{param|QLNpsds}} was measured. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 0. + + + + + + + + Indicates the number of symbols over which {{param|QLNpsus}} was measured. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 0. + + + + + + + + Number of sub-carriers per sub-carrier group in the downstream direction for {{param|SNRpsds}}. Valid values are 1, 2, 4, 8, and 16. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 1. + + + + + + + + Number of sub-carriers per sub-carrier group in the upstream direction for {{param|SNRpsus}}. Valid values are 1, 2, 4, and 8. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 1. + + + + + + + + {{list}} Indicates the downstream SNR per subcarrier group. The maximum number of elements is 256 for G.992.3, and 512 for G.992.5. For G.993.2, the number of elements will depend on the value of {{param|SNRGds}} but will not exceed 512. Interpretation of the values is as defined in ITU-T Rec. G.997.1. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to ''None''. + Note: {{param}} is first measured during initialization and is updated during Showtime. + + + + + + + + + + + {{list}} Indicates the upstream SNR per subcarrier group. The maximum number of elements is 64 for G.992.3 and G.992.5. For G.993.2, the number of elements will depend on the value of {{param|SNRGus}} but will not exceed 512. Interpretation of the values is as defined in ITU-T Rec. G.997.1. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to ''None''. + Note: {{param}} is first measured during initialization and is updated during Showtime. + + + + + + + + + + + Indicates the number of symbols over which {{param|SNRpsds}} was measured. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 0. + + + + + + + + Indicates the number of symbols over which {{param|SNRpsus}} was measured. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 0. + + + + + + + + {{list}} Indicates the downstream line attenuation averaged across all sub-carriers in the frequency band, as computed during initialization. Number of elements is dependent on the number of downstream bands but will exceed one only for ITU-T G.993.2. Interpretation of {{param}} is as defined in ITU-T Rec. G.997.1. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + + {{list}} Indicates the upstream line attenuation averaged across all sub-carriers in the frequency band, as computed during initialization. Number of elements is dependent on the number of upstream bands but will exceed one only for ITU-T G.993.2. Interpretation of {{param}} is as defined in ITU-T Rec. G.997.1. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + + {{list}} Indicates the downstream signal attenuation averaged across all active sub-carriers in the frequency band, as computed during the L0 (i.e., Showtime) state. Number of elements is dependent on the number of downstream bands but will exceed one only for ITU-T G.993.2. Interpretation of {{param}} is as defined in ITU-T Rec. G.997.1. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + + {{list}} Indicates the upstream signal attenuation averaged across all active sub-carriers in the frequency band, as computed during the L0 (i.e., Showtime) state. Number of elements is dependent on the number of downstream bands but will exceed one only for ITU-T G.993.2. Interpretation of {{param}} is as defined in ITU-T Rec. G.997.1. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + + + This object models the DSL data gathering function at the VTU-R. This only applies to VDSL2. + Note: see ITU-T Recommendation {{bibref|G.993.2}}. + + + + This parameter is the maximum depth of the entire data gathering event buffer at the VTU-R, in number of {{units}}, where each of the {{units}} consists of 6 bytes indicating a data gathering event as defined in {{bibref|G.993.2}}. + Note: This parameter is defined as LOGGING_DEPTH_R in Clause 7.5.3.2 of ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + This parameter is actual logging depth that is used for reporting the VTU-R event trace buffer over the eoc channel, in number of {{units}}, where each of the {{units}} consists of 6 bytes indicating a data gathering event as defined in {{bibref|G.993.2}}. + Note: This parameter is defined as ACT_LOGGING_DEPTH_REPORTING_R in Clause 7.5.3.4 of ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + This parameter identifies the log file of the the data gathering event trace buffer containing the event records that originated at the VTU-R. + This indicates the table entry that represents a Vendor Log File that contains the data gathering buffer at the VTU-R in the {{object|###.DeviceInfo.VendorLogFile}} table. + This data gathering buffer MAY be retrieved wia an upload RPC of the identified Vendor Log File. + Note: This parameter is defined as EVENT_TRACE_BUFFER_R in Clause 7.5.3.6 of ITU-T Recommendation {{bibref|G.997.1}} and Clause 11.5 of ITU-T Recommendation {{bibref|G.993.2}}. + + + + + + + + + + + + DSL Channel table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). + This table models DSL channel(s) on top of physical DSL lines. + + + + + + + + + + Enables or disables the channel. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + The current operational state of the channel (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the channel as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the channel entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + + + + + + + + + + + + + {{list}} List items indicate which link encapsulation standards and recommendations are supported by the {{object}} instance. + + + + + + + + + + + Auto + + + + + + + + Indicates the link encapsulation standard that the {{object}} instance is using for the connection. {{enum}} + When ATM encapsulation is identified then an upper-layer {{object|.ATM.Link}} interface MUST be used. + When PTM encapsulation is identified then an upper-layer {{object|.PTM.Link}} interface MUST be used. + + + + + + + + + + + + + Reports the index of the latency path supporting the bearer channel. + Note: See ITU-T Recommendation {{bibref|G.997.1|Section 7.5.2.7}}. + + + + + + + + + + Reports the interleaver depth D for the latency path indicated in {{param|LPATH}}. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 0. + + + + + + + + Reports the interleaver block length in use on the latency path indicated in {{param|LPATH}}. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to -1. + + + + + + + + Reports the actual delay, in {{units}}, of the latency path due to interleaving. + Note: In G.997.1, this parameter is called "Actual Interleaving Delay." See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + Reports the actual impulse noise protection (INP) provided by the latency path indicated in {{param|LPATH}}. The value is the actual INP in the L0 (i.e., Showtime) state. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to -1. + + + + + + + + Reports whether the value reported in ACTINP was computed assuming the receiver does not use erasure decoding. Valid values are 0 (computed per the formula assuming no erasure decoding) and 1 (computed by taking into account erasure decoding capabilities of receiver). + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to {{false}}. + + + + + + + + Reports the size, in {{units}}, of the Reed-Solomon codeword in use on the latency path indicated in {{param|LPATH}}. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to -1. + + + + + + + + + + Reports the number of redundancy bytes per Reed-Solomon codeword on the latency path indicated in {{param|LPATH}}. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to -1. + + + + + + + + Reports the number of bits per symbol assigned to the latency path indicated in {{param|LPATH}}. This value does not include overhead due to trellis coding. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to -1. + + + + + + + + The current physical layer aggregate data rate (expressed in {{units}}) of the upstream DSL connection. + Note: If the parameter is implemented but no value is available, it MUST have the value 4294967295 (the maximum for its data type). + + + + + + + + + + The current physical layer aggregate data rate (expressed in {{units}}) of the downstream DSL connection. + Note: If the parameter is implemented but no value is available, it MUST have the value 4294967295 (the maximum for its data type). + + + + + + + + + + Actual net data rate expressed in {{units}}. Independent whether retransmission is used or not in a given transmit direction: + * In L0 state, this parameter reports the net data rate (as specified in [ITU T G.992.3], [ITU T G.992.5] or [ITU T G.993.2]) at which the bearer channel is operating. + * In L2 state, the parameter contains the net data rate (as specified in [ITU T G.992.3], [ITU T G.992.5] or [ITU T G.993.2]) in the previous L0 state. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + Actual impulse noise protection against REIN, expressed in {{units}}. + If retransmission is used in a given transmit direction, this parameter reports the actual impulse noise protection (INP) against REIN (under specific conditions detailed in [ITU T G.998.4]) on the bearer channel in the L0 state. In the L2 state, the parameter contains the INP in the previous L0 state. + The value is coded in fractions of DMT symbols with a granularity of 0.1 symbols. + The range is from 0 to 25.4. A special value of 25.5 indicates an ACTINP_REIN of 25.5 or higher. + Note: This parameter is defined as ACTINP_REIN in Clause 7.5.2.9 of ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + + + Throughput statistics for this interface. + The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + The total number of bytes transmitted out of the interface, including framing characters. + + + + + + + + The total number of bytes received on the interface, including framing characters. + + + + + + + + The total number of packets transmitted out of the interface. + + + + + + + + The total number of packets received on the interface. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + DSL-specific statistic. The Number of {{units}} since the beginning of the period used for collection of {{object|Total}} statistics. + Statistics SHOULD continue to be accumulated across CPE reboots, though this might not always be possible. + Note: {{param}} SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + + + + + + + DSL-specific statistic. The Number of {{units}} since the most recent DSL Showtime - the beginning of the period used for collection of {{object|Showtime}} statistics. + Showtime is defined as successful completion of the DSL link establishment process. The ''Showtime'' statistics are those collected since the most recent establishment of the DSL link. + Note: {{param}} SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + + + + + + + DSL-specific statistic. The Number of {{units}} since the second most recent DSL Showtime-the beginning of the period used for collection of {{object|LastShowtime}} statistics. + If the CPE has not retained information about the second most recent Showtime (e.g., on reboot), the start of ''LastShowtime'' statistics MAY temporarily coincide with the start of ''Showtime'' statistics. + Note: {{param}} SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + + + + + + + DSL-specific statistic. The Number of {{units}} since the beginning of the period used for collection of {{object|CurrentDay}} statistics. + The CPE MAY align the beginning of each ''CurrentDay'' interval with days in the UTC time zone, but is not required to do so. + Statistics SHOULD continue to be accumulated across CPE reboots, though this might not always be possible. + Note: {{param}} SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + + + + + + + DSL-specific statistic. The Number of {{units}} since the beginning of the period used for collection of {{object|QuarterHour}} statistics. + The CPE MAY align the beginning of each ''QuarterHour'' interval with real-time quarter-hour intervals, but is not required to do so. + Statistics SHOULD continue to be accumulated across CPE reboots, though this might not always be possible. + Note: {{param}} SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + + + + + + + + This object contains DSL channel total statistics {{bibref|G.997.1}}. + Note: The {{object}} parameters SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + Total number of FEC errors detected (FEC-C as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + Total number of FEC errors detected by the ATU-C (FEC-CFE as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + Total number of HEC errors detected (HEC-P as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + Total number of HEC errors detected by the ATU-C (HEC-PFE as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + Total number of CRC errors detected (CV-C as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + Total number of CRC errors detected by the ATU-C (CV-CFE as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + + This object contains DSL channel statistics accumulated since the most recent DSL Showtime {{bibref|G.997.1}}. + Note: The {{object}} parameters SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + Number of FEC errors detected since the most recent DSL Showtime (FEC-C as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + Number of FEC errors detected by the ATU-C since the most recent DSL Showtime (FEC-CFE as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + Number of HEC errors detected since the most recent DSL Showtime (HEC-P as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + Number of HEC errors detected by the ATU-C since the most recent DSL Showtime (HEC-PFE as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + Number of CRC errors detected since the most recent DSL Showtime (CV-C as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + Number of CRC errors detected by the ATU-C since the most recent DSL Showtime (CV-CFE as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + + This object contains DSL channel statistics accumulated since the second most recent DSL Showtime {{bibref|G.997.1}}. + Note: The {{object}} parameters SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + Number of FEC errors detected since the second most recent DSL Showtime (FEC-C as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + Number of FEC errors detected by the ATU-C since the second most recent DSL Showtime (FEC-CFE as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + Number of HEC errors detected since the second most recent DSL Showtime (HEC-P as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + Number of HEC errors detected by the ATU-C since the second most recent DSL Showtime (HEC-PFE as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + Number of CRC errors detected since the second most recent DSL Showtime (CV-C as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + Number of CRC errors detected by the ATU-C since the second most recent DSL Showtime (CV-CFE as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + + This object contains DSL channel statistics accumulated during the current day {{bibref|G.997.1}}. + Note: The {{object}} parameters SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + Number of FEC errors detected since the second most recent DSL Showtime (FEC-C as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + Number of FEC errors detected by the ATU-C since the second most recent DSL Showtime (FEC-CFE as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + Number of HEC errors detected since the second most recent DSL Showtime (HEC-P as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + Number of HEC errors detected by the ATU-C since the second most recent DSL Showtime (HEC-PFE as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + Number of CRC errors detected since the second most recent DSL Showtime (CV-C as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + Number of CRC errors detected by the ATU-C since the second most recent DSL Showtime (CV-CFE as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + + This object contains DSL channel statistics accumulated during the current quarter hour {{bibref|G.997.1}}. + Note: The {{object}} parameters SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + Number of FEC errors detected since the second most recent DSL Showtime (FEC-C as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + Number of FEC errors detected by the ATU-C since the second most recent DSL Showtime (FEC-CFE as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + Number of HEC errors detected since the second most recent DSL Showtime (HEC-P as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + Number of HEC errors detected by the ATU-C since the second most recent DSL Showtime (HEC-PFE as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + Number of CRC errors detected since the second most recent DSL Showtime (CV-C as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + Number of CRC errors detected by the ATU-C since the second most recent DSL Showtime (CV-CFE as defined in ITU-T Rec. {{bibref|G.997.1}}). + Note: If the parameter is implemented but no value is available, its value MUST be 4294967295 (the maximum for its data type). + + + + + + + + + DSL bonding group table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). Each instance is a bonding group, and is expected to be stacked above a {{object|.DSL.Channel}} instance or a {{object|.FAST.Line}} instance for each bonded channel in the group. + Many of the parameters within this object, including {{param|LowerLayers}}, are read-only because bonding is not expected to be configured by a Controller. + The DSL bonding data model is closely aligned with {{bibref|TR-159}}. Corresponds to {{bibref|TR-159}} ''oBondingGroup''. + + + + + + + + + + + + + Enables or disables the bonding group. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + The current operational state of the bonding group (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the bonding group as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the bonding group entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + {{param}} is read-only for this object because bonding is expected to be configured by the CPE, not by the Controller. + + + + + + + + + + + + + {{list}} Indicates the current fault status of the DSL bonding group. {{enum}} + Corresponds to {{bibref|TR-159}} ''oBondingGroup.aGroupStatus''. + + + + + + + Peer physical layer is unreachable + + + + + Local device received a "dying gasp" message (preceding a loss-of-power) from the peer device + + + + + Operating bonding scheme of the peer port is different from the local one + + + + + Upstream or downstream data rate is at or below threshold + + + + + + + + DSL bonding group ID. Corresponds to {{bibref|TR-159}} ''oBondingGroup.aGroupID''. + + + + + + + + {{list}} Supported DSL bonding schemes. {{enum}} + Corresponds to {{bibref|TR-159}} ''oBondingGroup.aGroupBondSchemesSupported''. + + + + + + + {{bibref|G.998.1}} ATM-based bonding + + + + + {{bibref|G.998.2}} Ethernet-based bonding + + + + + {{bibref|G.998.3}} TDIM-based bonding + + + + + + + + Currently operating bonding scheme. Corresponds to {{bibref|TR-159}} ''aGroupOperBondScheme''. + + + + + + + + + + DSL bonding group capacity, i.e. the maximum number of channels that can be bonded in this group. Corresponds to {{bibref|TR-159}} ''oBondingGroup.aGroupCapacity''. + + + + + + + + + + The accumulated time in {{units}} for which this bonding group has been operationally up. Corresponds to {{bibref|G.998.1|section 11.4.2}} ''Group Running Time''. + + + + + + + + + + Desired upstream data rate in {{units}} for this DSL bonding group (zero indicates best effort). Corresponds to {{bibref|TR-159}} ''oBondingGroup.aGroupTargetUpRate''. + + + + + + + + + + Desired downstream data rate in {{units}} for DSL bonding group (zero indicates best effort). Corresponds to {{bibref|TR-159}} ''oBondingGroup.aGroupTargetDownRate''. + + + + + + + + + + Threshold upstream data rate in {{units}} for this DSL bonding group. {{param|GroupStatus}} will include {{enum|LowRate|GroupStatus}} whenever the upstream rate is less than this threshold. Corresponds to {{bibref|TR-159}} ''oBondingGroup.aGroupThreshLowUpRate''. + + + + + + + + + + Threshold downstream data rate in {{units}} for this DSL bonding group. {{param|GroupStatus}} will include {{enum|LowRate|GroupStatus}} whenever the downstream rate is less than this threshold. Corresponds to {{bibref|TR-159}} ''oBondingGroup.aGroupThreshLowDownRate''. + + + + + + + + + + The maximum upstream differential delay in {{units}} among member links in a bonding group. Corresponds to {{bibref|G.998.1|section 11.4.1}} ''Differential Delay Tolerance''. + + + + + + + + + + The maximum downstream differential delay in {{units}} among member links in a bonding group. Corresponds to {{bibref|G.998.1|section 11.4.1}} ''Differential Delay Tolerance''. + + + + + + + + + + {{numentries}} Corresponds to {{bibref|TR-159}} ''oBondingGroup.aGroupNumChannels''. + + + + + + + + + + + DSL bonded channel table. Each table entry represents a bonded channel within the bonding group, and is associated with exactly one {{object|.DSL.Channel}} instance or one {{object|.FAST.Line}} instance. There MUST be an instance of {{object}} for each DSL channel or FAST line that is bonded. + When a {{object|.DSL.Channel}} or {{object|.FAST.Line}} is no longer bonded, then the CPE MUST delete the corresponding {{object}} instance. However, when a bonded {{object|.DSL.Channel}} or {{object|.FAST.Line}} becomes disabled, the channel remains bonded and so the corresponding {{object}} instance MUST NOT be deleted. + + + + + + + + + + {{datatype|expand}} + + + + + + + + {{reference}}This is the channel that is being bonded. + This is read-only because bonding is expected to be configured by the CPE, not by the Controller. + + + + + + + + + + + + Per-channel {{bibref|G.998.2}} Ethernet-based bonding parameters. + This object MUST be present if, and only if, {{param|##.BondScheme}} is {{enum|Ethernet|##.BondScheme}}. + + + + + Per-channel {{bibref|G.998.2}} Ethernet-based bonding statistics. + These relate to the {{bibref|G.998.2}} PME (Physical Medium Entity) Aggregation Function (PAF) lower layer (per-channel) interfaces. + The CPE MUST reset the Stats parameters either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|###.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|###.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + Number of underflow errors sent, i.e. on the transmit side of the interface. + + + + + + + + Number of CRC errors received, i.e. on the receive side of the interface. + + + + + + + + Number of alignment errors received, i.e. on the receive side of the interface. + + + + + + + + Number of short packets received, i.e. on the receive side of the interface. + + + + + + + + Number of long packets received, i.e. on the receive side of the interface. + + + + + + + + Number of overflow errors received, i.e. on the receive side of the interface. + + + + + + + + Number of pause frames received, i.e. on the receive side of the interface. + + + + + + + + Number of frames dropped, e.g. because the receive queue is full. + + + + + + + + + Throughput statistics for this interface. + The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + The total number of bytes transmitted out of the interface, including framing characters. + + + + + + + + The total number of bytes received on the interface, including framing characters. + + + + + + + + The total number of packets transmitted out of the interface. + + + + + + + + The total number of packets received on the interface. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of packets requested for transmission which were not addressed to a multicast or broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were not addressed to a multicast or broadcast address at this layer. + + + + + + + + The total number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a multicast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a multicast address at this layer. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a broadcast address at this layer. + + + + + + + + The total number of packets received via the interface which were discarded because of an unknown or unsupported protocol. + + + + + + + + DSL-specific statistic. The Number of {{units}} since the beginning of the period used for collection of {{object|Total}} statistics. + Statistics SHOULD continue to be accumulated across CPE reboots, though this might not always be possible. + Note: {{param}} SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + + + + + + + DSL-specific statistic. The Number of {{units}} since the beginning of the period used for collection of {{object|CurrentDay}} statistics. + The CPE MAY align the beginning of each CurrentDay interval with days in the UTC time zone, but is not required to do so. + Statistics SHOULD continue to be accumulated across CPE reboots, though this might not always be possible. + Note: {{param}} SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + + + + + + + DSL-specific statistic. The Number of {{units}} since the beginning of the period used for collection of {{object|QuarterHour}} statistics. + The CPE MAY align the beginning of each QuarterHour interval with real-time quarter-hour intervals, but is not required to do so. + Statistics SHOULD continue to be accumulated across CPE reboots, though this might not always be possible. + Note: {{param}} SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + + + + + + + + Total statistics for this bonding group. + Note: The {{object}} parameters SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + {{list}} Indicates the failure conditions that have occurred during the accumulation period. {{enum}} + Corresponds to {{bibref|G.998.1|section 11.4.3}} ''Current Group Failure Reason''. + + + + + + + Minimum data rate not met + + + + + Differential delay tolerance exceeded + + + + + Insufficient buffers on receiver + + + + + Other failure occurred + + + + + + + + The achieved upstream data rate in {{units}} (which might change subject to dynamic link usage conditions). Corresponds to {{bibref|G.998.1|section 11.4.2}} ''Achieved Aggregate Data Rate''. + + + + + + + + + + The achieved downstream data rate in {{units}} (which might change subject to dynamic link usage conditions). Corresponds to {{bibref|G.998.1|section 11.4.2}} ''Achieved Aggregate Data Rate''. + + + + + + + + + + The total number of upstream packets that were lost at aggregation output from a bonding group during the accumulation period. Corresponds to {{bibref|G.998.1|section 11.4.2}} ''Group Rx Cell Loss Count''. + + + + + + + + The total number of downstream packets that were lost at aggregation output from a bonding group during the accumulation period. Corresponds to {{bibref|G.998.1|section 11.4.2}} ''Group Rx Cell Loss Count''. + + + + + + + + The achieved upstream differential delay in {{units}} (which might change subject to dynamic link usage conditions). + + + + + + + + + + The achieved downstream differential delay in {{units}} (which might change subject to dynamic link usage conditions). + + + + + + + + + + The number of times that the group was declared ''Unavailable'' during the accumulation period. Corresponds to {{bibref|G.998.1|Section 11.4.3}} ''Group Failure Count''. + + + + + + + + The time in {{units}} during which the group was declared ''Errored'' during the accumulation period. Corresponds to {{bibref|TR-159}} ''oBondingGroup.aGroupPerf**ES''. + + + + + + + + + + The time in {{units}} during which the group was declared ''SeverelyErrored'' during the accumulation period. Corresponds to {{bibref|TR-159}} ''oBondingGroup.aGroupPerf**SES''. + + + + + + + + + + The time in {{units}} during which the group was declared ''Unavailable'' during the accumulation period. Corresponds to {{bibref|TR-159}} ''oBondingGroup.aGroupPerf**UAS''. + + + + + + + + + + + Current day statistics for this bonding group. + Note: The {{object}} parameters SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + {{list}} Indicates the failure conditions that have occurred during the accumulation period. {{enum}} + Corresponds to {{bibref|G.998.1|section 11.4.3}} ''Current Group Failure Reason''. + + + + + + + Minimum data rate not met + + + + + Differential delay tolerance exceeded + + + + + Insufficient buffers on receiver + + + + + Other failure occurred + + + + + + + + The achieved upstream data rate in {{units}} (which might change subject to dynamic link usage conditions). Corresponds to {{bibref|G.998.1|section 11.4.2}} ''Achieved Aggregate Data Rate''. + + + + + + + + + + The achieved downstream data rate in {{units}} (which might change subject to dynamic link usage conditions). Corresponds to {{bibref|G.998.1|section 11.4.2}} ''Achieved Aggregate Data Rate''. + + + + + + + + + + The total number of upstream packets that were lost at aggregation output from a bonding group during the accumulation period. Corresponds to {{bibref|G.998.1|section 11.4.2}} ''Group Rx Cell Loss Count''. + + + + + + + + The total number of downstream packets that were lost at aggregation output from a bonding group during the accumulation period. Corresponds to {{bibref|G.998.1|section 11.4.2}} ''Group Rx Cell Loss Count''. + + + + + + + + The achieved upstream differential delay in {{units}} (which might change subject to dynamic link usage conditions). + + + + + + + + + + The achieved downstream differential delay in {{units}} (which might change subject to dynamic link usage conditions). + + + + + + + + + + The number of times that the group was declared ''Unavailable'' during the accumulation period. Corresponds to {{bibref|G.998.1|Section 11.4.3}} ''Group Failure Count''. + + + + + + + + The time in {{units}} during which the group was declared ''Errored'' during the accumulation period. Corresponds to {{bibref|TR-159}} ''oBondingGroup.aGroupPerf**ES''. + + + + + + + + + + The time in {{units}} during which the group was declared ''SeverelyErrored'' during the accumulation period. Corresponds to {{bibref|TR-159}} ''oBondingGroup.aGroupPerf**SES''. + + + + + + + + + + The time in {{units}} during which the group was declared ''Unavailable'' during the accumulation period. Corresponds to {{bibref|TR-159}} ''oBondingGroup.aGroupPerf**UAS''. + + + + + + + + + + + Current quarter hour statistics for this bonding group. + Note: The {{object}} parameters SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + {{list}} Indicates the failure conditions that have occurred during the accumulation period. {{enum}} + Corresponds to {{bibref|G.998.1|section 11.4.3}} ''Current Group Failure Reason''. + + + + + + + Minimum data rate not met + + + + + Differential delay tolerance exceeded + + + + + Insufficient buffers on receiver + + + + + Other failure occurred + + + + + + + + The achieved upstream data rate in {{units}} (which might change subject to dynamic link usage conditions). Corresponds to {{bibref|G.998.1|section 11.4.2}} ''Achieved Aggregate Data Rate''. + + + + + + + + + + The achieved downstream data rate in {{units}} (which might change subject to dynamic link usage conditions). Corresponds to {{bibref|G.998.1|section 11.4.2}} ''Achieved Aggregate Data Rate''. + + + + + + + + + + The total number of upstream packets that were lost at aggregation output from a bonding group during the accumulation period. Corresponds to {{bibref|G.998.1|section 11.4.2}} ''Group Rx Cell Loss Count''. + + + + + + + + The total number of downstream packets that were lost at aggregation output from a bonding group during the accumulation period. Corresponds to {{bibref|G.998.1|section 11.4.2}} ''Group Rx Cell Loss Count''. + + + + + + + + The achieved upstream differential delay in {{units}} (which might change subject to dynamic link usage conditions). + + + + + + + + + + The achieved downstream differential delay in {{units}} (which might change subject to dynamic link usage conditions). + + + + + + + + + + The number of times that the group was declared ''Unavailable'' during the accumulation period. Corresponds to {{bibref|G.998.1|Section 11.4.3}} ''Group Failure Count''. + + + + + + + + The time in {{units}} during which the group was declared ''Errored'' during the accumulation period. Corresponds to {{bibref|TR-159}} ''oBondingGroup.aGroupPerf**ES''. + + + + + + + + + + The time in {{units}} during which the group was declared ''SeverelyErrored'' during the accumulation period. Corresponds to {{bibref|TR-159}} ''oBondingGroup.aGroupPerf**SES''. + + + + + + + + + + The time in {{units}} during which the group was declared ''Unavailable'' during the accumulation period. Corresponds to {{bibref|TR-159}} ''oBondingGroup.aGroupPerf**UAS''. + + + + + + + + + + + Ethernet-based bonding parameters {{bibref|G.998.2}}. + This object MUST be present if, and only if, {{param|#.BondScheme}} is {{enum|Ethernet|#.BondScheme}}. + + + + + {{bibref|G.998.2}} Ethernet-based bonding statistics. + These relate to the {{bibref|G.998.2}} PME (Physical Medium Entity) Aggregation Function (PAF) and to its upper layer interface. PAF lower layer interface statistics are in the {{object|##.BondedChannel.{i}.Ethernet.Stats}} objects. + The CPE MUST reset the Stats parameters either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|##.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|##.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + Number of PAF errors. Corresponds to {{bibref|TR-159}} ''oBondETH.aEthRxErrors''. + + + + + + + + Number of PAF Small Fragment events. Corresponds to {{bibref|TR-159}} ''oBondETH.aEthRxSmallFragments''. + + + + + + + + Number of PAF Large Fragment events. Corresponds to {{bibref|TR-159}} ''oBondETH.aEthRxLargeFragments''. + + + + + + + + Number of PAF Bad Fragment events. Corresponds to {{bibref|TR-159}} ''oBondETH.aEthRxBadFragments''. + + + + + + + + Number of PAF Lost Fragment events. Corresponds to {{bibref|TR-159}} ''oBondETH.aEthRxLostFragments''. + + + + + + + + Number of PAF Late Fragment events. + + + + + + + + Number of PAF Lost Start events. Corresponds to {{bibref|TR-159}} ''oBondETH.aEthRxLostStarts''. + + + + + + + + Number of PAF Lost End events. Corresponds to {{bibref|TR-159}} ''oBondETH.aEthRxLostEnds''. + + + + + + + + Number of PAF Overflow events. Corresponds to {{bibref|TR-159}} ''oBondETH.aEthRxOverflows''. + + + + + + + + Number of pause frames sent, i.e. on the transmit side of the interface. + + + + + + + + Number of CRC errors received, i.e. on the receive side of the interface. + + + + + + + + Number of alignment errors received, i.e. on the receive side of the interface. + + + + + + + + Number of short packets received, i.e. on the receive side of the interface. + + + + + + + + Number of long packets received, i.e. on the receive side of the interface. + + + + + + + + Number of overflow errors received, i.e. on the receive side of the interface. + + + + + + + + Number of frames dropped, e.g. because the receive queue is full. + + + + + + + + + The DSL Diagnostics object. + + + + This command is to provide diagnostic information for a CPE with an ADSL2 or ADSL2+ modem WAN interface, but MAY also be used for ADSL. + + + + Input arguments. + + + + {{reference}} This is the interface over which the test is to be performed. + + + + + + + + + + + + Output arguments. + + + + Indicates the availability of diagnostics data. {{enum}} + If the value of this parameter is anything other than {{enum|Complete}}, the values of the other results parameters for this test are indeterminate. + + + + + + + + + + + + + + Downstream actual power spectral density. Interpretation of the value is as defined in ITU-T Rec. G.997.1. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + Upstream actual power spectral density. Interpretation of the value is as defined in ITU-T Rec. G.997.1. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + Downstream actual aggregate transmitter power. Interpretation of the value is as defined in ITU-T Rec. G.997.1. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + Upstream actual aggregate transmitter power. Interpretation of the value is as defined in ITU-T Rec. G.997.1. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + Downstream linear representation scale. Interpretation of the value is as defined in ITU-T Rec. G.997.1. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 0. + + + + + + + + Scaling used to represent the upstream linear channel characteristics. Interpretation of the value is as defined in ITU-T Rec. G.997.1. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 0. + + + + + + + + Number of sub-carriers per sub-carrier group in the downstream direction for {{param|HLINpsds}}. Valid values are 1, 2, 4, and 8. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 1. + + + + + + + + Number of sub-carriers per sub-carrier group in the downstream direction for {{param|HLINpsus}}. Valid values are 1, 2, 4, and 8. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 1. + + + + + + + + Number of sub-carriers per sub-carrier group in the downstream direction for {{param|HLOGpsds}}. Valid values are 1, 2, 4, and 8. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 1. + + + + + + + + Number of sub-carriers per sub-carrier group in the upstream direction for {{param|HLOGpsus}}. Valid values are 1, 2, 4, and 8. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 1. + + + + + + + + {{list}} List items represent downstream logarithmic channel characteristics per sub-carrier group. The maximum number of elements is 256 for G.992.3, and 512 for G.992.5. For G.993.2, the number of elements will depend on the value of {{param|HLOGGds}} but will not exceed 512. Interpretation of the values is as defined in ITU-T Rec. G.997.1. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to ''None''. + Note: {{param}} is measured during initialization and is not updated during Showtime. + + + + + + + + + + + {{list}} List items represent upstream logarithmic channel characteristics per sub-carrier group. The maximum number of elements is 64 for G.992.3 and G.992.5. For G.993.2, the number of elements will depend on the value of {{param|HLOGGus}} but will not exceed 512. Interpretation of the values is as defined in ITU-T Rec. G.997.1. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to ''None''. + Note: {{param}} is measured during initialization and is not updated during Showtime. + + + + + + + + + + + Indicates the number of symbols over which {{param|HLOGpsds}} was measured. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 0. + + + + + + + + Indicates the number of symbols over which {{param|HLOGpsus}} was measured. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 0. + + + + + + + + {{list}} List items represent downstream line attenuation per usable band, as computed during initialization. Number of elements is dependent on the number of downstream bands but will exceed one only for G.993.2. Interpretation of {{param}} is as defined in ITU-T Rec. G.997.1. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + + {{list}} List items represent upstream line attenuation per usable band, as computed during initialization. Number of elements is dependent on the number of upstream bands but will exceed one only for G.993.2. Interpretation of {{param}} is as defined in ITU-T Rec. G.997.1. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + + {{list}} List items represent downstream signal attenuation per usable band, as computed during the L0 (i.e., Showtime) state. Number of elements is dependent on the number of downstream bands but will exceed one only for G.993.2. Interpretation of {{param}} is as defined in ITU-T Rec. G.997.1. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + + {{list}} List items represent upstream signal attenuation per usable band, as computed during the L0 (i.e., Showtime) state. Number of elements is dependent on the number of downstream bands but will exceed one only for G.993.2. Interpretation of {{param}} is as defined in ITU-T Rec. G.997.1. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. + + + + + + + + + + + {{list}} List items represent downstream linear channel characteristics per subcarrier group. Maximum number of complex pairs is 256 for G.992.3, and 512 for G.992.5. For G.993.2, the number of pairs will depend on the value of {{param|HLINGds}} but will not exceed 512. Interpretation of the value is as defined in ITU-T Rec. G.997.1. + Note: HLIN is not applicable in PLOAM for G.992.1 or G.992.2. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to ''None''. + + + + + + + + + + + {{list}} List items represent upstream linear channel characteristics per sub-carrier group. Maximum number of complex pairs is 64 for G.992.3, and G.992.5. For G.993.2, the number of pairs will depend on the value of {{param|HLINGus}} but will not exceed 512. Interpretation of the values is as defined in ITU-T Rec. G.997.1. + Note: HLIN is not applicable in PLOAM for G.992.1 or G.992.2. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to ''None''. + + + + + + + + + + + Number of sub-carriers per sub-carrier group in the downstream direction for {{param|QLNpsds}}. Valid values are 1, 2, 4, and 8. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 1. + + + + + + + + Number of sub-carriers per sub-carrier group in the upstream direction for {{param|QLNpsus}}. Valid values are 1, 2, 4, and 8. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 1. + + + + + + + + {{list}} List items represent downstream quiet line noise per subcarrier group. Maximum number of elements is 256 for G.992.3, 512 for G.992.5. For G.993.2, the number of elements will depend on the value of {{param|QLNGds}} but will not exceed 512. Interpretation of the value is as defined in ITU-T Rec. G.997.1. + Note: QLN is not applicable in PLOAM for G.992.1 or G.992.2. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to ''None''. + + + + + + + + + + + {{list}} List items represent upstream quiet line noise per subcarrier group. The maximum number of elements is 64 for G.992.3, and G.992.5. For G.993.2, the number of elements will depend on the value of {{param|QLNGus}} but will not exceed 512. Interpretation of the values is as defined in ITU-T Rec. G.997.1. + Note: QLN is not applicable in PLOAM for G.992.1 or G.992.2. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to ''None''. + + + + + + + + + + + Indicates the number of symbols over which {{param|QLNpsds}} was measured. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 0. + + + + + + + + Indicates the number of symbols over which {{param|QLNpsus}} was measured. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 0. + + + + + + + + Number of sub-carriers per sub-carrier group in the downstream direction for {{param|SNRpsds}}. Valid values are 1, 2, 4, and 8. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 1. + + + + + + + + Number of sub-carriers per sub-carrier group in the upstream direction for {{param|SNRpsus}}. Valid values are 1, 2, 4, and 8. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 1. + + + + + + + + {{list}} List items represent downstream SNR per subcarrier group. Maximum number of elements is 256 for G.992.3, 512 for G.992.5. For G.993.2, the number of elements will depend on the value of {{param|SNRGds}} but will not exceed 512. Interpretation of the value is as defined in ITU-T Rec. G.997.1. Interpretation of the value is as defined in ITU-T Rec. G.997.1. + Note: SNRps is not applicable in PLOAM for G.992.1 or G.992.2. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to ''None''. + + + + + + + + + + + {{list}} List items represent upstream SNR per subcarrier group. The maximum number of elements is 64 for G.992.3, and G.992.5. For G.993.2, the number of elements will depend on the value of {{param|SNRGus}} but will not exceed 512. Interpretation of the values is as defined in ITU-T Rec. G.997.1. + Note: SNRps is not applicable in PLOAM for G.992.1 or G.992.2. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to ''None''. + + + + + + + + + + + Indicates the number of symbols over which {{param|SNRpsds}} was measured. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 0. + + + + + + + + Indicates the number of symbols over which {{param|SNRpsus}} was measured. + Note: See ITU-T Recommendation {{bibref|G.997.1}}. For a multimode device operating in a mode in which this parameter does not apply, the value of this parameter SHOULD be set to 0. + + + + + + + + {{list}} List items represent downstream bit allocation per subcarrier group. Maximum number of elements is 256 for G.992.3, 512 for G.992.5. Interpretation of the value is as defined in ITU-T Rec. {{bibref|G.997.1}}. + + + + + + + + + + + {{list}} List items represent upstream bit allocation per subcarrier group. Maximum number of elements is 256 for G.992.3, 512 for G.992.5. Interpretation of the value is as defined in ITU-T Rec. {{bibref|G.997.1}}. + + + + + + + + + + + + + This command performs a DSL Single Ended Line Test - Physical Medium Dependent (SELT-PMD) Uncalibrated Echo Response (UER). + This command is for the CPE, aka the Transmission Unit - Remote end (TU-R). + Reference: ITU-T Recommendation {{bibref|G.996.2|Clause A.2, SELT-PMD management entity}}. + + + + Input arguments. + + + + {{reference}} This is the interface over which the test is to be performed. + + + + + + + + + + + This parameter is the SELT UER maximum measurement duration (MMD) measured in {{units}}. + This parameter is defined as SELT_UER_MMD_R in ITU-T Recommendation {{bibref|G.996.2|Clause A.2.1.1}}. + + + + + + + + + + + + Output arguments. + + + + Indicates the availability of diagnostics data. {{enum}} + If the value of this parameter is anything other than {{enum|Complete}}, the values of the other results parameters for this test are indeterminate. + + + + + + + + + + + + This parameter indicates if the option for extended bandwidth SELT is applied ({{true}}) or not applied ({{false}}). + If the option for extended bandwidth SELT is applied to UER, then {{param|UERGroupSize}} has three valid values: 1, 2 and 12. + If the option for extended bandwidth SELT is not applied to UER, then {{param|UERGroupSize}} has two valid values: 1 and 2. + {{param|UERGroupSize}} is reported if the option for extended bandwidth UER SELT is supported; otherwise, reporting of the group size is optional. + + + + + + + + The Uncalibrated Echo Response (UER) [a(0),b(0)], [a(1),b(1)], ... + {{list|with each list item consisting of the following}} + {{datatype|expand}} + The value of UER at frequency i*{{param|UERGroupSize}}*Df = ({{param|UERScaleFactor}}/(2^31))*(a(i)+j*b(i))/(2^31) where Df = 4.3125 kHz. + This parameter is defined as CPE SELT uncalibrated echo response (SELT-UER-R) in ITU-T Recommendation {{bibref|G.996.2|Clause A.2.2.1}}. + + + + + + + + + The Uncalibrated Echo Response (UER) scale factor. + This parameter is defined as part of the CPE SELT uncalibrated echo response (SELT-UER-R) in ITU-T Recommendation {{bibref|G.996.2|Clause A.2.2.1}}. + Note that the scale factor is chosen such that max(abs(a(i)), abs(b(i))) over all i is equal to 2^31 - 1, which doesn't allow {{param}} to be zero. + + + + + + + + The Uncalibrated Echo Response (UER) group size, UER_G. In units of {{units}}. + This parameter is defined as part of the CPE SELT uncalibrated echo response (SELT-UER-R) in ITU-T Recommendation {{bibref|G.996.2|Clause A.2.2.2}}. + + + + + + + + + + + + This parameter represents the variance of the {{param|UER}}. List items represent v(i), for values of i starting at i=0. The variance of the uncalibrated echo response for frequency i*{{param|UERGroupSize}}*Df is VAR(i*{{param|UERGroupSize}}*Df) = 3 - v(i)/2 dB where Df = 4.3125 kHz. + This parameter is defined as SELT variance of uncalibrated echo response R (SELT UER-VAR-R) in {{bibref|G.996.2|Clause A.2.2.2}}. + + + + + + + + + + + This command performs a DSL Single Ended Line Test - Physical Medium Dependent (SELT-PMD) Quiet Line Noise (QLN). + This command is for the CPE, aka the Transmission Unit - Remote end (TU-R). + Reference: ITU-T Recommendation {{bibref|G.996.2|Clause A.2, SELT-PMD management entity}}. + + + + Input arguments. + + + + {{reference}} This is the interface over which the test is to be performed. + + + + + + + + + + + This parameter is the SELT QLN maximum measurement duration (MMD) measured in {{units}}. + This parameter is defined as SELT_QLN_MMD_R in ITU-T Recommendation {{bibref|G.996.2|Clause A.2.1.2}}. + + + + + + + + + + + + Output arguments. + + + + Indicates the availability of diagnostics data. {{enum}} + If the value of this parameter is anything other than {{enum|Complete}}, the values of the other results parameters for this test are indeterminate. + + + + + + + + + + + + This parameter indicates if the option for extended bandwidth SELT is applied ({{true}}) or not applied ({{false}}). + If the option for extended bandwidth SELT is applied to QLN, then {{param|QLNGroupSize}} has three valid values: 1, 2 and 12. + If the option for extended bandwidth SELT is not applied to QLN, then {{param|QLNGroupSize}} has two valid values: 1 and 2. + {{param|QLNGroupSize}} is reported if the option for extended bandwidth QLN SELT is supported; otherwise, reporting of the group size is optional. + + + + + + + + {{list}} List items represent SELT quiet line noise (QLN) per subcarrier group. + Each list element is n(i), with i starting at 0. The value of QLN at frequency i*{{param|QLNGroupSize}}*Df with Df=4.3125 kHz is defined as QLN(i*{{param|QLNGroupSize}}*Df) = -23 - (n(i)/2) dBm/Hz. This data format supports a QLN granularity of 0.5 dB and an dynamic range of -150 to -23 dBm/Hz. + Interpretation of the SELT_QLN_R value is defined in {{bibref|G.996.2|Clause A.2.2.3}}. + + + + + + + + + + + This parameter represents the Quiet Line Noise (QLN) group size. In units of {{units}}. + This parameter is defined as part of the SELT_QLN_R in ITU-T Recommendation {{bibref|G.996.2|Clause A.2.2.4}}. + + + + + + + + + + + + + + This command performs a DSL Single-Ended Line Test - Processed (SELT-P). + This command is for the CPE, aka the Transmission Unit - Remote end (TU-R). + Reference: ITU-T Recommendation {{bibref|G.996.2}}. + + + + Input arguments. + + + + {{reference}} This is the interface over which the test is to be performed. + + + + + + + + + + + Capacity estimate calculation enabling: This parameter is expressed as a boolean and takes the value {{false}} if xDSL performance estimation is not required, {{true}} otherwise. + The capacity estimate calculation enabling parameter is defined in {{bibref|G.996.2|Clause B.2.1.1}}. + + + + + + + + The capacity estimate signal Power Spectral Density (PSD): + {{list|with each list item consisting of the following}} + {{datatype|expand}} + This capacity estimate signal PSD parameter is defined in ITU-T Recommendation {{bibref|G.996.2|Clause B.2.1.2}}. + + + + + + + + + The capacity estimate noise Power Spectral Density (PSD): + {{list|with each list item consisting of the following}} + {{datatype|expand}} + This capacity estimate noise PSD parameter is defined in ITU-T Recommendation {{bibref|G.996.2|Clause B.2.1.3}}. + + + + + + + + + The capacity estimate target noise margin. The range of valid values is 0 to 31 dB, in steps of {{units}}. + This capacity estimate target noise margin parameter is defined in ITU-T Recommendation {{bibref|G.996.2|Clause B.2.1.4}}. + + + + + + + + + + + + Output arguments. + + + + Indicates the availability of diagnostics data. {{enum}} + If the value of this parameter is anything other than {{enum|Complete}}, the values of the other results parameters for this test are indeterminate. + + + + + + + + + + + + Loop termination indicator. {{enum}} + This parameter is defined as LOOP-TERM in ITU-T Recommendation {{bibref|G.996.2|Clause B.1.1.1}}. + + + + + + + + This value has been removed from the ITU-T Recommendation. + + + + + + + + + + This parameter is the loop length with units of {{units}}. + This parameter is defined as the loop length parameter LOOP_LEN in ITU-T Recommendation {{bibref|G.996.2|Clause B.1.1.2}}. + + + + + + + + + + + {{list}} List items represent paired parameters [LOOP_SEG_LEN, LOOP_SEG_BTAP] representing a concatenation of loop segment types, where LOOP_SEG_LEN represents the length of the segment in meters; and LOOP_SEG_BTAP is a string that identifies the segment type as either "in series" or "bridged tap". + The first loop segment in the list shall be the segment connected to the SELT-PMD block, subsequent loop segments in the list shall describe the loop in the direction toward the far-end loop termination. + This Loop Topology parameter is defined in ITU-T Recommendation {{bibref|G.996.2|Clause B.1.1.3}}. + + + + + + + + + + + Specifies the list of attenuation characteristics. + {{list|with each list item consisting of the following}} + {{datatype|expand}} + TFlog(i * {{param|TFlogGroupSize}} * Df) is represented by an integer k, 0 <= k <= 1022, where TFlog(i * {{param|TFlogGroupSize}} * Df) = 6.0 - k * 0.1. The special value of k of 1023 is used to indicate that no measurement could be done for this subcarrier because the attenuation is out of the range that can be represented. + The attenuation characteristics TFlog(f) parameter is defined in ITU-T Recommendation {{bibref|G.996.2|Clause B.1.1.6}}. + + + + + + + + + This parameter represents the Transfer Function Log (TFlog) group size. In units of {{units}}. + This parameter is defined as part of the SELT attenuation characteristics, {{param|AttenuationCharacteristics}}, defined in ITU-T Recommendation {{bibref|G.996.2|Clause B.1.1.6}}. + + + + + + + + + + + + Missing micro-filter or splitter: This parameter is a binary indication of a missing or incorrectly installed splitter or micro-filter at the U-R reference point. A value of true represents a missing splitter. + The missing micro-filter or splitter parameter is defined in {{bibref|G.996.2|Clause B.1.1.4}}. + + + + + + + + Capacity Estimate: {{list}} This parameter represents the downstream and/or upstream capacity estimates in {{units}}. + If only one value is supplied, then it's not specified whether it's the downstream value, the upstream value or some combination of the two. If two values are supplied, then the first is the downstream value and the second is the upstream value. + The capacity estimate parameters are defined in {{bibref|G.996.2|Clause B.1.1.7}}. + + + + + + + + + + + + + + This object models FAST (defined in ITU Recommendation {{bibref|G.9701}}) lines. Each {{object|Line}} models a layer 1 FAST Line interface. + + + + {{numentries}} + + + + + + + + + FAST Line table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). + This table models physical FAST lines. + + + + + + + + + + Enables or disables the FAST line. This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + The current operational state of the FAST line (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the FAST line as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the FAST line entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + Note: Since {{object}} is a layer 1 interface, it is expected that {{param}} will not be used. + + + + + + + + + + + + + Indicates whether the interface points towards the Internet ({{true}}) or towards End Devices ({{false}}). + For example: + * For an Internet Gateway Device, {{param}} will be {{true}} for all WAN interfaces and {{false}} for all LAN interfaces. + * For a standalone WiFi Access Point that is connected via Ethernet to an Internet Gateway Device, {{param}} will be {{true}} for the Ethernet interface and {{false}} for the WiFi Radio interface. + * For an End Device, {{param}} will be {{true}} for all interfaces. + + + + + + + + A string identifying the version of the modem firmware currently installed for this interface. This is applicable only when the modem firmware is separable from the overall CPE software. + + + + + + + + + + Status of the FAST physical link. {{enum}} + When {{param}} is {{enum|Up}}, {{param|Status}} is expected to be {{enum|Up|Status}}. When {{param}} is {{enum|Initializing}} or {{enum|EstablishingLink}} or {{enum|NoSignal}} or {{enum|Disabled}}, {{param|Status}} is expected to be {{enum|Down|Status}}. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + + {{list}} List items indicate which FAST profiles are allowed on the line. {{enum}} + Note: In G.997.2, this parameter is called PROFILES. See ITU-T Recommendation {{bibref|G.997.2}}. + + + + + + + + + + + + Indicates which FAST profile is currently in use on the line. + + + + + + + + + + The power management state of the line. {{enum}} + Note: See ITU-T Recommendation {{bibref|G.9701}}. + + + + + + + + + + + + + The success failure cause of the initialization. An enumeration of the following integer values: + * 0: Successful + * 1: Configuration error. Configuration error. This error occurs if the line cannot reach L0 state due to a mismatch of configuration and FTU capabilities. + * 2: Configuration not feasible on the line. This error occurs if the line cannot reach the L0 state due to a mismatch of configuration of line and noise characteristics. + * 3: Communication problem. This error occurs, for example, due to corrupted messages or bad syntax messages or if no common mode can be selected in the G.994.1 handshaking procedure or due to a timeout. + * 4: No far-end FTU detected. This error occurs if the far-end FTU is not powered or not connected or if the line is too long to allow detection of a far-end FTU. + * 5: Any other or unknown initialization failure cause. + Note: In G.997.2, this parameter is called "Initialization success/failure cause". See Clause 7.20.2.1 of ITU-T + Recommendation {{bibref|G.997.2}}. + + + + + + + + + + This parameter reports the estimate of the electrical length expressed in {{units}}, as determined by the FTU-R (see clause 7.3.1.4.2.1/{{bibref|G.9701}}) and conveyed in the R-MSG1 initialization message (see clause 12.3.3.2.3/{{bibref|G.9701}}). The value is coded as an unsignedInt in the range 0 (coded as 0) to 128 dB (coded as 1280) in steps of {{units}}. + Note: This parameter is defined as UPBOKLE-R in Clause 7.10.4.2 of ITU-T Recommendation {{bibref|G.997.2}}. + + + + + + + + + + + This parameter reports the downstream signal count of the last transmitted initialization signal in the last full or short initialization performed on the line. The valid values are 0..21. The downstream signal count is defined in clause 12.3.1/{{bibref|G.9701}}. + Note: See clause 7.10.2.2 ITU-T Recommendation {{bibref|G.997.2}}. + + + + + + + + + + This parameter reports the upstream signal count of the last transmitted initialization signal in the last full or short initialization performed on the line. The valid values are 0..21. The upstream signal count is defined in clause 12.3.1/{{bibref|G.9701}}. + Note: See clause 7.10.2.3 ITU-T Recommendation {{bibref|G.997.2}}. + + + + + + + + + + This parameter reports the electrical length that would have been sent from the FTU-O to the FTU-R if the electrical length was not forced by the DPU-MIB. If the electrical length is not forced by the DPU-MIB, then this object reports the final electrical length, as determined by the FTU-O (see clause 7.3.1.4.2.1/{{bibref|G.9701}}) and conveyed in the O-UPDATE initialization message (see clause 12.3.3.2.4/{{bibref|G.9701}}). + Note: See clause 7.10.4.1 in ITU-T Recommendation {{bibref|G.997.2}}. + + + + + + + + + + + Signifies the line pair that the modem is using to connection. {{param}} = 1 is the innermost pair. + + + + + + + + + + This parameter reports the attainable net data rate expressed in {{units}} as defined in clause 11.4.1.1.2/{{bibref|G.9701}}. + Note: This parameter is related to the G.997.2 parameter ATTNDRus. See clause 7.11.2.1 ITU-T Recommendation {{bibref|G.997.2}}. + + + + + + + + + + This parameter reports the attainable net data rate expressed in {{units}} as defined in clause 11.4.1.1.2/{{bibref|G.9701}}. + Note: This parameter is related to the G.997.2 parameter ATTNDRds. See clause 7.11.2.1 ITU-T Recommendation {{bibref|G.997.2}}. + + + + + + + + + + This parameter reports the signal-to-noise ratio margin (as defined in clause 9.8.3.2/{{bibref|G.9701}} and 11.4.1.3/{{bibref|G.9701}}) in the upstream direction. A special value indicates that the signal-to-noise ratio margin is out of the range to be represented. The parameter is expressed in {{units}}. + Note: In G.997.2, this parameter is called SNRMus. See ITU-T Recommendation {{bibref|G.997.2}}. + + + + + + + + + + This parameter reports the signal-to-noise ratio margin (as defined in clause 9.8.3.2/{{bibref|G.9701}} and 11.4.1.3/{{bibref|G.9701}}) in the upstream direction. A special value indicates that the signal-to-noise ratio margin is out of the range to be represented. The parameter is expressed in {{units}}. + Note: In G.997.2, this parameter is called SNRMds. See ITU-T Recommendation {{bibref|G.997.2}}. + + + + + + + + + + The current upstream signal loss (expressed in {{units}}). + + + + + + + + + + The current downstream signal loss (expressed in {{units}}). + + + + + + + + + + The current output power at the CPE's FAST line (expressed in {{units}}). + + + + + + + + + + The current received power at the CPE's FAST line (expressed in {{units}}). + + + + + + + + + + This parameter reports the signal-to-noise margin for the robust management channel (RMC) in the downstream direction (express in {{units}}). A special value (-512) indicates that the signal-to-noise ratio margin for the RMC is out of the range to be represented. This parameter is defined in clauses 7.10.12.1 of ITU-T Recommendation {{bibref|G.997.2}}. + + + + + + + + + + This parameter reports the signal-to-noise margin for the robust management channel (RMC) in the upstream direction (express in {{units}}). A special value (-512) indicates that the signal-to-noise ratio margin for the RMC is out of the range to be represented. This parameter is defined in clauses 7.10.12.2 of ITU-T Recommendation {{bibref|G.997.2}}. + + + + + + + + + + {{list}} List items report the bit allocation values on RMC sub-carriers in RMC symbols in the downstream direction. Each pair composes of a sub-carrier index from 0..4095 and an 8 bit allocation value. There are maximum 512 pairs. This parameter is defined in clause 7.10.12.3 of ITU-T Recommendation {{bibref|G.997.2}}. + + + + + + + + + + + {{list}} List items report the bit allocation values on RMC sub-carriers in RMC symbols in the upstream direction. Each pair composes of a sub-carrier index from 0..4095 and an 8 bit allocation value. There are maximum 512 pairs. This parameter is defined in clause 7.10.12.4 of ITU-T Recommendation {{bibref|G.997.2}}. + + + + + + + + + + + This indicates whether FEXT cancellation in the downstream direction from all the other vectored lines into the line in the vectored group is enabled (TRUE) or disabled (FALSE). This parameter is defined as FEXT_TO_CANCEL_ENABLEds in clause 7.1.7.1 of ITU Recommendation {{bibref|G.997.2}}. + + + + + + + + This indicates whether FEXT cancellation in the upstream direction from all the other vectored lines into the line in the vectored group is enabled (TRUE) or disabled (FALSE). This parameter is defined as FEXT_TO_CANCEL_ENABLEds in clause 7.1.7.1 of ITU Recommendation {{bibref|G.997.2}}. + + + + + + + + This parameter reports the expected throughput rate expressed in {{units}} as defined in clause 7.11.1.2 of ITU-T Recommendation {{bibref|G.997.2}} + + + + + + + + + + This parameter reports the expected throughput rate expressed in {{units}} as defined in clause 7.11.1.2 of ITU-T Recommendation {{bibref|G.997.2}} + + + + + + + + + + This parameter reports the attainable expected throughput expressed in {{units}} as defined in clause 7.11.2.2 of ITU-T Recommendation {{bibref|G.997.2}} + + + + + + + + + + This parameter reports the attainable expected throughput expressed in {{units}} as defined in clause 7.11.2.2 of ITU-T Recommendation {{bibref|G.997.2}} + + + + + + + + + + This parameter reports the minimum error free throughput value expressed in {{units}} computed from power up as defined in clause 11.4.1.1.3 of ITU-T Recommendation {{bibref|G.9701}} + + + + + + + + + + + Throughput statistics for this interface. + The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + The total number of bytes transmitted out of the interface, including framing characters. + + + + + + + + The total number of bytes received on the interface, including framing characters. + + + + + + + + The total number of packets transmitted out of the interface. + + + + + + + + The total number of packets received on the interface. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + FAST-specific statistic. The Number of {{units}} since the beginning of the period used for collection of {{object|Total}} statistics. + Statistics SHOULD continue to be accumulated across CPE reboots, though this might not always be possible. + Note: {{param}} SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + + + + + + + FAST-specific statistic. The Number of {{units}} since the most recent DSL Showtime - the beginning of the period used for collection of {{object|Showtime}} statistics. + Showtime is defined as successful completion of the DSL link establishment process. The ''Showtime'' statistics are those collected since the most recent establishment of the DSL link. + Note: {{param}} SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + + + + + + + FAST-specific statistic. The Number of {{units}} since the second most recent DSL Showtime-the beginning of the period used for collection of {{object|LastShowtime}} statistics. + If the CPE has not retained information about the second most recent Showtime (e.g., on reboot), the start of ''LastShowtime'' statistics MAY temporarily coincide with the start of ''Showtime'' statistics. + Note: {{param}} SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + + + + + + + FAST-specific statistic. The Number of {{units}} since the beginning of the period used for collection of {{object|CurrentDay}} statistics. + The CPE MAY align the beginning of each ''CurrentDay'' interval with days in the UTC time zone, but is not required to do so. + Statistics SHOULD continue to be accumulated across CPE reboots, though this might not always be possible. + Note: {{param}} SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + + + + + + + FAST-specific statistic. The Number of {{units}} since the beginning of the period used for collection of {{object|QuarterHour}} statistics. + The CPE MAY align the beginning of each ''QuarterHour'' interval with real-time quarter-hour intervals, but is not required to do so. + Statistics SHOULD continue to be accumulated across CPE reboots, though this might not always be possible. + Note: {{param}} SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + + + + + + + + This object contains DSL line total statistics. + Note: The {{object}} parameters SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + Total number of errored {{units}} as defined in ITU-T Rec. {{bibref|G.997.2}}. An errored second (ES) is declared if, during a 1-second interval, there are one or more crc anomalies, or one or more los defects, or one or more lor defects, or one or more lpr primitives. + + + + + + + + + + Total number of severely errored {{units}} as defined in ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + + + Total number of loss of signal {{units}} (LOSS) as defined in ITU-T Rec. {{bibref|G.997.2}}. A LOSS is declared if, during a 1-second interval, there are one or more los defects. + + + + + + + + + + Total number of loss of RMC {{units}} (LORS) as defined in ITU-T Rec. {{bibref|G.997.2}}. A LORS is declared if, during a 1-second interval, there are one or more lor defects. + + + + + + + + + + Total number of unavailable {{units}} (UAS) as defined in ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + + + This parameter reports a count of uncorrected DTU anomalies (rtx_uc). This parameter is defined in clause 7.8.5 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of retransmitted DTU anomalies (rtx_tx). This parameter is defined in clause 7.8.6 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of the successful bit swap (BSW) primitives. This parameter is defined as success_BSW in clause 7.7.20 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of the successful autonomous SRA (seamless rate adaptation) primitives. This parameter is defined as success_SRA in clause 7.7.21 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of the successful FRA (fast rate adaptation) primitives. This parameter is defined as success_FRA in clause 7.7.22 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of the successful RPA (RMC parameter adjustment) primitives. This parameter is defined as success_RPA in clause 7.7.23 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of the successful TIGA (transmitter initiated gain adjustment) primitives. This parameter is defined as success_TIGA in clause 7.7.24 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + + This object contains FAST line statistics since the most recent showtime. + Note: The Total parameters SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + Total number of errored {{units}} as defined in ITU-T Rec. {{bibref|G.997.2}}. An errored second (ES) is declared if, during a 1-second interval, there are one or more crc anomalies, or one or more los defects, or one or more lor defects, or one or more lpr primitives. + + + + + + + + + + Total number of severely errored {{units}} as defined in ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + + + Total number of loss of signal {{units}} (LOSS) as defined in ITU-T Rec. {{bibref|G.997.2}}. A LOSS is declared if, during a 1-second interval, there are one or more los defects. + + + + + + + + + + Total number of loss of RMC {{units}} (LORS) as defined in ITU-T Rec. {{bibref|G.997.2}}. A LORS is declared if, during a 1-second interval, there are one or more lor defects. + + + + + + + + + + Total number of unavailable {{units}} (UAS) as defined in ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + + + This parameter reports a count of uncorrected DTU anomalies (rtx_uc). This parameter is defined in clause 7.8.5 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of retransmitted DTU anomalies (rtx_tx). This parameter is defined in clause 7.8.6 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of the successful bit swap (BSW) primitives. This parameter is defined as success_BSW in clause 7.7.20 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of the successful autonomous SRA (seamless rate adaptation) primitives. This parameter is defined as success_SRA in clause 7.7.21 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of the successful FRA (fast rate adaptation) primitives. This parameter is defined as success_FRA in clause 7.7.22 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of the successful RPA (RMC parameter adjustment) primitives. This parameter is defined as success_RPA in clause 7.7.23 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of the successful TIGA (transmitter initiated gain adjustment) primitives. This parameter is defined as success_TIGA in clause 7.7.24 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + + This object contains FAST line statistics since the second most recent showtime. + Note: The Total parameters SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + Total number of errored {{units}} as defined in ITU-T Rec. {{bibref|G.997.2}}. An errored second (ES) is declared if, during a 1-second interval, there are one or more crc anomalies, or one or more los defects, or one or more lor defects, or one or more lpr primitives. + + + + + + + + + + Total number of severely errored {{units}} as defined in ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + + + Total number of loss of signal {{units}} (LOSS) as defined in ITU-T Rec. {{bibref|G.997.2}}. A LOSS is declared if, during a 1-second interval, there are one or more los defects. + + + + + + + + + + Total number of loss of RMC {{units}} (LORS) as defined in ITU-T Rec. {{bibref|G.997.2}}. A LORS is declared if, during a 1-second interval, there are one or more lor defects. + + + + + + + + + + Total number of unavailable {{units}} (UAS) as defined in ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + + + This parameter reports a count of uncorrected DTU anomalies (rtx_uc). This parameter is defined in clause 7.8.5 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of retransmitted DTU anomalies (rtx_tx). This parameter is defined in clause 7.8.6 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of the successful bit swap (BSW) primitives. This parameter is defined as success_BSW in clause 7.7.20 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of the successful autonomous SRA (seamless rate adaptation) primitives. This parameter is defined as success_SRA in clause 7.7.21 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of the successful FRA (fast rate adaptation) primitives. This parameter is defined as success_FRA in clause 7.7.22 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of the successful RPA (RMC parameter adjustment) primitives. This parameter is defined as success_RPA in clause 7.7.23 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of the successful TIGA (transmitter initiated gain adjustment) primitives. This parameter is defined as success_TIGA in clause 7.7.24 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + + This object contains FAST line statistics accumulated during the current day. + Note: The Total parameters SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + Total number of errored {{units}} as defined in ITU-T Rec. {{bibref|G.997.2}}. An errored second (ES) is declared if, during a 1-second interval, there are one or more crc anomalies, or one or more los defects, or one or more lor defects, or one or more lpr primitives. + + + + + + + + + + Total number of severely errored {{units}} as defined in ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + + + Total number of loss of signal {{units}} (LOSS) as defined in ITU-T Rec. {{bibref|G.997.2}}. A LOSS is declared if, during a 1-second interval, there are one or more los defects. + + + + + + + + + + Total number of loss of RMC {{units}} (LORS) as defined in ITU-T Rec. {{bibref|G.997.2}}. A LORS is declared if, during a 1-second interval, there are one or more lor defects. + + + + + + + + + + Total number of unavailable {{units}} (UAS) as defined in ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + + + This parameter reports a count of uncorrected DTU anomalies (rtx_uc). This parameter is defined in clause 7.8.5 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of retransmitted DTU anomalies (rtx_tx). This parameter is defined in clause 7.8.6 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of the successful bit swap (BSW) primitives. This parameter is defined as success_BSW in clause 7.7.20 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of the successful autonomous SRA (seamless rate adaptation) primitives. This parameter is defined as success_SRA in clause 7.7.21 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of the successful FRA (fast rate adaptation) primitives. This parameter is defined as success_FRA in clause 7.7.22 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of the successful RPA (RMC parameter adjustment) primitives. This parameter is defined as success_RPA in clause 7.7.23 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of the successful TIGA (transmitter initiated gain adjustment) primitives. This parameter is defined as success_TIGA in clause 7.7.24 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + + This object contains FAST line statistics accumulated during the current quarter hour. + Note: The Total parameters SHOULD NOT be reset when the interface statistics are reset via an interface disable / enable cycle. + + + + Total number of errored {{units}} as defined in ITU-T Rec. {{bibref|G.997.2}}. An errored second (ES) is declared if, during a 1-second interval, there are one or more crc anomalies, or one or more los defects, or one or more lor defects, or one or more lpr primitives. + + + + + + + + + + Total number of severely errored {{units}} as defined in ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + + + Total number of loss of signal {{units}} (LOSS) as defined in ITU-T Rec. {{bibref|G.997.2}}. A LOSS is declared if, during a 1-second interval, there are one or more los defects. + + + + + + + + + + Total number of loss of RMC {{units}} (LORS) as defined in ITU-T Rec. {{bibref|G.997.2}}. A LORS is declared if, during a 1-second interval, there are one or more lor defects. + + + + + + + + + + Total number of unavailable {{units}} (UAS) as defined in ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + + + This parameter reports a count of uncorrected DTU anomalies (rtx_uc). This parameter is defined in clause 7.8.5 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of retransmitted DTU anomalies (rtx_tx). This parameter is defined in clause 7.8.6 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of the successful bit swap (BSW) primitives. This parameter is defined as success_BSW in clause 7.7.20 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of the successful autonomous SRA (seamless rate adaptation) primitives. This parameter is defined as success_SRA in clause 7.7.21 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of the successful FRA (fast rate adaptation) primitives. This parameter is defined as success_FRA in clause 7.7.22 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of the successful RPA (RMC parameter adjustment) primitives. This parameter is defined as success_RPA in clause 7.7.23 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + This parameter reports a count of the successful TIGA (transmitter initiated gain adjustment) primitives. This parameter is defined as success_TIGA in clause 7.7.24 of ITU-T Rec. {{bibref|G.997.2}}. + + + + + + + + + This object contains the FAST line test parameters that are available during the L0 (i.e., Showtime) state. + + + + Reports the number of sub-carriers in any one sub-carrier group used to represent the downstream SNR(f) values. Valid values are 1, 2, 4, and 8. + Note: In ITU-T G.9701-2014, the only valid value is G = 1. See clause 7.10.8.2 ITU-T Recommendation {{bibref|G.997.2}}. + + + + + + + + Reports the number of sub-carriers in any one sub-carrier group used to represent the upstream SNR(f) values. Valid values are 1, 2, 4, and 8. + Note: In ITU-T G.9701-2014, the only valid value is G = 1. See clause 7.10.8.5 ITU-T Recommendation {{bibref|G.997.2}}. + + + + + + + + {{list}} Reports the downstream SNR(f) values. A special value indicates that no measurement could be done for this sub-carrier group because it is out of the downstream MEDLEY set or its transmit power is zero. The number of elements will depend on the value of SNRGds. Interpretation of the values is as defined in clause 11.4.1.2.2.of ITU-T Rec. {{bibref|G.9701}}. + Note: See clause 7.10.8.3 of ITU-T Recommendation {{bibref|G.997.2}}. + + + + + + + + + + + {{list}} Reports the upstream SNR(f) values. A special value indicates that no measurement could be done for this sub-carrier group because it is out of the downstream MEDLEY set or its transmit power is zero. The number of elements will depend on the value of SNRGds. Interpretation of the values is as defined in clause 11.4.1.2.2.of ITU-T Rec. {{bibref|G.9701}}. + Note: See clause 7.10.8.6 of ITU-T Recommendation {{bibref|G.997.2}}. + + + + + + + + + + + Reports the number of symbols used to measure the downstream SNR(f) values. The valid values 0..65535. + Note: See clause 7.10.8.1 of ITU-T Recommendation {{bibref|G.997.2}}. + + + + + + + + Reports the number of symbols used to measure the upstream SNR(f) values. The valid values 0..65535. + Note: See clause 7.10.8.4 of ITU-T Recommendation {{bibref|G.997.2}}. + + + + + + + + Reports the actual INP against SHINE as defined in clause 11.4.1.1.7/{{bibref|G.9701}}. A special value indicates an actual INP against SHINE of 2047 symbols or higher. The valid values are 0..2046 and 2047 is the special value. + Note: See ITU-T Recommendation {{bibref|G.997.2}}. + + + + + + + + Reports the DTU FEC codeword length (expressed in 1 byte unit) as defined in clause 9.3/{{bibref|G.9701}}. The valid range is 32..255. + Note: See clause 7.11.4.1 ITU-T Recommendation {{bibref|G.997.2}}. + + + + + + + + Reports the DTU FEC codeword redundancy as defined in clause 9.3/{{bibref|G.9701}}. + Note: See ITU-T Recommendation {{bibref|G.997.2}}. + + + + + + + + Reports the current physical layer aggregate data rate (expressed in {{units}}) of the upstream FAST as defined in clause 11.4.1.1.1/{{bibref|G.9701}}. + The current physical layer aggregate data rate (expressed in Kbps) of the upstream FAST connection. The valid values are 0..4294967295(0 to 232-1 kbit/s). + + + + + + + + + + Reports the current physical layer aggregate data rate (expressed in {{units}}) of the upstream FAST as defined in clause 11.4.1.1.1/{{bibref|G.9701}}. + The current physical layer aggregate data rate (expressed in Kbps) of the downstream FAST connection. The valid values are 0..4294967295(0 to 232-1 kbit/s). + + + + + + + + + + Reports the actual INP against REIN as defined in clause 11.4.1.1.8/{{bibref|G.9701}}. A special value indicates an actual INP against REIN of 63 symbols or higher. The valid range is 0..62 symbols, and 63 is the special value. + + + + + + + + + This object models optical interface technologies. It defines an {{object|Interface}} object that models a layer 1 optical interface that is capable of transporting Ethernet packets. The data model definition is based on parts of {{bibref|G.988}}. + + + + {{numentries}} + + + + + + + + + Optical interface table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). This table models physical optical interfaces. + + + + + + + + + + Enables or disables the optical interface. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + The current operational state of the optical interface (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the optical interface as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the optical interface entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + Note: Since {{object}} is a layer 1 interface, it is expected that {{param}} will not be used. + + + + + + + + + + + + + Indicates whether the interface points towards the Internet ({{true}}) or towards End Devices ({{false}}). + For example: + * For an Internet Gateway Device, {{param}} will be {{true}} for all WAN interfaces and {{false}} for all LAN interfaces. + * For a standalone WiFi Access Point that is connected via Ethernet to an Internet Gateway Device, {{param}} will be {{true}} for the Ethernet interface and {{false}} for the WiFi Radio interface. + * For an End Device, {{param}} will be {{true}} for all interfaces. + + + + + + + + Current measurement of total downstream optical signal level. + {{datatype|expand}} + Valid values are -65.536 dBm (coded as -65536), to 65.534 dBm (coded as 65534) in 0.002 dB increments. + This parameter is based on ''Optical signal level'' from {{bibref|G.988|Section 9.2.1}}. + + + + + + + + + + Optical level that is used to declare the downstream low received optical power alarm. + {{datatype|expand}} + Valid values are -127.5 dBm (coded as -127500) to 0 dBm (coded as 0) in 0.5 dB increments. The value -127500 indicates the device's internal policy. + This parameter is based on ''Lower optical threshold'' from {{bibref|G.988|section 9.2.1}}. + + + + + + + + + + Optical level that is used to declare the downstream high received optical power alarm. + {{datatype|expand}} + Valid values are -127.5 dBm (coded as -127500) to 0 dBm (coded as 0) in 0.5 dB increments. The value -127500 indicates the device's internal policy. + This parameter is based on ''Upper optical threshold'' from {{bibref|G.988|section 9.2.1}}. + + + + + + + + + + Current measurement of mean optical launch power. + {{datatype|expand}} + Valid values are -65.536 dBm (coded as -65536), to 65.534 dBm (coded as 65534) in 0.002 dB increments. + This parameter is based on ''Transmit optical level'' from {{bibref|G.988|section 9.2.1}}. + + + + + + + + + + Minimum mean optical launch power that is used to declare the low transmit optical power alarm. + {{datatype|expand}} + Valid values are -63.5 dBm (coded as -63500) to +63.5 dBm (coded as 63500) in 0.5 dB increments. The value -63500 indicates the device's internal policy. + This parameter is based on ''Lower transmit power threshold'' from {{bibref|G.988|section 9.2.1}}. + + + + + + + + + + Maximum mean optical launch power that is used to declare the high transmit optical power alarm. + {{datatype|expand}} + Valid values are -63.5 dBm (coded as -63500) to +63.5 dBm (coded as 63500) in 0.5 dB increments. The value -63500 indicates the device's internal policy. + This parameter is based on ''Upper transmit power threshold'' from {{bibref|G.988|section 9.2.1}}. + + + + + + + + + + + Throughput statistics for this interface. + The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + The total number of bytes transmitted out of the interface, including framing characters. + + + + + + + + The total number of bytes received on the interface, including framing characters. + + + + + + + + The total number of packets transmitted out of the interface. + + + + + + + + The total number of packets received on the interface. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + + This object models cellular interfaces and access points. + + + + Enables or disables roaming. + + + + + + + + Current roaming status. + + + + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + Cellular interface table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). Each instance of this object models a cellular modem with a single radio and a single {{object|USIM}}. + + + + + + + + + + Enables or disables the interface. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + The current operational state of the interface (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} + * SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic. + * SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed) + * SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface + * SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + Because the interface includes layer 1 the {{enum|LowerLayerDown}} value SHOULD never be used. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + Corresponds to {{enum|GPRS|CurrentAccessTechnology}}, {{enum|UMTS|CurrentAccessTechnology}}, {{enum|LTE|CurrentAccessTechnology}} etc ''ATTACHED'' status + + + + + + + + Corresponds to {{enum|GPRS|CurrentAccessTechnology}}, {{enum|UMTS|CurrentAccessTechnology}}, {{enum|LTE|CurrentAccessTechnology}} etc ''DETACHED'' status + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the interface as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the interface entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + Note: Since {{object}} is a layer 1 interface, it is expected that {{param}} will not be used. + + + + + + + + + + + + + Indicates whether the interface points towards the Internet ({{true}}) or towards End Devices ({{false}}). + For example: + * For an Internet Gateway Device, {{param}} will be {{true}} for all WAN interfaces and {{false}} for all LAN interfaces. + * For a standalone WiFi Access Point that is connected via Ethernet to an Internet Gateway Device, {{param}} will be {{true}} for the Ethernet interface and {{false}} for the WiFi Radio interface. + * For an End Device, {{param}} will be {{true}} for all interfaces. + + + + + + + + International Mobile Station Equipment Identity number, represented as a 15 digit string (digits 0-9). + + + + + + + + + + + Access technologies supported by the interface. + + + + + + + GSM with GPRS + + + + + GSM with EDGE + + + + + + UMTS with High Speed Packet Access (HSPA {{bibref|3GPP-HSPA}}) + + + + + + + + 5G New Radio + + + + + + + + Preferred access technology. + + + + + + + + + + + Access technology that is currently in use. + + + + + + + + + + List of available networks. + + + + + + + + + + + Name of the network which will be used, or {{empty}} if the network is selected automatically. + + + + + + + + + + + The value is {{empty}} if no network is found, or if the network specified in {{param|NetworkRequested}} is not found. + + + + + + + + + + + The received signal strength in {{units}}. The allowed values depend on {{param|CurrentAccessTechnology}}: + * For {{enum|GPRS|SupportedAccessTechnologies}}, {{enum|EDGE|SupportedAccessTechnologies}} the range is -111 {{units}} to -49 {{units}} + * For {{enum|UMTS|SupportedAccessTechnologies}}, {{enum|UMTSHSPA|SupportedAccessTechnologies}} the range is -117 {{units}} to -54 {{units}} + * For {{enum|LTE|SupportedAccessTechnologies}}, {{enum|NR|SupportedAccessTechnologies}} the range is -117 {{units}} to -25 {{units}} + Note: An undetectable signal is indicated by the appropriate lower limit, e.g. -117 {{units}} for LTE. + + + + + + + + + + The Reference Signal Received Power in {{units}} for {{enum|LTE|SupportedAccessTechnologies}}, {{enum|NR|SupportedAccessTechnologies}} values of {{param|CurrentAccessTechnology}}: + * The valid range of RSRP values from worst to best is -140 {{units}} to -44 {{units}} + + + + + + + + + + The Reference Signal Received Quality in {{units}} for {{enum|LTE|SupportedAccessTechnologies}}, {{enum|NR|SupportedAccessTechnologies}} values of {{param|CurrentAccessTechnology}}: + * RSRQ is calculated using RSSI and RSRP values using RSRQ = (N*RSRP)/RSSI where N is the number of resource blocks (bandwidth). + * The valid range of RSRP values from worst to best is -20 {{units}} to -3 {{units}} + + + + + + + + + + The current maximum attainable data rate upstream (expressed in {{units}}). + + + + + + + + + + The current maximum attainable data rate downstream (expressed in {{units}}). + + + + + + + + + + + USIM (Universal Subscriber Identity Module or SIM card) parameters for the interface. + + + + The current status of the USIM card. + + + + + + No card available + + + + + Card is available but not verified + + + + + Card can be used; either valid PIN was entered, or PIN check is deactivated + + + + + USIM is blocked because the maximum number of invalid PIN entries was exceeded + + + + + An error was detected with the card + + + + + + + + International Mobile Subscriber Identity represented as a string with either 14 or 15 digits (digits 0-9). The first 3 digits are the mobile country code (MCC), which are followed by the mobile network code (MNC), either 2 digits (European standard) or 3 digits (North American standard), followed by the mobile subscription identification number (MSIN). + + + + + + + + + + + Integrated Circuit Card Identifier represented as a string of up to 20 digits (digits 0-9). The number is composed of the following parts: + * Major industry identifier (MII), 2 fixed digits, 89 for telecommunication purposes. + * Country code, 1–3 digits, as defined by ITU-T recommendation {{bibref|ITU-E.164}}. + * identifier, 1–4 digits. + * Individual account identification number. Its length is variable, but every number under one IIN will have the same length. + * Single check digit calculated from the other digits using the Luhn algorithm. + For cards using an ICCID according to {{bibref|ITU-E.118}} the maximum length is 19 Digits, for GSM cards 20 digits. + + + + + + + + + + + Mobile Subscriber Integrated Service Digital Network Number, a number uniquely identifying a subscription in a GSM, UMTS, or LTE mobile network. {{bibref|ITU-E.164}} + + + + + + + + + + + Controls the PIN verification of the USIM card. + + + + + + Check the PIN with each access to a new network + + + + + Check the PIN with first access after (re)boot + + + + + Disable the PIN check + + + + + + + + Allows the Controller to change the USIM PIN used for SIM card activation. + + + + + + + Throughput statistics for this interface. + The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + The total number of bytes transmitted out of the interface, including framing characters. + + + + + + + + The total number of bytes received on the interface, including framing characters. + + + + + + + + The total number of packets transmitted out of the interface. + + + + + + + + The total number of packets received on the interface. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of packets requested for transmission which were not addressed to a multicast or broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were not addressed to a multicast or broadcast address at this layer. + + + + + + + + The total number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a multicast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a multicast address at this layer. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a broadcast address at this layer. + + + + + + + + The total number of packets received via the interface which were discarded because of an unknown or unsupported protocol. + + + + + + + + + Cellular Access Point table. Each entry is identified by an {{param|APN}} (Access Point Name) that identifies a gateway between the mobile network and another computer network. + + + + + + + + + + + + + Enables or disables the Access Point. + + + + + + + + {{datatype|expand}} + + + + + + + + Access Point Name. + + + + + + + + + + Username used to authenticate the CPE when making a connection to the Access Point. + + + + + + + + + + Password used to authenticate the CPE when making a connection to the Access Point. + + + + + + Proxy server IP address. + + + + + + + + Proxy server port. + + + + + + + + + + Reference to the interface with which the access point is associated. + + + + + + + + + + + Asynchronous Transfer Mode (ATM) object that contains the {{object|Link}} interface and {{object|Diagnostics.F5Loopback()}} diagnostics. + + + + {{numentries}} + + + + + + + + + ATM link-layer table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). Models an ATM PVC virtual circuit and the ATM Adaption Layer (AAL). An ATM Link entry is typically stacked on top of either a {{object|.DSL.Channel.}} or a {{object|.DSL.BondingGroup.}} object. + When an ''ATM Link'' interface is used, a lower-layer {{object|.DSL.Channel}} interface MUST be configured with ATM encapsulation (see {{param|.DSL.Channel.{i}.LinkEncapsulationUsed}}). + + + + + + + + + + Enables or disables the link. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + + The current operational state of the link (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the link as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the link entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + + + + + + + + + + + + + + Indicates the type of connection and refers to the complete stack of protocol used for this connection. + + + + + + {{bibref|RFC2684}} bridged Ethernet over ATM + + + + + {{bibref|RFC2684}} routed IP over ATM + + + + + {{bibref|RFC2364}} PPP over ATM + + + + + {{bibref|RFC2225}} Classical IP over ATM + + + + + + + + + Indicates if the CPE is currently using some auto configuration mechanisms for this connection. If this variable is {{true}}, all writable variables in this connection instance become read-only. Any attempt to change one of these variables SHOULD fail and an error SHOULD be returned. + + + + + + + + Destination address of this link, in the form "VPI/VCI" (e.g. "8/23" or "0/35"). + + + + + + + + + + + Identifies the connection encapsulation that will be used. + + + + + + + + + + + This flag tells if a checksum SHOULD be added in the ATM payload. It does not refer to the checksum of one of the ATM cells or AALX packets. In case of LLC or VCMUX encapsulation, this ATM checksum is the FCS field described in {{bibref|RFC2684}}. It is only applicable in the upstream direction. + + + + + + + + {{list}} Ordered list of VPI/VCI pairs to search if a link using the {{param|DestinationAddress}} cannot be established. In the form "VPI1/VCI1, VPI2/VCI2, ...". {{pattern}} + Example: + : ''0/35, 8/35, 1/35'' + + + + + + + + + + + + + Describes the ATM Adaptation Layer (AAL) currently in use on the PVC. + + + + + + + + + + + + + + + Throughput statistics for this interface. + The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + The total number of bytes transmitted out of the interface, including framing characters. + + + + + + + + The total number of bytes received on the interface, including framing characters. + + + + + + + + The total number of packets transmitted out of the interface. + + + + + + + + The total number of packets received on the interface. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of packets requested for transmission which were not addressed to a multicast or broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were not addressed to a multicast or broadcast address at this layer. + + + + + + + + The total number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a multicast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a multicast address at this layer. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a broadcast address at this layer. + + + + + + + + The total number of packets received via the interface which were discarded because of an unknown or unsupported protocol. + + + + + + + + The current count of successfully transmitted cells. + + + + + + + + The current count of successfully received cells. + + + + + + + + Count of the ATM layer cyclic redundancy check (CRC) errors. + This refers to CRC errors at the ATM adaptation layer (AAL). The AAL in use is indicated by the {{param|#.AAL}} parameter. The value of the {{param}} parameter MUST be 0 for AAL types that have no CRCs. + + + + + + + + Count of the number of Header Error Check related errors at the ATM layer. + + + + + + + + + The ATM Link QoS object. + + + + Describes the ATM Quality Of Service (QoS) being used on the VC. + + + + + + + + + + + + + + + + Specifies the upstream peak cell rate in {{units}}. + + + + + + + + + + Specifies the upstream maximum burst size in {{units}}. + + + + + + + + + + Specifies the upstream sustainable cell rate, in {{units}}. + + + + + + + + + + + The ATM Diagnostics object. + + + + This command provides access to an ATM-layer F5 OAM loopback test. + + + + Input arguments. + + + + {{reference}} This is the interface over which the test is to be performed. + + + + + + + + + + + Number of repetitions of the ping test to perform before reporting the results. + + + + + + + + + + Timeout in {{units}} for the ping test. + + + + + + + + + + + + Output arguments. + + + + Indicates the availability of diagnostics data. {{enum}} + If the value of this parameter is anything other than {{enum|Complete}}, the values of the other results parameters for this test are indeterminate. + + + + + + + + + + + + + + Result parameter indicating the number of successful pings (those in which a successful response was received prior to the timeout) in the most recent ping test. + + + + + + + + Result parameter indicating the number of failed pings in the most recent ping test. + + + + + + + + Result parameter indicating the average response time in {{units}} over all repetitions with successful responses of the most recent ping test. If there were no successful responses, this value MUST be zero. + + + + + + + + + + Result parameter indicating the minimum response time in {{units}} over all repetitions with successful responses of the most recent ping test. If there were no successful responses, this value MUST be zero. + + + + + + + + + + Result parameter indicating the maximum response time in {{units}} over all repetitions with successful responses of the most recent ping test. If there were no successful responses, this value MUST be zero. + + + + + + + + + + + + + Packet Transfer Mode ({{bibref|G.993.1|Annex H}}). This object contains the {{object|Link}} interface. + + + + {{numentries}} + + + + + + + + + PTM link-layer table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). Models a layer 2 variable-sized packet interface. A PTM Link entry is typically stacked on top of either a {{object|.FAST.Line.}}, {{object|.DSL.Channel.}}, or a {{object|.DSL.BondingGroup.}} object. + When a ''PTM Link'' interface is used, a lower-layer {{object|.DSL.Channel}} interface MUST be configured with PTM encapsulation (see {{param|.DSL.Channel.{i}.LinkEncapsulationUsed}}). + + + + + + + + + + Enables or disables the link. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + + The current operational state of the link (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the link as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the link entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + + + + + + + + + + + + + + The MAC Address of the interface. + Note: This is not necessarily the same as the Ethernet header source or destination MAC address, which is associated with the IP interface and is modeled via the {{param|.Ethernet.Link.{i}.MACAddress}} parameter. + + + + + + + + + Throughput statistics for this interface. + The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + The total number of bytes transmitted out of the interface, including framing characters. + + + + + + + + The total number of bytes received on the interface, including framing characters. + + + + + + + + The total number of packets transmitted out of the interface. + + + + + + + + The total number of packets received on the interface. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of packets requested for transmission which were not addressed to a multicast or broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were not addressed to a multicast or broadcast address at this layer. + + + + + + + + The total number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a multicast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a multicast address at this layer. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a broadcast address at this layer. + + + + + + + + The total number of packets received via the interface which were discarded because of an unknown or unsupported protocol. + + + + + + + + + Ethernet object. This object models several Ethernet interface objects, each representing a different stack layer, including: {{object|Interface}}, {{object|Link}}, and {{object|VLANTermination}}. {{object|Interface}} is media-specific and models a port, the PHY layer, and the MAC layer. {{object|Link}} is media-independent and models the Logical Link Control (LLC) layer. An "outer" {{object|VLANTermination}}, when present, is expected to be stacked on top of {{object|Link}} objects to receive and send frames with a configured VLANID. + + + + Indicates that WoL (Wake on LAN) over Ethernet is supported. + + + + + + + + Indicates that Flow Control over Ethernet is supported, as per {{bibref|802.3-2015}}. + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + Ethernet interface table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). This table models physical Ethernet ports, but in terms of the interface stack it also models the PHY and MAC level Ethernet interface. + + + + + + + + + + Enables or disables the interface. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + The current operational state of the interface (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the interface as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the interface entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + Note: Since {{object}} is a layer 1 interface, it is expected that {{param}} will not be used. + + + + + + + + + + + + + Indicates whether the interface points towards the Internet ({{true}}) or towards End Devices ({{false}}). + For example: + * For an Internet Gateway Device, {{param}} will be {{true}} for all WAN interfaces and {{false}} for all LAN interfaces. + * For a standalone WiFi Access Point that is connected via Ethernet to an Internet Gateway Device, {{param}} will be {{true}} for the Ethernet interface and {{false}} for the WiFi Radio interface. + * For an End Device, {{param}} will be {{true}} for all interfaces. + + + + + + + + The MAC Address of the interface. + Note: This is not necessarily the same as the Ethernet header source or destination MAC address, which is associated with the IP interface and is modeled via the {{param|.Ethernet.Link.{i}.MACAddress}} parameter. + + + + + + + + The maximum upstream and downstream PHY bit rate supported by this interface (expressed in {{units}}). + A value of -1 indicates automatic selection of the maximum bit rate. + + + + + + + + + + + The current upstream and downstream PHY bit rate on this interface (expressed in {{units}}). + A value of 0 indicates that the current bit rate is unknown. + + + + + + + + + + The duplex mode available to this connection. + + + + + + + + + + + + Indicates whether this physical ethernet port supports Energy Efficient Ethernet as specified in {{bibref|802.3-2012_section6|Section 78}}. + + + + + + + + Whether Energy Efficient Ethernet {{bibref|802.3-2012_section6|Section 78}} support is currently enabled. When enabled, this ethernet port will be capable of entering or exiting Low Power Idle (LPI) mode. + + + + + + + + + Throughput statistics for this interface. + The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + The total number of bytes transmitted out of the interface, including framing characters. + + + + + + + + The total number of bytes received on the interface, including framing characters. + + + + + + + + The total number of packets transmitted out of the interface. + + + + + + + + The total number of packets received on the interface. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of packets requested for transmission which were not addressed to a multicast or broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were not addressed to a multicast or broadcast address at this layer. + + + + + + + + The total number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a multicast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a multicast address at this layer. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a broadcast address at this layer. + + + + + + + + The total number of packets received via the interface which were discarded because of an unknown or unsupported protocol. + + + + + + + + + Ethernet link layer table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). Table entries model the Logical Link Control (LLC) layer. It is expected that an ''Ethernet Link'' interface can be stacked above any lower-layer interface object capable of carrying Ethernet frames. + + + + + + + + + + + + + Enables or disables the link. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + + The current operational state of the link (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the link as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the link entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + + + + + + + + + + + + + + The MAC address used for packets sent via this interface. Provides the source MAC address for outgoing traffic and the destination MAC address for incoming traffic. + + + + + + + + Enables or disables priority tagging on this Ethernet Link. + When {{true}}, egress frames leaving this interface will be priority tagged with the frame's associated priority value, which will either be derived directly from the ingress frame or else set via {{param|.QoS.Classification.{i}.EthernetPriorityMark}} or {{param|.QoS.Classification.{i}.InnerEthernetPriorityMark}}. + When {{false}}, egress frames leaving this interface will be untagged. + The parameter does not affect reception of ingress frames. + + + + + + + + + Configures Flow Control on given Ethernet port. When set to {{true}}, it activates the exchange of pause-resume flow control frames. + + + + + + + + + + Throughput statistics for this interface. + The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + The total number of bytes transmitted out of the interface, including framing characters. + + + + + + + + The total number of bytes received on the interface, including framing characters. + + + + + + + + The total number of packets transmitted out of the interface. + + + + + + + + The total number of packets received on the interface. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of packets requested for transmission which were not addressed to a multicast or broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were not addressed to a multicast or broadcast address at this layer. + + + + + + + + The total number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a multicast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a multicast address at this layer. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a broadcast address at this layer. + + + + + + + + The total number of packets received via the interface which were discarded because of an unknown or unsupported protocol. + + + + + + + + + VLAN Termination table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). A VLAN Termination entry is typically stacked on top of a {{object|#.Link}} object to receive and send frames with the configured {{param|VLANID}}. + + + + + + + + + + Enables or disables the VLANTermination entry. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + + The current operational state of the VLANTermination entry (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the VLANTermination entry as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the VLANTermination entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + + + + + + + + + + + + + + The VLAN ID for this {{object}} entry (as defined in {{bibref|802.1Q-2011}}). Only ingress frames with this VLAN ID will be passed to higher protocol layers; frames sent from higher protocol layers will be tagged with this VLAN ID. + + + + + + + + + + The Tag Protocol Identifier (TPID) assigned to this {{object}}. The TPID is an EtherType value used to identify the frame as a tagged frame. + Standard {{bibref|802.1Q-2011|Table 9.1}} TPID values are: + *S-TAG 0x88A8 = 34984 + *C-TAG 0x8100 = 33024 + Non-Standard TPID values are: + *S-TAG 0x9100 = 37120 + + + + + + + + + + Throughput statistics for this interface. + The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + The total number of bytes transmitted out of the interface, including framing characters. + + + + + + + + The total number of bytes received on the interface, including framing characters. + + + + + + + + The total number of packets transmitted out of the interface. + + + + + + + + The total number of packets received on the interface. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of packets requested for transmission which were not addressed to a multicast or broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were not addressed to a multicast or broadcast address at this layer. + + + + + + + + The total number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a multicast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a multicast address at this layer. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a broadcast address at this layer. + + + + + + + + The total number of packets received via the interface which were discarded because of an unknown or unsupported protocol. + + + + + + + + + Ethernet statistics based on the {{bibref|RFC2819}} ''RMON-MIB'' ''etherStatsTable'', with some extensions inspired by {{bibref|G.988|Section 9.3.32}}. + Each instance is associated with an interface capable of transporting Ethernet-encapsulated packets, and contains a set of unidirectional Ethernet statistics. + The statistics are sampled either on ingress or on egress. This is determined as follows: + * If the instance is associated with an egress queue (or queues) via the {{param|Queue}} parameter or by setting {{param|AllQueues}} to {{true}} then data is sampled on egress. In this case {{param|Bytes}} etc measure the data that has been sent on the interface, possibly filtered by {{param|Queue}} or {{param|VLANID}}. + * Otherwise data is sampled on ingress. In this case {{param|Bytes}} etc measure the data that has been received on the interface, possibly filtered by {{param|VLANID}}. + When sampling on egress, the term ''received'' means ''received by the queuing sub-system''. + Multiple instances can be associated with a single interface: individual instances can be configured to collect data associated with the entire interface, or with a particular VLAN and/or queue. + The CPE MUST reset each instances's Stats parameters whenever the instance is disabled and re-enabled. Whether this reset occurs when the instance becomes operationally disabled ({{param|Status}} = {{enum|Disabled|Status}}) or administratively enabled ({{param|Enable}} = {{true}}) is a local matter to the CPE. This is similar to the behavior of interface statistics, e.g. as specified for {{object|Device.Ethernet.Interface.{i}.Stats}}. Furthermore, this instance's Stats parameters MUST be reset whenever the referenced interface's Stats parameters are reset, or when the referenced queue or VLAN is disabled and re-enabled. + For enabled table entries, if {{param|Interface}} references an interface that is not capable of transporting Ethernet-encapsulated packets, or if {{param|Queue}} references a queue that is not instantiated on {{param|Interface}}, or if {{param|Queue}} is not a valid reference and {{param|AllQueues}} is {{false}}, the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + Note: The {{object}} table includes unique key parameters that are strong references. If a strongly referenced object is deleted, the CPE will set the referencing parameter to {{empty}}. However, doing so under these circumstances might cause the updated {{object}} row to then violate the table's unique key constraint; if this occurs, the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}} and disable the offending {{object}} row. + + + + + + + + + + + + Enables or disables this instance. + + + + + + + + + The status of this instance. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the {{object}} entry as assigned by the CPE. + + + + + + + + + + The interface associated with this instance. {{reference|an interface that is capable of transporting Ethernet-encapsulated packets}} + The term "capable of transporting Ethernet-encapsulated packets" means "has an Ethernet header" and therefore refers to any interface that is at or below an ''Ethernet''.{{object|#.Link}} instance in the interface stack. + + + + + + + + + + + Filter criterion. + The VLAN ID for which statistics are to be collected. + A zero value indicates that all packets, whether or not they have a VLAN header, will be considered. + A non-zero value indicates that only packets that have the the specified VLAN ID will be considered. + + + + + + + + + + + Filter criterion. + The egress queue with which this instance is associated. + Only packets that are sent to the referenced queue will be considered. + + + + + + + + + + + Indicates whether this instance applies to all queues. If {{true}}, the value of {{param|Queue}} is ignored since all egress queues are indicated. + + + + + + + + + The total number of events in which packets were dropped due to lack of resources. Note that this number is not necessarily the number of packets dropped; it is just the number of times this condition has been detected. + This parameter is based on ''etherStatsDropEvents'' from {{bibref|RFC2819}}. + + + + + + + + + The total number of {{units}} (including those in bad packets) received (excluding framing bits but including FCS bytes). + This parameter is based on ''etherStatsOctets'' from {{bibref|RFC2819}}. + + + + + + + + + + + The total number of {{units}} (including bad packets, broadcast packets, and multicast packets) received. + This parameter is based on ''etherStatsPkts'' from {{bibref|RFC2819}}. + + + + + + + + + + + The total number of good {{units}} received that were directed to the broadcast address. Note that this does not include multicast packets. + This parameter is based on ''etherStatsBroadcastPkts'' from {{bibref|RFC2819}}. + + + + + + + + + + + The total number of good {{units}} received that were directed to a multicast address. Note that this number does not include packets directed to the broadcast address. + This parameter is based on ''etherStatsMulticastPkts'' from {{bibref|RFC2819}}. + + + + + + + + + + + The total number of {{units}} received that had a length (excluding framing bits, but including FCS bytes) of between 64 and 1518 bytes, inclusive, but had either a bad Frame Check Sequence (FCS) with an integral number of bytes (FCS Error) or a bad FCS with a non-integral number of bytes (Alignment Error). + This parameter is based on ''etherStatsCRCAlignErrors'' from {{bibref|RFC2819}}. + + + + + + + + + + + The total number of {{units}} received that were less than 64 bytes long (excluding framing bits, but including FCS bytes) and were otherwise well formed. + This parameter is based on ''etherStatsUndersizePkts'' from {{bibref|RFC2819}}. + + + + + + + + + + + The total number of {{units}} received that were longer than 1518 bytes (excluding framing bits, but including FCS bytes) and were otherwise well formed. + This parameter is based on ''etherStatsOversizePkts'' from {{bibref|RFC2819}}. + + + + + + + + + + + The total number of {{units}} (including bad packets) received that were 64 bytes in length (excluding framing bits but including FCS bytes). + This parameter is based on ''etherStatsPkts64Octets'' from {{bibref|RFC2819}}. + + + + + + + + + + + The total number of {{units}} (including bad packets) received that were between 65 and 127 bytes in length inclusive (excluding framing bits but including FCS bytes). + This parameter is based on ''etherStatsPkts65to127Octets'' from {{bibref|RFC2819}}. + + + + + + + + + + + The total number of {{units}} (including bad packets) received that were between 128 and 255 bytes in length inclusive (excluding framing bits but including FCS bytes). + This parameter is based on ''etherStatsPkts6128to255Octets'' from {{bibref|RFC2819}}. + + + + + + + + + + + The total number of {{units}} (including bad packets) received that were between 256 and 511 bytes in length inclusive (excluding framing bits but including FCS bytes). + This parameter is based on ''etherStatsPkts256to511Octets'' from {{bibref|RFC2819}}. + + + + + + + + + + + The total number of {{units}} (including bad packets) received that were between 512 and 1023 bytes in length inclusive (excluding framing bits but including FCS bytes). + This parameter is based on ''etherStatsPkts512to1023Octets'' from {{bibref|RFC2819}}. + + + + + + + + + + + The total number of {{units}} (including bad packets) received that were between 1024 and 1518 bytes in length inclusive (excluding framing bits but including FCS bytes). + This parameter is based on ''etherStatsPkts1024to1518Octets'' from {{bibref|RFC2819}}. + + + + + + + + + + + + This object provides access to the WoL (Wake on LAN) funtionality. + + + + This command sends a magic packet over the CPE active Ethernet interfaces. + + + + Input arguments. + + + + MAC address target of the magic packet. + + + + + + + + The SecureOn password. The parameter value can be empty or, if present, can contain either 4 bytes or 6 bytes. + + + + + + + + + + + Ethernet Link Aggregation Group (LAG) table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). Table entries model the Link Aggregation Sub-Layer as defined in {{bibref|802.3-2015}} and {{bibref|802.1AX-2014}}. It is expected that a {{object}} interface can only be stacked above {{object|.Ethernet.Interface}} interfaces. The CPE can reject creation of additional LAG instances if this would exceed its capabilities. + + + + + + + + + + + + + Enables or disables the interface. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + The current operational state of the interface (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the LAG interface as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the interface entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}}. See {{bibref|TR-181i2|Section 4.2.1}}. + {{param}} must reference to Device.Ethernet.Interface instances where Link Aggregation Group is configured by the CPE. + For example, "Device.Ethernet.Interface.1, Device.Ethernet.Interface.2" + + + + + + + + + + + + + MAC address of the Link Aggregation Interface. + + + + + + + + + Throughput statistics for this interface. + The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + The total number of bytes transmitted out of the interface, including framing characters. + + + + + + + + The total number of bytes received on the interface, including framing characters. + + + + + + + + The total number of packets transmitted out of the interface. + + + + + + + + The total number of packets received on the interface. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of packets requested for transmission which were not addressed to a multicast or broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were not addressed to a multicast or broadcast address at this layer. + + + + + + + + The total number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a multicast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a multicast address at this layer. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a broadcast address at this layer. + + + + + + + + The total number of packets received via the interface which were discarded because of an unknown or unsupported protocol. + + + + + + + + + Universal Serial Bus ({{bibref|USB1.0}}, {{bibref|USB2.0}}, {{bibref|USB3.0}}). This object contains the {{object|Interface}}, {{object|Port}}, and {{object|USBHosts}} objects. + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + USB interface table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). This table models master and slave USB physical interfaces that support carrying Ethernet frames, e.g. via the USB Communication Device Class. + + + + + + + + + + Enables or disables the interface. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + The current operational state of the interface (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the interface as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the interface entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + Note: Since {{object}} is a layer 1 interface, it is expected that {{param}} will not be used. + + + + + + + + + + + + + Indicates whether the interface points towards the Internet ({{true}}) or towards End Devices ({{false}}). + For example: + * For an Internet Gateway Device, {{param}} will be {{true}} for all WAN interfaces and {{false}} for all LAN interfaces. + * For a standalone WiFi Access Point that is connected via Ethernet to an Internet Gateway Device, {{param}} will be {{true}} for the Ethernet interface and {{false}} for the WiFi Radio interface. + * For an End Device, {{param}} will be {{true}} for all interfaces. + + + + + + + + The MAC Address of the interface. + Note: This is not necessarily the same as the Ethernet header source or destination MAC address, which is associated with the IP interface and is modeled via the {{param|.Ethernet.Link.{i}.MACAddress}} parameter. + + + + + + + + The maximum PHY bit rate supported by this interface (expressed in {{units}}). + + + + + + + + + + {{reference}} This is the USB port associated with this interface object. + + + + + + + + + + + + Throughput statistics for this interface. + The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + The total number of bytes transmitted out of the interface, including framing characters. + + + + + + + + The total number of bytes received on the interface, including framing characters. + + + + + + + + The total number of packets transmitted out of the interface. + + + + + + + + The total number of packets received on the interface. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of packets requested for transmission which were not addressed to a multicast or broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were not addressed to a multicast or broadcast address at this layer. + + + + + + + + The total number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a multicast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a multicast address at this layer. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a broadcast address at this layer. + + + + + + + + The total number of packets received via the interface which were discarded because of an unknown or unsupported protocol. + + + + + + + + + USB Port table. This table models master and slave USB physical ports on the device. + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the port. + + + + + + + + + + USB specification version supported by the Port. Example: "1.1" + + + + + + + + + + Type of the USB connection. + + + + + + + + + + + + Receptacle of the port. + + + + + + + + + + + + + + Current speed of the USB connection. {{enum}} + + + + + + 1.5 Mbits/sec (187.5 KB/sec) defined in {{bibref|USB1.0}} + + + + + 12 Mbits/sec (1.5 MB/sec) defined in {{bibref|USB1.0}} + + + + + 480 Mbits/sec (60 MB/sec) defined in {{bibref|USB2.0}} + + + + + 5.0 Gbits/sec (625 MB/sec) defined in {{bibref|USB3.0}} + + + + + + + + Power configuration of the USB connection. {{enum}} + Only applies when {{param|Type}} is {{enum|Device|Type}}. In other cases value is {{enum|Unknown}}. + + + + + + + + + + + + + This object models the CPE's USB Host controllers. + See {{bibref|TR-181i2|Appendix XVII}} for Theory of Operation. + + + + {{numentries}} + + + + + + + + + Table of CPE USB Host controllers. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Enables or disables the USB Host controller. + + + + + + + + User-readable host controller name. + + + + + + + + + + Type of USB Host + + + + + + Open Host Controller Interface + + + + + Enhanced Host Controller Interface + + + + + Universal Host Controller Interface + + + + + Extensible Host Controller Interface + + + + + + + + When set to {{true}}, {{param}} enables the Host Controller to invoke Power Management policy, i.e. controlled Suspend (see {{bibref|USB2.0}}, Chapters 4.3.2, 7.1.7.6, and 11.9). + When set to {{false}} {{param}} immediately disables the Host controller Power Management policy. + + + + + + + + USB specification version with which the controller complies. Example: "1.1" + + + + + + + + + + {{numentries}} + + + + + + + + Reset the Host Controller and apply the reset signaling (see {{bibref|USB2.0|Chapter 7.1.7.5}}) to all of the Host Controller Hub downstream ports. + + + + + + Table of connected USB devices. + + + + + + + Device number on USB bus. + + + + + + + + USB specification version with which the device complies. Example: "1.1" + + + + + + + + + + Class Code as assigned by USB-IF. + When 0x00, each device specifies its own class code. When 0xFF, the class code is vendor specified. + + + + + + + + + + Subclass code (assigned by USB-IF). + + + + + + + + + + Device release number. + + + + + + + + + + Protocol code (assigned by USB-IF). + + + + + + + + + + Product ID (assigned by manufacturer). + + + + + + + + + + Vendor ID (assigned by USB-IF). + + + + + + + + + + Device Manufacturer string descriptor. + + + + + + + + + + Device Product Class string descriptor. + + + + + + + + + + Device SerialNumber string descriptor. + + + + + + + + + + Hub port on parent device. + 0 when no parent. + + + + + + + + + + {{reference}} This is a reference to the USB host device to which this (external) USB device is connected. + + + + + + + + + + Speed of the USB device. {{enum}} + Internal signaling between the connected USB device and the USB Host Controller provide the information needed to determine the negotiated rate. + + + + + + 1.5 Mbits/sec (187.5 KB/sec) defined in {{bibref|USB1.0}} + + + + + 12 Mbits/sec (1.5 MB/sec) defined in {{bibref|USB1.0}} + + + + + 480 Mbits/sec (60 MB/sec) defined in {{bibref|USB2.0}} + + + + + 5.0 Gbits/sec (625 MB/sec) defined in {{bibref|USB3.0}} + + + + + + + + {{reference}} This is a reference to the parent USB device (e.g. hub device). + This is {{empty}} for a device connected to the Host controller (root hub). + + + + + + + + + + Number of ports. Only applies for hub device, equal to 0 for other devices. + + + + + + + + When {{true}} the associated Device is in a suspended (i.e. low-power) state (see {{bibref|USB2.0|Chapter 11.9}}). + When {{false}} the associated Device is in any of the other states specified by the USB 2.0 Device State Machine (see {{bibref|USB2.0|Chapter 9.1.1}}). + + + + + + + + When {{true}} the associated device is at least partly powered by a local source (see {{bibref|USB2.0|Chapter 9.4.5}}). + When {{false}} the associated device draws all the current it needs from the USB bus. + + + + + + + + {{numentries}} + + + + + + + + + Table of device configurations. + + + + + + + The identifier for each Device Configuration. + + + + + + + + {{numentries}} + + + + + + + + + Table of device interface descriptors. + + + + + + + Number of this interface (from USB interface descriptor). + + + + + + + + + + Class Code as assigned by USB-IF. + When 0x00, each interface specifies its own class code. When 0xFF, the class code is vendor specified. + + + + + + + + + + Subclass code (assigned by USB-IF). + + + + + + + + + + Protocol code (assigned by USB-IF). + + + + + + + + + + + HPNA object that contains the {{object|Interface}} and {{object|Diagnostics}} objects. The HPNA (also known as HomePNA) industry standard {{bibref|G.9954}} defines peer to peer communication for home networking over existing coax cables and telephone wiring within the home. + + + + {{numentries}} + + + + + + + + + HPNA interface table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). Each table entry models the PHY and MAC levels of an HPNA interface {{bibref|G.9954}}. + + + + + + + + + + Enables or disables the interface. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + The current operational state of the interface (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the interface as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the interface entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + Note: Since {{object}} is a layer 1 interface, it is expected that {{param}} will not be used. + + + + + + + + + + + + + Indicates whether the interface points towards the Internet ({{true}}) or towards End Devices ({{false}}). + For example: + * For an Internet Gateway Device, {{param}} will be {{true}} for all WAN interfaces and {{false}} for all LAN interfaces. + * For a standalone WiFi Access Point that is connected via Ethernet to an Internet Gateway Device, {{param}} will be {{true}} for the Ethernet interface and {{false}} for the WiFi Radio interface. + * For an End Device, {{param}} will be {{true}} for all interfaces. + + + + + + + + The MAC Address of the interface. + Note: This is not necessarily the same as the Ethernet header source or destination MAC address, which is associated with the IP interface and is modeled via the {{param|.Ethernet.Link.{i}.MACAddress}} parameter. + + + + + + + + This interface's firmware version. + + + + + + + + + + The Node ID of this interface. + + + + + + + + Whether this interface is the HPNA network master. + + + + + + + + Whether this interface is synchronized with the HPNA network master. If this interface is the HPNA network master, {{param}} MUST be {{true}}. + + + + + + + + Total time in {{units}} (since device reset) that this interface has been up and synchronized to the HPNA network master. + + + + + + + + + + The maximum HPNA PHY bit rate (expressed in {{units}}) of this interface. + + + + + + + + + + Current HPNA network utilization (expressed in {{units}}). + + + + + + + + + + + {{list}} List items indicate the types of connections possible for this interface. {{enum}} + + + + + + + + + + + + {{list}} Connection type(s) for which the HPNA protocol is active. + + + + + + + + + + + {{list}} List items indicate the spectral modes possible for this interface. {{enum}} + + + + + + + 4-20MHz - Phone / Coax + + + + + 12-28MHz - Phone / Coax + + + + + 36-52MHz - Coax only + + + + + 4-36MHz - Coax only + + + + + + + + Spectral mode for which the HPNA protocol is active. + + + + + + + + + + Maximum Transmission Unit for this HPNA interface (expressed in {{units}}). + + + + + + + + + + The desired noise margin for which the local HPNA interface has been configured (expressed in {{units}}). + + + + + + + + + + The desired packet error rate for which the local HPNA interface has been configured (expressed in 1E-8, e.g. PER of 1.27E-6 will be presented as 127). + + + + + + + + Enable or disable the Limited Automatic Repeat Request (LARQ) mechanism. + + + + + + + + The minimum multicast (and broadcast) rate that can be negotiated on the HPNA network directly accessible via this interface (expressed in {{units}}). + + + + + + + + + + The negotiated multicast (and broadcast) rate on the HPNA network directly accessible via this interface (expressed in {{units}}). + + + + + + + + + + Master selection mode. {{enum}} + + + + + + Automatic master selection + + + + + Force local HPNA interface to be end point + + + + + Force local HPNA interface to be master + + + + + + + + {{numentries}} This is the number of HPNA nodes that are directly accessible via this interface. + + + + + + + + + Throughput statistics for this interface. + The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + The total number of bytes transmitted out of the interface, including framing characters. + + + + + + + + The total number of bytes received on the interface, including framing characters. + + + + + + + + The total number of packets transmitted out of the interface. + + + + + + + + The total number of packets received on the interface. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of packets requested for transmission which were not addressed to a multicast or broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were not addressed to a multicast or broadcast address at this layer. + + + + + + + + The total number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a multicast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a multicast address at this layer. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a broadcast address at this layer. + + + + + + + + The total number of packets received via the interface which were discarded because of an unknown or unsupported protocol. + + + + + + + + + QoS configuration object. + + + + {{numentries}} + + + + + + + + + Flow specification table. + The {{object|.QoS.Classification}} table is used to classify ingress traffic, where {{param|.QoS.Classification.{i}.TrafficClass}} is one of the classification result outputs. This ''TrafficClass'' value can be used to look up the appropriate {{object}} entry (i.e. the {{object}} entry whose {{param|TrafficClasses}} list contains a matching traffic class). + For enabled table entries, if {{param|TrafficClasses}} is {{empty}} then the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + + + + + + + Enables or disables the table entry. + + + + + + + + + The status of this entry. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + {{list}} This list identifies the set of traffic classes associated with this flow spec. + + + + + + + + + + + + Flow type. {{enum}} + + + + + + Constant Bit Rate + + + + + Variable Bit Rate + + + + + Variable Bit Rate - Non Real Time + + + + + Best Effort + + + + + + + + + Flow queue network priority. + Priority 0 is the lowest priority. + + + + + + + + + + + Maximum latency of the flow (expressed in {{units}}). + Value 0 means no latency requirements. + + + + + + + + + + + + Maximum jitter of the flow (expressed in {{units}}). + Value 0 means no jitter requirements. + + + + + + + + + + + + Typical packet size. + Value 0 means undefined packet size. + + + + + + + + + + + Minimum required rate in Kbps. + Value 0 means no MinRate requirements. + + + + + + + + + Average required rate in Kbps. + Value 0 means no AvgRate requirements. + + + + + + + + + Maximum required rate in Kbps. + Value 0 means no MaxRate requirements. + + + + + + + + + The desired packet error rate (expressed in 1E-8, e.g. PER of 1.27E-6 will be presented as 127). + Value 0 means no PER requirements. + + + + + + + + + Flow inactivity tear down timeout (expressed in {{units}}). + Value 0 means unlimited timeout. + + + + + + + + + + + + This table provides information about other HPNA devices that are directly accessible via this HPNA interface. + + + + + + + The physical address of this node. + + + + + + + + The Node ID of this node. + + + + + + + + Whether this node is the HPNA network master. + + + + + + + + Whether this node is synchronized with the HPNA network master. If this node is the HPNA network master, {{param}} MUST be {{true}}. + + + + + + + + Total time in {{units}} (since device reset) that this node has been up and synchronized to the HPNA network master. + + + + + + + + + + This node's maximum HPNA PHY bit rate (expressed in {{units}}). + + + + + + + + + + Enable / disable PHY throughput diagnostics mode on this node. All devices that are enabled will participate in the HPNA network PHY throughput diagnostics process. + + + + + + + + Whether or not this node is currently present in the HPNA network. + The ability to list inactive nodes is OPTIONAL. If the CPE includes inactive nodes in this table, {{param}} MUST be set to {{false}} for each inactive node. The length of time an inactive node remains listed in this table is a local matter to the CPE. + + + + + + + + + The HPNA Diagnostics object. + + + + HPNA PHY throughput diagnostics configuration and results. + When diagnostics are requested, all HPNA nodes for which the {{param|#.Interface.{i}.AssociatedDevice.{i}.PHYDiagnosticsEnable}} parameter is set enter PHY diagnostics mode. + + + + Input arguments. + + + + {{reference}} This is the interface over which the test is to be performed. + + + + + + + + + + + Number of test packet in burst to be send during PHY diagnostics test from each HPNA device to other HPNA device in the HPNA network. + + + + + + + + Test packet burst interval length (expressed in {{units}}). + + + + + + + + + + Payload length in the test packets. + + + + + + + + + + HPNA payload encoding in PHY diagnostics. 0 is used for negotiated payload between devices according to line conditions. + + + + + + + + Test packets payload data generator value. + + + + + + + + Test packets payload type. {{enum}} + In Pattern mode the PayloadDataGen value is repeated pattern in the payload. + In IncrementByte mode LSByte in PayloadDataGen is used as first payload and next bytes in payload are incremented. + + + + + + + + + + + Priority level of PHY diagnostics packets (0 lowest -7 highest). + + + + + + + + + + + Output arguments. + + + + Indicates the availability of diagnostics data. {{enum}} + If the value of this parameter is anything other than {{enum|Complete}}, the values of the other results parameters for this test are indeterminate. + + + + + + + + + + + + + + + + + + + + + + PHY throughput diagnostics results. + Each result object corresponds to unidirectional traffic between two PHY diagnostics-enabled nodes (so there are two such objects for each such pair). + + + + + + + + HPNA source MAC address. + + + + + + + + HPNA destination MAC address. + + + + + + + + PHY diagnostics HPNA PHY rate (expressed in {{units}}). + + + + + + + + + + PHY Baud rate (expressed in {{units}}). + + + + + + + + + + PHY diagnostics SNR (expressed in {{units}}). + + + + + + + + + + Number of received packets in PHY diagnostics mode. + + + + + + + + Measured attenuation (expressed in {{units}}). + + + + + + + + + + + + + HPNA performance monitoring configuration and results. + Performance monitoring results are sampled from all nodes in the HPNA network. All packet related counters are sampled synchronized at all nodes in the HPNA network in order to derive packet loss calculations in the HPNA network. + + + + Input arguments. + + + + {{reference}} This is the interface over which the test is to be performed. + + + + + + + + + + + Time in {{units}} between automatic collection of performance monitoring data. A value of zero disables automatic collection of data. + The CPE MAY impose a minimum sample interval, in which case an attempt to set a (non-zero) interval that is less than this minimum MUST set the interval to the minimum and MUST NOT be regarded as an error. + If SampleInterval is a simple fraction of a day, e.g. 900 (a quarter of an hour) or 3600 (an hour), the CPE MAY choose to align sample intervals with time of day, but is not required to do so. + + + + + + + + + + + Output arguments. + + + + Indicates the availability of diagnostics data. {{enum}} + If the value of this parameter is anything other than {{enum|Complete}}, the values of the other results parameters for this test are indeterminate. + + + + + + + + + + + + + Per-node HPNA performance monitoring results. + When automatic collection is enabled, i.e. {{param|#.SampleInterval}} is non-zero, the "current" interval is defined by the most recent automatic sample and the most recent subsequent manual sample, if any. + When automatic collection is disabled, i.e. SampleInterval is zero, the "current" interval is defined by the three most recent manual samples. + Note: Packets in statistics counters are Ethernet packets. + + + + Start time for the current interval. + When automatic collection is enabled, i.e. SampleInterval is non-zero, the current interval started at the most recent automatic sample. + When automatic collection is disabled, i.e. SampleInterval is zero, the current interval started two manual samples ago. + + + + + + + + End time for the current interval. + When automatic collection is enabled, i.e. SampleInterval is non-zero, the current interval ended at the most recent manual sample since the most recent automatic sample. If there has been no such manual sample, the current interval is empty. + When automatic collection is disabled, i.e. SampleInterval is zero, the current interval ended at the most recent manual sample. + + + + + + + + {{numentries}} This is the number of HPNA nodes for which performance monitoring results were collected during the current sample interval. + + + + + + + + + Per-node HPNA performance monitoring results during the current sample interval. Each table entry contains the results collected between an HPNA node (as indicated by {{param|MACAddress}}) and the local HPNA interface (as indicated by {{param|##.Interface}}). + Note: Packet counters indicate the number of packets received between {{param|#.CurrentStart}} and {{param|#.CurrentEnd}}. + + + + + + + The MAC address of the HPNA node. + + + + + + + + The total number of bytes sent by host equipment for transmission on the HPNA interface. + + + + + + + + The total number of received bytes on the HPNA interface destined for the host equipment. + + + + + + + + The total number of packets sent by host equipment for transmission on the HPNA interface. Number includes also short error packets and control packets. + + + + + + + + The total number of good packets received on the HPNA interface destined for the host equipment. + + + + + + + + The number of broadcast packets transmitted on the HPNA interface. + + + + + + + + The number of broadcast packets received on the HPNA interface. + + + + + + + + The number of multicast packets transmitted on the HPNA interface. + + + + + + + + The number of multicast packets received on the HPNA interface. + + + + + + + + The number of packets received on the HPNA interface with CRC errors. + + + + + + + + The number of CRC error packets received on the HPNA interface destined for the host equipment. + + + + + + + + The number of packets received on the HPNA interface that are too short to be valid. + + + + + + + + The number packets sent by the host equipment that are too short to be valid. + + + + + + + + The number of received packets dropped due to lack of resources. + + + + + + + + The number packets sent by the host equipment for transmission on the HPNA interface but dropped due to lack of resources. + + + + + + + + The number of HPNA control request packets from local host. + + + + + + + + The number of HPNA control reply packets to local host. + + + + + + + + The number of HPNA control request packets from remote host. + + + + + + + + The number of HPNA control reply packets to remote host. + + + + + + + + The total number of packets transmitted to wire. + + + + + + + + The total number of broadcast packets transmitted to wire. + + + + + + + + The total number of multicast packets transmitted to wire. + + + + + + + + The number of HPNA control request packets from internal node. + + + + + + + + The number of HPNA broadcast control request packets from internal node. + + + + + + + + The number of received packets queued on host output queues. + + + + + + + + The number of packets received and forwarded to unknown hosts. + + + + + + + + The node utilization (expressed in {{units}}). + + + + + + + + + + + + Per-channel HPNA performance monitoring results. + Note: channels are unidirectional. + + + + Time at which channel data was last collected. + + + + + + + + {{numentries}} This is the number of HPNA channels for which performance monitoring results have been collected. + + + + + + + + + Per-channel HPNA performance monitoring results. + + + + + + + + The host source MAC address associated with the channel. + + + + + + + + The host destination MAC address associated with the channel. + + + + + + + + The HPNA source MAC address associated with the channel. + + + + + + + + The HPNA destination MAC address associated with the channel. + + + + + + + + Channel PHY rate (expressed in {{units}}). + + + + + + + + + + PHY Baud rate (expressed in {{units}}). + + + + + + + + + + Channel actual SNR measured in receiver side (expressed in {{units}}). + + + + + + + + + + Number of packets sent in the channel. + + + + + + + + Pre-LARQ number of packets received in the channel. + + + + + + + + Post-LARQ number of packets received in the channel. Valid only if LARQ is enabled. + + + + + + + + {{reference}} Identifies the ''FlowSpec'' associated with the channel. This parameter is only used for channels that correspond to egress traffic from the local HPNA interface. + {{null}} means that the channel is not associated with any specified flow specification in the QoS object. + + + + + + + + + + + + + + + MoCA object that contains the {{object|Interface}} table {{bibref|MoCAv1.0}} {{bibref|MoCAv1.1}}. + + + + {{numentries}} + + + + + + + + + MoCA interface table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). Each table entry models the PHY and MAC levels of a MoCA interface {{bibref|MoCAv1.0}} {{bibref|MoCAv1.1}}. + + + + + + + + + + Enables or disables the interface. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + The current operational state of the interface (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the interface as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the interface entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + Note: Since {{object}} is a layer 1 interface, it is expected that {{param}} will not be used. + + + + + + + + + + + + + Indicates whether the interface points towards the Internet ({{true}}) or towards End Devices ({{false}}). + For example: + * For an Internet Gateway Device, {{param}} will be {{true}} for all WAN interfaces and {{false}} for all LAN interfaces. + * For a standalone WiFi Access Point that is connected via Ethernet to an Internet Gateway Device, {{param}} will be {{true}} for the Ethernet interface and {{false}} for the WiFi Radio interface. + * For an End Device, {{param}} will be {{true}} for all interfaces. + + + + + + + + The MAC Address of the interface. + Note: This is not necessarily the same as the Ethernet header source or destination MAC address, which is associated with the IP interface and is modeled via the {{param|.Ethernet.Link.{i}.MACAddress}} parameter. + + + + + + + + This interface's firmware version. + This parameter is based on ''mocaIfSoftwareVersion'' from {{bibref|MOCA11-MIB}}. + + + + + + + + + + The maximum MoCA PHY bit rate (expressed in {{units}}). + + + + + + + + + + The maximum bandwidth of this interface for flows onto the MoCA network in {{units}}. + This parameter is based on ''mocaIfMaxIngressNodeBw'' from {{bibref|MOCA11-MIB}}. + + + + + + + + + + The maximum bandwidth of this interface for flows from the MoCA network in {{units}}. + This parameter is based on ''mocaIfMaxEgressNodeBw'' from {{bibref|MOCA11-MIB}}. + + + + + + + + + + Identifies the highest MoCA version that this interface supports. + This element MUST be in the form of dot-delimited integers, where each successive integer represents a more minor category of variation. For example, 1.0, where the components mean major.minor revision number. {{pattern}} + This parameter is based on ''mocaIfMocaVersion'' from {{bibref|MOCA11-MIB}}. + + + + + + + + + + + Identifies the MoCA version that the MoCA network is currently running. + This element MUST be in the form of dot-delimited integers, where each successive integer represents a more minor category of variation. For example, 1.0, where the components mean major.minor revision number. {{pattern}} + This parameter is based on ''mocaIfNetworkVersion'' from {{bibref|MOCA11-MIB}}. + + + + + + + + + + + The Node ID of the current Network Coordinator (NC) for the MoCA network. + This parameter is based on ''mocaIfNC'' from {{bibref|MOCA11-MIB}}. + + + + + + + + The Node ID of this interface. + This parameter is based on ''mocaIfNodeID'' from {{bibref|MOCA11-MIB}}. + + + + + + + + The maximum network node capability supported by the interface. If {{param}} is {{true}} then the interface supports 16 nodes (the maximum for a MoCA 1.1 network). If {{param}} is false then the interface supports 8 nodes (the maximum for a MoCA 1.0 network). + + + + + + + + Whether this interface is a preferred Network Coordinator (NC). + This parameter is based on ''mocaIfPreferredNC'' from {{bibref|MOCA11-MIB}}. + + + + + + + + The Node ID of the backup Network Coordinator node. + This parameter is based on ''mocaIfBackupNC'' from {{bibref|MOCA11-MIB}}. + + + + + + + + The configured privacy mode. This indicates whether link-layer security is enabled ({{true}}) or disabled ({{false}}) for network admission. + The configured privacy setting MAY NOT match the current operational state ({{param|PrivacyEnabled}}), since this setting is only applied during network formation or admission. + + + + + + + + Indicates whether link-layer security is enabled or disabled. + This parameter is based on ''mocaIfPrivacyEnable'' from {{bibref|MOCA11-MIB}}. + + + + + + + + Hexadecimal encoded 64-bit mask of supported frequencies. This is the bit map of the spectrum that the interface supports, and each bit represents 25 MHz of spectrum. The least significant bit of the rightmost character corresponds to 800MHz, which is the lowest frequency. + For example, an interface that supports 1150 MHz through 1500 MHz would have a value of 0x000000001FFFC000. + This parameter is based on ''mocaIfCapabilityMask'' from {{bibref|MOCA11-MIB}}. + + + + + + + + + + The configured hexadecimal encoded 64-bit mask of enabled frequencies for network admission. + The configured frequencies MAY NOT match the current operational state ({{param|FreqCurrentMask}}), since this setting is only applied during network formation or admission. + + + + + + + + + + Hexadecimal encoded 64-bit mask of used frequencies. This is the bit map of the spectrum that can be used and is a subset of the {{param|FreqCapabilityMask}}. Each bit represents 25 MHz of spectrum. The least significant bit of the rightmost character corresponds to 800MHz, which is the lowest frequency. + This parameter is based on ''mocaIfChannelMask'' from {{bibref|MOCA11-MIB}}. + + + + + + + + + + Current Operational Frequency. The RF frequency in Hz to which the MoCA interface is currently tuned. This parameter is only valid when {{param|Status}} is {{enum|Up|Status}}. + This parameter is based on ''mocaIfRFChannel'' from {{bibref|MOCA11-MIB}}. + + + + + + + + Last Operational Frequency. The RF frequency in Hz to which the MoCA interface was tuned when last in the {{enum|Up|Status}} state. + This parameter is based on ''mocaIfLOF'' from {{bibref|MOCA11-MIB}}. + + + + + + + + MoCA Password. The value consists of numeric characters (0-9). {{pattern}} + This parameter is based on ''mocaIfPassword'' from {{bibref|MOCA11-MIB}}. + + + + + + Transmit Power attenuation in dB relative to the maximum transmit power. + The MoCA interface SHOULD have {{param|Enable}} set to {{false}} for any change in this configuration. If the parameter is modified when {{param|Enable}} is {{true}} then this change might take several minutes to complete. + This parameter is based on ''mocaIfTxPowerLimit'' from {{bibref|MOCA11-MIB}}. + + + + + + + + Target PHY rate in Mbps for the power control algorithm. + The MoCA interface SHOULD have {{param|Enable}} set to {{false}} for any change in this configuration. If the parameter is modified when {{param|Enable}} is {{true}} then this change might take several minutes to complete. + This parameter is based on ''mocaIfPowerControlTargetRate'' from {{bibref|MOCA11-MIB}}. + + + + + + + + Beacon Transmit Power attenuation in {{units}} relative to the maximum transmit power. + The MoCA interface SHOULD have {{param|Enable}} set to {{false}} for any change in this configuration. If the parameter is modified when {{param|Enable}} is {{true}} then this change might take several minutes to complete. + This parameter is based on ''mocaIfBeaconPowerLimit'' from {{bibref|MOCA11-MIB}}. + + + + + + + + + + Hexadecimal encoded 64-bit mask of MoCA taboo channels identified for the home network. This is the bit map of the spectrum that the interface supports, and each bit represents 25 MHz of spectrum. The least significant bit of the rightmost character corresponds to 800MHz, which is the lowest frequency. + This parameter is based on ''mocaIfTabooChannelMask'' from {{bibref|MOCA11-MIB}}. + + + + + + + + + + Hexadecimal encoded 64-bit mask of supported frequencies. This is the bit map of the spectrum that the interface supports, and each bit represents 25 MHz of spectrum. The least significant bit of the rightmost character corresponds to 800MHz, which is the lowest frequency. + This parameter is based on ''mocaIfNodeTabooChannelMask'' from {{bibref|MOCA11-MIB}}. + + + + + + + + + + The broadcast PHY transmit rate in {{units}} for this interface. + This parameter is based on ''mocaIfTxGcdRate'' from {{bibref|MOCA11-MIB}}. + + + + + + + + + + Transmit Power attenuation in {{units}} relative to the maximum transmit power for broadcast transmissions. + This parameter is based on ''mocaIfTxGcdPowerReduction'' from {{bibref|MOCA11-MIB}}. + + + + + + + + + + Whether this interface supports the 256 QAM feature. + This parameter is based on ''mocaIfQAM256Capable'' from {{bibref|MOCA11-MIB}}. + + + + + + + + The packet aggregation capability supported by the interface. Standard values are 0 (no support), 6 (6 {{units}}) or 10 (10 {{units}}). + This parameter is based on ''mocaIfPacketsAggrCapability'' from {{bibref|MOCA11-MIB}}. + + + + + + + + + + + {{numentries}} + + + + + + + + + Throughput statistics for this interface. + The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + The total number of bytes transmitted out of the interface, including framing characters. + + + + + + + + The total number of bytes received on the interface, including framing characters. + + + + + + + + The total number of packets transmitted out of the interface. + + + + + + + + The total number of packets received on the interface. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of packets requested for transmission which were not addressed to a multicast or broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were not addressed to a multicast or broadcast address at this layer. + + + + + + + + The total number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a multicast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a multicast address at this layer. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a broadcast address at this layer. + + + + + + + + The total number of packets received via the interface which were discarded because of an unknown or unsupported protocol. + + + + + + + + + The QoS object provides information on MoCA parameterized QoS for this interface {{bibref|MoCAv1.1}}. + + + + The number of QoS flows that this interface has from the MoCA network. + This parameter is based on ''mocaIfEgressNodeNumFlows'' from {{bibref|MOCA11-MIB}}. + + + + + + + + The number of QoS flows that this interface has onto the MoCA network. + This parameter is based on ''mocaIfIngressNodeNumFlows'' from {{bibref|MOCA11-MIB}}. + + + + + + + + {{numentries}} + + + + + + + + + The flow statistics table provides information on the MoCA parameterized QoS flows this interface has allocated onto the MoCA network. + + + + + + + The flow ID used to identify a flow in the network. + This parameter is based on ''mocaIfFlowID'' from {{bibref|MOCA11-MIB}}. + + + + + + + + The Destination Address (DA) for the packets in this flow. + This parameter is based on ''mocaIfPacketDA'' from {{bibref|MOCA11-MIB}}. + + + + + + + + Maximum required rate in {{units}}. + This parameter is based on ''mocaIfPeakDataRate'' from {{bibref|MOCA11-MIB}}. + + + + + + + + + + Maximum burst size. + This parameter is based on ''mocaIfBurstSize'' from {{bibref|MOCA11-MIB}}. + + + + + + + + Flow lease time (expressed in {{units}}). + A {{param}} of 0 means unlimited lease time. + This parameter is based on ''mocaIfLeaseTime'' from {{bibref|MOCA11-MIB}}. + + + + + + + + + + Flow lease time remaining (expressed in {{units}}). + If {{param|LeaseTime}} is 0 then a {{param}} of 0 means unlimited lease time; otherwise, a {{param}} of 0 means expired. + This parameter is based on ''mocaIfLeaseTimeLeft'' from {{bibref|MOCA11-MIB}}. + + + + + + + + + + The number of packets transmitted for this flow. + This parameter is based on ''mocaIfTxPacketsFlow'' from {{bibref|MOCA11-MIB}}. + + + + + + + + + This table contains information about other MoCA devices currently associated with this MoCA interface. + + + + + + + The MAC address of the associated device's MoCA interface. + + + + + + + + The Node ID of this remote device. + This parameter is based on ''mocaNodeIndex'' from {{bibref|MOCA11-MIB}}. + + + + + + + + Whether this remote device is a preferred Network Coordinator (NC). + This parameter is based on ''mocaNodePreferredNC'' from {{bibref|MOCA11-MIB}}. + + + + + + + + Identifies the highest MoCA version that this remote device supports. + This element MUST be in the form of dot-delimited integers, where each successive integer represents a more minor category of variation. For example, 1.0, where the components mean major.minor revision number. {{pattern}} + This parameter is based on ''mocaNodeMocaVersion'' from {{bibref|MOCA11-MIB}}. + + + + + + + + + + + The PHY transmit rate (in {{units}}) to this remote device. + This parameter is based on ''mocaMeshTxRate'' from {{bibref|MOCA11-MIB}}. + + + + + + + + + + The PHY receive rate (in {{units}}) from this remote device. + + + + + + + + + + The reduction in transmitter level (in {{units}}) due to power control. + This parameter is based on ''mocaNodeTxPowerReduction'' from {{bibref|MOCA11-MIB}}. + + + + + + + + + + The power level (in {{units}}) received at the MoCA interface from this remote device. + This parameter is based on ''mocaNodeRxPower'' from {{bibref|MOCA11-MIB}}. + + + + + + + + + + The broadcast PHY transmit rate (in {{units}}) from this remote device. + This parameter is based on ''mocaNodeTxGcdRate'' from {{bibref|MOCA11-MIB}}. + + + + + + + + + + The power level (in {{units}}) received at the MoCA interface from this remote device. + This parameter is based on ''mocaNodeRxGcdPower'' from {{bibref|MOCA11-MIB}}. + + + + + + + + + + The number of packets transmitted to this remote device (Note: Includes Broadcast, Multicast and Unicast packets). + + + + + + + + The number of packets received from this remote device (Note: Includes Broadcast, Multicast and Unicast packets). + This parameter is based on ''mocaNodeRxPackets'' from {{bibref|MOCA11-MIB}}. + + + + + + + + The number of errored and missed packets received from this remote device. + This parameter is based on ''mocaNodeRxDrops'' from {{bibref|MOCA11-MIB}}. + + + + + + + + Whether this remote device supports the 256 QAM feature. + This parameter is based on ''mocaNodeQAM256Capable'' from {{bibref|MOCA11-MIB}}. + + + + + + + + The packet aggregation capability supported by the remote device. Standard values are 0 (no support), 6 (6 {{units}}) or 10 (10 {{units}}). + This parameter is based on ''mocaNodePacketsAggrCapability'' from {{bibref|MOCA11-MIB}}. + + + + + + + + + + + The signal to noise level (in {{units}}) received at this interface from this remote device. + This parameter is based on ''mocaNodeSNR'' from {{bibref|MOCA11-MIB}}. + + + + + + + + + + Whether or not this remote device is currently present in the MoCA network. + The ability to list inactive nodes is OPTIONAL. If the CPE includes inactive nodes in this table, {{param}} MUST be set to {{false}} for each inactive node. The length of time an inactive node remains listed in this table is a local matter to the CPE. + + + + + + + + + G.hn object that contains an {{object|Interface}} table for G.hn supported CPE. The ITU-T G.hn specifications {{bibref|G.9960}} and {{bibref|G.9961}} define Physical and MAC Layers for communication between two or more G.hn nodes in the home network over multiple wired media such as power line, phone line and coaxial cable. + + + + {{numentries}} + + + + + + + + + G.hn interface table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). Each table entry models the PHY {{bibref|G.9960}} and MAC {{bibref|G.9961}} layers of a G.hn interface. + + + + + + + + + + Enables or disables the interface. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + The current operational state of the interface (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the interface as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the interface entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + Note: Since {{object}} is a layer 1 interface, it is expected that {{param}} will not be used. + + + + + + + + + + + + + Indicates whether the interface points towards the Internet ({{true}}) or towards End Devices ({{false}}). + For example: + * For an Internet Gateway Device, {{param}} will be {{true}} for all WAN interfaces and {{false}} for all LAN interfaces. + * For a standalone WiFi Access Point that is connected via Ethernet to an Internet Gateway Device, {{param}} will be {{true}} for the Ethernet interface and {{false}} for the WiFi Radio interface. + * For an End Device, {{param}} will be {{true}} for all interfaces. + + + + + + + + The MAC Address of the interface, denoted as node MAC address or REGID in {{bibref|G.9961}}. + Note: This is not necessarily the same as the Ethernet header source or destination MAC address, which is associated with the IP interface and is modeled via the {{param|.Ethernet.Link.{i}.MACAddress}} parameter. + + + + + + + + The firmware version of the interface. + + + + + + + + + + This parameter was DEPRECATED because it has been replaced by {{param|MediumType}}. + This parameter is OBSOLETED in 2.14. + + + + + + + + + + + + The maximum PHY data rate that the interface is capable of transmitting (expressed in {{units}}). + + + + + + + + + + {{list}} Identifies the target domains configured by the user, as described in {{bibref|G.9961|Section 8.6.1}}. When registering or re-registering, the G.hn interface SHOULD try to register to one of these domains in the given order. + + + + + + + + + + + + + This is the domain name to which the interface is currently registered. + {{empty}} indicates that the interface is currently not registered. + + + + + + + + + + The Domain Name Identifier, a shortened version of {{param|DomainName}}, denoted as DNI in {{bibref|G.9961|Section 8.6.11.2.1}}. + + + + + + + + The Domain Identifier of the domain to which the interface is registered, denoted as DOD in {{bibref|G.9961}}. + + + + + + + + The Device Identifier assigned by the Domain Master, denoted as DEVICE_ID in {{bibref|G.9961}}. + The value 0 indicates that the device is not currently registered. + + + + + + + + The maximum PHY bit rate supported by this interface (expressed in {{units}}). + + + + + + + + + + Indicates whether this interface has the capability to act as Domain Master in the G.hn domain. + + + + + + + + Indicates a request to force the role of the G.hn interface to Domain Master (DM) for the G.hn domain it is connected to. The selection of the Domain Master follows the procedures described in {{bibref|G.9961|Clause 8.6.6}}. + + + + + + + + Indicates whether this G.hn interface is currently the Domain Master (DM) for the G.hn domain it is connected to, as described in {{bibref|G.9961|Clause 8.6}}. + + + + + + + + Indicates whether this interface has the capability to act as Security Controller in the G.hn domain. + + + + + + + + Indicates a request to force the role of the G.hn interface to Security Controller (SC) for the G.hn domain it is connected to. The selection of the Security Controller follows the procedures described in {{bibref|G.9961|Clause 9.2}}. + + + + + + + + Indicates whether this G.hn interface is currently the Security Controller (SC) for the G.hn domain it is connected to, as described in {{bibref|G.9961|Clause 9.2}}. + + + + + + + + The standard versions that the interface supports. The list MUST have an even number of items. The first item of each pair represents an ITU-T G.hn Recommendation while the second element of each pair represents the amendment version of the indicated Recommendation that this interface supports (the value 0 corresponds to the base Recommendation). + For example, to indicate support for the G.9960 base document and G.9961 amendment 1, the corresponding list would be "G9960,0,G9961,1". + + + + + + + + + The largest bandplan that the interface can support, as defined in {{bibref|G.9961|Clause 8.8.5.5}}. + + + + + + + + The medium type that the interface currently operates on. Refer to {{bibref|G.9962|Table 7-5}}. + + + + + + + + + + + + + + The Acknowledgement InterFrame Gap, or TAIFG, as defined in {{bibref|G.9961|Clause 8.4}}. It is represented as multiples of {{units}}. + + + + + + + + + + A bit map representing usage of international amateur bands (0 = masked, 1 = unmasked). The LSB represents the lowest band (1.8-2.0 MHz), the second LSB represents the second lowest band (3.5-4.0 MHz), and so on. The maximum value for this parameter is 0x03FF, i.e. it is a 10-bit quantity represented in 16 bits and the top 6 bits are always zero. + International Radio amateur bands are described in {{bibref|G.9964|Table D-1}} and conveyed by the Domain Master in the Amateur radio band descriptor (see {{bibref|G.9961|Table 8-77}}). + + + + + + + + + + Comma-separated list of DeviceIDs of nodes that need to enable their PHY throughput diagnostics mode. All devices that are enabled will participate in the G.hn network PHY throughput diagnostics process. + + + + + + + + Comma-separated list of DeviceIDs of nodes that need to enable their Performance Monitoring diagnostics mode on this node. All devices that are enabled will participate in the G.hn network Performance Monitoring diagnostics process. + + + + + + + + {{numentries}} + + + + + + + + Requests the interface to become the Domain Master in the G.hn domain. + This parameter is valid only if {{param|NodeTypeDMCapable}} is {{true}}. + Note that, if more than one node is configured to act as Domain Master, G.hn specifies a protocol to ensure only one device actually becomes DM. + + + + + + + + Indicates whether the interface is acting as Domain Master ({{true}}) or not ({{false}}). + See Note in {{param|NodeTypeDMConfig}} regarding the possibility of more than one node being configured with {{param|NodeTypeDMConfig}} = {{true}}. + + + + + + + + Indicates whether the interface is acting as Security Controller ({{true}}) or not ({{false}}). + + + + + + + + {{numentries}} + + + + + + + + Specifies the list of PSD shaping mask (PSM) breakpoints to be applied to the G.hn interface. + {{list|with each list item consisting of the following}} + {{datatype|expand}} + The PSM level is 0.1*(the value of the level of the PSM) - 140 dBm/Hz. + For example, a PSM defined by two breakpoints (subcarrier 450, PSM level -80 dBm/Hz) and (subcarrier 1050, PSM level -90 dBm/Hz) is represented by PSM [450,600],[1050,500] . + + + + + + + + + + Throughput statistics for this interface at the different G.hn reference points described in {{bibref|G.9961|Clause 8.1}}. + The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + The total number of bytes transmitted out of the interface, including framing characters. + More specifically, this is the total number of MPDU bytes transmitted or retransmitted by the node through a physical medium (i.e., PMI defined in {{bibref|G.9960|Clause 5.2.1}}), which correspond to data LPDUs (i.e., data packets) and framing overhead (e.g., LFH, LPH, LPCS defined in {{bibref|G.9961|Clause 8.1}}). It does not include transmitted bytes contributed by management LPDUs (i.e., management packets). + Note: LPDUs in mixed LLC frame blocks are considered data LPDUs. + + + + + + + + The total number of bytes received on the interface, including framing characters. + More specifically, this is the total number of MPDU bytes received by the node through a physical medium, which correspond to data LPDUs and framing overhead. It does not include received bytes contributed by management LPDUs. It can include blocks with errors. + Note: LPDUs in mixed LLC frame blocks are considered data LPDUs. + + + + + + + + The total number of packets transmitted out of the interface. + More specifically, this is the total number of APDUs requested for transmission by a higher layer (i.e., outbound APDUs at the x1 reference point defined in {{bibref|G.9960|Clause 5.2.1}}) that were transmitted by the node through the physical medium. It does not include transmitted LCDUs. + + + + + + + + The total number of packets received on the interface. + More specifically, this is the total number of APDUs delivered to a higher layer (i.e., inbound APDUs at the x1 reference point) that were received by the node through the physical medium. It does not include received LCDUs. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. + More specifically, this is the total number of APDUs that were requested for transmission by a higher layer (i.e., outbound APDUs at the x1 reference point defined in {{bibref|G.9960|Clause 5.2.1}}) but could not be transmitted because of errors (e.g., APDUs containing CRC errors). + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + More specifically, this is the total number of received APDUs that contained errors preventing them from being delivered to a higher layer (i.e., inbound APDUs at the x1 reference point defined in {{bibref|G.9960|Clause 5.2.1}}). The possible causes of error are: incorrect CRC, incorrect MIC, incorrect MIC size, and incorrect size of packet. + + + + + + + + The total number of packets requested for transmission which were not addressed to a multicast or broadcast address at this layer, including those that were discarded or not sent. + More specifically, this is the total number of APDUs that were requested for transmission by a higher layer (i.e., outbound APDUs at the x1 reference point) and which were addressed to a unicast address at this layer. It includes APDUs that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were not addressed to a multicast or broadcast address at this layer. + More specifically, this is the total number of received APDUs that were delivered to a higher layer (i.e., inbound APDUs at the x1 reference point) and which were addressed to a unicast address at this layer. + + + + + + + + The total number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + More specifically, this is the total number of APDUs that were requested for transmission by a higher layer (i.e., outbound APDUs at the x1 reference point) but chosen to be discarded even though no errors had been detected to prevent their being transmitted (e.g., buffer overflow). + + + + + + + + The total number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + More specifically, this is the total number of received APDUs that were chosen to be discarded even though no errors had been detected to prevent their being delivered. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a multicast address at this layer, including those that were discarded or not sent. + More specifically, this is the total number of APDUs that were requested for transmission by a higher layer (i.e., outbound APDUs at the x1 reference point) and which were addressed to a multicast address at this layer. It includes APDUs that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a multicast address at this layer. + More specifically, this is the total number of received APDUs that were delivered to a higher layer (i.e., inbound APDUs at the x1 reference point) and which were addressed to a multicast address at this layer. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a broadcast address at this layer, including those that were discarded or not sent. + More specifically, this is the total number of APDUs that were requested for transmission by a higher layer (i.e., outbound APDUs at the x1 reference point) and which were addressed to a broadcast address at this layer. It includes APDUs that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a broadcast address at this layer. + More specifically, this is the total number of received APDUs that were delivered to a higher layer (i.e., inbound APDUs at the x1 reference point) and which were addressed to a broadcast address at this layer. + + + + + + + + The total number of packets received via the interface which were discarded because of an unknown or unsupported protocol. + More specifically, this is the total number of APDUs received by the management that were discarded because of an unknown or unsupported protocol. + + + + + + + + The total number of MPDU bytes transmitted by the node through a physical medium, which correspond to management LPDUs and framing overhead. + + + + + + + + The total number of MPDU bytes received by the node through a physical medium, which correspond to management LPDUs and framing overhead. + + + + + + + + The total number of LCDUs requested for transmission by a management layer (i.e., outbound LCDUs generated in LLC defined in {{bibref|G.9961|Clause 8.1.3}}) that were transmitted by the node through a physical medium. + + + + + + + + The total number of LCDUs delivered to a management layer (i.e., inbound LCDUs) that were received by the node through a physical medium. + + + + + + + + The total number of LPDUs that were transmitted by the node through a physical medium, regardless of new or retransmitted LPDUs. + + + + + + + + The total number of LPDUs that were received by the node through a physical medium, with or without errors. + + + + + + + + The total number of LPDUs that were retransmitted. + + + + + + + + The total number of received LPDUs that contained errors. + Note the following relationships hold: + * PacketsSent + ErrorsSent + DiscardPacketsSent = UnicastPacketsSent + MulticastPacketsSent + BroadcastPacketsSent. + * PacketsReceived = UnicastPacketsReceived + MulticastPacketsReceived + BroadcastPacketsReceived. + * Retransmission rate = BlocksResent / BlocksSent. + * Block error rate = BlocksErrorReceived / BlocksReceived. + + + + + + + + + This table contains information about other G.hn devices connected to this G.hn interface. + + + + + + + MAC address of remote G.hn device. + This is denoted as REGID in {{bibref|G.9961}}. + + + + + + + + Device Id (as defined in G.hn) for the remote G.hn device, denoted as DEVICE_ID in {{bibref|G.9961}}. + + + + + + + + The PHY transmit Rate (expressed in {{units}}) to this remote device, denoted as PHY data rate in {{bibref|G.9961}}. + Refer to Note 1 of {{bibref|G.9961|Table 8-48}}. To convert from the value in the table, divide by 32K (32768) and round down. + + + + + + + + + + The PHY receive Rate (expressed in {{units}}) from this remote device, denoted as PHY data rate in {{bibref|G.9961}}. + Refer to Note 1 of {{bibref|G.9961|Table 8-48}}. To convert from the value in the table, divide by 32K (32768) and round down. + + + + + + + + + + Whether or not this device is currently present in the G.hn domain. + The ability to list inactive nodes is OPTIONAL. If the CPE includes inactive nodes in this table, {{param}} MUST be set to {{false}} for each inactive node. The length of time an inactive node remains listed in this table is a local matter to the CPE. + If {{param}} is {{true}}, it indicates that the Status of the remote device is 0, 1, or 2 (see {{bibref|G.9961|Table 7-3}}). + + + + + + + + + This object specifies management parameters pertaining to the domain functionality (Domain Master function; see {{bibref|G.9961|Clause 8.6}}). The object exists only on G.hn interfaces that are currently the Domain Master, i.e. for which parameter {{param|#.IsDM}} is {{true}}. + + + + This is the domain name to which the interface is currently registered. {{empty}} indicates that the interface is currently not registered. + + + + + + + + + + The Domain Name Identifier, a shortened version of {{param|DomainName}}, denoted as DNI in {{bibref|G.9961|Section 8.6.11.2.1}}. + + + + + + + + + + The Domain Identifier of the domain to which the interface is registered, denoted as DOD in {{bibref|G.9961}}. + + + + + + + + The MAC cycle duration, as specified in {{bibref|G.9961|Clause 8.4}}. It is represented as multiples of {{units}}. In the case of power line, writing to this parameter has no effect and it reads back as 0, which is a special value indicating that the MAC cycle is synchronized with 2 AC cycles as defined in {{bibref|G.9961|Clause 8.6.3.1}}. + + + + + + + + + + + + The DEVICE_ID of the Security Controller selected by the Domain Master. + + + + + + + + The REGID of the Security Controller selected by the Domain Master. + + + + + + + + The time interval for periodic re-registration, as specified in {{bibref|G.9961|Clause 8.8.5.8}}. It is represented as multiples of {{units}}. + + + + + + + + + + + The time interval that a node sends out the periodic topology update using TM_NodeTopologyChange.ind message, as specified in {{bibref|G.9961|Clause 8.8.5.8.1}}. It is represented as multiples of {{units}}. The special value 0 represents an infinite interval (i.e., no periodic topology update). + + + + + + + + + + + Indicates the value of the minimal bandplan capability for a node that is allowed to register to the domain. + + + + + + + + Indicates the value of the minimal bandplan capability for a node that is allowed to register to the domain. + + + + + + + + + This object specifies management parameters pertaining to the Security Controller functionality (Security Controller function; see {{bibref|G.9961|Clause 9.2}}). The object exists only on G.hn interfaces that are currently the Security Controller, i.e. for which parameter {{param|#.IsSC}} is {{true}}. + + + + The security modes that the Security Controller can support. Refer to {{bibref|G.9961|Clause 9.2}}. + + + + + + + Node-to-Node + + + + + Network Membership Key + + + + + + + + The security mode in which the Security Controller is operating. + + + + + + + + + + The selected MIC size used in the domain. + + + + + + + + + + + + Indicates whether the Security Controller is above the L1 reference point. It is set to {{true}} if the Security Controller is above the L1 reference point, and set to {{false}} otherwise. + + + + + + + + + Specifies the list of masked bands to be applied to the G.hn interface. This information is conveyed by the Domain Master in the SM descriptor as specified in {{bibref|G.9961|Table 8-77}}. + Instances of this object are expected to exist only on G.hn interfaces that are currently the Domain Master, i.e. for which parameter {{param|#.IsDM}} is {{true}}. + + + + + + + Enables or disables the {{object}}. + + + + + + + + The masked band number. + + + + + + + + Index of the lowest frequency sub-carrier in the band to be masked as specified in {{bibref|G.9961|Table 8-79}}. This parameter is writable only on the interface which acts as the Domain Master. + + + + + + + + Index of the highest frequency sub-carrier in the band to be masked as specified in Table 8-79 in {{bibref|G.9961}}. This parameter is writable only on the interface which acts as the Domain Master. + + + + + + + + + The G.hn Diagnostics object. + + + + G.hn PHY throughput diagnostics configuration and results. + When diagnostics are requested, all G.hn nodes for which the {{param|#.Interface.{i}.PHYThroughputDiagnosticsEnable}} parameter is set enter PHY diagnostics mode. + + + + Input arguments. + + + + The interface over which the test is to be performed. + + + + + + + + + + The MAC address of the originating G.hn interface of the link that is being diagnosed. + Note: This MAC address might belong to another node of the domain. + + + + + + + + + Output arguments. + + + + Indicates the availability of diagnostics data. {{enum}} + If the value of this parameter is anything other than {{enum|Complete}}, the values of the other results parameters for this test are indeterminate. + + + + + + + + + + + + PHY throughput diagnostics results. + + + + + + + MAC address of the destination node of the link being measured. + + + + + + + + Indicates the state of the link between the G.hn Interface with MAC address {{param|#.DiagnoseMACAddress}} and the G.hn Interface with MAC address {{param|DestinationMACAddress}}. + + + + + + There is a direct link between G.hn Interface with MAC address {{param|#.DiagnoseMACAddress}} and G.hn Interface with MAC address {{param|DestinationMACAddress}} + + + + + There is no direct link between G.hn Interface with MAC address {{param|#.DiagnoseMACAddress}} and G.hn Interface with MAC address {{param|DestinationMACAddress}} + + + + + + + + PHY data rate in transmit direction in the link between the G.hn Interface with MAC address {{param|#.DiagnoseMACAddress}} and the G.hn Interface with MAC address {{param|DestinationMACAddress}}. It is represented in {{units}} as defined in Note 1 to {{bibref|G.9961|Table 8-48}}. To convert from the value in the table, divide by 32K (32768) and round down. + + + + + + + + + + PHY data rate in receive direction in the link between the G.hn Interface with MAC address {{param|#.DiagnoseMACAddress}} and the G.hn Interface with MAC address {{param|DestinationMACAddress}}. It is represented in {{units}} as defined in Note 1 to {{bibref|G.9961|Table 8-48}}. To convert from the value in the table, divide by 32K (32768) and round down. + + + + + + + + + + + + + G.hn Performance Monitoring diagnostics configuration and results. + When diagnostics are requested, all G.hn nodes for which the {{param|#.Interface.{i}.PerformanceMonitoringDiagnosticsEnable}} parameter is set enter PHY diagnostics mode. + + + + Input arguments. + + + + The interface over which the test is to be performed. + + + + + + + + + + The MAC address of the originating G.hn interface of the link that is being diagnosed. + Note: This MAC address might belong to another node of the domain. + + + + + + + + Time in {{units}} between automatic collection of performance monitoring data. A value of zero disables automatic collection of data. + The node MAY impose a minimum sample interval, in which case an attempt to set a (non-zero) interval that is less than this minimum MUST set the interval to the minimum and MUST NOT be regarded as an error. + If SampleInterval is a simple fraction of a day, e.g. 900 (a quarter of an hour) or 3600 (an hour), the device MAY choose to align sample intervals with time of day, but is not required to do so. + + + + + + + + + + The number of sub-carriers in a group to be used for averaging SNR values when providing SNR information for a channel. + + + + + + + + + + + + + + + + + + + Output arguments. + + + + Indicates the availability of diagnostics data. {{enum}} + If the value of this parameter is anything other than {{enum|Complete}}, the values of the other results parameters for this test are indeterminate. + + + + + + + + + + + + Per-node G.hn performance monitoring results. + When automatic collection is enabled, i.e. {{param|#.SampleInterval}} is non-zero, the "current" interval is defined by the most recent automatic sample and the most recent subsequent manual sample, if any. + When automatic collection is disabled, i.e. SampleInterval is zero, the "current" interval is defined by the three most recent manual samples. + Note: Packets in statistics counters are Ethernet packets. + + + + Start time for the current interval. + When automatic collection is enabled, i.e. SampleInterval is non-zero, the current interval started at the most recent automatic sample. + When automatic collection is disabled, i.e. SampleInterval is zero, the current interval started two manual samples ago. + + + + + + + + End time for the current interval. + When automatic collection is enabled, i.e. SampleInterval is non-zero, the current interval ended at the most recent manual sample since the most recent automatic sample. If there has been no such manual sample, the current interval is empty. + When automatic collection is disabled, i.e. SampleInterval is zero, the current interval ended at the most recent manual sample. + + + + + + + + {{numentries}} This is the number of G.hn nodes for which performance monitoring results were collected during the current sample interval. + + + + + + + + + Per-node G.hn performance monitoring results during the current sample interval. Each table entry contains the results collected between the G.hn nodes with MAC addresses {{param|##.DiagnoseMACAddress}}) and {{param|DestinationMACAddress}}). + Note: Packet counters indicate the number of packets received between {{param|#.CurrentStart}} and {{param|#.CurrentEnd}}. + + + + + + + MAC address of the destination node of the link being measured. + + + + + + + + The total number of MPDU bytes transmitted or retransmitted by the node through a physical medium (i.e., PMI defined in {{bibref|G.9960|Clause 5.2.1}}), which correspond to data LPDUs (i.e., data packets) and framing overhead (e.g., LFH, LPH, LPCS defined in {{bibref|G.9961|Clause 8.1}}). It does not include transmitted bytes contributed by management LPDUs (i.e., management packets). + Note: LPDUs in mixed LLC frame blocks are considered data LPDUs. + + + + + + + + The total number of MPDU bytes received by the node through a physical medium, which correspond to data LPDUs and framing overhead. It does not include received bytes contributed by management LPDUs. It might include blocks with errors. + Note: LPDUs in mixed LLC frame blocks are considered data LPDUs. + + + + + + + + The total number of APDUs requested for transmission by a higher layer (i.e., outbound APDUs at the x1 reference point defined in {{bibref|G.9960|Clause 5.2.1}}) that were transmitted by the node through the physical medium. It does not include transmitted LCDUs. + + + + + + + + The total number of APDUs delivered to a higher layer (i.e., inbound APDUs at the x1 reference point) that were received by the node through the physical medium. It does not include received LCDUs. + + + + + + + + The total number of APDUs that were requested for transmission by a higher layer (i.e., outbound APDUs at the x1 reference point defined in {{bibref|G.9960|Clause 5.2.1}}). This parameter represents the total number of LCDUs requested for transmission by a management layer (i.e., outbound LCDUs generated in LLC defined in in {{bibref|G.9961|Clause 8.1.3}}) that were transmitted by the node through a physical medium) but could not be transmitted because of errors (e.g., APDUs containing CRC errors). + + + + + + + + The total number of received APDUs that contained errors preventing them from being delivered to a higher layer (i.e., inbound APDUs at the x1 reference point defined in {{bibref|G.9960|Clause 5.2.1}}). The possible causes of error are: incorrect CRC, incorrect MIC, incorrect MIC size, and incorrect size of packet. + + + + + + + + The total number of APDUs that were requested for transmission by a higher layer (i.e., outbound APDUs at the x1 reference point) and which were addressed to a unicast address at this layer. It includes APDUs that were discarded or not sent. + + + + + + + + The total number of received APDUs that were delivered to a higher layer (i.e., inbound APDUs at the x1 reference point) and which were addressed to a unicast address at this layer. + + + + + + + + The total number of APDUs that were requested for transmission by a higher layer (i.e., outbound APDUs at the x1 reference point) but chosen to be discarded even though no errors had been detected to prevent their being transmitted (e.g., buffer overflow). + + + + + + + + The total number of received APDUs that were chosen to be discarded even though no errors had been detected to prevent their being delivered. + + + + + + + + The total number of APDUs that were requested for transmission by a higher layer (i.e., outbound APDUs at the x1 reference point) and which were addressed to a multicast address at this layer. It includes APDUs that were discarded or not sent. + + + + + + + + The total number of received APDUs that were delivered to a higher layer (i.e., inbound APDUs at the x1 reference point) and which were addressed to a multicast address at this layer. + + + + + + + + The total number of APDUs that were requested for transmission by a higher layer (i.e., outbound APDUs at the x1 reference point) and which were addressed to a broadcast address at this layer. It includes APDUs that were discarded or not sent. + + + + + + + + The total number of received APDUs that were delivered to a higher layer (i.e., inbound APDUs at the x1 reference point) and which were addressed to a broadcast address at this layer. + + + + + + + + The total number of APDUs received by the management that were discarded because of an unknown or unsupported protocol. + + + + + + + + The total number of MPDU bytes transmitted by the node through a physical medium, which correspond to management LPDUs and framing overhead. + + + + + + + + The total number of MPDU bytes received by the node through a physical medium, which correspond to management LPDUs and framing overhead. + + + + + + + + The total number of LCDUs requested for transmission by a management layer (i.e., outbound LCDUs generated in LLC defined in {{bibref|G.9961|Clause 8.1.3}}) that were transmitted by the node through a physical medium. + + + + + + + + The total number of LCDUs delivered to a management layer (i.e., inbound LCDUs) that were received by the node through a physical medium. + + + + + + + + The total number of LPDUs that were transmitted by the node through a physical medium, regardless of new or retransmitted LPDUs. + + + + + + + + The total number of LPDUs that were received by the node through a physical medium, with or without errors. + + + + + + + + The total number of LPDUs that were retransmitted. + + + + + + + + The total number of received LPDUs that contained errors. + Note the following relationships hold: + * PacketsSent + ErrorsSent + DiscardPacketsSent = UnicastPacketsSent + MulticastPacketsSent + BroadcastPacketsSent. + * PacketsReceived = UnicastPacketsReceived + MulticastPacketsReceived + BroadcastPacketsReceived. + * Retransmission rate = BlocksResent / BlocksSent. + * Block error rate = BlocksErrorReceived / BlocksReceived. + + + + + + + + + Per-channel G.hn performance monitoring results. + Note: channels are unidirectional. + + + + Time at which channel data was last collected. + + + + + + + + {{numentries}} + + + + + + + + + Per-channel G.hn performance monitoring results during the current sample interval. Each table entry contains the results collected from the channel between a G.hn interface (as indicated by {{param|##.DiagnoseMACAddress}}) and a G.hn interface indicated by {{param|DestinationMACAddress}}) + + + + + + + MAC address of the destination node of the link being measured. + + + + + + + + The result of an SNR test performed over the channel. It is formatted as a comma-separated list of N/M unsigned integers that represents the result of Signal-to-Noise-Ratio measurement averaging in groups of M subcarriers. The number N depends on the bandplan used by the node and corresponds to the OFDM control parameter N of each medium as defined in {{bibref|G.9964}}. The number M corresponds to the parameter {{param|##.SNRGroupLength}}. + + + + + + + + + + + + + + + HomePlug object that contains the {{object|Interface}} table. The HomePlug industry standard {{bibref|HPAV1.1}} defines peer to peer communication over powerline medium. + + + + {{numentries}} + + + + + + + + + HomePlug interface table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). Each table entry models the PHY and MAC levels of a HomePlug interface {{bibref|HPAV1.1}}. + + + + + + + + + + Enables or disables the interface. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + The current operational state of the interface (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the interface as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the interface entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + Note: Since {{object}} is a layer 1 interface, it is expected that {{param}} will not be used. + + + + + + + + + + + + + Indicates whether the interface points towards the Internet ({{true}}) or towards End Devices ({{false}}). + For example: + * For an Internet Gateway Device, {{param}} will be {{true}} for all WAN interfaces and {{false}} for all LAN interfaces. + * For a standalone WiFi Access Point that is connected via Ethernet to an Internet Gateway Device, {{param}} will be {{true}} for the Ethernet interface and {{false}} for the WiFi Radio interface. + * For an End Device, {{param}} will be {{true}} for all interfaces. + + + + + + + + The MAC Address of the interface. + Note: This is not necessarily the same as the Ethernet header source or destination MAC address, which is associated with the IP interface and is modeled via the {{param|.Ethernet.Link.{i}.MACAddress}} parameter. + + + + + + + + The textual name of the HomePlug Logical Network. + + + + + + + + + + Indicates the HomePlug version of the interface. This element SHOULD be in the form of dot-delimited integers, where each successive integer represents a more minor category of variation. For example: + : "1.0" + : "1.1" + + + + + + + + + + The firmware version of the interface. + + + + + + + + + + Central Coordinator (CCo) selection mode. + If {{false}}, CCo selection is automatic. If {{true}}, the local HomePlug interface is forced to be CCo and all other devices in the Logical Network MUST be set to automatic CCo selection. + Typically {{param}} is set to automatic CCo selection ({{false}}). + + + + + + + + + The network password of the device. This is a human readable ASCII string that is hashed per the HomePlug specification to generate the Network Membership Key (NMK). Note that care needs to be taken when setting this parameter as it might prohibit communication with other adapters or equipment connected via the powerline network. + + + + + + {{list}} Indicates whether any other HomePlug networks are currently visible via this interface. Examples of valid list items include, but are not limited to: + : "HomePlugAV" + : "HomePlug1.0" + : "Other" + + + + + + + + + + + The maximum PHY bit rate supported by this interface (expressed in {{units}}). + + + + + + + + + + {{numentries}} + + + + + + + + + Throughput statistics for this interface. + The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + The total number of bytes transmitted out of the interface, including framing characters. + + + + + + + + The total number of bytes received on the interface, including framing characters. + + + + + + + + The total number of packets transmitted out of the interface. + + + + + + + + The total number of packets received on the interface. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of packets requested for transmission which were not addressed to a multicast or broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were not addressed to a multicast or broadcast address at this layer. + + + + + + + + The total number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a multicast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a multicast address at this layer. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a broadcast address at this layer. + + + + + + + + The total number of packets received via the interface which were discarded because of an unknown or unsupported protocol. + + + + + + + + HomePlug-specific statistic. The Number of MAC Protocol Data Units (MPDUs) Transmitted and Acknowledged. + + + + + + + + HomePlug-specific statistic. The Number of MAC Protocol Data Units (MPDUs) Transmitted and Collided + + + + + + + + HomePlug-specific statistic. The Number of MAC Protocol Data Units (MPDUs) Transmitted and Failed + + + + + + + + HomePlug-specific statistic. The Number of MAC Protocol Data Units (MPDUs) Received and Acknowledged + + + + + + + + HomePlug-specific statistic. The Number of MAC Protocol Data Units (MPDUs) Received and Failed + + + + + + + + + This table contains information about other HomePlug devices connected to this HomePlug interface. + + + + + + + MAC address of remote HomePlug device. It is used to uniquely identify and easily correlate with the connected remote HomePlug device. + + + + + + + + The PHY transmit Rate (expressed in {{units}}) to this remote device. + + + + + + + + + + The PHY receive Rate (expressed in {{units}}) from this remote device. + + + + + + + + + + {{list}} List items indicate Signal to Noise Ratio (SNR) per tone from this remote device (expressed in {{units}}). + + + + + + + + + + + Average attenuation from this remote device (expressed in {{units}}). + + + + + + + + + + {{list}} List items represent MAC addresses of end stations bridged by the remote HomePlug device. + For example: "11:22:33:AA:BB:CC, 22:33:44:DD:EE:66" + + + + + + + + + Whether or not this device is currently present in the HomePlug network. + The ability to list inactive nodes is OPTIONAL. If the CPE includes inactive nodes in this table, {{param}} MUST be set to {{false}} for each inactive node. The length of time an inactive node remains listed in this table is a local matter to the CPE. + + + + + + + + + Universal Powerline Association {{bibref|UPA-PLC}}. This object contains the {{object|Interface}} and {{object|Diagnostics}} objects. + + + + {{numentries}} + + + + + + + + + UPA interface table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). Each table entry models the PHY and MAC levels of a UPA interface {{bibref|UPA-PLC}}. + + + + + + + + + + Enables or disables the interface. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + The current operational state of the interface (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the interface as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the interface entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + Note: Since {{object}} is a layer 1 interface, it is expected that {{param}} will not be used. + + + + + + + + + + + + + Indicates whether the interface points towards the Internet ({{true}}) or towards End Devices ({{false}}). + For example: + * For an Internet Gateway Device, {{param}} will be {{true}} for all WAN interfaces and {{false}} for all LAN interfaces. + * For a standalone WiFi Access Point that is connected via Ethernet to an Internet Gateway Device, {{param}} will be {{true}} for the Ethernet interface and {{false}} for the WiFi Radio interface. + * For an End Device, {{param}} will be {{true}} for all interfaces. + + + + + + + + The MAC Address of the interface. + Note: This is not necessarily the same as the Ethernet header source or destination MAC address, which is associated with the IP interface and is modeled via the {{param|.Ethernet.Link.{i}.MACAddress}} parameter. + + + + + + + + This interface's firmware version. + + + + + + + + + + The maximum PHY bit rate supported by this interface (expressed in {{units}}). + + + + + + + + + + Type of UPA device role. It can be Fixed Access Point (master) or End Point (slave) of the PLC network. {{enum}} + + + + + + + + + + + The name (network ID) of the logical PLC network in which the local interface is a member (human readable string). + + + + + + + + + + Encryption Method used by UPA device. {{enum}} + + + + + + + + + + + + + + + Encryption key for secure PLC communications. + This a human readable string used by the system to generate the encryption key to encrypt communications in powerline. It takes non extended ASCII characters (i.e. printable 7-bit ASCII character codes 32-126, which includes SPACE but excludes TAB, LF and CR). For example: bvjPekZiYUf9kjNKJASkgJ09adfoP01Fjvgd + + + + + + Power back-off management feature status in the UPA device. Boolean can be {{true}} for "enabled" and {{false}} for "disabled". + + + + + + + + Show if power back-off mechanism is active at that time in the UPA device. Boolean can be {{true}} for "active" and {{false}} for "not active". + + + + + + + + The estimated application throughput (expressed in {{units}}), received from the PLC link. This value can be used to indicate link quality. + + + + + + + + + + Enables or disables the {{object|ActiveNotch}} table for this interface. + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + Throughput statistics for this interface. + The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + The total number of bytes transmitted out of the interface, including framing characters. + + + + + + + + The total number of bytes received on the interface, including framing characters. + + + + + + + + The total number of packets transmitted out of the interface. + + + + + + + + The total number of packets received on the interface. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of packets requested for transmission which were not addressed to a multicast or broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were not addressed to a multicast or broadcast address at this layer. + + + + + + + + The total number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a multicast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a multicast address at this layer. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a broadcast address at this layer. + + + + + + + + The total number of packets received via the interface which were discarded because of an unknown or unsupported protocol. + + + + + + + + + This table contains information about PLC connections running between this UPA interface and other UPA devices. + + + + + + + Remote UPA device MAC address. + + + + + + + + The PLC port number. + + + + + + + + + + The name of the logical PLC network (human readable string). + In the case where the associated device belongs to a different powerline network than the UPA interface, the actual network identifier of the neighboring network is not shown in {{param}}. Rather, only a generic string, e.g. "Network 1", "Network 2", etc is stored here due to security/privacy implications. + + + + + + + + + + Physical transmission throughput (in {{units}}). + + + + + + + + + + Physical reception throughput (in {{units}}). + + + + + + + + + + Real Physical reception throughput (in {{units}}). + + + + + + + + + + Estimated PDU Loss Rate measurement between two devices (i.e. estimated {{units}} of MPDUs that have been received with errors). + + + + + + + + + + + Mean estimated attenuation (i.e. channel loss between the local interface and the remote device). It is measured in {{units}}. + + + + + + + + + + Intermediate UPA adapter MAC address of the device that is acting as a relay to increase coverage in mesh scenarios. This is the MAC address of a third UPA device, with which the UPA interface is doing smart repeating in order to transmit data to the associated {{param|MACAddress}} UPA device. {{param}} will be empty when {{param|DirectRoute}} is {{true}}. + + + + + + + + Route status, where {{true}} indicates ''direct'' and {{false}} indicates ''indirect''. + + + + + + + + Whether or not this node is currently present in the UPA network. + The ability to list inactive nodes is OPTIONAL. If the CPE includes inactive nodes in this table, {{param}} MUST be set to {{false}} for each inactive node. The length of time an inactive node remains listed in this table is a local matter to the CPE. + + + + + + + + + This object contains the list of active notches of the UPA interface. + A UPA device can have notches in its spectrum, where no power is transmitted in a given part of the spectrum. These notches are typically located in amateur radio bands, to avoid interference. + Note: All {{object}} entries can be enabled/disabled as a group using the {{param|#.ActiveNotchEnable}} parameter. + + + + + + + Enables or disables the active notch entry. + + + + + + + + + {{datatype|expand}} + + + + + + + + The initial frequency (in {{units}}) of a notch enabled in the spectrum of the local interface. + + + + + + + + + + The final frequency (in {{units}}) of a notch enabled in the spectrum of the local interface. + + + + + + + + + + The depth (in {{units}}) of a notch enabled in the spectrum of the local interface. + + + + + + + + + + + This object represents the bridge table of the UPA interface. Each instance is a bridge table entry. + It shows the MAC addresses of the remote UPA devices with their associated port number, and the MAC addresses of the end-devices (PCs, STBs, routers, etc) connected to Ethernet port of the powerline adapters with their associated logical port. In this way the system identifies to which UPA device an external device is connected to. + + + + + + + + + + {{datatype|expand}} + + + + + + + + MAC address of the device. + + + + + + + + Internal bridge associated port. + + + + + + + + + + + The UPA Diagnostics object. + + + + This command provides access to either a Signal-to-Noise-Ratio (SNR) Port Measurement test or a Channel Frequency Response (CFR) Port Measurement test. The {{param|Type}} parameter is used to select which type of test to perform. + CFR and SNR measurements are done between a two UPA devices (a local interface and a remote device belonging to the same network). + + + + Input arguments. + + + + Indicates the type of port measurement test to be carried out. {{enum}}. + + + + + + Signal-to-Noise-Ratio + + + + + Channel Frequency Response + + + + + + + + {{reference}} This is the local UPA interface from which the test is to be performed. + + + + + + + + + + + PLC port being measured. This identifies which PLC connection to measure between the local interface (indicated by {{param|Interface}}) and the remote device (implied by {{param}}). + + + + + + + + + + + Output arguments. + + + + Indicates the availability of diagnostics data. {{enum}} + If the value of this parameter is anything other than {{enum|Complete}}, the values of the other results parameters for this test are indeterminate. + + + + + + + + + + + + + {{list}} Result of Signal-to-Noise-Ratio measurement (if {{param|Type}} is {{enum|SNR|Type}}) or Channel Frequency Response measurement (if {{param|Type}} is {{enum|CFR|Type}}). + List items indicate measurements per carrier for a PLC port (expressed in {{units}}). + + + + + + + + + + + Reception gain of the adapter (expresssed in {{units}}). + + + + + + + + + + + + + The WiFi object is based on the WiFi Alliance 802.11 specifications ({{bibref|802.11-2007}}). It defines interface objects ({{object|Radio}} and {{object|SSID}}), and application objects ({{object|AccessPoint}} and {{object|EndPoint}}). + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + This parameter counts the number of WiFi host or driver resets since the last device reset. This parameter is reset to zero after the device resets, and increments with each successive WiFi host or driver reset. + + + + + + + + Reports the cause for the previous Wi-Fi driver reset. + + + + + + Indicates that the host processor intentionally performed the reset. This can be due to an external instruction. + + + + + Indicates that the reset was spontaneous. This can be due to an error condition. + + + + + Indicates that the reset was due to a loss of mains power on the device. + + + + + + + + This command defines access to other WiFi SSIDs that this device is able to receive. + + + + Output arguments. + + + + Indicates the availability of diagnostics data. {{enum}} + If the value of this parameter is anything other than {{enum|Complete}}, the values of the other results parameters for this test are indeterminate. + + + + + + + + + + + + Neighboring SSID table. This table models the other WiFi SSIDs that this device is able to receive. + + + + + + + The Radio that detected the neighboring WiFi SSID. + + + + + + + + + + The current service set identifier in use by the neighboring WiFi SSID. The value MAY be empty for hidden SSIDs. + + + + + + + + + + The BSSID used for the neighboring WiFi SSID. + + + + + + + + The mode the neighboring WiFi radio is operating in. + + + + + + + + + + + The current radio channel used by the neighboring WiFi radio. + + + + + + + + + + An indicator of radio signal strength (RSSI) of the neighboring WiFi radio measured in {{units}}, as an average of the last 100 packets received. + + + + + + + + + + + The type of encryption the neighboring WiFi SSID advertises. + The {{enum|WEP}} value indicates either WEP-64 or WEP-128. + The {{enum|WPA}} value is the same as WPA-Personal. + The {{enum|WPA2}} value is the same as WPA2-Personal. + The {{enum|WPA-WPA2}} value is the same as WPA-WPA2-Personal. + The {{enum|WPA3-SAE}} value is the same as WPA3-Personal. + The {{enum|WPA2-PSK-WPA3-SAE}} value is the same as WPA3-Personal-Transition. + + + + + + + + + + + + + + + + + + + + The type of encryption the neighboring WiFi SSID advertises. + When {{param|SecurityModeEnabled}} is one of {{enum|WPA3-SAE|SecurityModeEnabled}}, {{enum|WPA2-PSK-WPA3-SAE|SecurityModeEnabled}}, or {{enum|WPA3-Enterprise|SecurityModeEnabled}}, {{enum|TKIP}} is not valid, and should not be in the list. + + + + + + + + + + + + Indicates the frequency band at which the radio this SSID instance is operating. + + + + + + + + + + + {{list}} List items indicate which IEEE 802.11 standards this {{object}} instance can support simultaneously, in the frequency band specified by {{param|OperatingFrequencyBand}}. {{enum}} + Each value indicates support for the indicated standard. + If {{param|OperatingFrequencyBand}} is set to {{enum|2.4GHz|OperatingFrequencyBand}}, only values {{enum|b}}, {{enum|g}}, {{enum|n}}, {{enum|ax}} are allowed. + If {{param|OperatingFrequencyBand}} is set to {{enum|5GHz|OperatingFrequencyBand}}, only values {{enum|a}}, {{enum|n}}, {{enum|ac}}, {{enum|ax}} are allowed. + + + + + + + {{bibref|802.11a-1999}} + + + + + {{bibref|802.11b-1999}} + + + + + {{bibref|802.11g-2003}} + + + + + {{bibref|802.11n-2009}} + + + + + {{bibref|802.11ac-2013}} + + + + + {{bibref|802.11ax}} + + + + + + + + {{list}} List items indicate which IEEE 802.11 standard that is detected for this {{object}}. + Each value indicates support for the indicated standard. + If {{param|OperatingFrequencyBand}} is set to {{enum|2.4GHz|##.Radio.{i}.SupportedFrequencyBands}}, only values {{enum|b}}, {{enum|g}}, {{enum|n}}, {{enum|ax}} are allowed. + If {{param|OperatingFrequencyBand}} is set to {{enum|5GHz|##.Radio.{i}.SupportedFrequencyBands}}, only values {{enum|a}}, {{enum|n}}, {{enum|ac}}, {{enum|ax}} are allowed. + For example, a value of "g,b" (or "b,g" - order is not important) means that the 802.11g standard {{bibref|802.11g-2003}} is used with a backwards-compatible mode for 802.11b {{bibref|802.11b-1999}}. A value of "g" means that only the 802.11g standard can be used. + + + + + + + + + + + Indicates the bandwidth at which the channel is operating. + + + + + + + + + + + + + + Time interval (in {{units}}) between transmitting beacons. + + + + + + + + + + Indicator of average noise strength (in {{units}}) received from the neighboring WiFi radio. + + + + + + + + + + + {{list}} Basic data transmit rates (in Mbps) for the SSID. For example, if {{param}} is "1,2", this indicates that the SSID is operating with basic rates of 1 Mbps and 2 Mbps. + + + + + + + + + + + {{list}} Data transmit rates (in Mbps) for unicast frames at which the SSID will permit a station to connect. For example, if {{param}} is "1,2,5.5", this indicates that the SSID will only permit connections at 1 Mbps, 2 Mbps and 5.5 Mbps. + + + + + + + + + + + The number of beacon intervals that elapse between transmission of Beacon frames containing a TIM element whose DTIM count field is 0. This value is transmitted in the DTIM Period field of beacon frames. {{bibref|802.11-2012}} + + + + + + + + + + + + + This parameter represents a request to reset or reboot the WiFi sub-system without resetting or rebooting the device. + + + + + + This object describes a Wi-Fi network containing 1 or more Access Point devices. + This object is related to a Wi-Fi network that contains multiple Access Points (Multi-AP) and utilizes software logic to optimize that Wi-Fi network (typically via steering STAs, also known as Associated Devices, to the best Access Point). This object exposes the view of the Wi-Fi netwtork from the perspective of the Multi-AP Controller. The Wi-Fi Alliance EasyMesh solution is one example of managing a Multi-AP network. + + + + {{numentries}} + + + + + + + + + The summary of statistics related to Multi-AP Steering for the Wi-Fi network. + The counters contained in {{object}} are all reset on reboot. + + + + Number of times Associated Devices should have been steered but weren't because a better candidate AP couldn't be found. + + + + + + + + Number of times a Blacklist steer was attempted. + + + + + + + + Number of times an attempted Blacklist steer succeeded. + + + + + + + + Number of times an attempted Blacklist steer failed. + + + + + + + + Number of times a BTM (BSS Transition Management; 802.11k) steer was attempted. + + + + + + + + Number of times an attempted BTM (BSS Transition Management; 802.11k) steer succeeded. + + + + + + + + Number of times an attempted BTM (BSS Transition Management; 802.11k) steer failed. + + + + + + + + Number of asynchronous BTM (BSS Transition Management; 802.11k) Queries for which a BTM Request was issued. + + + + + + + + + Each instance of this object represents an individual Access Point device in the Wi-Fi network. + + + + + + + A unique identifier for this particular device within the Wi-Fi network. + + + + + + + + The manufacturer of the Access Point device (human readable string). + + + + + + + + Organizationally unique identifier of the Access Point device manufacturer. Represented as a six hexadecimal-digit value using all upper-case letters and including any leading zeros. {{pattern}} + The value MUST be a valid OUI as defined in {{bibref|OUI}}. + This value MUST remain fixed over the lifetime of the device, including across firmware updates. + + + + + + + + + + + Identifier of the class of product for which the serial number applies. That is, for a given manufacturer, this parameter is used to identify the product or class of product over which the {{param|SerialNumber}} parameter is unique. + This value MUST remain fixed over the lifetime of the device, including across firmware updates. + + + + + + + + + + Identifier of the particular Access Point device that is unique for the indicated class of product and manufacturer. + This value MUST remain fixed over the lifetime of the device, including across firmware updates. + + + + + + + + + + A string identifying the software version currently installed in the Access Point device (i.e. version of the overall firmware). + To allow version comparisons, this element SHOULD be in the form of dot-delimited integers, where each successive integer represents a more minor category of variation. For example, ''3.0.21'' where the components mean: ''Major.Minor.Build''. + + + + + + + + + + The last time that the Access Point device was contacted via the Multi-AP control protocol. + + + + + + + + {{param}} is a reference to the IEEE 1905.1 Network Topology Device. Since IEEE 1905.1 is a common protocol used by Multi-AP Controllers for communications, this parameter allows the MultiAP portion of the data model to reference the associated IEEE 1905.1 portion of the data model. + + + + + + + + + + The medium being used to backhaul this Access Point Device to the Multi-AP Controller. The {{enum|None}} value is reserved for the {{object}} instance that represents the Multi-AP Controller. {{enum}} + + + + + + + + + + + + + + + + + The MAC Address of the Device on the network that is providing a Backhaul Link for this Access Point Device. + The {{empty}} value is reserved for the {{object}} instance that represents the Multi-AP Controller. + + + + + + + + The total number of bytes transmitted across the backhaul medium (as identified by the value of the {{param|BackhaulLinkType}} parameter), including framing characters. + + + + + + + + The total number of bytes received across the backhaul medium (as identified by the value of the {{param|BackhaulLinkType}} parameter), including framing characters. + + + + + + + + Current utilization (expressed in {{units}}) of the medium (as identified by the value of the {{param|BackhaulLinkType}} parameter) being used to backhaul this Access Point device to the Multi-AP Controller. A value of 0 is used for the {{object}} instance that represents the Access Point on the Multi-AP Controller. + + + + + + + + + + + An indicator of radio signal strength of the backhaul link of the Access Point (AP) to the Multi-AP Controller, measured in {{units}}. RCPI threshold is encoded per Table 9-154 of {{bibref|802.11-2016}}. The value of this parameter is indeterminate if the value of the {{param|BackhaulLinkType}} parameter is anything other than {{enum|Wi-Fi|BackhaulLinkType}}. + + + + + + + + + + + {{numentries}} + + + + + + + + {{list}} List items represent channels in the non-occupancy list due to radars detected by Dynamic Frequency Selection (DFS) Channel Availability Check (CAC). + + + + + + + + + + + Enables or disables Dynamic Frequency Selection (DFS). + + + + + + + + + This object represents all of the individual Radios contained within the identified Access Point device known to the controller. + + + + + + + A unique identifier for this particular Radio within the identified Access Point. + + + + + + + + Indicates the frequency band at which the radio is operating. {{enum}} + + + + + + + + + + + {{list}} List items indicate which IEEE 802.11 standard this {{object}} instance is configured for. {{enum}} + If {{param|OperatingFrequencyBand}} is set to {{enum|2.4GHz|OperatingFrequencyBand}}, only values {{enum|b}}, {{enum|g}}, {{enum|n}}, {{enum|ax}} are applicable. + If {{param|OperatingFrequencyBand}} is set to {{enum|5GHz|OperatingFrequencyBand}}, only values {{enum|a}}, {{enum|n}}, {{enum|ac}}, {{enum|ax}} are applicable. + For example, a value of "g,b" (or "b,g" - order is not important) means that the 802.11g standard {{bibref|802.11g-2003}} is used with a backwards-compatible mode for 802.11b {{bibref|802.11b-1999}}. A value of "g" means that only the 802.11g standard is in use. + + + + + + + {{bibref|802.11a-1999}} + + + + + {{bibref|802.11b-1999}} + + + + + {{bibref|802.11g-2003}} + + + + + {{bibref|802.11n-2009}} + + + + + {{bibref|802.11ac-2013}} + + + + + {{bibref|802.11ax}} + + + + + + + + The current radio channel used by the connection. + To request automatic channel selection, set {{param|Device.WiFi.Radio.{i}.AutoChannelEnable}} to {{true}}. + Whenever {{param|Device.WiFi.Radio.{i}.AutoChannelEnable}} is {{true}}, the value of the {{param}} parameter MUST be the channel selected by the automatic channel selection procedure. + For channels in "wide mode" (where a channel bandwidth strictly greater than 20 MHz is used), this parameter is used for Primary Channel only. The secondary or extension channel information is available through {{param|ExtensionChannel}}. + Note: Valid {{param}} values depend on the {{param|OperatingFrequencyBand}} value specified and the regulatory domain. + + + + + + + + + + The secondary extension channel position, applicable when operating in wide channel mode (i.e. when {{param|CurrentOperatingChannelBandwidth}} is {{enum|40MHz|CurrentOperatingChannelBandwidth}} + If not operating in wide channel mode (i.e. when {{param|CurrentOperatingChannelBandwidth}} is something other than {{enum|40MHz|CurrentOperatingChannelBandwidth}}, then the value of {{param}} is {{enum|None}}. {{enum}} + + + + + + + + + + + + {{list}} List items represent possible radio channels for the wireless standard (a, b, g, n, ac, ax) and the regulatory domain. + Ranges in the form "n-m" are permitted. + For example, for 802.11b and North America, would be "1-11". + + + + + + + + + + + The channel bandwidth currently in use. {{enum}} + + + + + + + + + + + + + The Modulation Coding Scheme index (applicable to 802.11n and 802.11ac specifications only). Values from 0 to 15 MUST be supported ({{bibref|802.11n-2009}}). Values from 0 to 9 MUST be supported for {{bibref|802.11ac-2013}}. + + + + + + + + + + + Indicates the current transmit power level as a {{units}} of full power. + + + + + + + + + + + Indicates the maximum Effective Isotropic Radiated Power (EIRP) per 20 MHz bandwidth representing the nominal transmit power limit for this radio. The field is coded in units of {{units}} relative to 1 mW. {{bibref|MAPv1.0|Clause 17.2.15}} + + + + + + + + + + + {{numentries}} + + + + + + + + + A single logical Access Point operating on this radio. + + + + + + + The MAC Address of the logical BSS (BSSID). + + + + + + + + The SSID in use for this BSS. + + + + + + + + Number of times a Blacklist steer was attempted for this Access Point. + Blacklist steering is the process of forcing a connected STA to move to another Access Point by temporarily blocking its access to the current Access Point. + + + + + + + + Number of times a BTM (BSS Transition Management; 802.11k) steer was attempted for this Access Point. + + + + + + + + Number of asynchronous BTM (BSS Transition Management; 802.11k) Queries for which a BTM Request was issued by this Access Point. + + + + + + + + {{numentries}} + + + + + + + + + Object describing a single Associated Device (STA). + + + + + + + The MAC address of an associated device. + + + + + + + + The operating standard that this associated device is connected with. {{enum}} + + + + + + {{bibref|802.11a-1999}} + + + + + {{bibref|802.11b-1999}} + + + + + {{bibref|802.11g-2003}} + + + + + {{bibref|802.11n-2009}} + + + + + {{bibref|802.11ac-2013}} + + + + + {{bibref|802.11ax}} + + + + + + + + Whether or not this associated device is currently present on the Wi-Fi Access Point device. + The ability to list inactive nodes is OPTIONAL. If the Access Point devices includes inactive nodes in this table, {{param}} MUST be set to {{false}} for each inactive node. The length of time an inactive node remains listed in this table is a local matter to the CPE. + + + + + + + + Date and time in UTC when the device was associated. + + + + + + + + The data transmit rate in {{units}} that was most recently used for transmission of data from the access point to the associated device. + + + + + + + + + + The data transmit rate in {{units}} that was most recently used for transmission of data from the associated device to the access point. + + + + + + + + + + An indicator of radio signal strength of the uplink from the Associated Device (STA) to the Access Point (AP) measured in {{units}}. RCPI threshold is encoded per Table 9-154 of {{bibref|802.11-2016}}. + + + + + + + + + + + An indicator of the average radio noise plus interference power measured on the uplink from the Associated Device (STA) to the Access Point (AP). + Encoded as defined for ANPI in {{bibref|802.11-2016|Section 10.11.9.4}}. + + + + + + + + + + {{numentries}} + + + + + + + + + Object describing the Statistics for a single Associated Device (STA). + + + + The total number of bytes transmitted to the Associated Device. + + + + + + + + The total number of bytes received from the Associated Device. + + + + + + + + The total number of packets transmitted to the Associated Device. + + + + + + + + The total number of packets received from the Associated Device. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. These might be due to the number of retransmissions exceeding the retry limit, or from other causes. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of transmitted packets which were retransmissions. Two retransmissions of the same packet results in this counter incrementing by two. + + + + + + + + + The summary of statistics related to Multi-AP Steering for an individual STA on the Wi-Fi network. + The counters contained in {{object}} are all reset on reboot. + + + + Number of times this Associated Device should have been steered but wasn't because a better candidate AP couldn't be found. + + + + + + + + Number of times a Blacklist steer was attempted on this Associated Device. + + + + + + + + Number of times an attempted Blacklist steer succeeded for this Associated Device. + + + + + + + + Number of times an attempted Blacklist steer failed for this Associated Device. + + + + + + + + Number of times a BTM (BSS Transition Management; 802.11k) steer was attempted on this Associated Device. + + + + + + + + Number of times an attempted BTM (BSS Transition Management; 802.11k) steer succeeded for this Associated Device. + + + + + + + + Number of times an attempted BTM (BSS Transition Management; 802.11k) steer failed for this Associated Device. + + + + + + + + Number of asynchronous BTM (BSS Transition Management; 802.11k) Queries for which a BTM Request was issued to this Associated Device. + + + + + + + + The number of {{units}} since this Associated Device was last attempted to be steered. + + + + + + + + + + + The history of Multi-AP Steering for an individual STA on the Wi-Fi network. + The contents of this multi-instance object are reset on reboot. + + + + + + + + + The date/time when steering was initiated for the Associated Device. + + + + + + + + The BSSID of the Access Point that initiated the steering. + + + + + + + + The type of event that caused the steering to be initiaited. {{enum}} + NOTE: This might be Unknown for BTM Query Response steers. + + + + + + + + + + + + + The type of steering that was attempted. {{enum}} + + + + + + + + + + + + The BSSID of the destination Access Point of a successful steer. + A failed steering attempt will leave this parameter {{empty}}. + + + + + + + + The amount of time in {{units}} required for the steer to complete successfully. + A failed steering attempt will leave this parameter 0. + + + + + + + + + + + This object represents the Wi-Fi Alliance Data Elements as defined in {{bibref|DataElements-v1.0}}. + + + + + This object describes a Wi-Fi network containing 1 or more Access Point devices. + + + + A unique identifier for this particular Wi-Fi network. + + + + + + + + The time this group was collected. + + + + + + + + A unique identifier for a Multi-AP controller. + + + + + + + + {{numentries}} + + + + + + + + + Each instance of this object represents an individual Access Point device in the Wi-Fi network. + + + + + + + A unique identifier for this particular device within the Wi-Fi network as defined in {{bibref|DataElements-v1.0|Section 3.1}}. + + + + + + + + The Multi-AP capabilities supported by this device as defined by the APCapability TLV in {{bibref|MAPv1.0|Section 17.2.6}}. + + + + + + + + + + The interval between the collection of consecutive measurements of the most frequently updated Data Element from this device in {{units}}. + + + + + + + + + + {{numentries}} + + + + + + + + + This object represents all of the individual Radios contained within the identified Access Point device known to the controller. + + + + + + + A unique identifier for this particular Radio within the identified Access Point as defined in {{bibref|DataElements-v1.0|Section 3.1}}. + + + + + + + + + + Indicates whether this radio is enabled or disabled. + + + + + + + + An indicator of the average radio noise plus interference power measured for the primary operating channel. + Encoded as defined for ANPI in {{bibref|802.11-2016|Section 11.11.9.4}}. + + + + + + + + + + (Total Channel Utililzation) The percentage of time (linearly scaled with 255 representing 100%) that the Access Point device sensed the medium was busy, as indicated by either the physical or virtual carier sense (CS) mechanism. This is essentially the amount of time spent transmiting (both successful and failed transmissions), receiving (both local and non-local transmissions), and processing noise. + When more than one channel is in use for the BSS operating on the radio, the {{param}} value is calculated only for the primary channel. + + + + + + + + + + (Transmit Channel Utilization) The percentage of time (linearly scaled with 255 representing 100%) that the radio has spent on sending individually or group addressed transmissions (successful and failed). + When more than one channel is in use for the BSS operating on the radio, the {{param}} value is calculated only for the primary channel. + + + + + + + + + + (Receive Local Channel Utilization) The percentage of time (linearly scaled with 255 representing 100%) that the radio has spent on receiving individually or group addressed local transmissions (i.e. transmissions from any STA associated with any BSS operating on this radio). + When more than one channel is in use for the BSS operating on the radio, the {{param}} value is calculated only for the primary channel. + + + + + + + + + + (Receive Non-Local Channel Utilization) The percentage of time (linearly scaled with 255 representing 100%) that the radio has spent on receiving individually or group addressed non-local transmissions (i.e. valid IEEE 802.11 PPDUs that are not associated with any BSS operatin gon this radio). + When more than one channel is in use for the BSS operating on the radio, the {{param}} value is calculated only for the primary channel. + + + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + Contains the MACAddress of the STA on this radio providing Wi-Fi backhaul to this device. + + + + The MAC address of the logical STA sharing the radio for Wi-Fi backhaul. + + + + + + + + + This object represents the capabilities of the radio which may be different from the current operational configuration. + + + + Describes the HT capabilities of the radio as defined by the HTCapabilities TLV {{bibref|MAPv1.0|Section 17.2.8}}. + + + + + + + + + + Describes the VHT capabilities of the radio as defined by the VHTCapabilities TLV {{bibref|MAPv1.0|Section 17.2.9}}. + + + + + + + + + + Describes the HE capabilities of the radio as defined by the HECapabilities TLV {{bibref|MAPv1.0|Section 17.2.10}}. + + + + + + + + + + {{numentries}} + + + + + + + + + Describes one of the possible Operating Classes supported by this Radio. + + + + + + + The Operating Class per Table E-4 in {{bibref|802.11-2016}} that this radio is capable of operating on. + + + + + + + + + + Maximum Transmit Power EIRP that this radio is capable of transmitting in the current regulatory domain for the Operating Class. + Represented as 2's complement signed integer in units of decibels relative to 1 mW ({{units}}). + + + + + + + + + + + {{list}} The channel numbers which are statically non-operable in the Operating Class (i.e. the Radio is never able to operate on these channels). + Other channels from this Operating Class which are not listed here are supported for the Radio. + + + + + + + + + + + The number of non-operable channels contained in {{param|NonOperable}}. + + + + + + + + + Describes one of the current Operating Classes in use by this Radio. One Opeating Class is indicated for each current Operating Channel Bandwidth. + The Channel indicated for the 20 MHz Operating Class is equal to the current primary channel. + + + + + + + The Operating Class per Table E-4 in {{bibref|802.11-2016}} that this radio is currently operating on. + + + + + + + + + + This Channel number in the Operating Class that this Radio is currently operating on. + + + + + + + + + + Nominal Transmit Power EIRP that this radio is currently using for the current Channel in the Opeating Class. + Represented as 2's complement signed integer in units of decibels relative to 1 mW ({{units}}). + + + + + + + + + + + The time this group was collected. + + + + + + + + + A single logical BSS operating on this radio. + + + + + + + The MAC Address of the logical BSS (BSSID). + + + + + + + + The SSID in use for this BSS. + + + + + + + + Whether the BSSID is currently enabled (beaconing frames are being sent) or disabled. + + + + + + + + Time in {{units}} since the last change to the {{param|Enabled}} value. + + + + + + + + + + The time this group was collected. + + + + + + + + Access Point (BSS) wide statistics for total unicast bytes transmitted. + + + + + + + + Access Point (BSS) wide statistics for total unicast bytes received. + + + + + + + + Access Point (BSS) wide statistics for total multicast bytes transmitted. + + + + + + + + Access Point (BSS) wide statistics for total multicast bytes received. + + + + + + + + Access Point (BSS) wide statistics for total broadcast bytes transmitted. + + + + + + + + Access Point (BSS) wide statistics for total broadcast bytes received. + + + + + + + + Estimated Service Parameters information field for AC=BE, defined per Figure 9-588 in {{bibref|802.11-2016}} and referenced in {{bibref|MAPv1.0|Section 17.2.22}}. + + + + + + + + + + Estimated Service Parameters information field for AC=BK, defined per Figure 9-588 in {{bibref|802.11-2016}} and referenced in {{bibref|MAPv1.0|Section 17.2.22}}. + + + + + + + + + + Estimated Service Parameters information field for AC=VI, defined per Figure 9-588 in {{bibref|802.11-2016}} and referenced in {{bibref|MAPv1.0|Section 17.2.22}}. + + + + + + + + + + Estimated Service Parameters information field for AC=VO, defined per Figure 9-588 in {{bibref|802.11-2016}} and referenced in {{bibref|MAPv1.0|Section 17.2.22}}. + + + + + + + + + + {{numentries}} + + + + + + + + + Object describing a single Associated Device (STA). + + + + + + + The MAC address of an associated device. + + + + + + + + The time this group was collected. + + + + + + + + Describes the HT capabilities of the Associated Device (STA). + + + + + + + + + + Describes the VHT capabilities of the Associated Device (STA). + + + + + + + + + + Describes the HE capabilities of the Associated Device (STA). + + + + + + + + + + The data transmit rate in {{units}} that was most recently used for transmission of data from the access point to the associated device. + + + + + + + + + + The data transmit rate in {{units}} that was most recently used for transmission of data from the associated device to the access point. + + + + + + + + + + The amount of time in {{units}} that the Radio has spent on the Channel receiving data from this Associated Device (STA). + + + + + + + + + + The amount of time in {{units}} that the Radio has spent on the Channel transmitting data to this Associated Device (STA). + + + + + + + + + + Estimate of the MAC layer throughput in {{units}} achievable in the downlink direction if 100% of channel airtime and BSS operating bandwidth were available, as defined in {{bibref|MAPv1.0|Section 10.3.1}}. + + + + + + + + + + Estimate of the MAC layer throughput in {{units}} achievable in the uplink direction if 100% of channel airtime and BSS operating bandwidth were available, as defined in {{bibref|MAPv1.0|Section 10.3.1}}. + + + + + + + + + + An indicator of radio signal strength of the uplink from the associated STA to the access point - measured in {{units}}. RCPI threshold (encoded per Table 9-154 of {{bibref|802.11-2016}}, and described in 10.3.1 of {{bibref|MAPv1.0}}). Reserved: 221 - 255. + NOTE: The underlying WFA specification is in the process of being reviewed for possible clarification. Please refer to that specification for more details. + + + + + + + + + + + The time in {{units}} since this Assocated Device (STA) was associated. + + + + + + + + + + The total number of bytes transmitted to the Associated Device. + + + + + + + + The total number of bytes received from the Associated Device. + + + + + + + + The total number of packets transmitted to the Associated Device. + + + + + + + + The total number of packets received from the Associated Device. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. These might be due to the number of retransmissions exceeding the retry limit, or from other causes. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of transmitted packets which were retransmissions. Two retransmissions of the same packet results in this counter incrementing by two. + + + + + + + + {{list}} Measurement Report element(s) received from the Associated Device (STA) that constitute the latest Beacon report as defined in Figure 9-199 of {{bibref|802.11-2016}}. + + + + + + + + + The number of measurement report elements contained in {{param|MeasurementReport}}. + + + + + + + + IPV4 Address assigned to the client. + + + + + + + + IPV6Address assigned to the client. + + + + + + + + Hostname assigned to the client. + + + + + + + + + The list of neighboring Access Points discovered by a Radio organized per Operating Class and Channel tuple. + + + + The timestamp of the last scan. + + + + + + + + {{numentries}} + + + + + + + + + The Operating Class of neighboring Access Points discovered by a Radio during a channel scan. + + + + + + + The Operating Class per Table E-4 in {{bibref|802.11-2016}} of the OpClass and Channel tuple scanned by the Radio. For 2.4GHz and 5GHz bands, only 20MHz Operating Classes are valid. + Note that the Operating Class identifies the band and channel width. + + + + + + + + + + {{numentries}} + + + + + + + + + The Channel associated with an Operating Class of neighboring Access Points discovered by a Radio during a channel scan. + + + + + + + The channel number of the Channel scanned by the Radio given the Operating Class. + + + + + + + + + + The timestamp of the last scan of the channel. + + + + + + + + The current Channel Utilization measured by the Radio on the scanned 20MHz channel, as defined by {{bibref|802.11-2016|Section 9.4.2.28}}. + + + + + + + + + + An indicator of the average radio noise plus interference power measured for the primary operating channel. + Encoded as defined for ANPI in {{bibref|802.11-2016|Section 11.11.9.4}}. + + + + + + + + + + {{numentries}} + + + + + + + + + The neighboring BSS discovered by a Radio during a channel scan. + + + + + + + The BSSID indicated by the neighboring BSS. + + + + + + + + The SSID indicated by the neighboring BSS. + + + + + + + + An indicator of radio signal strength (RSSI) of the Beacon or Probe Response frames of the neighboring BSS as received by the radio measured in {{units}}. (RSSI is encoded per Table 9-154 of {{bibref|802.11-2016}}). Reserved: 221 - 255. + NOTE: The underlying WFA specification is in the process of being reviewed for possible clarification. Please refer to that specification for more details. + + + + + + + + + + + Indicates the maximum bandwidth at which the neighboring BSS is operating. e.g. "20" or "40" or "80" or "80+80" or "160" MHz. + + + + + + + + The channel utilization reported by the neighboring BSS per the BSS Load element if present in Beacon or Probe Response frames, as defined by Section 9.4.2.28 in {{bibref|802.11-2016}}. + + + + + + + + + + The number of Associated Devices (STA) reported by this neighboring BSS per the BSS Load element if present in Beacon or Probe Response frames as defined by {{bibref|802.11-2016|Section 9.4.2.28}}. + + + + + + + + + Each instance represents a Non-AP STA that has been discovered by the Radio but is not associated to any of the BSS operating on the Radio. + + + + + + + The MAC address of the Non-AP STA. + + + + + + + + An indicator of radio signal strength (RCPI) of the uplink from the Non-AP STA - measured in {{units}}. (RCPI threshold is encoded per Table 9-154 of {{bibref|802.11-2016}}, and described in 103.2 of {{bibref|MAPv1.0}}). Reserved: 221 - 255. + NOTE: The underlying WFA specification is in the process of being reviewed for possible clarification. Please refer to that specification for more details. + + + + + + + + + + + + This object contains the events generated when a STA associates to a BSS. + + + + {{numentries}} + + + + + + + + + The events generated when an Associated Device (STA) associates to a BSS. + + + + The MAC Address of the logical BSS ( BSSID) which is reporting the Association Event. + + + + + + + + The MAC Address of the Associated Device (STA). + + + + + + + + The status code sent to the Associated Device (STA) in the Association Response frame as defined by Table 9-46 in {{bibref|802.11-2016}}. + + + + + + + + Describes the HT capabilities of the Associated Device (STA). + + + + + + + + + + Describes the VHT capabilities of the Associated Device (STA). + + + + + + + + + + Describes the HE capabilities of the Associated Device (STA). + + + + + + + + + + The time this event was collected. + + + + + + + + + This object contains the events generated when an Associated Device (STA) disassociates from a BSS. + + + + {{numentries}} + + + + + + + + + The events generated when an Associated Device (STA) disassociates from a BSS. + + + + The MAC Address of the logical BSS ( BSSID) which is reporting the Disassociation Event. + + + + + + + + The MAC address of the Associated Device (STA). + + + + + + + + The Reason Code received by the AP from the Associated Device (STA) in the most recent Disassociation or Deauthentication frame or sent by the AP to the Associated Device (STA) in the most recent Disassociation or Deauthenticaiton frame as defined in Table 9-45 in {{bibref|802.11-2016}}. + + + + + + + + The total number of bytes transmitted to the Associated Device (STA). + + + + + + + + The total number of bytes received from the Associated Device (STA). + + + + + + + + The total number of packets transmitted to the Associated Device (STA). + + + + + + + + The total number of packets received from the Associated Device (STA). + + + + + + + + The total number of outbound packets that could not be transmitted to the Associated Device (STA) because of errors. These might be due to the number of retransmissions exceeding the retry limit or from other causes. + + + + + + + + The total number of inbound packets from the Associated Device (STA) that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of transmitted packets to the Associated Device (STA) which were retransmissions. + N retransmissions of the same packet results in this counter incrementing by N. + + + + + + + + The time this event was collected. + + + + + + + + + This object models an 802.11 wireless radio on a device (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). + If the device can establish more than one connection simultaneously (e.g. a dual radio device), a separate {{object}} instance MUST be used for each physical radio of the device. See {{bibref|TR-181i2|Appendix III.1}} for additional information. + Note: A dual-band single-radio device (e.g. an 802.11a/b/g radio) can be configured to operate at 2.4 or 5 GHz frequency bands, but only a single frequency band is used to transmit/receive at a given time. Therefore, a single {{object}} instance is used even for a dual-band radio. + + + + + + + + + + Enables or disables the radio. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + The current operational state of the radio (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the radio as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the radio entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + Note: Since {{object}} is a layer 1 interface, it is expected that {{param}} will not be used. + + + + + + + + + + + + + Indicates whether the interface points towards the Internet ({{true}}) or towards End Devices ({{false}}). + For example: + * For an Internet Gateway Device, {{param}} will be {{true}} for all WAN interfaces and {{false}} for all LAN interfaces. + * For a standalone WiFi Access Point that is connected via Ethernet to an Internet Gateway Device, {{param}} will be {{true}} for the Ethernet interface and {{false}} for the WiFi Radio interface. + * For an End Device, {{param}} will be {{true}} for all interfaces. + This parameter was DEPRECATED because it gives a wrong indication for multiple SSIDs. Use the {{param|#.SSID.{i}.Upstream}} parameter instead. + This parameter is OBSOLETED in 2.14. + + + + + + + + The maximum PHY bit rate supported by this interface (expressed in {{units}}). + + + + + + + + + + {{list}} List items indicate the frequency bands at which the radio can operate. + + + + + + + + + + + + Indicates the frequency band at which the radio is operating. + If the radio supports multiple bands, and {{param}} is changed, then all parameters whose value is not valid for the new frequency band (e.g. {{param|Channel}}) MUST be set to a valid value (according to some CPE vendor-specific behavior). + + + + + + + + + + {{list}} List items indicate which IEEE 802.11 standards this {{object}} instance can support simultaneously, in the frequency band specified by {{param|OperatingFrequencyBand}}. {{enum}} + Each value indicates support for the indicated standard. + If {{param|OperatingFrequencyBand}} is set to {{enum|2.4GHz|OperatingFrequencyBand}}, only values {{enum|b}}, {{enum|g}}, {{enum|n}}, {{enum|ax}} are allowed. + If {{param|OperatingFrequencyBand}} is set to {{enum|5GHz|OperatingFrequencyBand}}, only values {{enum|a}}, {{enum|n}}, {{enum|ac}}, {{enum|ax}} are allowed. + + + + + + + {{bibref|802.11a-1999}} + + + + + {{bibref|802.11b-1999}} + + + + + {{bibref|802.11g-2003}} + + + + + {{bibref|802.11n-2009}} + + + + + {{bibref|802.11ac-2013}} + + + + + {{bibref|802.11ax}} + + + + + + + + {{list}} List items indicate which IEEE 802.11 standard this {{object}} instance is configured for. + Each value indicates support for the indicated standard. + If {{param|OperatingFrequencyBand}} is set to {{enum|2.4GHz|OperatingFrequencyBand}}, only values {{enum|b}}, {{enum|g}}, {{enum|n}}, {{enum|ax}} are allowed. + If {{param|OperatingFrequencyBand}} is set to {{enum|5GHz|OperatingFrequencyBand}}, only values {{enum|a}}, {{enum|n}}, {{enum|ac}}, {{enum|ax}} are allowed. + For example, a value of "g,b" (or "b,g" - order is not important) means that the 802.11g standard {{bibref|802.11g-2003}} is used with a backwards-compatible mode for 802.11b {{bibref|802.11b-1999}}. A value of "g" means that only the 802.11g standard can be used. + + + + + + + + + + + {{list}} List items represent possible radio channels for the wireless standard (a, b, g, n, ac, ax) and the regulatory domain. + Ranges in the form "n-m" are permitted. + For example, for 802.11b and North America, would be "1-11". + + + + + + + + + + + {{list}} List items represent channels that the radio determines to be currently in use (including any that it is using itself). + Ranges in the form "n-m" are permitted. + + + + + + + + + + + The current radio channel used by the connection. To request automatic channel selection, set {{param|AutoChannelEnable}} to {{true}}. + Whenever {{param|AutoChannelEnable}} is {{true}}, the value of the {{param}} parameter MUST be the channel selected by the automatic channel selection procedure. + For channels in "wide mode" (802.11n where a 40MHz channel bandwidth is used), this parameter is used for Primary Channel only. The secondary or extension channel information is available through {{param|ExtensionChannel}}. + Note: Valid {{param}} values depend on the {{param|OperatingFrequencyBand}} value specified and the {{param|RegulatoryDomain}}. + + + + + + + + + + Indicates whether automatic channel selection is supported by this radio. If {{false}}, then {{param|AutoChannelEnable}} MUST be {{false}}. + + + + + + + + Enable or disable automatic channel selection. + Set to {{false}} to disable the automatic channel selection procedure, in which case the currently selected channel remains selected. + Set to {{true}} to enable the automatic channel selection procedure. This procedure MUST automatically select the channel, and MAY also change it subsequently. + {{param}} MUST automatically change to {{false}} whenever the channel is manually selected, i.e. whenever the {{param|Channel}} parameter is written. + Whenever {{param}} is {{true}}, the value of the {{param|Channel}} parameter MUST be the channel selected by the automatic channel selection procedure. + + + + + + + + The time period in {{units}} between two consecutive automatic channel selections. A value of 0 means that the automatic channel selection is done only at boot time. + This parameter is significant only if {{param|AutoChannelEnable}} is set to {{true}}. + + + + + + + + + + The accumulated time in {{units}} since the current {{param|Channel}} came into use. + + + + + + + + + + The cause of the last channel selection. + + + + + + Manual selection of the {{param|Channel}}. + + + + + Automatic channel selection procedure launched at radio startup. + + + + + Automatic channel selection procedure triggered by the user (e.g. via a GUI). + + + + + Automatic channel selection procedure triggered by the {{param|AutoChannelRefreshPeriod}} timer. + + + + + Automatic channel selection procedure dynamically triggered to adjust to environmental interference. + + + + + Automatic channel selection procedure triggered by Dynamic Frequency Selection (DFS) {{bibref|ETSIBRAN}}. + + + + + + + + + Maximum number of SSIDs supported on this radio. + + + + + + + + + + Maximum number of associated devices supported. + + + + + + + + + + This radio's WiFi firmware version. + + + + + + + + + + {{list}} These are the valid writable values for {{param|OperatingChannelBandwidth}}. + + + + + + + + wide mode + + + + + 802.11ac and 802.11ax only + + + + + 802.11ac and 802.11ax only + + + + + 802.11ac and 802.11ax only + + + + + + + + + The preferred channel bandwidth to be used (applicable to 802.11n, 802.11ac, and 802.11ax specifications only). + + + + + + + + + + The channel bandwidth currently in use. + + + + + + + + + + + + + + The secondary extension channel position (applicable to the 802.11n specification only), applicable when operating in wide channel mode (i.e. when {{param|OperatingChannelBandwidth}} is set to {{enum|40MHz|OperatingChannelBandwidth}} or {{enum|Auto|OperatingChannelBandwidth}}). + + + + + + + + + + + + The guard interval value between OFDM symbols. + + + + + + applicable to 802.11n and 802.11ac specifications only + + + + + applicable to 802.11n and 802.11ac specifications only + + + + + applicable to 802.11ax specification only + + + + + applicable to 802.11ax specification only + + + + + applicable to 802.11ax specification only + + + + + applicable to 802.11ax specification only + + + + + applicable to 802.11ax specification only + + + + + applicable to 802.11ax specification only + + + + + + + + + When operating in {{enum|80+80MHz|CurrentOperatingChannelBandwidth}}, this parameter determines the Center Frequency Segment 0 for the first 80 MHz channel. See {{bibref|802.11-2016|Section 9.4.2.161}} and Table 9-252. + This parameter is DEPRECATED in 2.14 due to a typo. Use {{param|CenterFrequencySegment0}} instead. + + + + + + + + When operating in {{enum|80+80MHz|CurrentOperatingChannelBandwidth}}, this parameter determines the Center Frequency Segment 1 for the second 80 MHz channel. See {{bibref|802.11-2016|Section 9.4.2.161}} and Table 9-252. + This parameter is DEPRECATED in 2.14 due to a typo. Use {{param|CenterFrequencySegment1}} instead. + + + + + + + + When operating in {{enum|80+80MHz|CurrentOperatingChannelBandwidth}}, this parameter determines the Center Frequency Segment 0 for the first 80 MHz channel. See {{bibref|802.11-2016|Section 9.4.2.161}} and Table 9-252. + + + + + + + + When operating in {{enum|80+80MHz|CurrentOperatingChannelBandwidth}}, this parameter determines the Center Frequency Segment 1 for the second 80 MHz channel. See {{bibref|802.11-2016|Section 9.4.2.161}} and Table 9-252. + + + + + + + + The Modulation Coding Scheme index (applicable to 802.11n, 802.11ac, and 802.11ax specifications only). Values from 0 to 15 MUST be supported for ({{bibref|802.11n-2009}}). Values from 0 to 9 MUST be supported for {{bibref|802.11ac-2013}}. Values from 0 to 11 MUST be supported for {{bibref|802.11ax}}. A value of -1 indicates automatic selection of the MCS index. + + + + + + + + + + + {{list}} List items represent supported transmit power levels as {{units}} of full power. For example, "0,25,50,75,100". + A -1 item indicates auto mode (automatic decision by CPE). Auto mode allows the ''Radio'' to adjust transmit power accordingly. For example, this can be useful for power-save modes such as EU-CoC, where the ''Radio'' can adjust power according to activity in the CPE. + + + + + + + + + + + + + + Indicates the current transmit power level as a {{units}} of full power. The value MUST be one of the values reported by the {{param|TransmitPowerSupported}} parameter. A value of -1 indicates auto mode (automatic decision by CPE). + + + + + + + + + + + Indicates whether IEEE 802.11h {{bibref|802.11h-2003}} functionality is supported by this radio. The value can be {{true}} only if the 802.11a or the 802.11n@5GHz standard is supported (i.e. {{param|SupportedFrequencyBands}} includes {{enum|5GHz|SupportedFrequencyBands}} and {{param|SupportedStandards}} includes {{enum|a|SupportedStandards}} and/or {{enum|n|SupportedStandards}}). + + + + + + + + Indicates whether IEEE 802.11h functionality is enabled on this radio. The value can be {{true}} only if the 802.11a or the 802.11n@5GHz standard is supported and enabled (i.e. {{param|OperatingFrequencyBand}} is {{enum|5GHz|OperatingFrequencyBand}} and {{param|OperatingStandards}} includes {{enum|a|OperatingStandards}} and/or {{enum|n|OperatingStandards}}). + + + + + + + + The 802.11d Regulatory Domain. First two octets are {{bibref|ISO3166-1}} two-character country code. The third octet is either " " (all environments), "O" (outside) or "I" (inside). + + + + + + + + + + + The maximum number of retransmissions of a short packet i.e. a packet that is no longer than the {{param|RTSThreshold}}. This corresponds to IEEE 802.11 parameter ''dot11ShortRetryLimit'' {{bibref|802.11-2012}}. + + + + + + + + + + A request for the clear channel assessment (CCA) report in the format specified in {{bibref|802.11-2012|Clause 8.4.2.23.3}}. + + + + + + + + + + The clear channel assessment (CCA) report in the format specified in {{bibref|802.11-2012|Clause 8.4.2.24.3}}. + When read, the value of this parameter MUST correspond to {{param|CCARequest}}. How this is achieved is a local matter to the CPE. + If this parameter is read before a CCARequest has been issued, then its value is {{empty}}. + + + + + + + + + + A request for a received power indicator (RPI) histogram in the format specified in {{bibref|802.11-2012|Clause 8.4.2.23.4}}. + + + + + + + + + + Received power indicator (RPI) histogram report in the format specified in {{bibref|802.11-2012|Clause 8.4.2.24.4}}. + + + + + + + + + + This specifies the current maximum size, in {{units}}, of the MPDU that can be delivered to the PHY. This parameter is based on ''dot11FragmentationThreshold'' from {{bibref|802.11-2012}}. + + + + + + + + + + This indicates the number of {{units}} in an MPDU, below which an RTS/CTS handshake is not performed. This parameter is based on ''dot11RTSThreshold'' from {{bibref|802.11-2012}}. + + + + + + + + + + This indicates the maximum number of transmission attempts of a frame, the length of which is greater than {{param|RTSThreshold}}, that will be made before a failure condition is indicated. This parameter is based on ''dot11LongRetryLimit'' from {{bibref|802.11-2012}}. + + + + + + + + Time interval between transmitting beacons (expressed in {{units}}). This parameter is based on ''dot11BeaconPeriod'' from {{bibref|802.11-2012}}. + + + + + + + + + + This specifies the number of beacon intervals that elapse between transmission of Beacon frames containing a TIM element whose DTIM Count field is 0. This parameter is based on ''dot11DTIMPeriod'' from {{bibref|802.11-2012}}. + + + + + + + + This determines whether or not packet aggregation (commonly called "frame aggregation") is enabled. This applies only to 802.11n. + + + + + + + + The type of preamble. Longer preambles (more overhead) are needed by 802.11g to coexist with legacy systems 802.11 and 802.11b. + + + + + + + + + + + + {{list}} The set of data rates, in ''Mbps'', that have to be supported by all stations that desire to join this BSS. The stations have to be able to receive and transmit at each of the data rates listed in {{param}}. For example, a value of "1,2", indicates that stations support 1 Mbps and 2 Mbps. Most control packets use a data rate in {{param}}. + + + + + + + + + {{list}} Maximum access point data transmit rates in ''Mbps'' for unicast frames (a superset of {{param|BasicDataTransmitRates}}). Given the value of {{param|BasicDataTransmitRates}} from the example above, {{param}} might be "1,2,5.5,11", indicating that unicast frames can additionally be transmitted at 5.5 Mbps and 11 Mbps. + + + + + + + + + {{list}} Data transmit rates in ''Mbps'' for unicast frames at which the access point will permit a station to connect (a subset of {{param|OperationalDataTransmitRates}}). Given the values of {{param|BasicDataTransmitRates}} and {{param|OperationalDataTransmitRates}} from the examples above, {{param}} might be "1,2,5.5", indicating that the AP will only permit connections at 1 Mbps, 2 Mbps and 5.5 Mbps, even though it could theoretically accept connections at 11 Mbps. + + + + + + + + + Enables or disables 802.11k Radio Resource Management (RRM). + + + + + + + + + Throughput statistics for this interface. Packet counters here count 802.11 WiFi frames. See {{bibref|TR-181i2|Appendix III}} for further details. The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|Section 4.2.2}}. + + + + The total number of Request To Send (RTS) control frames that received a Clear To Send (CTS) response. + + + + + + + + The total number of Request To Send (RTS) control frames that did not receive a Clear To Send (CTS) response. + + + + + + + + The total number of received packets for which the PHY was able to correlate the preamble but not the header. + + + + + + + + The total number of received frames with a good Physical Layer Convergence Protocol (PLCP) header. + + + + + + + + The total number of Wi-Fi data packets received from other Basic Service Sets (BSSs), with a good Frame Check Sequence (FCS) and not matching the receiver address, meaning that that the frame is received at the MAC layer but is addressed to a different MAC. + + + + + + + + The total number of Wi-Fi management packets received from other Basic Service Sets (BSSs), with a good Frame Check Sequence (FCS) and not matching the receiver address, meaning that that the frame is received at the MAC layer but is addressed to a different MAC. + + + + + + + + The total number of Wi-Fi control packets received from other Basic Service Sets (BSSs), with a good Frame Check Sequence (FCS) and not matching the receiver address, meaning that that the frame is received at the MAC layer but is addressed to a different MAC. + + + + + + + + The total number of received Clear to Send (CTS) packets not addressed to the MAC address of this receiver. + + + + + + + + The total number of received Request to Send (RTS) frames not addressed to the MAC address of this receiver. + + + + + + + + The total number of bytes transmitted out of the interface, including framing characters. + + + + + + + + The total number of bytes received on the interface, including framing characters. + + + + + + + + The total number of packets transmitted out of the interface. + + + + + + + + The total number of packets received on the interface. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The number of packets that were received with a detected Physical Layer Convergence Protocol (PLCP) header error. + + + + + + + + The number of packets that were received with a detected FCS error. This parameter is based on dot11FCSErrorCount from {{bibref|802.11-2012|Annex C}}. + + + + + + + + The number of packets that were received with a detected invalid MAC header error. + + + + + + + + The number of packets that were received, but which were destined for a MAC address that is not associated with this interface. + + + + + + + + An indicator of average noise strength received at this radio, measured in {{units}}. This measurement of non-IEEE 802.11 noise power is made by sampling the channel when virtual carrier sense indicates idle and this radio is neither transmitting nor receiving a frame. + + + + + + + + + + The total number of times that the {{param|#.Channel}} has changed since the {{object|.WiFi.Radio}} entered its current operating state. + + + + + + + + The number of times that the {{param|#.Channel}} has changed due to manual channel selection since the {{object|.WiFi.Radio}} entered its current operating state. + + + + + + + + The number of times that the {{param|#.Channel}} has changed due to automatic channel selection procedure launched at radio startup since the {{object|.WiFi.Radio}} entered its current operating state. + + + + + + + + The number of times that the {{param|#.Channel}} has changed due to automatic channel selection procedure triggered by the user (e.g. via a GUI) since the {{object|.WiFi.Radio}} entered its current operating state. + + + + + + + + The number of times that the {{param|#.Channel}} has changed due to automatic channel selection procedure triggered by the {{param|#.AutoChannelRefreshPeriod}} timer since the {{object|.WiFi.Radio}} entered its current operating state. + + + + + + + + The number of times that the {{param|#.Channel}} has changed due to automatic channel selection procedure dynamically triggered to adjust to environmental interference since the {{object|.WiFi.Radio}} entered its current operating state. + + + + + + + + The number of times that the {{param|#.Channel}} has changed due to automatic channel selection procedure triggered by DFS {{bibref|ETSIBRAN}} since the {{object|.WiFi.Radio}} entered its current operating state. + + + + + + + + + WiFi SSID table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}), where table entries model the MAC layer. A WiFi SSID entry is typically stacked on top of a {{object|#.Radio}} object. + WiFi SSID is also a multiplexing layer, i.e. more than one {{object}} can be stacked above a single {{object|#.Radio}}. + + + + + + + + + + + + + Enables or disables the SSID entry. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + + The current operational state of the SSID entry (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the SSID entry as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the SSID entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + + + + + + + + + + + + + + The Basic Service Set ID. + This is the MAC address of the access point, which can either be local (when this instance models an access point SSID) or remote (when this instance models an end point SSID). + + + + + + + + The MAC address of this interface. + If this instance models an access point SSID, {{param}} is the same as {{param|BSSID}}. + Note: This is not necessarily the same as the Ethernet header source or destination MAC address, which is associated with the IP interface and is modeled via the {{param|.Ethernet.Link.{i}.MACAddress}} parameter. + + + + + + + + The current service set identifier in use by the connection. The SSID is an identifier that is attached to packets sent over the wireless LAN that functions as an ID for joining a particular radio network (BSS). + + + + + + + + + + Indicates whether the interface points towards the Internet ({{true}}) or towards End Devices ({{false}}). + For example: + * For an Internet Gateway Device, {{param}} will be {{true}} for all WAN interfaces and {{false}} for all LAN interfaces. + * For a standalone WiFi Access Point that is connected via Ethernet to an Internet Gateway Device, {{param}} will be {{true}} for the Ethernet interface and {{false}} for the WiFi Radio interface. + * For an End Device, {{param}} will be {{true}} for all interfaces. + This parameter supersedes the deprecated {{param|#.Radio.{i}.Upstream}} parameter. If both exist, the parameter {{param|#.Radio.{i}.Upstream}} is ignored. + + + + + + + + Enables or disables Air Time Fairness (ATF). + + + + + + + + After this parameter is set to true, the ATF configuration of the interface will be reset. + + + + + + + + Configures the ATF setting for all associated devices on an individual SSID. Expressed as percentage of airtime, such that no station should exceed this percentage. + + + + + + + + + + + + Throughput statistics for this interface. Packet counters here count 802.11 WiFi frames. See {{bibref|TR-181i2|Appendix III}} for further details. The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|Section 4.2.2}}. + + + + The total number of bytes transmitted out of the interface, including framing characters. + + + + + + + + The total number of bytes received on the interface, including framing characters. + + + + + + + + The total number of packets transmitted out of the interface. + + + + + + + + The total number of packets received on the interface. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. These can be due to the number of retransmissions exceeding the retry limit, or from other causes. + + + + + + + + The total number of transmitted packets which were retransmissions. Two retransmissions of the same packet results in this counter incrementing by two. + + + + + + + + The number of packets that were not transmitted successfully due to the number of retransmission attempts exceeding an 802.11 retry limit. This parameter is based on dot11FailedCount from {{bibref|802.11-2012}}. + + + + + + + + The number of packets that were successfully transmitted after one or more retransmissions. This parameter is based on dot11RetryCount from {{bibref|802.11-2012}}. + + + + + + + + The number of packets that were successfully transmitted after more than one retransmission. This parameter is based on dot11MultipleRetryCount from {{bibref|802.11-2012}}. + + + + + + + + The number of expected ACKs that were never received. This parameter is based on dot11ACKFailureCount from {{bibref|802.11-2012}}. + + + + + + + + The number of aggregated packets that were transmitted. This applies only to 802.11n and 802.11ac. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of packets requested for transmission which were not addressed to a multicast or broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were not addressed to a multicast or broadcast address at this layer. + + + + + + + + The total number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a multicast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a multicast address at this layer. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a broadcast address at this layer. + + + + + + + + The total number of packets received via the interface which were discarded because of an unknown or unsupported protocol. + + + + + + + + The total number of discarded packets during transmission caused by transmit buffer overflow. + + + + + + + + The total number of discarded packets due to the station not being associated. + + + + + + + + The total number of frame-fragments transmitted out of the interface. + + + + + + + + The total number of transmitted data packets that did not receive an ACK when expected. + + + + + + + + The total number of received packets whose Sequence Control field indicates it is a duplicate. + + + + + + + + The total number of received packets longer than the maximum allowed packet length. + + + + + + + + The total number of received packets that did not contain enough bytes for the packet type. + + + + + + + + The total number of unicast ACKs received, with good Frame Check Sequence (FCS). + + + + + + + + + This object models an 802.11 connection from the perspective of a wireless access point. Each {{object}} entry is associated with a particular {{object|#.SSID}} interface instance via the {{param|SSIDReference}} parameter. + For enabled table entries, if {{param|SSIDReference}} is not a valid reference then the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + Note: The {{object}} table includes a unique key parameter that is a strong reference. If a strongly referenced object is deleted, the CPE will set the referencing parameter to {{empty}}. However, doing so under these circumstances might cause the updated {{object}} row to then violate the table's unique key constraint; if this occurs, the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}} and disable the offending {{object}} row. + + + + + + + + + + Enables or disables this access point. + + + + + + + + + Indicates the status of this access point. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + {{reference}} + + + + + + + + + + + + Indicates whether or not beacons include the SSID name. + + + + + + + + The maximum number of retransmission for a packet. This corresponds to IEEE 802.11 parameter ''dot11ShortRetryLimit''. + This parameter was DEPRECATED because it is really a {{object|#.Radio}} attribute. Use {{param|#.Radio.{i}.RetryLimit}}. + This parameter is OBSOLETED in 2.14. + + + + + + + + + + Indicates whether this access point supports WiFi Multimedia (WMM) Access Categories (AC). + + + + + + + + Indicates whether this access point supports WMM Unscheduled Automatic Power Save Delivery (U-APSD). + Note: U-APSD support implies WMM support. + + + + + + + + Whether WMM support is currently enabled. When enabled, this is indicated in beacon frames. + + + + + + + + Whether U-APSD support is currently enabled. When enabled, this is indicated in beacon frames. + Note: U-APSD can only be enabled if WMM is also enabled. + + + + + + + + {{numentries}} + + + + + + + + The maximum number of devices that can simultaneously be connected to the access point. + A value of 0 means that there is no specific limit. + This parameter has been DEPRECATED in favor of {{param|MaxAllowedAssociations}}. + This parameter is OBSOLETED in 2.14. + + + + + + + + + Enables or disables device isolation. + A value of {{true}} means that the devices connected to the Access Point are isolated from all other devices within the home network (as is typically the case for a Wireless Hotspot). + + + + + + + + Indicates whether or not MAC Address Control is enabled on this {{object|#}}. MAC Address Control limits client devices to those whose hardware addresses match the {{param|AllowedMACAddress}} list. + + + + + + + + Hardware addresses of client devices that are allowed to associate with this {{object|#}} if {{param|MACAddressControlEnabled}} is {{true}}. + + + + + + + + + Maximum number of associated devices allowed for this SSID. If the number is reached new device connections to this access point will be rejected. + If the number is changed to a value less than the actual number of associated devices, new device connections will be rejected until the number of devices is below this number. It is not expected that any connections are dropped. + If the parameter {{param|#.Radio.{i}.MaxSupportedAssociations}} exists, the value MUST be less than or equal to the maximum number specified in {{param|#.Radio.{i}.MaxSupportedAssociations}}. + + + + + + + + Reports information about the CPE operation mode (router or bridge/range extender). + + + + + + Indicates indicates operation as a router. + + + + + Indicates operation as a range extender or acess point in bridge mode. + + + + + + + + + + This object contains security related parameters that apply to a CPE acting as an Access Point {{bibref|802.11-2007}}. + + + + {{list}} Indicates which security modes this {{object|#}} instance is capable of supporting. + The {{enum|WPA3-Personal}} value is the same as WPA3-SAE. + The {{enum|WPA3-Personal-Transition}} value is the same as WPA2-PSK-WPA3-SAE. + + + + + + + + + + + + + + + + + + + + + + Indicates which security mode is enabled. + + + + + + + + + + The type of encryption in use. + When {{param|ModeEnabled}} is one of {{enum|WPA3-Personal|ModesSupported}}, {{enum|WPA3-Personal-Transition|ModesSupported}}, or {{enum|WPA3-Enterprise|ModesSupported}}, {{enum|TKIP}} is not valid, and should not be in the list. + + + + + + + + + + + + A WEP key expressed as a hexadecimal string. + {{param}} is used only if {{param|ModeEnabled}} is set to {{enum|WEP-64|ModeEnabled}} or {{enum|WEP-128|ModeEnabled}}. + A 5 byte {{param}} corresponds to security mode {{enum|WEP-64|ModeEnabled}} and a 13 byte {{param}} corresponds to security mode {{enum|WEP-128|ModeEnabled}}. + + + + + + A literal PreSharedKey (PSK) expressed as a hexadecimal string. + {{param}} is only used if {{param|ModeEnabled}} is set to {{enum|WPA-Personal|ModeEnabled}} or {{enum|WPA2-Personal|ModeEnabled}} or {{enum|WPA-WPA2-Personal|ModeEnabled}}. + If {{param|KeyPassphrase}} is written, then {{param}} is immediately generated. The Controller SHOULD NOT set both the {{param|KeyPassphrase}} and the {{param}} directly (the result of doing this is undefined). + + + + + + A passphrase from which the {{param|PreSharedKey}} is to be generated, for {{enum|WPA-Personal|ModeEnabled}} or {{enum|WPA2-Personal|ModeEnabled}} or {{enum|WPA-WPA2-Personal|ModeEnabled}} security modes. + If {{param}} is written, then {{param|PreSharedKey}} for WPA2 is immediately generated. The Controller SHOULD NOT set both the {{param}} and the {{param|PreSharedKey}} directly (the result of doing this is undefined). The key is generated as specified by WPA, which uses PBKDF2 from PKCS #5: Password-based Cryptography Specification Version 2.0 ({{bibref|RFC2898}}). + + + + + + The interval (expressed in {{units}}) in which the keys are re-generated. + This is applicable to WPA, WPA2 and Mixed (WPA-WPA2) modes in Personal or Enterprise mode (i.e. when {{param|ModeEnabled}} is set to a value other than {{enum|None|ModeEnabled}} or {{enum|WEP-64|ModeEnabled}} or {{enum|WEP-128|ModeEnabled}}. + + + + + + + + + + + A passphrase for {{enum|WPA3-Personal|ModeEnabled}} or {{enum|WPA3-Personal-Transition|ModeEnabled}} security modes. + NOTE: this parameter is for WPA3. WPA2 {{param|PreSharedKey}} is generated from {{param|KeyPassphrase}}. + + + + + + The IP Address of the RADIUS server used for WLAN security. {{param}} is only applicable when {{param|ModeEnabled}} is an Enterprise type (i.e. {{enum|WPA-Enterprise|ModeEnabled}}, {{enum|WPA2-Enterprise|ModeEnabled}}, {{enum|WPA3-Enterprise|ModeEnabled}}, or {{enum|WPA-WPA2-Enterprise|ModeEnabled}}). + + + + + + + + The IP Address of a secondary RADIUS server used for WLAN security. {{param}} is only applicable when {{param|ModeEnabled}} is an Enterprise type (i.e. {{enum|WPA-Enterprise|ModeEnabled}}, {{enum|WPA2-Enterprise|ModeEnabled}}, {{enum|WPA3-Enterprise|ModeEnabled}}, or {{enum|WPA-WPA2-Enterprise|ModeEnabled}}). + The client can forward requests to the secondary server in the event that the primary server is down or unreachable, or after a number of tries to the primary server fail, or in a round-robin fashion {{bibref|RFC2865}}. + + + + + + + + The port number of the RADIUS server used for WLAN security. {{param}} is only applicable when {{param|ModeEnabled}} is an Enterprise type (i.e. {{enum|WPA-Enterprise|ModeEnabled}}, {{enum|WPA2-Enterprise|ModeEnabled}}, {{enum|WPA3-Enterprise|ModeEnabled}}, or {{enum|WPA-WPA2-Enterprise|ModeEnabled}}). + + + + + + + + + The port number of the secondary RADIUS server used for WLAN security. {{param}} is only applicable when {{param|ModeEnabled}} is an Enterprise type (i.e. {{enum|WPA-Enterprise|ModeEnabled}}, {{enum|WPA2-Enterprise|ModeEnabled}}, {{enum|WPA3-Enterprise|ModeEnabled}}, or {{enum|WPA-WPA2-Enterprise|ModeEnabled}}). + If this parameter is not implemented, the secondary RADIUS server will use the same port number as the primary RADIUS server. + + + + + + + + + The secret used for handshaking with the RADIUS server {{bibref|RFC2865}}. + + + + + + The secret used for handshaking with the secondary RADIUS server {{bibref|RFC2865}}. + If this parameter is not implemented, the secondary RADIUS server will use the same secret as the primary RADIUS server. + + + + + + Management Frame Protection configuration applicable when {{param|ModeEnabled}} is set to {{enum|WPA2-Personal|ModeEnabled}}, {{enum|WPA2-Enterprise|ModeEnabled}}, {{enum|WPA3-Personal|ModeEnabled}}, or {{enum|WPA3-Enterprise|ModeEnabled}}. When in WPA3 modes, {{param}} MUST be set to {{enum|Required}}. + + + + + + + + + + + + + Reset this {{object|#}} instance's WiFi security settings to their factory default values. The affected settings include {{param|ModeEnabled}}, {{param|WEPKey}}, {{param|PreSharedKey}}, {{param|KeyPassphrase}}, {{param|SAEPassphrase}}, and {{param|#.WPS.PIN}} (if applicable). + If the command cannot be executed, the agent MUST reject the command. Possible failure reasons include a lack of default values or if {{param|ModeEnabled}} is an Enterprise type, i.e. {{enum|WPA-Enterprise|ModesSupported}}, {{enum|WPA2-Enterprise|ModesSupported}}, {{enum|WPA3-Enterprise|ModesSupported}}, or {{enum|WPA-WPA2-Enterprise|ModesSupported}}. + + + + + + This object contains parameters related to Wi-Fi Protected Setup for this access point (as specified in {{bibref|WPSv1.0}} or {bibref|WPSv2.0}}). + + + + Enables or disables WPS functionality for this access point. + + + + + + + + + WPS configuration methods supported by the device. {{enum}} + This parameter corresponds directly to the "Config Methods" attribute of {{bibref|WPS 2.0}}. + The {{enum|USBFlashDrive}} and {{enum|Ethernet}} are only applicable in WPS 1.0 and are deprecated in WPS 2.x. The {{enum|PhysicalPushButton}}, {{enum|VirtualPushButton}}, {{enum|PhysicalDisplay}} and {{enum|VirtualDisplay}} are applicable to WPS 2.x only. + + + + + + + + + + + + + + + + + + + + + + + {{list}} Indicates WPS configuration methods enabled on the device. + + + + + + + + + + + {{list}} Indicates the current status of WPS. If the device goes to {{enum|SetupLocked}} the WPS needs to be disabled and re-enabled to come out of state. + + + + + + + + + + + + + + The Wi-Fi Simple Configuration version supported by the device, a string of the form ''m.n'' where ''m'' is the major version and ''n'' is the minor version. + For example, a value of ''1.0'' denotes WSC 1.0 and a value of ''2.0'' denotes WSC 2.0. + + + + + + + + Represents the Device PIN used for PIN based pairing between WPS peers. This PIN is either a four digit number or an eight digit number. + {{hidden}} + + + + + + + A table of the devices currently associated with the access point. + + + + + + + Associated device type (Laptop, iPhone, Android, etc.). + + + + + + + + Configures the Air Time Fairness (ATF) setting of this individual associated device. Expressed as percentage of airtime, such that this associated device should not exceed this percentage. Setting this value overrides {{param|Device.WiFi.SSID.{i}.SetATF}} for this associated device. + + + + + + + + + + + The MAC address of an associated device. + + + + + + + + The operating standard that this associated device is connected with. + + + + + + {{bibref|802.11a-1999}} + + + + + {{bibref|802.11b-1999}} + + + + + {{bibref|802.11g-2003}} + + + + + {{bibref|802.11n-2009}} + + + + + {{bibref|802.11ac-2013}} + + + + + {{bibref|802.11ax}} + + + + + + + + Whether an associated device has authenticated ({{true}}) or not ({{false}}). + + + + + + + + The data transmit rate in {{units}} that was most recently used for transmission from the access point to the associated device. + + + + + + + + + + + The data transmit rate in {{units}} that was most recently used for transmission from the associated device to the access point. + + + + + + + + + + + Date and time in UTC when the device was associated + + + + + + + + An indicator of radio signal strength of the uplink from the associated device to the access point, measured in {{units}}, as an average of the last 100 packets received from the device. + + + + + + + + + + + An indicator of radio noise on the uplink from the associated device to the access point, measured in {{units}}, as an average of the last 100 packets received from the device (see ANPI definition in {{bibref|802.11-2012|Clause 10.11.9.4}}) + + + + + + + + + + + The number of {{units}} that had to be re-transmitted, from the last 100 packets sent to the associated device. Multiple re-transmissions of the same packet count as one. + + + + + + + + + + + Whether or not this node is currently present in the WiFi AccessPoint network. + The ability to list inactive nodes is OPTIONAL. If the CPE includes inactive nodes in this table, {{param}} MUST be set to {{false}} for each inactive node. The length of time an inactive node remains listed in this table is a local matter to the CPE. + + + + + + + + + These count bytes or packets sent to, or received from, this Associated Device, which is a WiFi station associated to this access point. Packet counters here count 802.11 WiFi frames. + The CPE MUST reset these {{object}} parameters (unless otherwise stated in individual object or parameter descriptions) either when the {{param|##.Status}} of the parent {{object|##}} object transitions from {{enum|Disabled|##.Status}} to {{enum|Enabled|##.Status}}, or when it transitions from {{enum|Enabled|##.Status}} to {{enum|Disabled|##.Status}}. + + + + The total number of bytes transmitted to the Associated Device, including framing characters. + + + + + + + + The total number of bytes received from the Associated Device, including framing characters. + + + + + + + + The total number of packets transmitted to the Associated Device. + + + + + + + + The total number of packets received from the Associated Device. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. These might be due to the number of retransmissions exceeding the retry limit, or from other causes. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of transmitted packets which were retransmissions. Two retransmissions of the same packet results in this counter incrementing by two. + + + + + + + + The number of packets that were not transmitted successfully due to the number of retransmission attempts exceeding an 802.11 retry limit. This parameter is based on ''dot11FailedCount'' from {{bibref|802.11-2012}}. + + + + + + + + The number of packets that were successfully transmitted after one or more retransmissions. This parameter is based on ''dot11RetryCount'' from {{bibref|802.11-2012}}. + + + + + + + + The number of packets that were successfully transmitted after more than one retransmission. This parameter is based on ''dot11MultipleRetryCount'' from {{bibref|802.11-2012}}. + + + + + + + + + This object contains parameters related to WiFi QoS for different 802.11e access categories (priorities). Access categories are: BE, BK, VI, and VO. These parameters can help control and monitor 802.11e Enhanced distributed channel access (EDCA). The size of this table is fixed, with four entries which are identified by the {{param|AccessCategory}} parameter as follows: + * BE (Best Effort) + * BK (Background) + * VI (Video) + * VO (Voice) + + + + + + + This identifies the access category. + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Arbitration Inter Frame Spacing (Number). This is the number of time slots in the arbitration interframe space. + + + + + + + + + + Exponent of Contention Window (Minimum). This encodes the values of CWMin as an exponent: CWMin = 2^ECWMin - 1. For example, if ECWMin is 8, then CWMin is 2^8 - 1, or 255, (expressed in {{units}}). + + + + + + + + + + + Exponent of Contention Window (Maximum). This encodes the values of CWMax as an exponent: CWMax = 2^ECWMax - 1. For example, if ECWMax is 8, then CWMax is 2^8 - 1, or 255, (expressed in {{units}}). + + + + + + + + + + + Maximum transmit opportunity, in multiples of {{units}}. A TXOP time interval of 0 means it is limited to a single MAC protocol data unit (MPDU). + + + + + + + + + + + Ack Policy, where False="Do Not Acknowledge" and True="Acknowledge" + + + + + + + + {{list}} Definition of the histogram intervals for counting the transmit queue length in packets. Each value indicates the maximum value of the interval. For example, "0,1,4,8," defines the five intervals: 0 packets in queue, 1 packet in queue, 2 to 4 packets in queue, 5 to 8 packets in queue, and 9 or more packets in queue. (No value after the last comma means no upper bound.) If this parameter is set to {{empty}}, no {{param|Stats.OutQLenHistogram}} stats will be collected. + + + + + + + + + The time between recording samples of the current transmit queue in {{units}}. + + + + + + + + + + + This object contains statistics for different 802.11e access categories (priorities). + Packet counters here count 802.11 WiFi frames. + If there are not separate stats for each access category, (e.g., 802.11e is not used and there is only one queue), then only access category 0 = BE applies (e.g., the statistics for the single queue are in access category 0 = BE). + The CPE MUST reset the Access Point's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the Access Point becomes operationally down due to a previous administrative down (i.e. the Access Point's Status parameter transitions to a Disabled state) or when the Access Point becomes administratively up (i.e. the Access Point's Enable parameter transitions from false to true). Administrative and operational status is discussed in {{bibref|TR-181i2|Section 4.2.2}}. + + + + The total number of {{units}} transmitted in this access category, including framing characters. + + + + + + + + + + The total number of {{units}} received in this access category, including framing characters. + + + + + + + + + + The total number of {{units}} transmitted in this access category. + + + + + + + + + + The total number of {{units}} received in this access category. + + + + + + + + + + The total number of outbound {{units}} in this access category that could not be transmitted because of errors. These might be due to the number of retransmissions exceeding the retry limit, or from other causes. + + + + + + + + + + The total number of inbound {{units}} in this access category that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + + + The total number of outbound {{units}} in this access category which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + + + The total number of inbound {{units}} in this access category which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + + + The total number of transmitted {{units}} in this access category which were retransmissions. Two retransmissions of the same packet results in this counter incrementing by two. + + + + + + + + + + {{list}} Histogram of the total length of the transmit queue of this access category in packets (1 packet, 2 packets, etc.) according to the intervals defined by {{param|#.OutQLenHistogramIntervals}}, with samples taken each {{param|#.OutQLenHistogramSampleInterval}}. Example: "12,5,1,0,2,0,0,1". + + + + + + + + + + This object contains the parameters related to RADIUS accounting functionality for the access point. + + + + Enables or disables accounting functionality for the access point. + + + + + + + + The IP Address of the RADIUS accounting server. + + + + + + + + The IP Address of a secondary RADIUS accounting server. + The client can forward requests to the secondary server in the event that the primary server is down or unreachable, or after a number of tries to the primary server fail, or in a round-robin fashion. {{bibref|RFC2866}} + + + + + + + + The port number of the RADIUS server used for accounting. The default port is 1813 as defined in {{bibref|RFC2866}}. + + + + + + + + + The port number of the secondary RADIUS server used for accounting. The default port is 1813 as defined in {{bibref|RFC2866}}. + If this parameter is not implemented, the secondary RADIUS server will use the same port number as the primary RADIUS server. + + + + + + + + + The secret used for handshaking with the RADIUS accounting server {{bibref|RFC2865}}. + + + + + + The secret used for handshaking with the secondary RADIUS accounting server {{bibref|RFC2865}}. + If this parameter is not implemented, the secondary RADIUS server will use the same secret as the primary RADIUS server. + + + + + + Specifies the default interim accounting interval in {{units}}, which is used for service accounting when the ''Acct-Interim-Interval'' attribute is not configured. {{bibref|RFC2869|Section 2.1}} + The value MUST NOT be smaller than 60. The value SHOULD NOT be smaller than 600, and careful consideration should be given to its impact on network traffic {{bibref|RFC2869|Section 5.16}}. + A value of 0 means no interim accounting messages are sent. + + + + + + + + + + + + + + This object models an 802.11 connection from the perspective of a wireless end point. Each {{object}} entry is associated with a particular {{object|#.SSID}} interface instance via the {{param|SSIDReference}} parameter, and an associated active {{object|Profile}} instance via the {{param|ProfileReference}} parameter. The active profile is responsible for specifying the actual SSID and security settings used by the end point. + For enabled table entries, if {{param|SSIDReference}} or {{param|ProfileReference}} is not a valid reference then the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + Note: The {{object}} table includes a unique key parameter that is a strong reference. If a strongly referenced object is deleted, the CPE will set the referencing parameter to {{empty}}. However, doing so under these circumstances might cause the updated {{object}} row to then violate the table's unique key constraint; if this occurs, the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}} and disable the offending {{object}} row. + + + + + + + + + + Enables or disables this end point. + + + + + + + + + Indicates the status of this end point. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + {{reference}} This is the currently active profile, which specifies the SSID and security settings to be used by the end point. + + + + + + + + + + + + {{reference}} {{param}} is determined based on the {{param|Profile.{i}.SSID}} within the associated {{param|ProfileReference}}) endpoint profile. {{param}} MUST be {{empty}} if {{param|ProfileReference}} is {{empty}} (i.e. only when an active profile is assigned can the associated SSID interface be determined). + + + + + + + + + + + + {{numentries}} + + + + + + + + + Throughput statistics for this end point. + + + + The data transmit rate in {{units}} that was most recently used for transmission from the access point to the end point device. + + + + + + + + + + + The data transmit rate in {{units}} that was most recently used for transmission from the end point to the access point device. + + + + + + + + + + + An indicator of radio signal strength of the downlink from the access point to the end point, measured in {{units}}, as an average of the last 100 packets received from the device. + + + + + + + + + + + The number of {{units}} that had to be re-transmitted, from the last 100 packets sent to the access point. Multiple re-transmissions of the same packet count as one. + + + + + + + + + + + + + This object contains security related parameters that apply to a WiFi end point {{bibref|802.11-2007}}. + + + + {{list}} Indicates which security modes this {{object|#}} instance is capable of supporting. + + + + + + + + + + + + + + + + + + + + + + + EndPoint Profile table. + + + + + + + + + + + + Enables or disables this Profile. + When there are multiple WiFi EndPoint Profiles, e.g. each instance supports a different SSID and/or different security configuration, this parameter can be used to control which of the instances are currently enabled. + + + + + + + + + Indicates the status of this Profile. {{enum}} + The {{enum|Active}} value is reserved for the instance that is actively connected. The {{enum|Available}} value represents an instance that is not currently active, but is also not disabled or in error. The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The profile identifier in use by the connection. The SSID is an identifier that is attached to packets sent over the wireless LAN that functions as an ID for joining a particular radio network (BSS). + + + + + + + + + + Location of the profile. This value serves as a reminder from the user, describing the location of the profile. For example: "Home", "Office", "Neighbor House", "Airport", etc. An empty string is also valid. + + + + + + + + The profile Priority defines one of the criteria used by the End Point to automatically select the "best" AP when several APs with known profiles are simultaneously available for association. + In this situation, the End Point has to select the AP with the higher priority in its profile. If there are several APs with the same priority, providing different SSID or the same SSID, then the wireless end point has to select the APs according to other criteria like signal quality, SNR, etc. + 0 is the highest priority. + + + + + + + + + + + + This object contains security related parameters that apply to a WiFi End Point profile {{bibref|802.11-2007}}. + + + + Indicates which security mode is enabled. + + + + + + + + + + A WEP key expressed as a hexadecimal string. + {{param}} is used only if {{param|ModeEnabled}} is set to {{enum|WEP-64|ModeEnabled}} or {{enum|WEP-128|ModeEnabled}}. + A 5 byte {{param}} corresponds to security mode {{enum|WEP-64|ModeEnabled}} and a 13 byte {{param}} corresponds to security mode {{enum|WEP-128|ModeEnabled}}. + + + + + + A literal PreSharedKey (PSK) expressed as a hexadecimal string. + {{param}} is only used if {{param|ModeEnabled}} is set to {{enum|WPA-Personal|ModeEnabled}} or {{enum|WPA2-Personal|ModeEnabled}} or {{enum|WPA-WPA2-Personal|ModeEnabled}}. + If {{param|KeyPassphrase}} is written, then {{param}} is immediately generated. The Controller SHOULD NOT set both the {{param|KeyPassphrase}} and the {{param}} directly (the result of doing this is undefined). + + + + + + A passphrase from which the {{param|PreSharedKey}} is to be generated, for {{enum|WPA-Personal|ModeEnabled}} or {{enum|WPA2-Personal|ModeEnabled}} or {{enum|WPA-WPA2-Personal|ModeEnabled}} security modes. + If {{param}} is written, then {{param|PreSharedKey}} is immediately generated. The Controller SHOULD NOT set both the {{param}} and the {{param|PreSharedKey}} directly (the result of doing this is undefined). The key is generated as specified by WPA, which uses PBKDF2 from PKCS #5: Password-based Cryptography Specification Version 2.0 {{bibref|RFC2898}}. + + + + + + A passphrase for {{enum|WPA3-Personal|ModeEnabled}} or {{enum|WPA3-Personal-Transition|ModeEnabled}} security modes. + NOTE: this parameter is for WPA3. WPA2 {{param|PreSharedKey}} is generated from {{param|KeyPassphrase}}. + + + + + + Management Frame Protection configuration applicable when {{param|ModeEnabled}} is set to {{enum|WPA2-Personal|ModeEnabled}}, {{enum|WPA2-Enterprise|ModeEnabled}}, {{enum|WPA3-Personal|ModeEnabled}}, or {{enum|WPA3-Enterprise|ModeEnabled}}. When in WPA3 modes, {{param}} MUST be set to {{enum|Required}}. + + + + + + + + + + + + + + This object contains parameters related to Wi-Fi Protected Setup {{bibref|WPSv1.0}} for this end point. + + + + Enables or disables WPS functionality for this end point. + + + + + + + + + WPS configuration methods supported by the device. {{enum}} + This parameter corresponds directly to the "Config Methods" attribute of {{bibref|WPS 2.0}}. + The {{enum|USBFlashDrive}} and {{enum|Ethernet}} are only applicable in WPS 1.0 and are deprecated in WPS 2.x. The {{enum|PhysicalPushButton}}, {{enum|VirtualPushButton}}, {{enum|PhysicalDisplay}} and {{enum|VirtualDisplay}} are applicable to WPS 2.x only. + + + + + + + + + + + + + + + + + + + + + + + {{list}} Indicates the WPS configuration methods enabled on the device. + + + + + + + + + + + {{list}} Indicates the current status of WPS in EndPoint. + + + + + + + + + + + + + The Wi-Fi Simple Configuration version supported by the device, a string of the form ''m.n'' where ''m'' is the major version and ''n'' is the minor version. + For example, a value of ''1.0'' denotes WSC 1.0 and a value of ''2.0'' denotes WSC 2.0. + + + + + + + + Represents the Device PIN used for PIN based pairing between WPS peers. This PIN is either a four digit number or an eight digit number. + {{hidden}} + + + + + + + This object contains parameters related to WiFi QoS for different 802.11e access categories (priorities). Access categories are: BE, BK, VI, and VO. These parameters can help control and monitor 802.11e Enhanced distributed channel access (EDCA). The size of this table is fixed, with four entries which are identified by the {{param|AccessCategory}} parameter as follows: + * BE (Best Effort) + * BK (Background) + * VI (Video) + * VO (Voice) + + + + + + + This identifies the access category. + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Arbitration Inter Frame Spacing (Number). This is the number of time slots in the arbitration interframe space. + + + + + + + + + + Exponent of Contention Window (Minimum). This encodes the values of CWMin as an exponent: CWMin = 2^ECWMin - 1. For example, if ECWMin is 8, then CWMin is 2^8 - 1, or 255, (expressed in {{units}}). + + + + + + + + + + + Exponent of Contention Window (Maximum). This encodes the values of CWMax as an exponent: CWMax = 2^ECWMax - 1. For example, if ECWMax is 8, then CWMax is 2^8 - 1, or 255, (expressed in {{units}}). + + + + + + + + + + + Maximum transmit opportunity, in multiples of {{units}}. A TXOP time interval of 0 means it is limited to a single MAC protocol data unit (MPDU). + + + + + + + + + + + Ack Policy, where False="Do Not Acknowledge" and True="Acknowledge" + + + + + + + + {{list}} Definition of the histogram intervals for counting the transmit queue length in packets. Each value indicates the maximum value of the interval. For example, "0,1,4,8," defines the five intervals: 0 packets in queue, 1 packet in queue, 2 to 4 packets in queue, 5 to 8 packets in queue, and 9 or more packets in queue. (No value after the last comma means no upper bound.) If this parameter is set to an empty string, no {{param|Stats.OutQLenHistogram}} stats will be collected. + + + + + + + + + The time between recording samples of the current transmit queue {{units}}. + + + + + + + + + + + This object contains statistics for different 802.11e access categories (priorities). + Packet counters here count 802.11 WiFi frames. + If there are not separate stats for each access category, (e.g., 802.11e is not used and there is only one queue), then only access category 0 = BE applies (e.g., the statistics for the single queue are in access category 0 = BE). + The CPE MUST reset the EndPoint's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the EndPoint becomes operationally down due to a previous administrative down (i.e. the EndPoint's Status parameter transitions to a Disabled state) or when the EndPoint becomes administratively up (i.e. the EndPoint's Enable parameter transitions from false to true). Administrative and operational status is discussed in {{bibref|TR-181i2|Section 4.2.2}}. + + + + The total number of {{units}} transmitted in this access category, including framing characters. + + + + + + + + + + The total number of {{units}} received in this access category, including framing characters. + + + + + + + + + + The total number of {{units}} transmitted in this access category. + + + + + + + + + + The total number of {{units}} received in this access category. + + + + + + + + + + The total number of outbound {{units}} in this access category that could not be transmitted because of errors. These might be due to the number of retransmissions exceeding the retry limit, or from other causes. + + + + + + + + + + The total number of inbound {{units}} in this access category that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + + + The total number of outbound {{units}} in this access category which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + + + The total number of inbound {{units}} in this access category which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + + + The total number of transmitted {{units}} in this access category which were retransmissions. Two retransmissions of the same packet results in this counter incrementing by two. + + + + + + + + + + {{list}} Histogram of the total length of the transmit queue of this access category in packets (1 packet, 2 packets, etc.) according to the intervals defined by {{param|#.OutQLenHistogramIntervals}}, with samples taken each {{param|#.OutQLenHistogramSampleInterval}}. Example: "12,5,1,0,2,0,0,1" + + + + + + + + + + Top level object for ZigBee capabilities based on the {{bibref|ZigBee2007}} specification. + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + ZigBee interface table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). This table models the ZigBee interface of a ZigBee end device, ZigBee router or ZigBee coordinator. + + + + + + + + + + + + + Enables or disables the interface. This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + The current operational state of the interface (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the interface as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the interface entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + + + + + + + + + + + + + The IEEE address assigned to this interface. A value of "FF:FF:FF:FF:FF:FF:FF:FF" indicates that this address is unknown. This parameter has the same value as the {{param|.ZigBee.ZDO.{i}.IEEEAddress}} parameter of the ZDO instance {{param|ZDOReference}} is pointing to. + + + + + + + + The ZigBee network address assigned to this interface. This parameter has the same value as the {{param|.ZigBee.ZDO.{i}.NetworkAddress}} parameter of the ZDO instance {{param|ZDOReference}} is pointing to. + + + + + + + + The ZigBee Device Object assigned to this interface. + + + + + + + + + + + {{numentries}} + + + + + + + + + Throughput statistics for this interface. + The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + The total number of {{units}} transmitted out of the interface, including framing characters. + + + + + + + + + + The total number of {{units}} received on the interface, including framing characters. + + + + + + + + + + The total number of {{units}} sent transmitted out of the interface. + + + + + + + + + + The total number of {{units}} received by the interface. + + + + + + + + + + The total number of {{units}} discarded by interface due to any error. + + + + + + + + + + The total number of {{units}} received that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + + + The total number of {{units}} requested for transmission which were not addressed to a multicast or broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + + + The total number of {{units}} received which were not addressed to a multicast or broadcast address at this layer. + + + + + + + + + + The total number of {{units}} requested for transmission which were chosen to be discarded even though no errors had been detected to prevent the {{units}} being transmitted. + + + + + + + + + + The total number of {{units}} received which were chosen to be discarded even though no errors had been detected to prevent their being delivered. + + + + + + + + + + The total number of {{units}} requested for transmission which were addressed to a multicast address at this layer, including those that were discarded or not sent. + + + + + + + + + + The total number of {{units}} received which were addressed to a multicast address at this layer and delivered by this layer to a higher layer. + + + + + + + + + + The total number of {{units}} requested for transmission which were addressed to a broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + + + The total number of {{units}} received which were addressed to a broadcast address at this layer and delivered by this layer to a higher layer. + + + + + + + + + + The total number of {{units}} received which were discarded because of an unknown or unsupported protocol. + + + + + + + + + + + This table provides information about other ZigBee devices that are directly accessible via this interface. + {{keys}} + It is possible that instances of this object have the same key value when the value of {{param|IEEEAddress}} parameter is "FF:FF:FF:FF:FF:FF:FF:FF" and the ZigBee Coordinators on two or more separate area networks assign the same value for the {{param|NetworkAddress}}. This is because the ZigBee specification describes only intra-area network topologies {{bibref|ZigBee2007|Section 1.1.4 Network Topology}}. As such if two or more {{object}} instances have the same key value the implemenation is undefined. + + + + + + + + The IEEE address assigned to this device. A value of "FF:FF:FF:FF:FF:FF:FF:FF" indicates that this address is unknown. + + + + + + + + The ZigBee network address assigned to this device. + + + + + + + + Whether or not this device is currently present in the ZigBee network as defined in {{bibref|ZigBee2007|section 2.4.4.1}}. + The ability to list inactive devices is OPTIONAL. If the CPE includes inactive devices in this table, {{param}} MUST be set to {{false}} for each inactive device. The length of time an inactive device remains listed in this table is a local matter to the CPE. + + + + + + + + The ZigBee Device Object assigned to this interface. + + + + + + + + + + + + ZigBee Device Object (ZDO) provides management capabilities of the ZigBee Application Support (APS) and Network (NWK) layers of a ZigBee Device as defined in {{bibref|ZigBee2007|section 2.5}}. + {{keys}} + It is possible that instances of this object have the same key value when the value of {{param|IEEEAddress}} parameter is "FF:FF:FF:FF:FF:FF:FF:FF" and the ZigBee Coordinators on two or more separate area networks assign the same value for the {{param|NetworkAddress}}. This is because the ZigBee specification describes only intra-area network topologies {{bibref|ZigBee2007|Section 1.1.4 Network Topology}}. As such if two or more {{object}} instances have the same key value the implemenation is undefined + + + + + + + + {{datatype|expand}} + + + + + + + + The IEEE address assigned to this device. A value of "FF:FF:FF:FF:FF:FF:FF:FF" indicates that this address is unknown. + + + + + + + + The ZigBee network address assigned to this device. + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + The {{object}} object describes the node capabilities of the ZigBee device as defined in {{bibref|ZigBee2007|section 2.3.2.3 Node Descriptor}}. + + + + The type of ZigBee device that is extracted from the Logical Type Field as defined in {{bibref|ZigBee2007|Table 2.29}}. + {{enum}} + + + + + + ZigBee Coordinator + + + + + ZigBee Router + + + + + ZigBee End Device + + + + + + + + When {{true}}, specifies that the {{object|#.ComplexDescriptor}} object is supported for this ZigBee device. + + + + + + + + When {{true}}, specifies that the {{object|#.UserDescriptor}} object is supported for this ZigBee device. + + + + + + + + Specifies the frequency bands that are supported by the underlying IEEE 802.15.4 radio utilized by the ZigBee device. + {{list}} {{enum}} + + + + + + + The 868-868.6 MHz Band + + + + + The 902-928 MHz Band + + + + + The 2400-2483.5 MHz Band + + + + + + + + Specifies the IEEE 802.15.4-2003 MAC sub-layer capabilities for this ZigBee device. + {{list}} {{enum}} + + + + + + + Alternate PAN Coordinator + + + + + Full Function Device + + + + + The current power source is mains power + + + + + The receiver is on when idle + + + + + Secure communication is enabled + + + + + + + + Specifies a manufacturer code that is allocated by the ZigBee Alliance, relating the manufacturer to the device. + + + + + + + + + + Specifies the maximum buffer size, in {{units}}, of the network sub-layer data unit (NSDU) for this ZigBee device. + + + + + + + + + + + Specifies the maximum size, in {{units}}, of the application sub-layer data unit (ASDU) that can be transferred to this ZigBee device in one single message transfer. + + + + + + + + + + + Specifies the maximum size, in {{units}}, of the application sub-layer data unit (ASDU) that can be transferred from this ZigBee device in one single message transfer. + + + + + + + + + + + Specifies the system server capabilities of this ZigBee device. + {{list}} {{enum}} + + + + + + + + + + + + + + + + Specifies the descriptor capabilities of this ZigBee device. + {{list}} {{enum}} + + + + + + + + + + + + + The {{object}} object describes the power capabilities of the ZigBee device as defined in {{bibref|ZigBee2007|section 2.3.2.4 Node Power Descriptor}}. + + + + Specifies the current sleep/power-saving mode of the ZigBee device. + {{enum}} + + + + + + + + + + + + Specifies the power sources available on this ZigBee device. + {{list}} {{enum}} + + + + + + + Constant (mains) power + + + + + Rechargable battery + + + + + Disposable battery + + + + + + + + The current power source field specifies the current power source being utilized by the node. + {{enum}} + + + + + + Constant (mains) power + + + + + Rechargable battery + + + + + Disposable battery + + + + + + + + Specifies the level of charge of the current power source. + {{enum}} + + + + + + Critical battery state + + + + + Battery state is 33 percent + + + + + Battery state is 66 percent + + + + + Battery state is 100 percent + + + + + + + + + The {{object}} object is an optional descriptor that describes user defined capabilities of the ZigBee device as defined in {{bibref|ZigBee2007|section 2.3.2.7 User Descriptor}}. The {{object}} object contains information that allows the user to identify the device using a user-friendly character string, such as "Bedroom TV" or "Stairs Light". + + + + When {{true}}, the User Descriptor recorded has been received from the target device. + + + + + + + + Specifies the information that allows the user to identify the ZigBee device using a user-friendly character string, such as "Bedroom TV" or "Stairs light". + + + + + + + + + + + The {{object}} object is an optional descriptor that describes extended capabilities of the ZigBee device as defined in {{bibref|ZigBee2007|section 2.3.2.6 Complex Descriptor}}. + + + + When {{true}}, the Complex Descriptor recorded has been received from the target device. + + + + + + + + Specifies the ISO 639-1 language code as defined in {{bibref|ISO639-1}}. + + + + + + + + Specifies the ISO 646 character set as defined in {{bibref|ISO646-1991}}. + + + + + + + + Specifies the name of the manufacturer of the ZigBee device. + + + + + + + + Specifies the name of the manufacturer's model of the ZigBee device. + + + + + + + + Specifies the manufacturer's serial number of the ZigBee device. + + + + + + + + Specifies the {{datatype}} through which more information relating to the ZigBee device can be obtained. + + + + + + + + The icon field contains an octet string which carries the data for an icon that can represent the ZigBee device. The format of the icon MUST be a 32-by-32-pixel PNG image. + + + + + + + + + + Specifies the {{datatype}} through which the icon for the ZigBee device can be obtained. + + + + + + + + + The {{object}} object provides the configuration capabilities needed to perform the Security Management functionality defined in {{bibref|ZigBee2007|section 4 Security Management}}. + + + + Specifies the IEEE address of a special device trusted by devices within a ZigBee network to distribute keys for the purpose of network and end-to-end application configuration management. + + + + + + + + Specifies how an outgoing frame is to be secured, how an incoming frame purportedly has been secured; it also indicates whether or not the payload is encrypted and to what extent data authenticity over the frame is provided, as reflected by the length of the message integrity code (MIC). + {{enum}} + + + + + + + + + + + + + + + + + The period of time, in {{units}}, that this ZigBee device will wait for an expected security protocol frame. + + + + + + + + + + + + The {{object}} object provides the configuration capabilities needed to by a ZigBee Device to operate within a ZigBee Area Network as defined in {{bibref|ZigBee2007|section 2.5.2.4 Network Manager}}. + + + + {{numentries}} + + + + + + + + + The {{object}} object provides the configuration capabilities needed to by a ZigBee Device to operate within a ZigBee Area Network as defined in {{bibref|ZigBee2007|section 2.5.2.4 Network Manager}}. + + + + + + + Neighbor of this ZigBee device. The value MUST be the path name of a row in the ZigBee.ZDO table. If the referenced row is deleted then this entry MUST be deleted. + + + + + + + + + + The LQI field specified link quality identification (LQI) for neighbor ZigBee device. + + + + + + + + + + The relationship between the neighbor and this device.{{enum}} + + + + + + + + + + + + + + An indication of whether the neighbor device is accepting join requests.{{enum}} + + + + + + + + + + + + The tree depth of the neighbor device. A value of 0x00 indicates that the device is the ZigBee coordinator for the network. + + + + + + + + + The {{object}} object describes the configuration capabilities related for remote management of the ZigBee Area Network as defined in {{bibref|ZigBee2007|section 2.5.2.6 Node Manager}}. + + + + {{numentries}} + + + + + + + + + The {{object}} object describes the route table as defined in {{bibref|ZigBee2007|table 3.51 Routing Table Entry}}. + + + + + + + The ZigBee network address of this route. + + + + + + + + + + + Specifies the network address of the next hop ZigBee device on the way to the destination ZigBee device. + + + + + + + + The status of the route entry. {{enum}} + + + + + + + + + + + + + + A flag indicating whether the device is a memory constrained concentrator. + + + + + + + + A flag indicating that the destination is a concentrator that issued a many to-one request. + + + + + + + + A flag indicating that a route record command frame should be sent to the destination prior to the next data packet. + + + + + + + + + The {{object}} object describes the configuration capabilities related to maintaining a ZigBee Device's Binding Table as defined in {{bibref|ZigBee2007|section 2.2.8.2 Binding}}. + + + + + + + Enables or disables the use of this binding on the device. + + + + + + + + {{datatype|expand}} + + + + + + + + Specifies the source endpoint used in this binding entry. + + + + + + + + + + Specifies the source address used in this binding entry. + + + + + + + + Specifies the cluster identifier used in this binding entry. + + + + + + + + + + Specifies the type of destination address used for this binding entry. {{enum}} + + + + + + + + + + + Specifies the destination endpoint for the binding entry. The value of this field is valid when the value of the {{param|DestinationAddressMode}} is {{enum|Endpoint|DestinationAddressMode}}. + + + + + + + + + + Specifies the IEEE destination address for this binding entry. The value of this field is valid when the value of the {{param|DestinationAddressMode}} is {{enum|Endpoint|DestinationAddressMode}}. + + + + + + + + Specifies the group destination address for this binding entry. The value of this field is valid when the value of the {{param|DestinationAddressMode}} is {{enum|Group|DestinationAddressMode}}. + + + + + + + + + The {{object}} object describes the configuration capabilities related to maintaining a ZigBee Device's Group Table as defined in {{bibref|ZigBee2007|section 2.5.2.7 Group Manager}}. + + + + + + + + + + Enables or disables the use of this group on the device. + + + + + + + + {{datatype|expand}} + + + + + + + + The Group Identifier for this object as defined in {{bibref|ZigBee2007|table 2.25 Group Table Entry Format}}. + + + + + + + + The list of application endpoints assigned as a member of this {{object}} object. + + + + + + + + + + + + + The {{object}} object describes the application endpoint as defined in {{bibref|ZigBee2007|section 2.1.2 Application Framework}}. + + + + + + + + + + Enables or disables the use of this application endpoint on the device. + + + + + + + + {{datatype|expand}} + + + + + + + + The Endpoint Identifier for this object as defined in {{bibref|ZigBee2007|section 2.1.2 Application Framework}}. + An {{object}} with an {{param}} value of 0 is designated as the device application: This is a special application that is responsible for device operation and contains logic to manage the device's networking and general maintenance features. + + + + + + + + + + + The {{object}} object contains the attributes of the Simple Descriptor of an application endpoint, as defined in {{bibref|ZigBee2007|section 2.3.2.5 Simple Descriptor}}. + + + + Specifies the application profile that is supported on this endpoint. Application profiles are agreements for messages, message formats, andprocessing actions that enable developers to create an interoperable, distributed application employing application entities that reside on separate ZigBee devices. These application profiles enable applications to send commands, request data, and process commands and requests as defined in {{bibref|ZigBee2007|section 2.1.2.1 Application Profiles}}. + + + + + + + + + + Application device identifier, as defined in {{bibref|ZigBee2007|section 2.3.2.5.3 Application Device Identifier Field}}. + + + + + + + + + + Application device version, as defined in {{bibref|ZigBee2007|section 2.3.2.5.4 Application Device Version Field}}. + + + + + + + + + + {{list}} Specifies the input cluster identifiers to be matched by the ZigBee coordinator by remote Zigbee device's output cluster list for this {{object}} object. + + + + + + + + + + + {{list}} Specifies the output cluster identifiers to be matched by the ZigBee coordinator by remote Zigbee device's input cluster list for this {{object}} object. + + + + + + + + + + + + This object is used for managing the discovery of ZigBee devices within a ZigBee Area Network. ZigBee Devices are discovered via the {{object|#.ZDO}} instance associated with the ZigBee Coordinator of an Area Network. + + + + {{numentries}} + + + + + + + + + This object specifies the ZigBee devices that are discovered by the {{param|Coordinator}}. + As the ZigBee specification does not provide a discovery protocol between the CWMP proxy and the ZigBee coordinator, the {{object}} object is provisioned and not discovered. + + + + + + + + + + Enables or disables discovery of the ZigBee devices in this {{object}}. + + + + + + + + The date and time when this {{object}} or its member devices (i.e., the devices with ZDOs listed in {{param|ZDOList}}) were updated due to a discovery operation. + + + + + + + + The status of the current discovery operation. + {{enum}} + + + + + + The discovery operation has not been executed and there are no valid discovery results available) + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The Fully Qualified Domain Name (FQDN) or IP address of the ZigBee Coordinator. The coordinator MAY be located within the CPE. In this scenario the Controller or CPE MAY use the value of "localhost". + + + + + + + + + + The ZDO object for this device that is used to discover the ZigBee capabilities of attached devices. + {{reference}} + + + + + + + + + + + The list of ZDO objects discovered in this Area Network by the ZigBee Coordinator. + {{reference}} + + + + + + + + + + + + + Layer 2 bridging configuration. Specifies bridges between different layer 2 interfaces. Bridges can be defined to include layer 2 filter criteria to selectively bridge traffic between interfaces. + This object can be used to configure both 802.1D {{bibref|802.1D-2004}} and 802.1Q {{bibref|802.1Q-2011}} bridges. + Not all 802.1D and 802.1Q features are modeled, and some additional features not present in either 802.1D or 802.1Q are modeled. + 802.1Q {{bibref|802.1Q-2011}} bridges incorporate 802.1Q {{bibref|802.1Q-2005}} customer and 802.1ad {{bibref|802.1ad-2005}} provider bridges. + + + + The maximum number of entries available in the {{object|.Bridging.Bridge}} table. + + + + + + + + The maximum number of 802.1D {{bibref|802.1D-2004}} entries available in the {{object|.Bridging.Bridge}} table. A positive value for this parameter implies support for 802.1D. + There is no guarantee that this many 802.1D Bridges can be configured. For example, the CPE might not be able simultaneously to support both 802.1D and 802.1Q Bridges. + + + + + + + + The maximum number of 802.1Q {{bibref|802.1Q-2011}} entries available in the {{object|.Bridging.Bridge}} table. A non-zero value for this parameter implies support for 802.1Q. + There is no guarantee that this many 802.1Q Bridges can be configured. For example, the CPE might not be able simultaneously to support both 802.1D and 802.1Q Bridges. + + + + + + + + The maximum number of 802.1Q {{bibref|802.1Q-2011}} VLANs supported per {{object|.Bridging.Bridge}} table entry. + + + + + + + + The maximum number of entries available in the {{object|.Bridging.ProviderBridge}} table. A non-zero value for this parameter implies support for 802.1Q Provider Bridges. + + + + + + + + {{numentries}} + + + + + + + + The maximum number of entries available in the {{object|Filter}} table. + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + Bridge table. + + + + + + + Enables or disables this {{object}}. + + + + + + + + + The status of this {{object}}. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Selects the standard supported by this Bridge table entry. + + + + + + {{bibref|802.1D-2004}} + + + + + {{bibref|802.1Q-2005}} + + + + + The {{object}} provides support for at least one feature defined in {{bibref|802.1Q-2011}} that was not defined in {{bibref|802.1Q-2005}}. + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + Bridge Port table, which MUST contain an entry for each bridge port (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). + There are two types of bridge ports: management (upward facing) and non-management (downward facing). This is determined by configuring the Boolean {{param|ManagementPort}} parameter. The CPE will automatically configure each management bridge port to appear in the interface stack above all non-management bridge ports that share the same {{object|##.Bridge}} instance. + + + + + + + + + + Enables or disables the bridge port. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + + The current operational state of the bridge port (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then this parameter SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then this parameter SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the bridge port as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the bridge port entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + When {{param|ManagementPort}} is set to {{true}} the CPE MUST set {{param}} to reference all non-management bridge ports that are within the same {{object|##.Bridge}} instance (and update {{param}} when subsequent non-management bridge ports are added or deleted on that ''Bridge''). The Controller SHOULD NOT set {{param}} in this case. + + + + + + + + + + + + + + If {{true}} then the entry is a management (upward facing) bridge port rather than a non-management (downward facing) bridge port. For a given {{object|##.Bridge}} instance, each management bridge port appears in the interface stack above all non-management bridge ports. The concept of Management Port is discussed in {{bibref|802.1Q-2005|chapter 8}}. + + + + + + + + + The type of bridge port as defined in 802.1Q {{bibref|802.1Q-2011|Section 17 IEEE8021BridgePortType}}. + Enumeration of: + {{enum}} + + + + + + Indicates this {{object}} is an S-TAG aware port of a {{object|##.ProviderBridge}}. + + + + + Indicates this {{object}} is an S-TAG aware port of a {{object|##.ProviderBridge}}. + + + + + Indicates this {{object}} is an C-TAG aware port of a {{object|##.ProviderBridge}}. + + + + + Indicates this {{object}} is an C-TAG aware port of a Customer Bridge. + + + + + Indicates this {{object}} is a VLAN unaware member of an {{enum|802.1D-2004|#.Standard}} bridge. + + + + + + + + Bridge Port Default User Priority. + + + + + + + + + + {{list}} List items represent user priority regeneration values for each ingress user priority on this Bridge Port. + + + + + + + + + + + + Bridge Port state as defined in 802.1D {{bibref|802.1D-2004}} and 802.1Q {{bibref|802.1Q-2011}}. + + + + + + + + + + + + + + + + PVID (or Port VID) is the VLAN ID with which an untagged or priority tagged frame that arrives on this port will be associated (i.e. default Port VLAN ID as defined in 802.1Q {{bibref|802.1Q-2011}}). + For an 802.1D Bridge {{bibref|802.1D-2004}}, this parameter MUST be ignored. + + + + + + + + + + + The Tag Protocol Identifier (TPID) assigned to this {{object}}. The TPID is an EtherType value used to identify the frame as a tagged frame. + Standard {{bibref|802.1Q-2011|Table 9.1}} TPID values are: + *S-TAG 0x88A8 = 34984 + *C-TAG 0x8100 = 33024 + Non-Standard TPID values are: + *S-TAG 0x9100 = 37120 + + + + + + + + + Indicates which types of frame arriving on this port will be admitted to the bridge (i.e. Bridge Port acceptable frame types as defined in 802.1Q {{bibref|802.1Q-2011}}). {{enum}} + For an 802.1D {{bibref|802.1D-2004}} Bridge, the value of this parameter MUST be {{enum|AdmitAll}}. + + + + + + + + + + + + + Enables or disables Ingress Filtering as defined in 802.1Q {{bibref|802.1Q-2011}}. If enabled ({{true}}), causes frames arriving on this port to be discarded if the port is not in the VLAN ID's member set (which is configured via the {{object|#.VLANPort}} table). + For an 802.1D {{bibref|802.1D-2004}} Bridge, the value of this parameter MUST be {{false}}. + + + + + + + + + This parameter controls the Service Access Priority selection function as described in {{bibref|802.1Q-2011|section 6.13}}. + The parameter is applicable to deployments of {{object|##.Bridge}} instances that are referenced by {{param|###.Bridging.ProviderBridge.{i}.SVLANcomponent}}. + + + + + + + + + {{list}} List items represent service access priority translation values for each ingress priority on this {{object}} as described in {{bibref|802.1Q-2011|section 6.13}}. + The parameter is applicable to deployments of {{object|##.Bridge}} instances that are referenced by {{param|###.Bridging.ProviderBridge.{i}.SVLANcomponent}}. + + + + + + + + + + + + Enables or disables priority tagging on this Bridge Port. + When {{true}}, egress frames leaving this interface will be priority tagged with the frame's associated priority value, which will either be derived directly from the ingress frame or else set via {{param|.QoS.Classification.{i}.EthernetPriorityMark}}. + When {{false}}, egress frames leaving this interface will be untagged. + The parameter does not affect reception of ingress frames. + Only applies on bridge ports that are untagged member of one or more VLAN's. + + + + + + + + + + Throughput statistics for this interface. + The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + The total number of bytes transmitted out of the interface, including framing characters. + + + + + + + + The total number of bytes received on the interface, including framing characters. + + + + + + + + The total number of packets transmitted out of the interface. + + + + + + + + The total number of packets received on the interface. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of packets requested for transmission which were not addressed to a multicast or broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were not addressed to a multicast or broadcast address at this layer. + + + + + + + + The total number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a multicast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a multicast address at this layer. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a broadcast address at this layer. + + + + + + + + The total number of packets received via the interface which were discarded because of an unknown or unsupported protocol. + + + + + + + + + {{object}} provides the management control for the processing of the Priority Code Point (PCP) field for the 802.1Q header as defined in {{bibref|802.1Q-2011|section 6.9.3 Priority Code Point Encoding}}. + The object is applicable to deployments of {{object|####.Bridging.ProviderBridge}} where the {{object|###.Bridge}} instance is referenced by {{param|####.Bridging.ProviderBridge.{i}.SVLANcomponent}} or {{param|####.Bridging.ProviderBridge.{i}.CVLANcomponents}} parameters. + + + + This parameter identifies the row in the {{param|PCPEncoding}} and {{param|PCPDecoding}} parameter lists. The value of 1 points to the 8P0D row in the corresponding parameter lists. + + + + + + + + + + + This parameter controls the processing of the drop_eligible field and is described in {{bibref|802.1Q-2011|section 6.9.3}}. + + + + + + + + + This parameter controls the processing of the encoding or decoding of the drop_eligible component in the PCP field and is described in {{bibref|802.1Q-2011|section 8.6.7}}. + + + + + + + + + This parameter provides the management control for the processing of the encoding of the Priority Code Point (PCP) field for the 802.1Q header as defined in {{bibref|802.1Q-2011|section 6.9.3 Priority Code Point Encoding}} and {{bibref|802.1Q-2011|Table 6-3}}. + The list is an ordered list that contains entries for the following 4 PCP Values: "8P0D","7P1D", "6P2D" "5P3D". Each list entry matches the following pattern: + {{pattern}} + The value of this parameter MUST use square brackets to protect comma separators within nested lists. For example, this corresponds to Table 6-3 (mentioned above): + : [7,7,6,6,5,5,4,4,3,3,2,2,1,1,0,0],[7,7,6,6,5,4,5,4,3,3,2,2,1,1,0,0],[7,7,6,6,5,4,5,4,3,2,3,2,1,1,0,0],[7,7,6,6,5,4,5,4,3,2,3,2,1,0,1,0] + + + + + + + + PCP for each priority and drop_eligible field (7, 7DE, 6, 6DE, ..., 1, 1DE, 0, 0DE) + + + + + + + + This parameter provides the management control for the processing of the decoding of the Priority Code Point (PCP) field for the 802.1Q header as defined in {{bibref|802.1Q-2011|section 6.9.3 Priority Code Point Encoding}} and {{bibref|802.1Q-2011|Table 6-4}}. + The list is an ordered list that contains entries for the following 4 PCP Values: "8P0D","7P1D", "6P2D" "5P3D". Each list entry matches the following pattern: + {{pattern}} + The value of this parameter MUST use square brackets to protect comma separators within nested lists. For example, this corresponds to Table 6-4 (mentioned above): + : [7,0,6,0,5,0,4,0,3,0,2,0,1,0,0,0],[7,0,6,0,4,0,4,1,3,0,2,0,1,0,0,0],[7,0,6,0,4,0,4,1,2,0,2,1,1,0,0,0],[7,0,6,0,4,0,4,1,2,0,2,1,0,0,0,1] + + + + + + + + Priority (0-7) and drop_eligible field (0-1) for each PCP value (7, 6, ..., 1, 0). + + + + + + + + + Bridge VLAN table. If this table is supported, if MUST contain an entry for each VLAN known to the Bridge. + This table only applies to an 802.1Q {{bibref|802.1Q-2011}} Bridge. + + + + + + + + + + Enables or disables this VLAN table entry. + + + + + + + + + {{datatype|expand}} + + + + + + + + Human-readable name for this VLAN table entry. + + + + + + + + + + + VLAN ID of the entry. + + + + + + + + + + + Bridge VLAN egress port and untagged port membership table. + This table only applies to an 802.1Q {{bibref|802.1Q-2011}} Bridge. + Note: The {{object}} table includes unique key parameters that are strong references. If a strongly referenced object is deleted, the CPE will set the referencing parameter to {{empty}}. However, doing so under these circumstances might cause the updated {{object}} row to then violate the table's unique key constraint; if this occurs, the CPE MUST disable the offending {{object}} row. + + + + + + + + + + + Enables or disables this {{object}} entry. + + + + + + + + + {{datatype|expand}} + + + + + + + + {{reference}} Specifies the VLAN for which port membership is expressed. + + + + + + + + + + + + {{reference}} Specifies the bridge port that is member of the VLAN. + + + + + + + + + + + + Enables or disables untagged port membership to the VLAN and determines whether egress frames for this VLAN are sent untagged or tagged. + + + + + + + + + Filter table containing classification filter entries, each of which expresses a set of classification criterion to classify ingress frames as member of a {{object|#.Bridge}} instance or a {{object|#.Bridge.{i}.VLAN}} instance. + Bridge VLAN classification only applies for 802.1Q {{bibref|802.1Q-2011}} Bridges. + For enabled table entries, if {{param|Bridge}} or {{param|Interface}} is {{empty}} then the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + Several of this object's parameters specify DHCP option values. Some cases are version neutral (the parameter can apply to both DHCPv4 and DHCPv6), but in other cases the representation of the option is different for DHCPv4 and DHCPv6, so it is necessary to define separate DHCPv4-specific and DHCPv6-specific parameters. Therefore, an instance of this object that uses DHCP option values as filter criteria will be associated with either DHCPv4 or DHCPv6, as indicated by the {{param|DHCPType}} parameter. + + + + + + + Enables or disables this Filter table entry. + + + + + + + + + {{datatype|expand}} + + + + + + + + The status of this Filter table entry. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + If the Bridge Port table is supported, but none of its entries correspond to {{param|Interface}}, or if such an entry exists but is disabled, {{param}} MUST NOT indicate {{enum|Enabled}}. + If the Bridge VLAN table is supported, but none of its entries correspond to {{param|VLANIDFilter}}, or if such an entry exists but is disabled, {{param}} MUST NOT indicate {{enum|Enabled}}. + + + + + + + + + + + + + + {{reference|a {{object|.Bridging.Bridge}} object in case of a 802.1D bridge or a {{object|.Bridging.Bridge.{i}.VLAN}} object in case of a 802.1Q bridge}} Note: either way, this identifies the bridge (because each bridge has a VLAN table). + Defines the Bridge or Bridge VLAN to which ingress frames will be classified based upon matches of the classification criteria. + + + + + + + + + + + + Position of the {{object}} entry in the order of precedence. A value of ''1'' indicates the first entry considered (highest precedence). For each ingress frame on the {{param|Interface}}, the highest ordered entry that matches the filter criteria is applied. All lower order entries are ignored. + When this value is modified, if the value matches that of an existing entry, the {{param}} value for the existing entry and all lower {{param}} entries is incremented (lowered in precedence) to ensure uniqueness of this value. A deletion causes {{param}} values to be compacted. When a value is changed, incrementing occurs before compaction. + The value of {{param}} on creation of a {{object}} table entry MUST be one greater than the largest current value (initially assigned the lowest precedence). + + + + + + + + + + {{reference}} This MUST relate to the same bridge as does {{param|Bridge}}. + Defines the Bridge Port on which ingress frame classification will occur. + + + + + + + + + + + + The DHCP protocol associated with the {{object}} instance. Affects only parameters that specify DHCP option values as filter criteria (all such parameter descriptions note this fact). {{enum}} + If {{param}} is {{enum|DHCPv4}}, then {{object}} parameters that are DHCPv6-specific are ignored. If {{param}} is {{enum|DHCPv6}}, then {{object}} parameters that are DHCPv4-specific are ignored. + + + + + + + + + + + + Classification criterion. + The 802.1Q {{bibref|802.1Q-2011}} VLAN ID. + For an 802.1D {{bibref|802.1D-2004}} Bridge, which has no concept of VLANs, the VLAN ID MUST be ''0''. + + + + + + + + + + + Classification criterion. + {{list}} Each list item represents an Ethertype value. + Note that neither 802.1D {{bibref|802.1D-2004}} nor 802.1Q {{bibref|802.1Q-2011}} support classification based on Ethertype. + + + + + + + + + + + + If {{false}}, on ingress to the interfaces associated with this Filter, the Bridge is defined to admit only those packets that match one of the {{param|EthertypeFilterList}} entries (in either the Ethernet or SNAP Type header). If the {{param|EthertypeFilterList}} is empty, no packets are admitted. + If {{true}}, on ingress to the interfaces associated with this Filter, the Bridge is defined to admit all packets except those packets that match one of the {{param|EthertypeFilterList}} entries (in either the Ethernet or SNAP Type header). If the {{param|EthertypeFilterList}} is empty, packets are admitted regardless of Ethertype. + Note that neither 802.1D {{bibref|802.1D-2004}} nor 802.1Q {{bibref|802.1Q-2011}} support classification based on Ethertype. + + + + + + + + + Classification criterion. + {{list|each representing a MAC Address}} + Each list entry MAY optionally specify a bit-mask, where matching of a packet's MAC address is only to be done for bit positions set to one in the mask. If no mask is specified, all bits of the MAC Address are to be used for matching. + For example, the list might be: ''01:02:03:04:05:06, 1:22:33:00:00:00/FF:FF:FF:00:00:00, 88:77:66:55:44:33'' + Note that neither 802.1D {{bibref|802.1D-2004}} nor 802.1Q {{bibref|802.1Q-2011}} support classification based on source MAC address. + + + + + + + + + + + + If {{false}}, on ingress to the interfaces associated with this Filter, the Bridge admits only those packets whose source MAC Address matches one of the {{param|SourceMACAddressFilterList}} entries. If the {{param|SourceMACAddressFilterList}} is empty, no packets are admitted. + If {{true}}, on ingress to the interfaces associated with this Filter, the Bridge admits all packets except those packets whose source MAC Address matches one of the {{param|SourceMACAddressFilterList}} entries. If the {{param|SourceMACAddressFilterList}} is empty, packets are admitted regardless of MAC address. + Note that neither 802.1D {{bibref|802.1D-2004}} nor 802.1Q {{bibref|802.1Q-2011}} support classification based on source MAC address. + + + + + + + + + Classification criterion. + {{list}} Each list item specifies a MAC Address. List items MAY optionally specify a bit-mask after the MAC Address, where matching of a packet's MAC address is only to be done for bit positions set to one in the mask. If no mask is specified, all bits of the MAC Address are to be used for matching. + For example, the list might be: ''01:02:03:04:05:06, 1:22:33:00:00:00/FF:FF:FF:00:00:00, 88:77:66:55:44:33'' + + + + + + + + + + + + If {{false}}, on ingress to the interfaces associated with this Filter, the Bridge admits only those packets whose destination MAC Address matches one of the {{param|DestMACAddressFilterList}} entries. If the {{param|DestMACAddressFilterList}} is empty, no packets are admitted. + If {{true}}, on ingress to the interfaces associated with this Filter, the Bridge admits all packets except those packets whose destination MAC Address matches one of the {{param|DestMACAddressFilterList}} entries. If the {{param|DestMACAddressFilterList}} is empty, packets are admitted regardless of MAC address. + + + + + + + + + Classification criterion. + A string used to identify one or more devices via DHCP for which MAC address filtering would subsequently apply. A device is considered matching if its DHCPv4 Vendor Class Identifier (Option 60 as defined in {{bibref|RFC2132}}) in the most recent DHCP lease acquisition or renewal matches the specified value according to the match criterion in {{param|SourceMACFromVendorClassIDMode}}. Case sensitive. + This is a normal string, e.g. "abc" is represented as "abc" and not "616263" hex. However, if the value includes non-printing characters then such characters have to be represented using XML escapes, e.g. #x0a for line-feed. + Note that neither 802.1D {{bibref|802.1D-2004}} nor 802.1Q {{bibref|802.1Q-2011}} support classification based on source MAC address. + Note: This parameter is DHCPv4-specific. It only applies when {{param|DHCPType}} is {{enum|DHCPv4|DHCPType}}. + + + + + + + + + + + Classification criterion. + A hexbinary string used to identify one or more devices via DHCP for which MAC address filtering would subsequently apply. A device is considered matching if the most recent DHCPv6 Vendor Class Identifier (Option 16 as defined in {{bibref|RFC3315}}) was equal to the specified value. The option value is binary, so an exact match is REQUIRED. + Note that neither 802.1D {{bibref|802.1D-2004}} nor 802.1Q {{bibref|802.1Q-2011}} support classification based on source MAC address. + Note: This parameter is DHCPv6-specific. It only applies when {{param|DHCPType}} is {{enum|DHCPv6|DHCPType}}. + + + + + + + + + + + If {{false}}, on ingress to the interfaces associated with this Filter, the Bridge admits only those packets whose source MAC Address matches that of a LAN device previously identified as described in {{param|SourceMACFromVendorClassIDFilter}} (for {{enum|DHCPv4|DHCPType}}) or {{param|SourceMACFromVendorClassIDFilterv6}} (for {{enum|DHCPv6|DHCPType}}). If this corresponding filter parameter is {{empty}}, no packets are admitted. + If {{true}}, on ingress to the interfaces associated with this Filter, the Bridge admits all packets except those packets whose source MAC Address matches that of a LAN device previously identified as described in {{param|SourceMACFromVendorClassIDFilter}} (for {{enum|DHCPv4|DHCPType}}) or {{param|SourceMACFromVendorClassIDFilterv6}} (for {{enum|DHCPv6|DHCPType}}). If this corresponding filter parameter is {{empty}}, packets are admitted regardless of MAC address. + Note that neither 802.1D {{bibref|802.1D-2004}} nor 802.1Q {{bibref|802.1Q-2011}} support classification based on source MAC address + + + + + + + + + {{param|SourceMACFromVendorClassIDFilter}} pattern match criterion. {{enum}} + For example, if {{param|SourceMACFromVendorClassIDFilter}} is "Example" then an Option 60 value of "Example device" will match with this parameter values of {{enum|Prefix}} or {{enum|Substring}}, but not with {{enum|Exact}} or {{enum|Suffix}}. + Note that neither 802.1D {{bibref|802.1D-2004}} nor 802.1Q {{bibref|802.1Q-2011}} support classification based on source MAC address. + + + + + + + + + + + + + + Classification criterion. + A string used to identify one or more devices via DHCP for which MAC address filtering would subsequently apply. A device is considered matching if its DHCPv4 Vendor Class Identifier (Option 60 as defined in {{bibref|RFC2132}}) in the most recent DHCP lease acquisition or renewal matches the specified value according to the match criterion in {{param|DestMACFromVendorClassIDMode}}. Case sensitive. + This is a normal string, e.g. "abc" is represented as "abc" and not say "616263" hex. However, if the value includes non-printing characters then such characters have to be represented using XML escapes, e.g. #x0a for line-feed. + Note: This parameter is DHCPv4-specific. It only applies when {{param|DHCPType}} is {{enum|DHCPv4|DHCPType}}. + + + + + + + + + + + Classification criterion. + A hexbinary string used to identify one or more devices via DHCP for which MAC address filtering would subsequently apply. A device is considered matching if the most recent DHCPv6 Vendor Class Identifier (Option 16 as defined in {{bibref|RFC3315}}) was equal to the specified value. The option value is binary, so an exact match is REQUIRED. + Note: This parameter is DHCPv6-specific. It only applies when {{param|DHCPType}} is {{enum|DHCPv6|DHCPType}}. + + + + + + + + + + + If {{false}}, on ingress to the interfaces associated with this Filter, the Bridge admits only those packets whose destination MAC Address matches that of a LAN device previously identified as described in {{param|DestMACFromVendorClassIDFilter}} (for {{enum|DHCPv4|DHCPType}}) or {{param|DestMACFromVendorClassIDFilterv6}} (for {{enum|DHCPv6|DHCPType}}). If this corresponding filter parameter is {{empty}}, no packets are admitted. + If {{true}}, on ingress to the interfaces associated with this Filter, the Bridge admits all packets except those packets whose destination MAC Address matches that of a LAN device previously identified as described in {{param|DestMACFromVendorClassIDFilter}} (for {{enum|DHCPv4|DHCPType}}) or {{param|DestMACFromVendorClassIDFilterv6}} (for {{enum|DHCPv6|DHCPType}}). If this corresponding filter parameter is {{empty}}, packets are admitted regardless of MAC address. + + + + + + + + + {{param|DestMACFromVendorClassIDFilter}} pattern match criterion. {{enum}} + For example, if {{param|DestMACFromVendorClassIDFilter}} is ''Example'' then an Option 60 value of "Example device" will match with {{param}} values of {{enum|Prefix}} or {{enum|Substring}}, but not with {{enum|Exact}} or {{enum|Suffix}}. + + + + + + + + + + + + + + Classification criterion. + A hexbinary string used to identify one or more devices via DHCP for which MAC address filtering would subsequently apply. A device is considered matching if the most recent DHCP Client Identifier (via DHCP lease acquisition or renewal for DHCPv4) was equal to the specified value. The DHCP Client Identifier is Option 61 (as defined in {{bibref|RFC2132}}) for {{enum|DHCPv4|DHCPType}}, or is Option 1 (as defined in {{bibref|RFC3315}}) for {{enum|DHCPv6|DHCPType}}. The option value is binary, so an exact match is REQUIRED. + Note that neither 802.1D {{bibref|802.1D-2004}} nor 802.1Q {{bibref|802.1Q-2011}} support classification based on source MAC address. + Note: DHCPv4 Option values are limited to a length of 255, while DHCPv6 Option values can have a maximum length of 65535. + Note: This parameter is DHCP version neutral. The specific DHCP version in use with this parameter is indicated by {{param|DHCPType}}. + Note: DHCPv6 Option 1 (Client Identifier) is sometimes referred to as ''DUID''. + + + + + + + + + + + If {{false}}, on ingress to the interfaces associated with this Filter, the Bridge admits only those packets whose source MAC Address matches that of a LAN device previously identified as described in {{param|SourceMACFromClientIDFilter}}. If {{param|SourceMACFromClientIDFilter}} is {{empty}}, no packets are admitted. + If {{true}}, on ingress to the interfaces associated with this Filter, the Bridge admits all packets except those packets whose source MAC Address matches that of a LAN device previously identified as described in {{param|SourceMACFromClientIDFilter}}. If the {{param|SourceMACFromClientIDFilter}} is {{empty}}, packets are admitted regardless of MAC address. + Note that neither 802.1D {{bibref|802.1D-2004}} nor 802.1Q {{bibref|802.1Q-2011}} support classification based on source MAC address. + + + + + + + + + Classification criterion. + A hexbinary string used to identify one or more devices via DHCP for which MAC address filtering would subsequently apply. A device is considered matching if the most recent DHCP Client Identifier (via DHCP lease acquisition or renewal for DHCPv4) was equal to the specified value. The DHCP Client Identifier is Option 61 (as defined in {{bibref|RFC2132}}) for {{enum|DHCPv4|DHCPType}}, or is Option 1 (as defined in {{bibref|RFC3315}}) for {{enum|DHCPv6|DHCPType}}. The option value is binary, so an exact match is REQUIRED. + Note: DHCPv4 Option values are limited to a length of 255, while DHCPv6 Option values can have a maximum length of 65535. + Note: This parameter is DHCP version neutral. The specific DHCP version in use with this parameter is indicated by {{param|DHCPType}}. + Note: DHCPv6 Option 1 (Client Identifier) is sometimes referred to as ''DUID''. + + + + + + + + + + + If {{false}}, on ingress to the interfaces associated with this Filter, the Bridge admits only those packets whose destination MAC Address matches that of a LAN device previously identified as described in {{param|DestMACFromClientIDFilter}}. If {{param|DestMACFromClientIDFilter}} is {{empty}}, no packets are admitted. + If {{true}}, on ingress to the interfaces associated with this Filter, the Bridge admits all packets except those packets whose destination MAC Address matches that of a LAN device previously identified as described in {{param|DestMACFromClientIDFilter}}. If the {{param|DestMACFromClientIDFilter}} is {{empty}}, packets are admitted regardless of MAC address. + + + + + + + + + Classification criterion. + A hexbinary string used to identify one or more devices via DHCP for which MAC address filtering would subsequently apply. A device is considered matching if the most recent DHCP User Class Identifier (via DHCP lease acquisition or renewal for DHCPv4) was equal to the specified value. The DHCP User Class Identifier is Option 77 (as defined in {{bibref|RFC3004}}) for {{enum|DHCPv4|DHCPType}}, or is Option 15 (as defined in {{bibref|RFC3315}}) for {{enum|DHCPv6|DHCPType}}. The option value is binary, so an exact match is REQUIRED. + Note that neither 802.1D {{bibref|802.1D-2004}} nor 802.1Q {{bibref|802.1Q-2011}} support classification based on source MAC address. + Note: DHCPv4 Option values are limited to a length of 255, while DHCPv6 Option values can have a maximum length of 65535. + Note: This parameter is DHCP version neutral. The specific DHCP version in use with this parameter is indicated by {{param|DHCPType}}. + + + + + + + + + + + If {{false}}, on ingress to the interfaces associated with this Filter, the Bridge admits only those packets whose source MAC Address matches that of a LAN device previously identified as described in {{param|SourceMACFromUserClassIDFilter}}. If {{param|SourceMACFromUserClassIDFilter}} is {{empty}}, no packets are admitted. + If {{true}}, on ingress to the interfaces associated with this Filter, the Bridge admits all packets except those packets whose source MAC Address matches that of a LAN device previously identified as described in {{param|SourceMACFromUserClassIDFilter}}. If the {{param|SourceMACFromUserClassIDFilter}} is {{empty}}, packets are admitted regardless of MAC address. + Note that neither 802.1D {{bibref|802.1D-2004}} nor 802.1Q {{bibref|802.1Q-2011}} support classification based on source MAC address. + + + + + + + + + Classification criterion. + A hexbinary string used to identify one or more devices via DHCP for which MAC address filtering would subsequently apply. A device is considered matching if the most recent DHCP User Class Identifier (via DHCP lease acquisition or renewal for DHCPv4) was equal to the specified value. The DHCP User Class Identifier is Option 77 (as defined in {{bibref|RFC3004}}) for {{enum|DHCPv4|DHCPType}}, or is Option 15 (as defined in {{bibref|RFC3315}}) for {{enum|DHCPv6|DHCPType}}. The option value is binary, so an exact match is REQUIRED. + Note: DHCPv4 Option values are limited to a length of 255, while DHCPv6 Option values can have a maximum length of 65535. + Note: This parameter is DHCP version neutral. The specific DHCP version in use with this parameter is indicated by {{param|DHCPType}}. + + + + + + + + + + + If {{false}}, on ingress to the interfaces associated with this Filter, the Bridge admits only those packets whose destination MAC Address matches that of a LAN device previously identified as described in {{param|DestMACFromUserClassIDFilter}}. If {{param|DestMACFromUserClassIDFilter}} is {{empty}}, no packets are admitted. + If {{true}}, on ingress to the interfaces associated with this Filter, the Bridge admits all packets except those packets whose destination MAC Address matches that of a LAN device previously identified as described in {{param|DestMACFromUserClassIDFilter}}. If the {{param|DestMACFromUserClassIDFilter}} is {{empty}}, packets are admitted regardless of MAC address. + + + + + + + + + Classification criterion. + Destination IP address. {{empty}} indicates this criterion is not used for classification. + + + + + + + + + Destination IP address mask, represented as an IP routing prefix using CIDR notation [RFC4632]. The IP address part MUST be {{empty}} (and, if specified, MUST be ignored). + + + + + + + + + If {{false}}, the class includes only those packets that match the (masked) DestIP entry, if specified. + If {{true}}, the class includes all packets except those that match the (masked) DestIP entry, if specified. + + + + + + + + + Classification criterion. + Source IP address. {{empty}} indicates this criterion is not used for classification. + + + + + + + + + Source IP address mask, represented as an IP routing prefix using CIDR notation [RFC4632]. The IP address part MUST be an empty string (and, if specified, MUST be ignored). + + + + + + + + + If {{false}}, the class includes only those packets that match the (masked) {{param|SourceIP}} entry, if specified. + If {{true}}, the class includes all packets except those that match the (masked) {{param|SourceIP}} entry, if specified. + + + + + + + + + Classification criterion. + Protocol number. A value of -1 indicates this criterion is not used for classification. + + + + + + + + + + + If {{false}}, the class includes only those packets that match the {{param|Protocol}} entry, if specified. + If {{true}}, the class includes all packets except those that match the {{param|Protocol}} entry, if specified. + + + + + + + + + Classification criterion. + Destination port number. A value of -1 indicates this criterion is not used for classification. + + + + + + + + + + + Classification criterion. + If specified, indicates the classification criterion is to include the port range from {{param|DestPort}} through {{param}} (inclusive). If specified, {{param}} MUST be greater than or equal to {{param|DestPort}}. + A value of -1 indicates that no port range is specified. + + + + + + + + + + + If {{false}}, the class includes only those packets that match the {{param|DestPort}} entry (or port range), if specified. + If {{true}}, the class includes all packets except those that match the {{param|DestPort}} entry (or port range), if specified. + + + + + + + + + Classification criterion. + Source port number. A value of -1 indicates this criterion is not used for classification. + + + + + + + + + + + Classification criterion. + If specified, indicates the classification criterion is to include the port range from {{param|SourcePort}} through {{param}} (inclusive). If specified, {{param}} MUST be greater than or equal to SourcePort. + A value of -1 indicates that no port range is specified. + + + + + + + + + + + If {{false}}, the class includes only those packets that match the {{param|SourcePort}} entry (or port range), if specified. + If {{true}}, the class includes all packets except those that match the {{param|SourcePort}} entry (or port range), if specified. + + + + + + + + + + Provider Bridge table. + A Provider Bridge is described in {{bibref|802.1Q-2011|section 5.10 Provider Bridge conformance}} as an entity that is comprised of one S-VLAN component and zero or more C-VLAN components. S-VLAN and C-VLAN components are modelled as instances of {{object|#.Bridge}} objects. + When {{param|Type}} is configured with value of {{enum|PE|Type}} VLAN tags from the S-VLAN component (outer of 2 VLAN tags) are stacked on top of the VLAN tag from the C-VLAN component (inner of 2 VLAN tags). + When {{param|Type}} is configured with value of {{enum|S-VLAN|Type}} only VLAN tags from the S-VLAN component are utilized. + + + + + + + Enables or disables this {{object}}. + + + + + + + + + The status of this {{object}}. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. For example when the {{param|Type}} is configured with value of {{enum|PE|Type}} but {{param|CVLANcomponents}} is {{empty}}. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Selects the standard supported by this {{object}} table entry. + + + + + + Provider Bridge conforming to {{bibref|802.1Q-2011|5.10.1 S-VLAN Bridge conformance}} + + + + + Provider Bridge conforming to {{bibref|802.1Q-2011|5.10.2 Provider Edge Bridge conformance}} + + + + + + + + {{reference|a {{object|#.Bridge}} instance that specifies the S-VLAN component for the {{object}}}} + + + + + + + + + + + + {{list}} {{reference|a {{object|#.Bridge}} instance that specifies a C-VLAN component for the {{object}}}} + + + + + + + + + + + + + + Point-to-Point Protocol {{bibref|RFC1661}}. This object contains the {{object|Interface}} table. + + + + {{numentries}} + + + + + + + + The Network Control Protocols (NCPs) that are supported by the device. {{enum}} + Note that {{enum|IPv6CP}} is an IPv6 capability. + + + + + + + AppleTalk Control Protocol {{bibref|RFC1378}} + + + + + {{bibref|RFC1332}} + + + + + {{bibref|RFC1552}} + + + + + {{bibref|RFC2097}} + + + + + {{bibref|RFC5072}} + + + + + + + + + PPP interface table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). + + + + + + + + + + Enables or disables the interface. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + + The current operational state of the interface (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the interface as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the interface entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + + + + + + + + + + + + + + Current status of the connection. + + + + + + + + + + + + + + + + The cause of failure for the last connection setup attempt. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The time in {{units}} since the establishment of the connection after which connection termination is automatically initiated by the CPE. This occurs irrespective of whether the connection is being used or not. A value of 0 (zero) indicates that the connection is not to be shut down automatically. + + + + + + + + + + The time in {{units}} that if the connection remains idle, the CPE automatically terminates the connection. A value of 0 (zero) indicates that the connection is not to be shut down automatically. + + + + + + + + + + Time in {{units}} the {{param|ConnectionStatus}} remains in the {{enum|PendingDisconnect|ConnectionStatus}} state before transitioning to disconnecting state to drop the connection. + + + + + + + + + + Username to be used for authentication. + + + + + + + + + + Password to be used for authentication. + + + + + + Describes the PPP encryption protocol. + + + + + + + + + + + Describes the PPP compression protocol. + + + + + + + {{bibref|RFC1332}} + + + + + {{bibref|RFC1974}} + + + + + + + + Describes the PPP authentication protocol. + + + + + + + + + + + + The maximum allowed size of frames sent from the remote peer. + + + + + + + + + + + The current MRU in use over this connection. + + + + + + + + + + Trigger used to establish the PPP connection. {{enum}} + Note that the reason for a PPP connection becoming disconnected to begin with might be either external to the CPE, such as termination by the BRAS or momentary disconnection of the physical interface, or internal to the CPE, such as use of the {{param|IdleDisconnectTime}} and/or {{param|AutoDisconnectTime}} parameters in this object. + + + + + + If this PPP connection is disconnected for any reason, it is to remain disconnected until the CPE has one or more packets to communicate over this connection, at which time the CPE automatically attempts to reestablish the connection. + + + + + If this PPP connection is disconnected for any reason, the CPE automatically attempts to reestablish the connection (and continues to attempt to reestablish the connection as long it remains disconnected). + + + + + If this PPP connection is disconnected for any reason, it is to remain disconnected until the user of the CPE explicitly instructs the CPE to reestablish the connection. + + + + + + + + PPP LCP Echo period in {{units}}. + + + + + + + + + + Number of PPP LCP Echo retries within an echo period. + + + + + + + + Enables or disables IPCP ({{bibref|RFC1332}}) on this interface. If this parameter is present, {{enum|IPCP|#.SupportedNCPs}} MUST be included in {{param|#.SupportedNCPs}}. + + + + + + + + Enables or disables IPv6CP ({{bibref|RFC5072}}) on this interface. If this parameter is present, {{enum|IPv6CP|#.SupportedNCPs}} MUST be included in {{param|#.SupportedNCPs}}. + + + + + + + + On a reset the device MUST tear down the existing PPP connection represented by this object and establish a new one. + The device MAY delay resetting the connection in order to avoid interruption of a user service such as an ongoing voice call. + Reset on a disabled interface is a no-op (not an error). + + + + + + PPPoE object that functionally groups PPPoE related parameters. + PPPoE is only applicable when the lower layer provides Ethernet frames, e.g. ATM with EoA, PTM, or anything else that supports an Ethernet MAC. + + + + Represents the PPPoE Session ID. + + + + + + + + + + PPPoE Access Concentrator. + + + + + + + + + + PPPoE Service Name. + + + + + + + + + + + IP Control Protocol (IPCP) client object for this PPP interface {{bibref|RFC1332}}. {{object}} only applies to IPv4. + + + + The local IPv4 address for this connection received via IPCP. + + + + + + + + + The remote IPv4 address for this connection received via IPCP. + + + + + + + + + {{list}} Items represent DNS Server IPv4 address(es) received via IPCP {{bibref|RFC1877}}. + + + + + + + + + + If {{false}}, the PPP Interface retrieved information is configured on the IP Interface stacked on top of this PPP Interface. + If {{true}}, the PPP Interface retrieved information is propagated to the parameters in the referenced {{param|PassthroughDHCPPool}} object, replacing any existing configuration (including ''MinAddress'', ''MaxAddress'', ''SubnetMask'', ''IPRouters'', and ''DNSServers''). + + + + + + + + + {{reference}}When {{param}} is set to {{empty}}, {{param|PassthroughEnable}} MUST be set to {{false}} (i.e. passthrough can not be enabled without a pool reference specified). + + + + + + + + + + + + + IPv6 Control Protocol (IPv6CP) client object for this PPP interface {{bibref|RFC5072}}. {{object}} only applies to IPv6. + + + + The interface identifier for the local end of the PPP link, negotiated using the IPv6CP ''Interface-Identifier'' option {{bibref|RFC5072|Section 4.1}}. + The identifier is represented as the rightmost 64 bits of an IPv6 address (the leftmost 64 bits MUST be zero and MUST be ignored by the recipient). + + + + + + + + The interface identifier for the remote end of the PPP link, negotiated using the IPv6CP ''Interface-Identifier'' option {{bibref|RFC5072|Section 4.1}}. + The identifier is represented as the rightmost 64 bits of an IPv6 address (the leftmost 64 bits MUST be zero and MUST be ignored by the recipient). + + + + + + + + + Throughput statistics for this interface. + The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + The total number of bytes transmitted out of the interface, including framing characters. + + + + + + + + The total number of bytes received on the interface, including framing characters. + + + + + + + + The total number of packets transmitted out of the interface. + + + + + + + + The total number of packets received on the interface. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of packets requested for transmission which were not addressed to a multicast or broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were not addressed to a multicast or broadcast address at this layer. + + + + + + + + The total number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a multicast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a multicast address at this layer. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a broadcast address at this layer. + + + + + + + + The total number of packets received via the interface which were discarded because of an unknown or unsupported protocol. + + + + + + + + + PPPoA object that functionally groups PPPoA related parameters. + This object is OBSOLETED because it contains no standard parameters and its existence causes confusion. + + + + + IP object that contains the {{object|Interface}}, {{object|ActivePort}}, and {{object|Diagnostics}} objects. + + + + Indicates whether the device is IPv4 capable. + + + + + + + + Enables or disables the IPv4 stack, and so the use of IPv4 on the device. This affects only layer 3 and above. + When {{false}}, IP interfaces that had been operationally up and passing IPv4 packets will now no longer be able to do so, and will be operationally down (unless also attached to an enabled IPv6 stack). + + + + + + + + Indicates the status of the IPv4 stack. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + Indicates whether the device is IPv6 capable. + Note: If {{false}}, it is expected that IPv6-related parameters, enumeration values, etc will not be implemented by the device. + + + + + + + + Enables or disables the IPv6 stack, and so the use of IPv6 on the device. This affects only layer 3 and above. + When {{false}}, IP interfaces that had been operationally up and passing IPv6 packets will now no longer be able to do so, and will be operationally down (unless also attached to an enabled IPv4 stack). + + + + + + + + Indicates the status of the IPv6 stack. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + The ULA /48 prefix {{bibref|RFC4193|Section 3}}. + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + IP interface table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). This table models the layer 3 IP interface. + Each IP interface can be attached to the IPv4 and/or IPv6 stack. The interface's IP addresses and prefixes are listed in the {{object|IPv4Address}}, {{object|IPv6Address}} and {{object|IPv6Prefix}} tables. + Note that support for manipulating {{param|Loopback}} interfaces is OPTIONAL, so the implementation MAY choose not to create (or allow the Controller to create) {{object}} instances of type {{enum|Loopback|Type}}. + When the Controller administratively disables the interface, i.e. sets {{param|Enable}} to {{false}}, the interface's automatically-assigned IP addresses and prefixes MAY be retained. When the Controller administratively enables the interface, i.e. sets {{param|Enable}} to {{true}}, these IP addresses and prefixes MUST be refreshed. It's up to the implementation to decide exactly what this means: it SHOULD take all reasonable steps to refresh everything but if it is unable, for example, to refresh a prefix that still has a significant lifetime, it might well choose to retain rather than discard it. + Any {{enum|Tunneled|Type}} IP interface instances instantiated by the CPE MUST NOT have any statistics, writable parameters, IP addresses or IPv6 prefixes. Any read-only parameters, e.g. {{param|Status}}, MUST return the same information as for the corresponding {{enum|Tunnel|Type}} interface. The reason for these rules is that {{enum|Tunneled|Type}} IP interfaces exist only in order to be the targets of references (within the data model) and do not model any concepts over and above those already modeled by the {{enum|Tunnel|Type}} IP interfaces. + Note that {{enum|Tunnel|Type}} and {{enum|Tunneled|Type}} IP interfaces are part of a legacy mechanism that is only used for {{object|##.IPv6rd}}, {{object|##.DSLite}} and {{object|##.IPsec}} tunnels and MUST NOT be used in any other context. For all other tunneling mechanisms {{enum|Normal|Type}} IP interfaces are stacked above technology-specific Tunnel Interfaces, e.g. above {{object|##.GRE.Tunnel.{i}.Interface}} or {{object|##.MAP.Domain.{i}.Interface}} objects. + + + + + + + + + + Enables or disables the interface (regardless of {{param|IPv4Enable}} and {{param|IPv6Enable}}). + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + + If set to {{true}}, attaches this interface to the IPv4 stack. If set to {{false}}, detaches this interface from the IPv4 stack. + Once detached from the IPv4 stack, the interface will now no longer be able to pass IPv4 packets, and will be operationally down (unless also attached to an enabled IPv6 stack). + For an IPv4 capable device, if {{param}} is not present this interface SHOULD be permanently attached to the IPv4 stack. + Note that {{param}} is independent of {{param|Enable}}, and that to administratively enable an interface for IPv4 it is necessary for both {{param|Enable}} and {{param}} to be {{true}}. + + + + + + + + If set to {{true}}, attaches this interface to the IPv6 stack. If set to {{false}}, detaches this interface from the IPv6 stack. + Once detached from the IPv6 stack, the interface will now no longer be able to pass IPv6 packets, and will be operationally down (unless also attached to an enabled IPv4 stack). + For an IPv6 capable device, if {{param}} is not present this interface SHOULD be permanently attached to the IPv6 stack. + Note that {{param}} is independent of {{param|Enable}}, and that to administratively enable an interface for IPv6 it is necessary for both {{param|Enable}} and {{param}} to be {{true}}. + + + + + + + + Controls whether or not ULAs {{bibref|RFC4193}} are generated and used on this interface. + + + + + + + + + The current operational state of the interface (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the interface as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the interface entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + {{param}} MUST be {{empty}} and read-only when {{param|Type}} is {{enum|Loopback|Type}}, {{enum|Tunnel|Type}}, or {{enum|Tunneled|Type}}. + + + + + + + + + + + + + + {{reference}} The ''Router'' instance that is associated with this IP Interface entry. + + + + + + + + + + + + The maximum transmission unit (MTU); the largest allowed size of an IP packet (including IP headers, but excluding lower layer headers such as Ethernet, PPP, or PPPoE headers) that is allowed to be transmitted by or through this device. + + + + + + + + + + IP interface type. {{enum}} + For {{enum|Loopback}}, {{enum|Tunnel}}, and {{enum|Tunneled}} IP interface objects, the {{param|LowerLayers}} parameter MUST be {{empty}}. + + + + + + + + Only used with legacy ({{enum|Tunnel}},{{enum|Tunneled}}) IP interface pairs + + + + + Only used with legacy ({{enum|Tunnel}},{{enum|Tunneled}}) IP interface pairs + + + + + + + + + When set to {{true}}, the IP interface becomes a loopback interface and the CPE MUST set {{param|Type}} to {{enum|Loopback|Type}}. In this case, the CPE MUST also set {{param|LowerLayers}} to {{empty}} and fail subsequent attempts at setting {{param|LowerLayers}} until the interface is no longer a loopback. + Support for manipulating loopback interfaces is OPTIONAL. + + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + If {{true}}, enables auto-IP on the interface {{bibref|RFC3927}}. This mechanism is only used with IPv4. + When auto-IP is enabled on an interface, an {{object|IPv4Address}} object will dynamically be created and configured with auto-IP parameter values. The exact conditions under which an auto-IP address is created (e.g. always when enabled or only in absence of dynamic IP addressing) is implementation specific. + + + + + + + + + {{numentries}} + + + + + + + + On a reset device MUST tear down the existing IP connection represented by this object and establish a new one. + The device MAY delay resetting the connection in order to avoid interruption of a user service such as an ongoing voice call. + Reset on a disabled interface is a no-op (not an error). + + + + + + IPv4 address table. Entries are auto-created and auto-deleted as IP addresses are added and deleted via DHCP, auto-IP, or IPCP. Static entries are created and configured by the Controller. + + + + + + + + + + + Enables or disables this IPv4 address. + + + + + + + + + The status of this {{object}} table entry. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + {{datatype|expand}} + This parameter can only be modified if {{param|AddressingType}} is {{enum|Static|AddressingType}}. + + + + + + + + IPv4 address. + This parameter can only be modified if the {{param|AddressingType}} is {{enum|Static|AddressingType}}. + + + + + + + + Subnet mask. + This parameter can only be modified if the {{param|AddressingType}} is {{enum|Static|AddressingType}}. + + + + + + + + + Addressing method used to assign the IP address. {{enum}} + + + + + + + Assigned by IKEv2 {{bibref|RFC5996}}. + + + + + + + + + + + + + Throughput statistics for this interface. + The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + The total number of bytes transmitted out of the interface, including framing characters. + + + + + + + + The total number of bytes received on the interface, including framing characters. + + + + + + + + The total number of packets transmitted out of the interface. + + + + + + + + The total number of packets received on the interface. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of packets requested for transmission which were not addressed to a multicast or broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were not addressed to a multicast or broadcast address at this layer. + + + + + + + + The total number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a multicast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a multicast address at this layer. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a broadcast address at this layer, including those that were discarded or not sent. + Note that IPv6 does not define broadcast addresses, so IPv6 packets will never cause this counter to increment. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a broadcast address at this layer. + Note that IPv6 does not define broadcast addresses, so IPv6 packets will never cause this counter to increment. + + + + + + + + The total number of packets received via the interface which were discarded because of an unknown or unsupported protocol. + + + + + + + + + This object contains parameters associated with the configuration that permits this interface to be used as Two-Way Active Measurement Protocol (TWAMP) reflector as defined in {{bibref|TR-390}}. + + + + + + + + + + Enables or disables the TWAMP reflector. + + + + + + + + The current operational state of the TWAMP reflector. + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The port used to listen for the TWAMP test packets. + + + + + + + + + + + The maximum TTL of a received packet that this TWAMP reflector will reflect to the TWAMP controller. + + + + + + + + + + + {{list}} List items represent source IP addresses and subnets from which test packets MUST always be received. {{empty}} list will allow test packets to be received from any source IP address. + Each entry in the list MUST be either an IP address, or an IP prefix specified using Classless Inter-Domain Routing (CIDR) notation {{bibref|RFC4632}}. + An IP prefix is specified as an IP address followed (with no intervening white space) by "/n", where ''n'' (the prefix size) is an integer in the range 0-32 (for IPv4) or 0-128 (for IPv6) that indicates the number of (leftmost) '1' bits of the prefix. + IPv4 example: + * 1.2.3.4 specifies a single IPv4 address, and 1.2.3.4/24 specifies a class C subnet with subnet mask 255.255.255.0. + * 1.2.0.0/22 represents the 1024 IPv4 addresses from 1.2.0.0 to 1.2.3.255. + IPv6 example: + * fec0::220:edff:fe6a:f76 specifies a single IPv6 address. + * 2001:edff:fe6a:f76::/64 represents the IPv6 addresses from 2001:edff:fe6a:f76:0:0:0:0 to 2001:edff:fe6a:f76:ffff:ffff:ffff:ffff. + + + + + + + + + + + {{list}} List items represent source port ranges from which test packets MUST always be received. {{empty}} list will allow test packets to be received from any source port. + Each entry in the list MUST be either a port number or a range of port numbers separated by a hypen (-). + For example, an entry with the value: '2-40' accepts test packets from any allowed source IP addresses with a source port between 2 and 40 inclusive. An entry of '3' accepts test packets from allow source IP addresses with a port of 3. + + + + + + + + + + + + This table contains the IP interface's IPv6 unicast addresses. There MUST be an entry for each such address, including anycast addresses. + There are several ways in which entries can be added to and deleted from this table, including: + * Automatically via SLAAC {{bibref|RFC4862}}, which covers generation of link-local addresses (for all types of device) and global addresses (for non-router devices). + * Automatically via DHCPv6 {{bibref|RFC3315}}, which covers generation of any type of address (subject to the configured DHCP server policy). + * Manually via a GUI or some other local management interface. + * Manually via factory default configuration. + * By the Controller. + This table MUST NOT include entries for the Subnet-Router anycast address {{bibref|RFC4291|Section 2.6.1}}. Such entries would be identical to others but with a zero interface identifier, and would add no value. + A loopback interface will always have address ''::1'' {{bibref|RFC4291|Section 2.5.3}} and MAY also have link-local address ''fe80::1''. + This object is based on ''ipAddressTable'' from {{bibref|RFC4293}}. + + + + + + + + + + Enables or disables this {{object}} entry. + + + + + + + + + The status of this {{object}} table entry. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + The status of {{param|IPAddress}}, indicating whether it can be used for communication. See also {{param|PreferredLifetime}} and {{param|ValidLifetime}}. {{enum}} + This parameter is based on ''ipAddressStatus'' and ''ipAddressStatusTC'' from {{bibref|RFC4293}}. + + + + + + Valid address that can appear as the destination or source address of a packet. + + + + + Valid but deprecated address that is not intended to be used as a source address. + + + + + Invalid address that is not intended to appear as the destination or source address of a packet. + + + + + Valid address that is not accessible because the interface to which it is assigned is not operational. + + + + + Address status cannot be determined for some reason. + + + + + The uniqueness of the address on the link is being verified. + + + + + Invalid address that has been determined to be non-unique on the link. + + + + + Valid address that is available for use, subject to restrictions, while its uniqueness on a link is being verified. + + + + + + + + + {{datatype|expand}} + This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + IPv6 address. + This parameter can only be modified if the {{param|Origin}} is {{enum|Static|Origin}}. + This parameter is based on ''ipAddressAddr'' from {{bibref|RFC4293}}. + + + + + + + + + Mechanism via which the IP address was assigned. {{enum}} + This parameter is based on ''ipOrigin'' from {{bibref|RFC4293}}. + + + + + + Automatically generated. For example, a link-local address as specified by SLAAC {{bibref|RFC4862|Section 5.3}}, a global address as specified by SLAAC {{bibref|RFC4862|Section 5.5}}, or generated via CPE logic (e.g. from delegated prefix as specified by {{bibref|RFC3633}}), or from ULA /48 prefix as specified by {{bibref|RFC4193}}. + + + + + Assigned by DHCPv6 {{bibref|RFC3315}}. + + + + + Assigned by IKEv2 {{bibref|RFC5996}}. + + + + + Assigned by MAP {{bibref|RFC7597}}, i.e. is this interface's ''MAP IPv6 address'' + + + + + Specified by a standards organization, e.g. the ''::1'' loopback address, which is defined in {{bibref|RFC4291}}. + + + + + For example, present in the factory default configuration (but not {{enum|WellKnown}}), created by the Controller, or created by some other management entity (e.g. via a GUI). + + + + + + + + + IPv6 address prefix. + Some addresses, e.g. addresses assigned via the DHCPv6 IA_NA option, are not associated with a prefix, and some {{enum|WellKnown|#.IPv6Prefix.{i}.Origin}} prefixes might not be modeled. In both of these cases {{param}} will be {{null}}. + This parameter can only be modified if the {{param|Origin}} is {{enum|Static|Origin}}. + This parameter is based on ''ipAddressPrefix'' from {{bibref|RFC4293}}. + + + + + + + + + + + The time at which this address will cease to be preferred (i.e. will become deprecated), or {{null}} if not known. For an infinite lifetime, the parameter value MUST be 9999-12-31T23:59:59Z. + This parameter can only be modified if the {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + + The time at which this address will cease to be valid (i.e. will become invalid), or {{null}} if unknown. For an infinite lifetime, the parameter value MUST be 9999-12-31T23:59:59Z. + This parameter can only be modified if the {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + + Indicates whether this is an anycast address {{bibref|RFC4291|Section 2.6}}. Anycast addresses are syntactically identical to unicast addresses and so need to be configured explicitly. + This parameter can only be modified if the {{param|Origin}} is {{enum|Static|Origin}}. + This parameter is based on ''ipAddressType'' from {{bibref|RFC4293}}. + + + + + + + + + + This table contains the interface's IPv6 prefixes. There MUST be an entry for each such prefix, not only for prefixes learned from router advertisements. + There are several ways in which entries can be added to and deleted from this table, including: + * Automatically via {{bibref|RFC4861}} Router Advertisements. See also {{object|.RouterAdvertisement}}. + * Automatically via DHCPv6 {{bibref|RFC3315}} prefix delegation {{bibref|RFC3633}}. See also {{object|.DHCPv6.Client}}. + * Automatically via internal CPE logic, e.g. creation of child prefixes derived from a parent prefix. + * Manually via a GUI or some other local management interface. + * Manually via factory default configuration. + * By the Controller. + The CPE MAY choose not to create {{object}} entries for {{enum|WellKnown|Origin}} prefixes or for the ULA /48 prefix {{bibref|RFC4193}}. If an {{object}} entry exists for the ULA /48 prefix, it MUST be on a downstream interface (i.e. an interface for which the physical layer interface object has ''Upstream'' = {{false}}). + This object is based on ''ipAddressPrefixTable'' from {{bibref|RFC4293}}. + + + + + + + + + + Enables or disables this {{object}} entry. + + + + + + + + + The status of this {{object}} table entry. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + The status of {{param|Prefix}}, indicating whether it can be used for communication. See also {{param|PreferredLifetime}} and {{param|ValidLifetime}}. {{enum}} + This parameter is based on ''ipAddressStatus'' and ''ipAddressStatusTC'' from {{bibref|RFC4293}}. + + + + + + Valid prefix. + + + + + Valid but deprecated prefix. + + + + + Invalid prefix. + + + + + Valid prefix that is not accessible because the interface to which it is assigned is not operational. + + + + + Prefix status cannot be determined for some reason. + + + + + + + + + {{datatype|expand}} + This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + IPv6 address prefix. + This parameter can only be modified if the {{param|Origin}} is {{enum|Static|Origin}}. + This parameter is based on ''ipAddressPrefixPrefix'' from {{bibref|RFC4293}}. + + + + + + + + + Mechanism via which the prefix was assigned or most recently updated. {{enum}} + Note that: + * {{enum|PrefixDelegation}} and {{enum|RouterAdvertisement}} prefixes can exist only on upstream interfaces (i.e. interfaces for which the physical layer interface object has ''Upstream'' = {{true}}), + * {{enum|AutoConfigured}} and {{enum|WellKnown}} prefixes can exist on any interface, and + * {{enum|Static}} and {{enum|Child}} prefixes can exist only on downstream interfaces (i.e. interfaces for which the physical layer interface object has ''Upstream'' = {{false}}). + Also note that a {{enum|Child}} prefix's {{param|ParentPrefix}} will always be an {{enum|AutoConfigured}}, {{enum|PrefixDelegation}}, or {{enum|RouterAdvertisement}} prefix. + This parameter is based on ''ipAddressOrigin'' from {{bibref|RFC4293}}. + + + + + + Generated via internal CPE logic (e.g. the ULA /48 prefix) or derived from an internal prefix that is not modeled in any {{object}} table. + + + + + Delegated via DHCPv6 {{bibref|RFC3633}} or some other protocol, e.g. IPv6rd {{bibref|RFC5969}}. Also see {{param|StaticType}}. + + + + + Discovered via router advertisement {{bibref|RFC4861}} Prefix Information Option. + + + + + Specified by a standards organization, e.g. ''fe80::/10'' for link-local addresses, or ''::1/128'' for the loopback address, both of which are defined in {{bibref|RFC4291}}. + + + + + Created by the Controller, by some other management entity (e.g. via a GUI), or present in the factory default configuration (but not {{enum|WellKnown}}). Unrelated to any shorter length prefix that might exist on the CPE. Also see {{param|StaticType}}. Can be used for RA (Prefix Information), DHCPv6 address assignment (IA_NA) or DHCPv6 prefix delegation (IA_PD). + + + + + Derived from an associated {{enum|AutoConfigured}} or {{enum|PrefixDelegation}} parent prefix. Also see {{param|StaticType}}, {{param|ParentPrefix}} and {{param|ChildPrefixBits}}. Can be used for RA (Prefix Information), DHCPv6 address assignment (IA_NA) or DHCPv6 prefix delegation (IA_PD). + + + + + + + + + Static prefix sub-type. For a {{enum|Static|Origin}} prefix, this can be set to {{enum|PrefixDelegation}} or {{enum|Child}}, thereby creating an unconfigured prefix of the specified type that will be populated in preference to creating a new instance. This allows the Controller to pre-create "prefix slots" with known path names that can be referenced from elsewhere in the data model before they have been populated. {{enum}} + This mechanism works as follows: + * When this parameter is set to {{enum|PrefixDelegation}} or {{enum|Child}}, the instance becomes a "prefix slot" of the specified type. + * Such an instance can be administratively enabled ({{param|Enable}} = {{true}}) but will remain operationally disabled ({{param|Status}} = {{enum|Disabled|Status}}) until it has been populated. + * When a new prefix of of type T is needed, the CPE will look for a matching unpopulated instance, i.e. an instance with ({{param|Origin}},{{param}},{{param|Prefix}}) = ({{enum|Static|Origin}},T,""). If the CPE finds at least one such instance it will choose one and populate it. If already administratively enabled it will immediately become operationally enabled. If the CPE finds no such instances, it will create and populate a new instance with ({{param|Origin}},{{param}}) = (T,T). If the CPE finds more than one such instance, the algorithm via which it chooses which instance to populate is implementation-specific. + * When a prefix that was populated via this mechanism becomes invalid, the CPE will reset {{param|Prefix}} to {{empty}}. This does not affect the value of the {{param|Enable}} parameter. + The prefix {{param}} can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + Prefix is a "normal" {{enum|Static|Origin}} prefix. + + + + + Prefix is not {{enum|Static|Origin}}, so this parameter does not apply. + + + + + Prefix will be populated when a {{enum|PrefixDelegation|Origin}} prefix needs to be created. + + + + + Prefix will be populated when a {{enum|Child|Origin}} prefix needs to be created. In this case, the Controller needs also to set {{param|ParentPrefix}} and might want to set {{param|ChildPrefixBits}} (if parent prefix is not set, or goes away, then the child prefix will become operationally disabled). + + + + + + + + + Indicates the parent prefix from which this prefix was derived. The parent prefix is relevant only for {{enum|Child|Origin}} prefixes and for {{enum|Static|Origin}} {{enum|Child|StaticType}} prefixes (both of which will always be on downstream interfaces), i.e. for {{param|Origin}}={{enum|Child|Origin}} and for ({{param|Origin}},{{param|StaticType}}) = ({{enum|Static|Origin}},{{enum|Child|StaticType}}) prefixes. + This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}} (which makes sense only for a prefix whose {{param|StaticType}} is already or will be changed to {{enum|Child|StaticType}}). + + + + + + + + + + + A prefix that specifies the length of {{enum|Static|Origin}} {{enum|Child|StaticType}} prefixes and how they are derived from their {{param|ParentPrefix}}. It will be used if and only if it is not {{empty}} and is longer than the parent prefix (if it is not used, derivation of such prefixes is implementation-specific). Any bits to the right of the parent prefix are set to the bits in this prefix. + For example, for a parent prefix of fedc::/56, if this parameter had the value 123:4567:89ab:cdef::/64, the child /64 would be fedc:0:0:ef::/64. For a parent prefix of fedc::/60, the child /64 would be fedc:0:0:f::/64. + This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + + On-link flag {{bibref|RFC4861|Section 4.6.2}} as received (in the RA) for RouterAdvertisement. Indicates whether this prefix can be used for on-link determination. + This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + This parameter is based on ''ipAddressPrefixOnLinkFlag'' from {{bibref|RFC4293}}. + + + + + + + + + Autonomous address configuration flag {{bibref|RFC4861|Section 4.6.2}} as received (in the RA) for RouterAdvertisement. Indicates whether this prefix can be used for generating global addresses as specified by SLAAC {{bibref|RFC4862}}. + This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + This parameter is based on ''ipAddressPrefixAutonomousFlag'' from {{bibref|RFC4293}}. + + + + + + + + + This parameter is based on ''ipAddressPrefixAdvPreferredLifetime'' from {{bibref|RFC4293}}. The time at which this prefix will cease to be preferred (i.e. will become deprecated), or {{null}} if not known. For an infinite lifetime, the parameter value MUST be 9999-12-31T23:59:59Z. + This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + + This parameter is based on ''ipAddressPrefixAdvValidLifetime'' from {{bibref|RFC4293}}. The time at which this prefix will cease to be valid (i.e. will become invalid), or {{null}} if not known. For an infinite lifetime, the parameter value MUST be 9999-12-31T23:59:59Z. + This parameter can only be modified if {{param|Origin}} is {{enum|Static|Origin}}. + + + + + + + + + + This table lists the ports on which TCP connections are listening or established. + + + + + + + + + + Connection local IP address. + + + + + + + + Connection local port. + + + + + + + + + + The remote IP address of the source of inbound packets. + This will be {{null}} for listening connections (only connections in {{enum|ESTABLISHED|Status}} state have remote addresses). + + + + + + + + The remote port of the source of inbound packets. + This will be {{null}} for listening connections (only connections in {{enum|ESTABLISHED|Status}} state have remote addresses). + + + + + + + + + + Current operational status of the connection. {{enum}} + + + + + + + + + + + + The IP Diagnostics object. + + + + Indicates that Ping over IPv4 is supported. + + + + + + + + Indicates that Ping over IPv6 is supported. + + + + + + + + Indicates that TraceRoute over IPv4 is supported. + + + + + + + + Indicates that TraceRoute over IPv6 is supported. + + + + + + + + Indicates that Download Diagnostics over IPv4 is supported. + + + + + + + + Indicates that Download Diagnostics over IPv6 is supported. + + + + + + + + Indicates that Upload Diagnostics over IPv4 is supported. + + + + + + + + Indicates that Upload Diagnostics over IPv6 is supported. + + + + + + + + Indicates that UDPEcho Diagnostics over IPv4 is supported. + + + + + + + + Indicates that UDPEcho Diagnostics over IPv6 is supported. + + + + + + + + Indicates that IP Layer Capacity measurement is supported. + + + + + + + + Indicates that ServerSelection Diagnostics over IPv4 is supported. + + + + + + + + Indicates that ServerSelection Diagnostics over IPv6 is supported. + + + + + + + + This command provides access to an IP-layer ping test. + + + + Input arguments. + + + + {{reference}} The layer 2 or layer 3 interface over which the test is to be performed. Example: ''Device.IP.Interface.1'', ''Device.Bridge.1.Port.2'' + If {{empty}} is specified, the CPE MUST use the interface as directed by its bridging or routing policy (''Forwarding'' table entries) to determine the appropriate interface. + + + + + + + + + + + Indicates the IP protocol to be used. + + + + + + Use either IPv4 or IPv6 depending on the system preference + + + + + Use IPv4 for the Ping requests + + + + + Use IPv6 for the Ping requests + + + + + + + + Host name or address of the host to ping. + In the case where {{param}} is specified by name, and the name resolves to more than one address, it is up to the device implementation to choose which address to use. + + + + + + + + + + Number of repetitions of the ping test to perform before reporting the results. + + + + + + + + + + Timeout in {{units}} for the ping test. + + + + + + + + + + + Size of the data block in bytes to be sent for each ping. + + + + + + + + + + DiffServ codepoint to be used for the test packets. By default the CPE SHOULD set this value to zero. + + + + + + + + + + + Output arguments. + + + + Indicates the availability of diagnostics data. {{enum}} + If the value of this parameter is anything other than {{enum|Complete}}, the values of the other results parameters for this test are indeterminate. + + + + + + + + + + The CPE can not reach the requested Ping host address + + + + + + + + + + Indicates which IP address was used to send the Ping request. + + + + + + + + Result parameter indicating the number of successful pings (those in which a successful response was received prior to the timeout) in the most recent ping test. + + + + + + + + Result parameter indicating the number of failed pings in the most recent ping test. + + + + + + + + Result parameter indicating the average response time in {{units}} over all repetitions with successful responses of the most recent ping test. If there were no successful responses, this value MUST be zero. + + + + + + + + + + Result parameter indicating the minimum response time in {{units}} over all repetitions with successful responses of the most recent ping test. If there were no successful responses, this value MUST be zero. + + + + + + + + + + Result parameter indicating the maximum response time in {{units}} over all repetitions with successful responses of the most recent ping test. If there were no successful responses, this value MUST be zero. + + + + + + + + + + Result parameter indicating the average response time in {{units}} over all repetitions with successful responses of the most recent ping test. If there were no successful responses, this value MUST be zero. + + + + + + + + + + Result parameter indicating the minimum response time in {{units}} over all repetitions with successful responses of the most recent ping test. If there were no successful responses, this value MUST be zero. + + + + + + + + + + Result parameter indicating the maximum response time in {{units}} over all repetitions with successful responses of the most recent ping test. If there were no successful responses, this value MUST be zero. + + + + + + + + + + + + This command defines access to an IP-layer trace-route test for the specified IP interface. + + + + Input arguments. + + + + {{reference}} The layer 2 or layer 3 interface over which the test is to be performed. Example: ''Device.IP.Interface.1'', ''Device.Bridge.1.Port.2'' + If {{empty}} is specified, the CPE MUST use the interface as directed by its bridging or routing policy (''Forwarding'' table entries) to determine the appropriate interface. + + + + + + + + + + + Indicates the IP protocol to be used. + + + + + + Use either IPv4 or IPv6 depending on the system preference + + + + + Use IPv4 for the TraceRoute + + + + + Use IPv6 for the TraceRoute + + + + + + + + Host name or address of the host to find a route to. + In the case where {{param}} is specified by name, and the name resolves to more than one address, it is up to the device implementation to choose which address to use. + + + + + + + + + + Number of tries per hop. Set prior to running Diagnostic. By default, the CPE SHOULD set this value to 3. + + + + + + + + + + Timeout in {{units}} for each hop of the trace route test. By default the CPE SHOULD set this value to 5000. + + + + + + + + + + + Size of the data block in bytes to be sent for each trace route. By default, the CPE SHOULD set this value to 38. + + + + + + + + + + DiffServ codepoint to be used for the test packets. By default the CPE SHOULD set this value to 0. + + + + + + + + + + The maximum number of hop used in outgoing probe packets (max TTL). By default the CPE SHOULD set this value to 30. + + + + + + + + + + + Output arguments. + + + + Indicates the availability of diagnostics data. {{enum}} + If the value of this parameter is anything other than {{enum|Complete}}, the values of the other results parameters for this test are indeterminate. + + + + + + + + + + The CPE can not reach the requested TraceRoute host address + + + + + + + + + + + Indicates which IP address was used for TraceRoute. + + + + + + + + Result parameter indicating the response time in {{units}} the most recent trace route test. If a route could not be determined, this value MUST be zero. + + + + + + + + + + Contains the array of hop results returned. If a route could not be determined, this array will be empty + + + + Result parameter indicating the Host Name if DNS is able to resolve or IP Address of a hop along the discovered route. + + + + + + + + + + If this parameter is not {{empty}} it will contain the last IP address of the host returned for this hop and the {{param|Host}} will contain the Host Name returned from the reverse DNS query. + + + + + + + + Contains the error code returned for this hop. This code is directly from the ICMP CODE field. + + + + + + + + {{list}} Each list item contains one or more round trip times in {{units}} (one for each repetition) for this hop. + A list item of 0 indicates that the corresponding response was not received. Round trip times of less than 1 {{units}} MUST be rounded up to 1. + The number of list entries is determined by the value of {{param|#.NumberOfTries}}. + + + + + + + + + + + + + + + + Supported ''DownloadDiagnostics'' transport protocols for a CPE device. + + + + + + + + + + + + Indicates the maximum number of connections that are supported by Download Diagnostics. + + + + + + + + + + The maximum number of rows in {{object|DownloadDiagnostics().IncrementalResult}} that the CPE will store. + + + + + + + + + + This command defines the diagnostics configuration for a HTTP and FTP DownloadDiagnostics Test. + Files received in the DownloadDiagnostics do not require file storage on the CPE device. + + + + Input arguments. + + + + {{reference}} The IP-layer interface over which the test is to be performed. Example: Device.IP.Interface.1 + If {{empty}} is specified, the CPE MUST use the interface as directed by its routing policy (''Forwarding'' table entries) to determine the appropriate interface. + + + + + + + + + + + The {{datatype}} for the CPE to perform the download on. This parameter MUST be in the form of a valid HTTP {{bibref|RFC2616}} or FTP {{bibref|RFC959}} URL. + * When using FTP transport, FTP binary transfer MUST be used. + * When using HTTP transport, persistent connections MUST be used and pipelining MUST NOT be used. + * When using HTTP transport the HTTP Authentication MUST NOT be used. + Note: For time based tests ({{param|TimeBasedTestDuration}} > 0) the Controller MAY add a hint to duration of the test to the URL. See {{bibref|TR-143|Section 4.3}} for more details. + + + + + + + + The DiffServ code point for marking packets transmitted in the test. + The default value SHOULD be zero. + + + + + + + + + + Ethernet priority code for marking packets transmitted in the test (if applicable). + The default value SHOULD be zero. + + + + + + + + + + Controls time based testing {{bibref|TR-143|Section 4.3}}. When {{param}} > 0, {{param}} is the duration in {{units}} of a time based test. If {{param}} is 0, the test is not based on time, but on the size of the file to be downloaded. The default value SHOULD be 0. + + + + + + + + + + + The measurement interval duration in {{units}} for objects in {{object|IncrementalResult}} for a time based FTP/HTTP download test (when {{param|TimeBasedTestDuration}} > 0). The default value SHOULD be 0, which implies {{object|IncrementalResult}} collection is disabled. + For example if {{param|TimeBasedTestDuration}} is 90 {{units}} and {{param}} is 10 {{units}}, there will be 9 results in {{object|IncrementalResult}}, each with a 10 {{units}} duration. + + + + + + + + + + + This {{param}} works in conjunction with {{param|TimeBasedTestMeasurementInterval}} to allow the interval measurement to start a number of {{units}} after {{param|BOMTime}}. The test measurement interval in {{object|IncrementalResult}} starts at time {{param|BOMTime}} + {{param}} to allow for slow start window removal of file transfers. + This {{param}} is in {{units}}. The default value SHOULD be 0. + + + + + + + + + + + Indicates the IP protocol version to be used. The default value SHOULD be {{enum|Any}}. + + + + + + Use either IPv4 or IPv6 depending on the system preference. + + + + + Use IPv4 for the requests + + + + + Use IPv6 for the requests. + + + + + + + + The number of connections to be used in the test. The default value SHOULD be 1. {{param}} MUST NOT be set to a value greater than {{param|#.DownloadDiagnosticMaxConnections}}. + + + + + + + + + + The results must be returned in the {{object|PerConnectionResult}} table for every connection when set to {{true}}. The default value SHOULD be {{false}}. + + + + + + + + + Output arguments. + + + + Indicates the availability of diagnostics data. {{enum}} + If the value of this parameter is anything other than {{enum|Complete}}, the values of the other results parameters for this test are indeterminate. + + + + + + + + + + + + + + + + + + + + + + + Indicates which IP address was used to send the request. + + + + + + + + Request time in UTC, which MUST be specified to microsecond precision. + For example: 2008-04-09T15:01:05.123456Z + * For HTTP this is the time at which the client sends the GET command. + * For FTP this is the time at which the client sends the RTRV command. + If multiple connections are used, then {{param}} is set to the earliest {{param}} across all connections. + + + + + + + + Begin of transmission time in UTC, which MUST be specified to microsecond precision + For example: 2008-04-09T15:01:05.123456Z + * For HTTP this is the time at which the first data packet is received. + * For FTP this is the time at which the client receives the first data packet on the data connection. + If multiple connections are used, then {{param}} is set to the earliest {{param}} across all connections. + + + + + + + + End of transmission in UTC, which MUST be specified to microsecond precision. + For example: 2008-04-09T15:01:05.123456Z + * For HTTP this is the time at which the last data packet is received. + * For FTP this is the time at which the client receives the last packet on the data connection. + If multiple connections are used, then {{param}} is set to the latest {{param}} across all connections. + + + + + + + + The number of {{units}} received during the FTP/HTTP transaction including FTP/HTTP headers, between {{param|BOMTime}} and {{param|EOMTime}} across all connections. + + + + + + + + + + The total number of {{units}} (at the IP layer) received on the Interface between {{param|BOMTime}} and {{param|EOMTime}}. This MAY be calculated by sampling Stats.bytesReceived on the {{param|Interface}} object at {{param|BOMTime}} and at {{param|EOMTime}} and subtracting. + + + + + + + + + + The total number of {{units}} (at the IP layer) sent on the Interface between {{param|BOMTime}} and {{param|EOMTime}}. This MAY be calculated by sampling Stats.bytesSent on the {{param|Interface}} object at {{param|BOMTime}} and at {{param|EOMTime}} and subtracting. + + + + + + + + + + The number of {{units}} of the test file received between the latest {{param|PerConnectionResult.{i}.BOMTime}} and the earliest {{param|PerConnectionResult.{i}.EOMTime}} across all connections. + + + + + + + + + + The total number of {{units}} (at the IP layer) received in between the latest {{param|PerConnectionResult.{i}.BOMTime}} and the earliest {{param|PerConnectionResult.{i}.EOMTime}}. This MAY be calculated by sampling Stats.bytesReceived on the {{param|Interface}} object at the latest {{param|PerConnectionResult.{i}.BOMTime}} and at the earliest {{param|PerConnectionResult.{i}.EOMTime}} and subtracting. + + + + + + + + + + The total number of {{units}} (at the IP layer) sent between the latest {{param|PerConnectionResult.{i}.BOMTime}} and the earliest {{param|PerConnectionResult.{i}.EOMTime}}. This MAY be calculated by sampling Stats.bytesSent on the {{param|Interface}} object at the latest {{param|PerConnectionResult.{i}.BOMTime}} and at the earliest {{param|PerConnectionResult.{i}.EOMTime}} and subtracting. + + + + + + + + + + The period of time in {{units}} between the latest {{param|PerConnectionResult.{i}.BOMTime}} and the earliest {{param|PerConnectionResult.{i}.EOMTime}} of the test. + + + + + + + + + + Request time in UTC, which MUST be specified to microsecond precision. + For example: 2008-04-09T15:01:05.123456Z + * For HTTP this is the time at which the TCP socket open (SYN) was sent for the HTTP connection. + * For FTP this is the time at which the TCP socket open (SYN) was sent for the data connection. + Note: Interval of 1 microsecond SHOULD be supported. + If multiple connections are used, then {{param}} is set to the latest {{param}} across all connections. + + + + + + + + Response time in UTC, which MUST be specified to microsecond precision. + For example: 2008-04-09T15:01:05.123456Z + * For HTTP this is the time at which the TCP ACK to the socket opening the HTTP connection was received. + * For FTP this is the time at which the TCP ACK to the socket opening the data connection was received. + Note: Interval of 1 microsecond SHOULD be supported. + If multiple connections are used, then {{param}} is set to the latest {{param}} across all connections. + + + + + + + + Results for individual connections. This table is only populated when {{param|#.EnablePerConnectionResults}} is {{true}}. A new object is created for each connection specified in {{param|#.NumberOfConnections}}. Instance numbers MUST start at 1 and sequentially increment as new instances are created. + + + + Request time in UTC, which MUST be specified to microsecond precision. + For example: 2008-04-09T15:01:05.123456Z + * For HTTP this is the time at which the client sends the GET command. + * For FTP this is the time at which the client sends the RTRV command. + + + + + + + + Begin of transmission time in UTC, which MUST be specified to microsecond precision + For example: 2008-04-09T15:01:05.123456Z + * For HTTP this is the time at which the first data packet is received. + * For FTP this is the time at which the client receives the first data packet on the data connection. + + + + + + + + End of transmission in UTC, which MUST be specified to microsecond precision. + For example: 2008-04-09T15:01:05.123456Z + * For HTTP this is the time at which the last data packet is received. + * For FTP this is the time at which the client receives the last packet on the data connection. + + + + + + + + The number of {{units}} of the test file received during the FTP/HTTP transaction including FTP/HTTP headers, between {{param|BOMTime}} and {{param|EOMTime}}. + + + + + + + + + + The total number of {{units}} (at the IP layer) received on the Interface between {{param|BOMTime}} and {{param|EOMTime}}. This MAY be calculated by sampling Stats.bytesReceived on the {{param|#.Interface}} object at {{param|BOMTime}} and at {{param|EOMTime}} and subtracting. + + + + + + + + + + The total number of {{units}} (at the IP layer) sent on the Interface between {{param|BOMTime}} and {{param|EOMTime}}. This MAY be calculated by sampling Stats.bytesSent on the {{param|#.Interface}} object at {{param|BOMTime}} and at {{param|EOMTime}} and subtracting. + + + + + + + + + + Request time in UTC, which MUST be specified to microsecond precision. + For example: 2008-04-09T15:01:05.123456Z + * For HTTP this is the time at which the TCP socket open (SYN) was sent for the HTTP connection. + * For FTP this is the time at which the TCP socket open (SYN) was sent for the data connection. + + + + + + + + Response time in UTC, which MUST be specified to microsecond precision. + For example: 2008-04-09T15:01:05.123456Z + * For HTTP this is the time at which the TCP ACK to the socket opening the HTTP connection was received. + * For FTP this is the time at which the TCP ACK to the socket opening the data connection was received. + + + + + + + + + Results for time segmented tests (tests where {{param|#.TimeBasedTestDuration}} > 0 and {{param|#.TimeBasedTestMeasurementInterval}} > 0). This data is totaled across all connections in the test. A new object is created every {{param|#.TimeBasedTestMeasurementInterval}} after that interval has completed. Instance numbers MUST start at 1 and sequentially increment as new instances are created. + + + + Change in the value of {{param|#.TestBytesReceivedUnderFullLoading}} between {{param|StartTime}} and {{param|EndTime}}. + + + + + + + + + + The total number of {{units}} (at the IP layer) received on the Interface between {{param|StartTime}} and {{param|EndTime}}. This MAY be calculated by sampling Stats.bytesReceived on the {{param|#.Interface}} object at {{param|StartTime}} and at {{param|EndTime}} and subtracting. + + + + + + + + + + The total number of {{units}} (at the IP layer) sent on the Interface between {{param|StartTime}} and {{param|EndTime}}. This MAY be calculated by sampling Stats.bytesSent on the {{param|#.Interface}} object at {{param|StartTime}} and at {{param|EndTime}} and subtracting. + + + + + + + + + + The start time of this interval which MUST be specified to microsecond precision. + For example: 2008-04-09T15:01:05.123456Z + + + + + + + + The end time of this interval which MUST be specified to microsecond precision. + For example: 2008-04-09T15:01:05.123456Z + + + + + + + + + + + Supported ''UploadDiagnostics'' transport protocols for a CPE device. + + + + + + + + + + + + Indicates the maximum number of connections that are supported by Upload Diagnostics. + + + + + + + + + + The maximum number of rows in {{object|UploadDiagnostics().IncrementalResult}} that the CPE will store. + + + + + + + + + + This command defines the diagnostics configuration for a HTTP or FTP UploadDiagnostics test. + Files sent by the UploadDiagnostics do not require file storage on the CPE device, and MAY be an arbitrary stream of bytes. + + + + Input arguments. + + + + {{reference}} The IP-layer interface over which the test is to be performed. Example: Device.IP.Interface.1 + If {{empty}} is specified, the CPE MUST use the interface as directed by its routing policy (''Forwarding'' table entries) to determine the appropriate interface. + + + + + + + + + + + The {{datatype}} for the CPE to Upload to. This parameter MUST be in the form of a valid HTTP {{bibref|RFC2616}} or FTP {{bibref|RFC959}} URL. + * When using FTP transport, FTP binary transfer MUST be used. + * When using HTTP transport, persistent connections MUST be used and pipelining MUST NOT be used. + * When using HTTP transport the HTTP Authentication MUST NOT be used. + + + + + + + + DiffServ code point for marking packets transmitted in the test. + The default value SHOULD be zero. + + + + + + + + + + Ethernet priority code for marking packets transmitted in the test (if applicable). + The default value SHOULD be zero. + + + + + + + + + + The size of the file (in bytes) to be uploaded to the server. + The CPE MUST insure the appropriate number of bytes are sent. + + + + + + + + Controls time based testing {{bibref|TR-143|Section 4.3}}. When {{param}} > 0, {{param}} is the duration in {{units}} of a time based test. If {{param}} is 0, the test is not based on time, but on the size of the file to be uploaded. The default value SHOULD be 0. + + + + + + + + + + + The measurement interval duration in {{units}} for objects in {{object|IncrementalResult}} for a time based FTP/HTTP upload test (when {{param|TimeBasedTestDuration}} > 0). The default value SHOULD be 0, which implies {{object|IncrementalResult}} collection is disabled. + For example if {{param|TimeBasedTestDuration}} is 90 {{units}} and {{param}} is 10 {{units}}, there will be 9 results in {{object|IncrementalResult}}, each with a 10 {{units}} duration. + + + + + + + + + + + This {{param}} works in conjunction with {{param|TimeBasedTestMeasurementInterval}} and allows the interval measurement to start a number of {{units}} after {{param|BOMTime}}. The test measurement interval in {{object|IncrementalResult}} starts at time {{param|BOMTime}} + {{param}} to allow for slow start window removal of file transfers. + This {{param}} is in {{units}}. The default value SHOULD be 0. + + + + + + + + + + + Indicates the IP protocol version to be used. The default value SHOULD be {{enum|Any}}. + + + + + + Use either IPv4 or IPv6 depending on the system preference. + + + + + Use IPv4 for the requests + + + + + Use IPv6 for the requests. + + + + + + + + The number of connections to be used in the test. The default value SHOULD be 1. {{param}} MUST NOT be set to a value greater than {{param|#.UploadDiagnosticsMaxConnections}}. + + + + + + + + + + The results must be returned in the {{object|PerConnectionResult}} table for every connection when set to {{true}}. The default value SHOULD be {{false}}. + + + + + + + + + Output arguments. + + + + Indicates the availability of diagnostics data. {{enum}} + If the value of this parameter is anything other than {{enum|Complete}}, the values of the other results parameters for this test are indeterminate. + + + + + + + + + + + + + + + + + + + + + + + + Indicates which IP address was used to send the request. + + + + + + + + Request time in UTC, which MUST be specified to microsecond precision. + For example: 2008-04-09T15:01:05.123456Z + * For HTTP this is the time at which the client sends the GET command. + * For FTP this is the time at which the client sends the RTRV command. + If multiple connections are used, then {{param}} is set to the earliest {{param}} across all connections. + + + + + + + + Begin of transmission time in UTC, which MUST be specified to microsecond precision + For example: 2008-04-09T15:01:05.123456Z + * For HTTP this is the time at which the first data packet is received. + * For FTP this is the time at which the client receives the first data packet on the data connection. + If multiple connections are used, then {{param}} is set to the earliest {{param}} across all connections. + + + + + + + + End of transmission in UTC, which MUST be specified to microsecond precision. + For example: 2008-04-09T15:01:05.123456Z + * For HTTP this is the time at which the last data packet is received. + * For FTP this is the time at which the client receives the last packet on the data connection. + If multiple connections are used, then {{param}} is set to the latest {{param}} across all connections. + + + + + + + + The number of {{units}} of the test file sent during the FTP/HTTP transaction including FTP/HTTP headers, between {{param|BOMTime}} and {{param|EOMTime}} acrosss all connections. + + + + + + + + + + The total number of {{units}} (at the IP layer) received on the Interface between {{param|BOMTime}} and {{param|EOMTime}}. This MAY be calculated by sampling Stats.bytesReceived on the {{param|Interface}} object at {{param|BOMTime}} and at {{param|EOMTime}} and subtracting. + + + + + + + + + + The total number of {{units}} (at the IP layer) sent on the Interface between {{param|BOMTime}} and {{param|EOMTime}}. This MAY be calculated by sampling Stats.bytesSent on the {{param|Interface}} object at {{param|BOMTime}} and at {{param|EOMTime}} and subtracting. + + + + + + + + + + The number of {{units}} of the test file sent between the latest {{param|PerConnectionResult.{i}.BOMTime}} and the earliest {{param|PerConnectionResult.{i}.EOMTime}} across all connections. + + + + + + + + + + The total number of {{units}} (at the IP layer) received between the latest {{param|PerConnectionResult.{i}.BOMTime}} and the earliest {{param|PerConnectionResult.{i}.EOMTime}} across all connections in the test. This MAY be calculated by sampling Stats.bytesReceived on the {{param|Interface}} object at the latest {{param|PerConnectionResult.{i}.BOMTime}} and at the earliest {{param|PerConnectionResult.{i}.EOMTime}} and subtracting. + + + + + + + + + + The total number of {{units}} (at the IP layer) sent between the latest {{param|PerConnectionResult.{i}.BOMTime}} and the earliest {{param|PerConnectionResult.{i}.EOMTime}} across all connections in the test. This MAY be calculated by sampling Stats.bytesSent on the {{param|Interface}} object at the latest {{param|PerConnectionResult.{i}.BOMTime}} and at the earliest {{param|PerConnectionResult.{i}.EOMTime}} and subtracting. + + + + + + + + + + The period of time in {{units}} between the latest {{param|PerConnectionResult.{i}.BOMTime}} and the earliest {{param|PerConnectionResult.{i}.EOMTime}} of the test. + + + + + + + + + + Request time in UTC, which MUST be specified to microsecond precision. + For example: 2008-04-09T15:01:05.123456Z + * For HTTP this is the time at which the TCP socket open (SYN) was sent for the HTTP connection. + * For FTP this is the time at which the TCP socket open (SYN) was sent for the data connection. + Note: Interval of 1 microsecond SHOULD be supported. + If multiple connections are used, then {{param}} is set to the latest {{param}} across all connections. + + + + + + + + Response time in UTC, which MUST be specified to microsecond precision. + For example: 2008-04-09T15:01:05.123456Z + * For HTTP this is the time at which the TCP ACK to the socket opening the HTTP connection was received. + * For FTP this is the time at which the TCP ACK to the socket opening the data connection was received. + Note: Interval of 1 microsecond SHOULD be supported. + If multiple connections are used, then {{param}} is set to the latest {{param}} across all connections. + + + + + + + + Results for individual connections. This table is only populated when {{param|#.EnablePerConnectionResults}} is {{true}}. A new object is created for each connection specified in {{param|#.NumberOfConnections}}. Instance numbers MUST start at 1 and sequentially increment as new instances are created. + + + + Request time in UTC, which MUST be specified to microsecond precision. + For example: 2008-04-09T15:01:05.123456Z + * For HTTP this is the time at which the client sends the GET command. + * For FTP this is the time at which the client sends the RTRV command. + + + + + + + + Begin of transmission time in UTC, which MUST be specified to microsecond precision + For example: 2008-04-09T15:01:05.123456Z + * For HTTP this is the time at which the first data packet is received. + * For FTP this is the time at which the client receives the first data packet on the data connection. + + + + + + + + End of transmission in UTC, which MUST be specified to microsecond precision. + For example: 2008-04-09T15:01:05.123456Z + * For HTTP this is the time at which the last data packet is received. + * For FTP this is the time at which the client receives the last packet on the data connection. + + + + + + + + The number of {{units}} of the test file sent during the FTP/HTTP transaction including FTP/HTTP headers, between {{param|BOMTime}} and {{param|EOMTime}}. + + + + + + + + + + The total number of {{units}} (at the IP layer) received on the Interface between {{param|BOMTime}} and {{param|EOMTime}}. This MAY be calculated by sampling Stats.bytesReceived on the {{param|#.Interface}} object at {{param|BOMTime}} and at {{param|EOMTime}} and subtracting. + + + + + + + + + + The total number of {{units}} (at the IP layer) sent on the Interface between {{param|BOMTime}} and {{param|EOMTime}}. This MAY be calculated by sampling Stats.bytesSent on the {{param|#.Interface}} object at {{param|BOMTime}} and at {{param|EOMTime}} and subtracting. + + + + + + + + + + Request time in UTC, which MUST be specified to microsecond precision. + For example: 2008-04-09T15:01:05.123456Z + * For HTTP this is the time at which the TCP socket open (SYN) was sent for the HTTP connection. + * For FTP this is the time at which the TCP socket open (SYN) was sent for the data connection. + + + + + + + + Response time in UTC, which MUST be specified to microsecond precision. + For example: 2008-04-09T15:01:05.123456Z + * For HTTP this is the time at which the TCP ACK to the socket opening the HTTP connection was received. + * For FTP this is the time at which the TCP ACK to the socket opening the data connection was received. + + + + + + + + + Results for time segmented tests (tests where {{param|#.TimeBasedTestDuration}} > 0 and {{param|#.TimeBasedTestMeasurementInterval}} > 0). This data is totaled across all connections in the test. A new object is created every {{param|#.TimeBasedTestMeasurementInterval}} after that interval has completed. Instance numbers MUST start at 1 and sequentially increment as new instances are created. + + + + Change in the value of {{param|#.TestBytesSent}} between {{param|StartTime}} and {{param|EndTime}}. + + + + + + + + + + The total number of {{units}} (at the IP layer) received on the Interface between {{param|StartTime}} and {{param|EndTime}}. This MAY be calculated by sampling Stats.bytesReceived on the {{param|#.Interface}} object at {{param|StartTime}} and at {{param|EndTime}} and subtracting. + + + + + + + + + + The total number of {{units}} (at the IP layer) sent on the Interface between {{param|StartTime}} and {{param|EndTime}}. This MAY be calculated by sampling Stats.bytesSent on the {{param|#.Interface}} object at {{param|StartTime}} and at {{param|EndTime}} and subtracting. + + + + + + + + + + The start time of this interval which MUST be specified to microsecond precision. + For example: 2008-04-09T15:01:05.123456Z + + + + + + + + The end time of this interval which MUST be specified to microsecond precision. + For example: 2008-04-09T15:01:05.123456Z + + + + + + + + + + + The maximum number of rows in {{object|UDPEchoDiagnostics().IndividualPacketResult}} that the CPE will store. If a test would create more rows than {{param}} only the first {{param}} rows are present in {{object|UDPEchoDiagnostics().IndividualPacketResult}}. + + + + + + + + + + This command defines the diagnostics configuration for a UDP Echo test {{bibref|TR-143|Appendix A.1}} defined in {{bibref|RFC862}} or a UDP Echo Plus test defined in {{bibref|TR-143|Appendix A.1}}. + + + + Input arguments. + + + + {{reference|the IP-layer interface over which the test is to be performed|ignore}} Example: Device.IP.Interface.1 + If {{empty}} is specified, the CPE MUST use the interface as directed by its routing policy (''Forwarding'' table entries) to determine the appropriate interface. + + + + + + + + + + + Host name or address of the host to perform tests to. + + + + + + + + + + Port on the host to perform tests to. + + + + + + + + + + Number of repetitions of the test to perform before reporting the results. The default value SHOULD be 1. + + + + + + + + + + Timeout in {{units}} for the test. That is, the amount of time to wait for the return of a packet that was sent to the {{param|Host}}. + + + + + + + + + + + Size of the data block in {{units}} to be sent for each packet. The default value SHOULD be 24. + + + + + + + + + + + DiffServ codepoint to be used for the test packets. The default value SHOULD be zero. + + + + + + + + + + The time in {{units}} between the {{param|NumberOfRepetitions}} of packets sent during a given test. The default value SHOULD be 1000. + + + + + + + + + + + Indicates the IP protocol version to be used. The default value SHOULD be {{enum|Any}}. + + + + + + Use either IPv4 or IPv6 depending on the system preference. + + + + + Use IPv4 for the requests + + + + + Use IPv6 for the requests. + + + + + + + + The results must be returned in the {{object|IndividualPacketResult}} table for every repetition of the test when set to {{true}}. The default value SHOULD be {{false}}. + + + + + + + + + Output arguments. + + + + Indicates the availability of diagnostics data. {{enum}} + If the value of this parameter is anything other than {{enum|Complete}}, the values of the other results parameters for this test are indeterminate. + + + + + + + + + + + + + Indicates which IP address was used to send the request. + + + + + + + + Result parameter indicating the number of successful packets (those in which a successful response was received prior to the timeout) in the most recent test. + + + + + + + + Result parameter indicating the number of failed packets (those in which a successful response was not received prior to the timeout) in the most recent test. + + + + + + + + Result parameter indicating the average response time in {{units}} over all repetitions with successful responses of the most recent test. If there were no successful responses, this value MUST be zero. + + + + + + + + + + Result parameter indicating the minimum response time in {{units}} over all repetitions with successful responses of the most recent test. If there were no successful responses, this value MUST be zero. + + + + + + + + + + Result parameter indicating the maximum response time in {{units}} over all repetitions with successful responses of the most recent test. If there were no successful responses, this value MUST be zero. + + + + + + + + + + This object provides the results from individual UDPEchoPlus test packets collected during a test if {{param|#.EnableIndividualPacketResults}} is set to true. It should contain {{param|#.NumberOfRepetitions}} objects. Instance numbers MUST start at 1 and sequentially increment as new instances are created. The instance number should match the TestIterationNumber field of the request and response packet. + + + + Indicates that the response to this UDP Echo Plus packet sent was received by the client. When this value is {{true}}, then all the remaining parameters in this instance are valid. Otherwise only the values originally set by the CPE client (e.g. {{param|PacketSendTime}} and {{param|TestGenSN}}) MAY be set to valid values. + + + + + + + + Time the client sent this UDP Echo Plus packet in UTC, which MUST be specified to microsecond precision. + For example: 2008-04-09T15:01:05.123456Z + + + + + + + + Time the client receives the response packet in UTC, which MUST be specified to microsecond precision. + For example: 2008-04-09T15:01:05.123456Z + If this response is never received, {{param}} SHOULD be set to the Unknown Time value as specified in {{bibref|TR-106|Section 3.2.2}}. + + + + + + + + The TestGenSN field in the UDPEcho Plus packet {{bibref|TR-143|Section A.1.4}} sent by the CPE client. + + + + + + + + The TestRespSN field in the response packet {{bibref|TR-143|Section A.1.4}} from the UDP Echo Plus server (i.e. {{param|#.Host}}) for this Echo Plus packet sent by the CPE client. If {{param|PacketSuccess}} is {{false}}, {{param}} SHOULD be 0. + + + + + + + + The TestRespRcvTimeStamp field in the response packet {{bibref|TR-143|Section A.1.4}} from the UDP Echo Plus server (i.e. {{param|#.Host}}) to record the reception time of this UDP Echo Plus packet sent from the CPE client. If {{param|PacketSuccess}} is {{false}}, {{param}} SHOULD be 0. + + + + + + + + + + The TestRespReplyTimeStamp field in the response packet {{bibref|TR-143|Section A.1.4}} from the UDP Echo Plus server (i.e. {{param|#.Host}}) to record the server reply time of this UDP Echo Plus packet sent from the CPE client. + That is, the time that the server returned the UDP Echo Plus packet. If {{param|PacketSuccess}} is {{false}}, {{param}} SHOULD be 0. + + + + + + + + + + The count value that was set by the UDP Echo Plus server (i.e. {{param|#.Host}}) to record the number of dropped echo response packets by the server. This count is incremented if a valid echo request packet is received at a UDP EchoPlus server but for some reason cannot be responded to (e.g. due to local buffer overflow, CPU utilization, etc...). If {{param|PacketSuccess}} is {{false}}, {{param}} SHOULD be 0. + + + + + + + + + + + Indicates the maximum number of connections that are supported for an IP-Layer Capacity test. + + + + + + + + + + The maximum number of rows in {{object|IPLayerCapacity().IncrementalResult}} that the device will store. + + + + + + + + + + Indicates the test metrics from {{bibref|TR-471|Section 5.2}} that are supported by the device. + + + + + + + IP packet Loss Ratio + + + + + Sampled Round Trip Time + + + + + IP packet Delay Variation + + + + + IP packet Reordering Ratio + + + + + + + + This command defines the IP Layer Capacity measurement configuration. IP Layer Capacity measurement is specified in {{bibref|TR-471}}. + Data received in the IP Layer Capacity measurement do not require storage on the device. + + + + Input arguments. + + + + Note that {{bibref|TR-471}} mandates support for and use of IPLR and Sampled RTT. + {{reference}} The IP-layer interface over which the test is to be performed. Example: Device.IP.Interface.1 + If {{empty}} is specified, the device MUST use the interface as directed by its routing policy (''Forwarding'' table entries) to determine the appropriate interface. + + + + + + + + + + + Indicates whether the device will act as Sender or Receiver of test packets. + + + + + + The device will act as the Receiver. + + + + + The device will act as the Sender. + + + + + + + + The Fully Qualified Domain Name (FQDN) or IP address of the Test Endpoint to perform the UDP Capacity tests with. + + + + + + + + + + Port on the Test Endpoint host. + + + + + + + + + + If {{true}}, jumbo frames are allowed. Default SHOULD be {{false}}. + + + + + + + + The number of connections to be used in the test. The default value SHOULD be 1. {{param}} MUST NOT be set to a value greater than {{param|#.IPLayerMaxConnections}}. + + + + + + + + + + Ethernet priority code for marking packets transmitted in the test (if applicable). The default value SHOULD be zero. + + + + + + + + + + The DiffServ code point for marking packets transmitted in the test. The default value SHOULD be zero. + + + + + + + + + + Indicates the IP protocol version to be used. The default value SHOULD be {{enum|Any}}. + + + + + + Use either IPv4 or IPv6 depending on the system preference. + + + + + Use IPv4 for the requests + + + + + Use IPv6 for the requests. + + + + + + + + Minimum reference size of UDP payload in {{units}}. No default. The implementation will algorithmically determine a value if none is configured. The value SHOULD be set to a value that avoids fragmentation (i.e., using path MTU discovery). + + + + + + + + + + + Maximum reference size of UDP payload in {{units}}. No default. The implementation will algorithmically determine a value if none is configured. The value SHOULD be set to the largest value that avoids fragmentation (i.e., using path MTU discovery). If {{param|JumboFramesPermitted}} is {{false}}, the maximum value MUST be 1472 octets. If {{param|JumboFramesPermitted}} is {{true}}, this value can be as large as 9000 octets. {{param}} MUST be greater than or equal to {{param|UDPPayloadMin}}. + + + + + + + + + + + Starting value for range of Dynamic Ports supported for test traffic and status feedback messages. + + + + + + + + + + Indicates the upper bound of the supported Dynamic Port range, where {{param|PortMin}} indicates the starting port number. {{param}} MUST be greater than or equal to {{param|PortMin}}. + + + + + + + + + + Starting value for range of User Ports supported for test traffic and status feedback messages. A value of zero (0) indicates no User Ports are used for test traffic or status feedback messages. + + + + + + + + + + + Indicates the upper bound of the supported User Port range, where {{param|PortOptionalMin}} indicates the starting port number. {{param}} MUST be greater than or equal to {{param|PortOptionalMin}}. A value of zero (0) indicates no User Ports are used for test traffic or status feedback messages. + + + + + + + + + + + Indicates the type of IP-Layer Capacity test being run. The default value SHOULD be {{enum|Search}}. + + + + + + Search algorithm will be used to determine sending rate. + + + + + Fixed sending rate will be used. + + + + + + + + Enables IPDV (IP packet Delay Variation) metric. Default SHOULD be {{false}}. + + + + + + + + Enables IPRR (IP packet Reordering Ratio) metric. Default SHOULD be {{false}}. + + + + + + + + Duration of the preamble testing, when traffic is being sent and/or received but the test clock has not been started. This is done to ensure all network elements in the path are "awake". The default value SHOULD be 2 {{units}}. Value specified in {{units}}. + + + + + + + + + + + The Sending Rate for a {{enum|Fixed|TestType}} test or the initial Sending Rate value for a {{enum|Search|TestType}} test. Value specified in {{units}}. The default SHOULD be 500 {{units}}. + + + + + + + + + + + Number of intermediate measurement reporting intervals. The value MUST NOT be greater than {{param|#.IPLayerMaxIncrementalResult}}. The default value SHOULD be 10. + + + + + + + + + + Duration of intermediate measurement reporting intervals. {{param}} * {{param|NumberTestSubIntervals}} MUST result in an integer value in seconds, in the range 5 seconds <= {{param}} * {{param|NumberTestSubIntervals}} <= 60 seconds. The default value SHOULD be 1000 {{units}}. Value specified in {{units}}. + + + + + + + + + + + Period of status feedback message (receiver of offered load returns messages to the sender with results of measured metrics). Value specified in {{units}}. The default SHOULD be 50 {{units}}. + + + + + + + + + + + Timeout value. Value specified in {{units}}. The default value SHOULD be 5 {{units}}. + + + + + + + + + + + Maximum waiting time for packets to arrive. Value specified in {{units}}. The default SHOULD be 1000 {{units}}. + + + + + + + + + + + Maximum Round Trip Time waiting time for packets to arrive. Value specified in {{units}}. The default SHOULD be 3000 {{units}}. + + + + + + + + + + + Indicates the requested precision of timestamp values. The test implementation will determine the actual precision to use based on the implemented resolution capabilities of the protocols used and this requested value. If the implemented resolution capabilities of the {{param|#.IPLayerCapSupportedMetrics}} protocols being used are able to provide the requested resolution, this resolution SHOULD be provided. Value specified in {{units}}. The default SHOULD be 1 {{units}}. + + + + + + + + + + + This parameter is only meaningful if {{param|TestType}} is {{enum|Search|TestType}}. The lower threshold on the range of Round Trip Time (RTT) variation. Value specified in {{units}}. The default SHOULD be 30 {{units}}. + + + + + + + + + + + This parameter is only meaningful if {{param|TestType}} is {{enum|Search|TestType}}. The upper threshold on the range of Round Trip Time (RTT) variation. Value specified in {{units}}. The default SHOULD be 90 {{units}}. + + + + + + + + + + + This parameter is only meaningful if {{param|TestType}} is {{enum|Search|TestType}}. The number of rows to move in a single adjustment when initially increasing offered load (to ramp up quickly). The default SHOULD be 10. + + + + + + + + + + This parameter is only meaningful if {{param|TestType}} is {{enum|Search|TestType}}. Threshold on the measured number of consecutive status reports indicating loss and/or delay variation above {{param|UpperThresh}} (SlowAdjCount). The default SHOULD be 2. + + + + + + + + + + This parameter is only meaningful if {{param|TestType}} is {{enum|Search|TestType}}. Threshold for transition between low and high sending rate step sizes (such as 1Mbps and 100 Mbps). If {{param|JumboFramesPermitted}} is {{true}} this may result in use of jumbo frames. The default SHOULD be 1 {{units}}. + + + + + + + + + + + + Output arguments. + + + + Indicates the availability of diagnostics data. {{enum}} + If the value of this parameter is anything other than {{enum|Complete}}, the values of the other results parameters for this test are indeterminate. + + + + + + + + + + + + + + + + + + + + + Beginning of transmission send/receive time in UTC, which MUST be specified to {{param|TimestampResolution}} precision. If multiple connections are used, then {{param}} is set to the earliest value across all connections. For example: 2008-04-09T15:01:05.123456Z + + + + + + + + End of transmission in UTC, which MUST be specified to {{param|TimestampResolution}} precision. If multiple connections are used, then {{param}} is set to the latest value across all connections. For example: 2008-04-09T15:01:05.123456Z + + + + + + + + Configured value of {{param|Tmax}} used in the test. This value is expressed in {{units}}. + + + + + + + + + + Duration of the test (either downlink or uplink). This value is expected to equal {{param|TestSubInterval}} * {{param|NumberTestSubIntervals}}. This value is expressed in {{units}}. + + + + + + + + + + The maximum IP-Layer Capacity metric from among all {{param|IncrementalResult.{i}.IPLayerCapacity}} values measured between {{param|BOMTime}} and {{param|EOMTime}} across all connections for this test. This is calculated according to {{bibref|TR-471}} Equation 1. Result is expressed in {{units}} with 3 digits beyond the decimal. 10^6 bits/second = 1 Mbps. + + + + + + + + + + Time in UTC of end of the sub-interval when {{param|MaxIPLayerCapacity}} was measured. If the value of {{param|MaxIPLayerCapacity}} occurred in multiple sub-intervals, this MUST be the earliest of these sub-intervals. Value MUST be specified to {{param|TimestampResolution}} precision. For example: 2008-04-09T15:01:05.123456Z + + + + + + + + Ratio of lost packets to total packets during sub-interval of {{param|MaxIPLayerCapacity}}. This value is expressed as a decimal to 9 decimal digits. + + + + + + + + The range of Round Trip Time (RTT) during sub-interval of {{param|MaxIPLayerCapacity}}. This value is expressed in {{units}}. This value is expressed as a decimal to 9 decimal digits. + + + + + + + + + + The range of Packet Delay Variation (PDV) during sub-interval of {{param|MaxIPLayerCapacity}}. This value is expressed in {{units}}. This value is expressed as a decimal to 9 decimal digits. + + + + + + + + + + The minimum one-way delay during the sub-interval of {{param|MaxIPLayerCapacity}}. The minimum one-way delay is calculated at the conclusion of the test and SHALL be calculated using the conditional distribution of all packets with a finite one-way delay value (undefined delays are excluded). This value is expressed in {{units}}. This value is expressed as a decimal to 9 decimal digits. + + + + + + + + + + Ratio of reordered packets to total packets during the sub-interval of {{param|MaxIPLayerCapacity}}. This value is expressed as a decimal to 9 decimal digits. + + + + + + + + Configured value of {{param|TmaxRTT}} used in the test. This value is expressed in {{units}}. + + + + + + + + + + Indicates the timestamp resolution of reported results. Value specified in {{units}}. + + + + + + + + + + Results for time segmented tests (tests where {{param|#.NumberTestSubIntervals}} > 1). This data is calculated across all connections in the test. A new object is created every {{param|#.TestSubInterval}} after that interval has completed. Instance numbers MUST start at 1 and sequentially increment as new instances are created. All instances are removed when new test is started or results are otherwise cleared. + + + + Results of measurements using the maximum IP-Layer Capacity metric calculation for a single interval from {{bibref|TR-471}} Equation 1, for time interval of duration {{param|#.TestSubInterval}} ending at {{param|TimeOfSubInterval}} across all connections for this test. Result is expressed in {{units}} with 3 digits beyond the decimal. 10^6 bits/second = 1 Mbps. + + + + + + + + + + Time in UTC of end of sub-interval when {{param|IPLayerCapacity}} was measured. Value MUST be specified to {{param|#.TimestampResolution}} precision. For example: 2008-04-09T15:01:05.123456Z + + + + + + + + Ratio of lost packets to total packets, for time interval of duration {{param|#.TestSubInterval}} ending at {{param|TimeOfSubInterval}} across all connections for this test. This value is expressed as a decimal to 9 decimal digits. + + + + + + + + The range of Round Trip Time (RTT), for time interval of duration {{param|#.TestSubInterval}} ending at {{param|TimeOfSubInterval}} across all connections for this test. See {{bibref|TR-471}} for description of how value is calculated. This value is expressed in {{units}}. This value is expressed as a decimal to 9 decimal digits. + + + + + + + + + + The range of Packet Delay Variation (PDV), for time interval of duration {{param|#.TestSubInterval}} ending at {{param|TimeOfSubInterval}} across all connections for this test. See {{bibref|TR-471}} for description of how value is calculated. This value is expressed in {{units}}. This value is expressed as a decimal to 9 decimal digits. + + + + + + + + + + The minimum one-way delay, for time interval of duration {{param|#.TestSubInterval}} ending at {{param|TimeOfSubInterval}} across all connections for this test. The minimum one-way delay is calculated at the conclusion of the test and SHALL be calculated using the conditional distribution of all packets with a finite one-way delay value (undefined delays are excluded). This value is expressed in {{units}}. This value is expressed as a decimal to 9 decimal digits. + + + + + + + + + + Ratio of reordered packets to total packets, for time interval of duration {{param|#.TestSubInterval}} ending at {{param|TimeOfSubInterval}} across all connections for this test. This value is expressed as a decimal to 9 decimal digits. + + + + + + + + + + + This command provides access to a diagnostics test that performs either an ICMP Ping or UDP Echo ping against multiple hosts determining which one has the smallest average response time. There MUST be a ping response to the transmitted ping, or timeout, before the next ping is sent out. + + + + Input arguments. + + + + {{reference|the IP-layer interface over which the test is to be performed|ignore}} Example: Device.IP.Interface.1 + If {{empty}} is specified, the CPE MUST use the interface as directed by its routing policy (''Forwarding'' table entries) to determine the appropriate interface. + + + + + + + + + + + Indicates the IP protocol version to be used. + + + + + + Use either IPv4 or IPv6 depending on the system preference. + + + + + Use IPv4 for the requests. + + + + + Use IPv6 for the requests. + + + + + + + + + The protocol over which the test is to be performed. + + + + + + + + + + + Each entry is a Host name or address of a host to ping. + + + + + + + + + + + Number of repetitions of the ping test to perform for each {{param|HostList}} entry before reporting the results. + + + + + + + + + + Timeout in {{units}} for each iteration of the ping test where the total number of iterations is the value of {{param|NumberOfRepetitions}} times the number of entities in the {{param|HostList}} Parameter. + + + + + + + + + + + + Output arguments. + + + + Indicates the availability of diagnostics data. {{enum}} + If the value of this parameter is anything other than {{enum|Complete}}, the values of the other results parameters for this test are indeterminate. + + + + + + + + + + + + + Result parameter indicating the Host (one of the items within the {{param|HostList}} Parameter) with the smallest average response time. + + + + + + + + Result parameter indicating the minimum response time in {{units}} over all repetitions with successful responses of the most recent ping test for the Host identified in {{param|FastestHost}}. Success is defined by the underlying protocol used. If there were no successful responses across all Hosts, this value MUST be zero. + + + + + + + + + + Result parameter indicating the average response time in {{units}} over all repetitions with successful responses of the most recent ping test for the Host identified in {{param|FastestHost}}. Success is defined by the underlying protocol used. If there were no successful responses across all Hosts, this value MUST be zero. + + + + + + + + + + Result parameter indicating the maximum response time in {{units}} over all repetitions with successful responses of the most recent ping test for the Host identified in {{param|FastestHost}}. Success is defined by the underlying protocol used. If there were no successful responses across all Hosts, this value MUST be zero. + + + + + + + + + + Indicates which IP address was used to send the request to the host identified in {{param|FastestHost}}. + + + + + + + + + + + This object allows the CPE to be configured to perform the UDP Echo Service defined in {{bibref|RFC862}} and UDP Echo Plus Service defined in {{bibref|TR-143|Appendix A.1}}. + + + + MUST be enabled to receive UDP echo. When enabled from a disabled state all related timestamps, statistics and UDP Echo Plus counters are cleared. + + + + + + + + {{reference|IP-layer interface over which the CPE MUST listen and receive UDP echo requests on}} + The value of this parameter MUST be either a valid interface or {{empty}}. An attempt to set this parameter to a different value MUST be rejected as an invalid parameter value. + If {{empty}} is specified, the CPE MUST listen and receive UDP echo requests on all interfaces. + Note: Interfaces behind a NAT MAY require port forwarding rules configured in the Gateway to enable receiving the UDP packets. + + + + + + + + + + + The Source IP address of the UDP echo packet. The CPE MUST only respond to a UDP echo from this source IP address. + + + + + + + + The UDP port on which the UDP server MUST listen and respond to UDP echo requests. + + + + + + + + If {{true}} the CPE will perform necessary packet processing for UDP Echo Plus packets. + + + + + + + + {{true}} if UDP Echo Plus is supported. + + + + + + + + Incremented upon each valid UDP echo packet received. + + + + + + + + Incremented for each UDP echo response sent. + + + + + + + + The number of UDP received bytes including payload and UDP header after the UDPEchoConfig is enabled. + + + + + + + + The number of UDP responded bytes, including payload and UDP header sent after the UDPEchoConfig is enabled. + + + + + + + + Time in UTC, which MUST be specified to microsecond precision. + For example: 2008-04-09T15:01:05.123456, + The time that the server receives the first UDP echo packet after the UDPEchoConfig is enabled. + + + + + + + + Time in UTC, which MUST be specified to microsecond precision. + For example: 2008-04-09T15:01:05.123456 + The time that the server receives the most recent UDP echo packet. + + + + + + + + + This object contains Link Layer Discovery Protocol (LLDP) {{bibref|802.1AB-2009}} related objects and parameters. + + + + + This object is used for managing the discovery of LLDP devices. + The CPE MAY, but need not, retain some or all of the information in this object across reboot. + + + + {{numentries}} + + + + + + + + + This table contains information about discovered LLDP devices. + + + + + + + + {{reference|the interface via which the LLDP device was discovered}} + + + + + + + + + + The chassis identifier subtype, which is included in the value of the ''LLDPDU's'' Chassis ID TLV (TLV Type = 1). The following subtype values are defined: + * ''0'' (Reserved) + * ''1'' (Chassis component) + * ''2'' (Interface alias) + * ''3'' (Port component) + * ''4'' (MAC address) + * ''5'' (Network address) + * ''6'' (Interface name) + * ''7'' (Locally assigned) + * ''8-255'' (Reserved) + Note: It is assumed that this integer might be used for HTIP (Home-network Topology Identifying Protocol) {{bibref|JJ-300.00}} and {{bibref|G.9973}}. In this case, the Chassis ID is set to the representative MAC address (chassis ID subtype = 4) for ''HTIP-Ethernet Bridge''. + + + + + + + + + + The chassis identifier, which is included in the value of the ''LLDPDU's'' Chassis ID TLV (TLV Type = 1). + Note: It is assumed that this string might be used for HTIP (Home-network Topology Identifying Protocol) {{bibref|JJ-300.00}} and {{bibref|G.9973}}. In this case, the Chassis ID is set to the representative MAC address. If ''LLDPDU''s are sent and received from two or more LLDP agents of the same ''HTIP-Ethernet Bridge'', this value is same in all ''LLDPDU''s. + + + + + + + + + + {{list}}Indicates the full path names of all Host table entries, whether active or inactive, that correspond to this device. + When the entries are added to or removed from the Host tables, the value of this parameter MUST be updated accordingly. + + + + + + + + + + + + + + {{numentries}} + + + + + + + + + This table contains information about ports on discovered LLDP devices. + + + + + + + + The port identifier subtype, which is included in the value of the ''LLDPDU's'' Port ID TLV (TLV Type = 2). The following subtype values are defined: + * ''0'' (Reserved) + * ''1'' (Interface alias) + * ''2'' (Port component) + * ''3'' (MAC address) + * ''4'' (Network address) + * ''5'' (Interface name) + * ''6'' (Agent circuit ID) + * ''7'' (Locally assigned) + * ''8-255'' (Reserved) + + + + + + + + + + The port identifier, which is included in the value of the ''LLDPDU's'' Port ID TLV (TLV Type = 2). + + + + + + + + + + The ''LLDPDU'' lifetime (in {{units}}), which is the value of the latest TimeToLive TLV (TLV Type = 3). + If this value is 0, it means that the LLDP agent or the MAC service function of the port is stopped. + + + + + + + + + + + The port description, which is the value of the latest Port Description TLV (TLV Type = 4), or {{empty}} if no Port Description TLV has been received. + Note: It is assumed that this string might be used for HTIP (Home-network Topology Identifying Protocol) {{bibref|JJ-300.00}} and {{bibref|G.9973}}. In this case, the parameter value is likely to be one of the names defined in {{bibref|JJ-300.00|Appendix A (''List of Interface Standard Names'')}}. + + + + + + + + + + The device's MAC addresses, which are included in the value of the ''LLDPDU's'' Organizationally Specific TLV (TLV Type = 127), or {{empty}} if no list of MAC addresses has been received. + The parameter is relevant when there is a LLDP device which has a MAC copy function and has two or more MAC addresses. + Note: It is assumed that it might be used for HTIP (Home-network Topology Identifying Protocol) {{bibref|JJ-300.00}} and {{bibref|G.9973}}. In this case, the {{bibref|OUI}} in the third octet is E0271A (''TTC-OUI'') and the organizationally defined subtype in the sixth octet is 3 (''MAC Address List''). + + + + + + + + + The date and time at which the last LLDPDU was received for this ({{object|#}},{{object}}). + + + + + + + + + The port's link information, which is included in the value of the ''LLDPDU's'' Organizationally Specific TLV (TLV Type = 127). + Note: It is assumed that this object might be used for HTIP (Home-network Topology Identifying Protocol) {{bibref|JJ-300.00}} and {{bibref|G.9973}}. In this case, the {{bibref|OUI}} in the third octet is E0271A (''TTC-OUI'') and the organizationally defined subtype in the sixth octet is 2 (''Link Information''). + + + + The port's interface type, or 0 if no interface type has been received. + Note: It is assumed that it might be used for HTIP (Home-network Topology Identifying Protocol) {{bibref|JJ-300.00}} and {{bibref|G.9973}}. In this case, it's an IANA interface type {{bibref|IANAifType}}. + For example, IANAifType defines the following interface types for wired line (UTP cable), wireless line, power line, and coaxial cable: + * ''6'' (Wired line) + * ''71'' (Wireless) + * ''174'' (PLC) + * ''236'' (Coaxial cable) + + + + + + + + The port's MAC forwarding table, or the value is {{empty}} if no forwarding table was supplied. + + + + + + + + + + The device information, which is included in the value of the ''LLDPDU's'' Organizationally Specific TLV (TLV Type = 127). + Note: It is assumed that this object might be used for HTIP (Home-network Topology Identifying Protocol) {{bibref|JJ-300.00}} and {{bibref|G.9973}}. In this case, this table contains the Organizationally Specific TLV (TLV Type = 127) of ''LLDPDU'', in which the {{bibref|OUI}} in the third octet is E0271A (''TTC-OUI'') and the organizationally defined subtype in the sixth octet is 1 (''Device Information''). + + + + Each list item indicates a device category (e.g."AV_TV" and "AV_Recorder"), or the value is {{empty}} if no device categories were provided. + Note: It is assumed that this list might be used for HTIP (Home-network Topology Identifying Protocol) {{bibref|JJ-300.00}} and {{bibref|G.9973}}. Standard HTIP device categories are defined in {{bibref|JJ-300.01}}. In this case, the maximum length of the list is 127 and of each item is 31, and any non-HTIP device categories SHOULD NOT conflict with standard HTIP device categories. + + + + + + + + + The manufacturer OUI, which is included in the value of the ''LLDPDU's'' Organizationally Specific TLV (TLV Type = 127), or {{empty}} if no manufacturer OUI was provided. + {{pattern}} + + + + + + + {{empty}} + + + + + + + + + The model name, which is included in the value of the ''LLDPDU's'' Organizationally Specific TLV (TLV Type = 127), or {{empty}} if no model name was provided. + Note: It is assumed that this string might be used for HTIP (Home-network Topology Identifying Protocol) {{bibref|JJ-300.00}} and {{bibref|G.9973}}. + + + + + + + + + + The model number, which is included in the value of the ''LLDPDU's'' Organizationally Specific TLV (TLV Type = 127), or {{empty}} if no model number was provided. + Note: It is assumed that this string might be used for HTIP (Home-network Topology Identifying Protocol) {{bibref|JJ-300.00}} and {{bibref|G.9973}}. + + + + + + + + + + {{numentries}} + + + + + + + + + The vendor-specific device information, which is included in the value of the ''LLDPDU's'' Organizationally Specific TLV (TLV Type = 127). + {{keys}} + Note: It is assumed that this object might be used for HTIP (Home-network Topology Identifying Protocol) {{bibref|JJ-300.00}} and {{bibref|G.9973}}. In this case, this table contains the Organizationally Specific TLV (TLV Type = 127) of ''LLDPDU'', in which the {{bibref|OUI}} in the third octet is E0271A (''TTC-OUI''), the organizationally defined subtype in the sixth octet is 1 (''Device Information''), and the device information ID in the seventh octet is 255 (''Vendor-specific extension field''). + + + + + + + + The vendor-specific organization code, which is included in the value of the ''LLDPDU's'' Organizationally Specific TLV (TLV Type = 127). + + + + + + + + + + + The vendor-specific device information type, which is included in the value of the ''LLDPDU's'' Organizationally Specific TLV (TLV Type = 127). + + + + + + + + + + The vendor-specific device information, which is included in the value of the ''LLDPDU's'' Organizationally Specific TLV (TLV Type = 127). + + + + + + + + + + + IPsec {{bibref|RFC4301}} object that supports the configuration of Encapsulating Security Payload (ESP) {{bibref|RFC4303}} and Authentication Header (AH) {{bibref|RFC4302}} in tunnel mode {{bibref|RFC4301|Section 3.2}}. + Use of IKEv2 {{bibref|RFC5996}} is assumed. The IPsec object does not currently support static configuration of tunnels and child Security Associations (SAs). + See the IPsec Theory of Operation {{bibref|TR-181i2|Appendix IX}} for a description of the working of this IPsec data model. + + + + Enables or disables IPsec. + + + + + + + + IPsec status. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + Indicates whether or not Authentication Header (AH) {{bibref|RFC4302}} is supported. + + + + + + + + Supported IKEv2 encryption algorithms {{bibref|IKEv2-params|Transform Type 1}}. {{enum}} + Note that these are the names from the above reference, transformed as follows: + * Leading ''ENCR_'' (when present) discarded because they are all encryption algorithms so it's not needed. + * Underscores changed to hyphens to preserve names used in existing data models (and because of inconsistent conventions). + * Phrases collapsed where unambiguous, e.g. "with a(n) NN octet ICV" -> "-NN". + As additional algorithms are added to the above reference, this data model will be extended according to the above conventions. + + + + + + + + + + + + + + + + + + + + + + + + + + Supported ESP encryption algorithms {{bibref|IKEv2-params|Transform Type 1}} {{bibref|RFC4835|Section 3.1.1}}. {{enum}} + Note that these are the names from the above reference, transformed as follows: + * Leading ''ENCR_'' (when present) discarded because they are all encryption algorithms so it's not needed. + * Underscores changed to hyphens to preserve names used in existing data models (and because of inconsistent conventions). + * Phrases collapsed where unambiguous, e.g. "with a(n) NN octet ICV" -> "-NN". + * Some algorithms with apparently rather specialised application are omitted, e.g. ''ENCR_NULL_AUTH_AES_GMAC''. + As additional algorithms are added to the above reference, this data model will be extended according to the above conventions. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Supported IKEv2 pseudo-random functions {{bibref|IKEv2-params|Transform Type 2}}. {{enum}} + Note that these are the names from the above reference, transformed as follows: + * Leading ''PRF_'' (when present) discarded because they all pseudo-random functions so it's not needed. + * Underscores changed to hyphens to preserve names used in existing data models. + * Hyphen inserted after ''AES'' (or other acronym) when immediately followed by a key length. + As additional functions are added to the above reference, this data model will be extended according to the above conventions. + + + + + + + + + + + + + + + + + + Supported integrity algorithms {{bibref|IKEv2-params|Transform Type 3}}. {{enum}} + Note that these are the names from the above reference, transformed as follows: + * Leading ''AUTH_'' (when present) discarded because they all authentication (integrity) algorithms so it's not needed. + * Underscores changed to hyphens to preserve names used in existing data models. + As additional algorithms are added to the above reference, this data model will be extended according to the above conventions. + + + + + + + + + + + + + + + + + + + + + + + + + Supported Diffie-Hellman group transforms {{bibref|IKEv2-params|Transform Type 4}}. {{enum}} + Note that these are the names from the above reference, transformed as follows: + * Name (other than ''NONE'') always starts with the type of group, currently ''MODP'' or ''ECP'' (implies ECP random). + * This is followed by ''-NN'', where ''NN'' is the group length in bits. + * this is followed by ''-PRIME-NN'' for groups with prime order subgroups, where ''NN'' is the subgroup length in bits. + As additional algorithms are added to the above reference, this data model will be extended according to the above conventions. + + + + + + + + + + + + + + + + + + + + + + + + + + + The maximum number of entries in the {{object|Filter}} table. + A value of 0 means no specific limit. + + + + + + + + The maximum number of entries in the {{object|Profile}} table. + A value of 0 means no specific limit. + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + Global IPsec statistics. These statistics include all IPsec traffic, i.e. all IKEv2 negotiation, IKEv2 SAs and child SAs. + The CPE MUST reset global IPsec Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when IPsec is disabled ({{param|.IPsec.Enable}} is set to {{false}}) or when IPsec is enabled ({{param|.IPsec.Enable}} is set to {{true}}). + + + + The total number of times an IPsec negotiation failure has occurred. + + + + + + + + The total number of {{units}} sent by IPsec. + + + + + + + + + + The total number of {{units}} received by IPsec. + + + + + + + + + + The total number of {{units}} sent by IPsec. + + + + + + + + + + The total number of {{units}} received by IPsec. + + + + + + + + + + The total number of {{units}} discarded by IPsec due to any error. This can include packets dropped due to a lack of transmit buffers. + + + + + + + + + + The total number of {{units}} discarded by IPsec due to an unknown SPI (Security Parameter Index). + + + + + + + + + + The total number of {{units}} discarded by IPsec due to ESP decryption errors. + + + + + + + + + + The total number of {{units}} discarded by IPsec due to integrity errors. + + + + + + + + + + The total number of {{units}} discarded by IPsec due to replay errors. + + + + + + + + + + The total number of {{units}} discarded by IPsec due to policy errors. + + + + + + + + + + The total number of {{units}} discarded by IPsec due to errors other than unknown SPI, decryption, integrity, replay or policy errors. This can include packets dropped due to a lack of receive buffers. + + + + + + + + + + + Filter table that represents the IPsec Security Policy Database (SPD) {{bibref|RFC4301|Section 4.4.1}} selection criteria. Each (ordered) entry defines a set of selection criteria and references a {{object|#.Profile}} table entry that specifies how matching packets will be processed. + SPD filtering is performed for all packets that might need to cross the IPsec boundary {{bibref|RFC4301|Section 3.1}}. Given that IPsec operates at the IP level, this means that SPD filtering conceptually occurs after bridging and before routing. + For enabled table entries, if {{param|Interface}} is not a valid reference and {{param|AllInterfaces}} is {{false}}, then the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + + + + + + + Enables or disables this IPsec Filter table entry. + + + + + + + + + The status of this IPsec Filter table entry. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + Position of the {{object}} entry in the order of precedence. A value of ''1'' indicates the first entry considered (highest precedence). For each packet, the highest ordered entry that matches the filter criteria is applied. All lower order entries are ignored. + When this value is modified, if the value matches that of an existing entry, the {{param}} value for the existing entry and all lower {{param}} entries is incremented (lowered in precedence) to ensure uniqueness of this value. A deletion causes {{param}} values to be compacted. When a value is changed, incrementing occurs before compaction. + The value of {{param}} on creation of a {{object}} table entry MUST be one greater than the largest current value (initially assigned the lowest precedence). + + + + + + + + + + {{datatype|expand}} + + + + + + + + SPD selection criterion. {{reference}} + This specifies the ingress interface associated with the entry. It MAY be a layer 1, 2 or 3 interface. However, the types of interfaces for which filters can be instantiated is a local matter to the CPE. + + + + + + + + + + + + SPD selection criterion. + This specifies that all ingress interfaces are associated with the entry. If {{true}}, the value of {{param|Interface}} is ignored since all ingress interfaces are indicated. + + + + + + + + + SPD selection criterion. + Destination IP address. {{empty}} indicates this criterion is not used, i.e. is ''ANY''. + + + + + + + + + SPD selection criterion. + Destination IP address mask. If not {{empty}}, only the indicated network portion of the {{param|DestIP}} address is to be used for selection. {{empty}} indicates that the full {{param|DestIP}} address is to be used for selection. + + + + + + + + + If {{false}}, the rule matches only those packets that match the (masked) {{param|DestIP}} entry, if specified. + If {{true}}, the rule matches all packets except those that match the (masked) {{param|DestIP}} entry, if specified. + + + + + + + + + SPD selection criterion. + Source IP address. {{empty}} indicates this criterion is not used, i.e. is ''ANY''. + + + + + + + + + SPD selection criterion. + Source IP address mask. If not {{empty}}, only the indicated network portion of the {{param|SourceIP}} address is to be used for selection. {{empty}} indicates that the full {{param|SourceIP}} address is to be used for selection. + + + + + + + + + If {{false}}, the rule matches only those packets that match the (masked) {{param|SourceIP}} entry, if specified. + If {{true}}, the rule matches all packets except those that match the (masked) {{param|SourceIP}} entry, if specified. + + + + + + + + + SPD selection criterion. + Protocol number. A value of -1 indicates this criterion is not used, i.e. is ''ANY''. + Note that {{bibref|RFC4301}} refers to this as the ''Next Layer Protocol''. It is obtained from the IPv4 ''Protocol'' or the IPv6 ''Next Header'' fields. + + + + + + + + + + + If {{false}}, the rule matches only those packets that match {{param|Protocol}}, if specified. + If {{true}}, the rule matches all packets except those that match {{param|Protocol}}, if specified. + + + + + + + + + SPD selection criterion. + Destination port number. A value of -1 indicates this criterion is not used, i.e. is ''ANY''. + The value of this parameter is ignored for protocols that do not use ports, e.g. ICMP (1). + + + + + + + + + + + SPD selection criterion. + If specified, indicates a destination port address range from {{param|DestPort}} through {{param}} (inclusive), in which case {{param}} MUST be greater than or equal to {{param|DestPort}}. + A value of -1 indicates that no destination port range is specified. + + + + + + + + + + + If {{false}}, the rule matches only those packets that match {{param|DestPort}} (or port range), if specified. + If {{true}}, the rule matches all packets except those that match {{param|DestPort}} (or port range), if specified. + + + + + + + + + SPD selection criterion. + Source port number. A value of -1 indicates this criterion is not used, i.e. is ''ANY''. + The value of this parameter is ignored for protocols that do not use ports, e.g. ICMP (1). + + + + + + + + + + + SPD selection criterion. + If specified, indicates a source port address range from {{param|SourcePort}} through {{param}} (inclusive), in which case {{param}} MUST be greater than or equal to {{param|SourcePort}}. + A value of -1 indicates that no source port range is specified. + + + + + + + + + + + If {{false}}, the rule matches only those packets that match {{param|SourcePort}} (or port range), if specified. + If {{true}}, the rule matches all packets except those that match {{param|SourcePort}} (or port range), if specified. + + + + + + + + + Indicates how packets that match this rule will be processed {{bibref|RFC4301|Section 4.4.1}}. + + + + + + Packet is not allowed to traverse the IPsec boundary; packet will be discarded + + + + + Packet is allowed to bypass traverse the IPsec boundary without protection + + + + + Packet is afforded protection as specified by {{param|Profile}} + + + + + + + + + The profile that defines the IPsec treatment for matching packets. {{reference}} + If {{param|ProcessingChoice}} is {{enum|Protect|ProcessingChoice}}, {{param}} MUST NOT be {{empty}}. In this case, if it ever becomes {{empty}}, e.g. because the referenced profile is deleted, this IPsec Filter table entry is invalid and {{param|Status}} MUST be set to {{enum|Error_Misconfigured|Status}}. + If {{param|ProcessingChoice}} is not {{enum|Protect|ProcessingChoice}}, {{param}} is ignored. + Any changes to the referenced profile will have an immediate effect on any established IPsec tunnels. Such changes will often force IKEv2 sessions and child SAs to be re-established. + + + + + + + + + + + Profile table that represents the IPsec Security Policy Database (SPD) {{bibref|RFC4301|Section 4.4.1}} processing info. Each entry defines the IPsec treatment for packets that match the {{object|#.Filter}} entries that reference the entry. + + + + + + + {{datatype|expand}} + + + + + + + + Controls the maximum number of child Security Association (SA) pairs that can be negotiated by a single IKEv2 session. + If a new child SA pair is needed, but the current IKEv2 session already has {{param}} child SA pairs, an additional IKEv2 session (and therefore an additional IPsec tunnel) will be established. + A value of 0 means no specific limit. + Note that support for more than one child SA pair per IKEv2 session is OPTIONAL {{bibref|RFC5996|Section 1.3}}. + + + + + + + + The host name or IP address of the remote IPsec tunnel endpoint. If more than one name/address is supplied, they will be tried in turn, i.e. they are in decreasing order of precedence. + + + + + + + + + + + Identifier of the forwarding policy associated with traffic that is associated with this profile. + The forwarding policy can be referenced by entries in the {{object|##.Routing.Router.{i}.IPv4Forwarding}} and {{object|##.Routing.Router.{i}.IPv6Forwarding}} tables, and therefore allows SPD selection criteria to influence the forwarding decision. + + + + + + + + + The "child" security protocol. + This is not to be confused with {{object|#.Filter}}.{{param|#.Filter.{i}.Protocol}}, which is an SPD selector that can select packets that already have AH or ESP headers. {{object}}.{{param}} selects whether AH or ESP will be used when encapsulating a packet. + + + + + + Authentication Header {{bibref|RFC4302}}; can only be selected if {{param|#.AHSupported}} is {{true}} + + + + + Encapsulating Security Payload {{bibref|RFC4303}} + + + + + + + + + IKEv2 CPE authentication method {{bibref|RFC5996|Section 2.15}}. {{reference|an enabled row in the {{object|.Security.Certificate}} table or in another table that contains appropriate CPE credentials}} + If {{empty}}, or the referenced row is disabled or deleted, the CPE chooses the authentication method based on local policy. + + + + + + + + + + + Allowed IKEv2 encryption algorithms. + + + + + + + + + + + Allowed ESP encryption algorithms. + + + + + + + + + + + Allowed IKEv2 pseudo-random functions. + + + + + + + + + + + Allowed IKEv2 integrity algorithms. + + + + + + + + + + + Allowed AH integrity algorithms {{bibref|IKEv2-params|Transform Type 3}} {{bibref|RFC4835|Section 3.2}}. + + + + + + + + + + + + Allowed ESP integrity algorithms {{bibref|IKEv2-params|Transform Type 3}} {{bibref|RFC4835|Section 3.1.1}}. + + + + + + + + + + + + Allowed IKEv2 Diffie-Hellman group transforms. + + + + + + + + + + + IKEv2 Dead Peer Detection (DPD) timeout in {{units}}. {{bibref|RFC5996|section 2.4}} + + + + + + + + + + IKEv2 NAT traversal (NAT-T) keepalive timeout in {{units}}. {{bibref|RFC3948|Section 4}} + + + + + + + + + + The size of the AH or ESP Anti-Replay Window. {{bibref|RFC4302|Section B.2}} {{bibref|RFC4303|Section A2}} + A value of 0 means that Sequence Number Verification is disabled. + + + + + + + + + Controls the value of the ''Do Not Fragment'' (DF) bit. {{bibref|RFC4301|Section 8.1}} + + + + + + + + Copy from inner header; applies only when both inner and outer headers are IPv4 + + + + + + + + DSCP with which to mark the outer IP header for traffic that is associated with this IPsec channel. + A value of -1 indicates copy from the incoming packet. + A value of -2 indicates automatic marking of DSCP. + De-tunneled packets are never re-marked. + Automatic DSCP marking behavior is a local matter to the CPE, possibly influenced by other Broadband Forum standards that it supports. + + + + + + + + + + IKEv2 SA lifetime in {{units}}, or zero if there is no traffic constraint on its expiration. + If both {{param}} and {{param|IKEv2SATimeLimit}} are non-zero, the IKEv2 SA is deleted when the first limit is reached. + + + + + + + + + + IKEv2 SA lifetime in {{units}}, or zero if there is no time constraint on its expiration. + If both {{param}} and {{param|IKEv2SATrafficLimit}} are non-zero, the IKEv2 SA is deleted when the first limit is reached. + + + + + + + + + + Action to take when an IKEv2 SA expires, whether as a result of hitting a traffic limit or a time limit. + + + + + + + + + + + Child SA lifetime in {{units}}, or zero if there is no traffic constraint on its expiration. + If both {{param}} and {{param|ChildSATimeLimit}} are non-zero, the child SA is deleted when the first limit is reached. + + + + + + + + + + Child SA lifetime in {{units}}, or zero if there is no time constraint on its expiration. + If both {{param}} and {{param|ChildSATrafficLimit}} are non-zero, the child SA is deleted when the first limit is reached. + + + + + + + + + + Action to take when a Child SA expires, whether as a result of hitting a traffic limit or a time limit. + + + + + + + + + + + {{numentries}} + + + + + + + + + Each instance of this object represents an IKEv2 Configuration Payload (CP) {{bibref|RFC5996|Section 3.15}} Attribute that MUST, if enabled, be sent in IKEv2 CP CFG_REQUEST messages. All such Attributes MUST be listed. + + + + + + + + + + Enables or disables this {{object}} entry. + + + + + + + + {{datatype|expand}} + + + + + + + + CP Attribute Type as described in {{bibref|RFC5996|Section 3.15.1}} and defined in {{bibref|IKEv2-params|IKEv2 Configuration Payload Attribute Types}}. + + + + + + + + + + A hexbinary encoded CP Attribute Value as described in {{bibref|RFC5996|Section 3.15.1}} and defined in {{bibref|IKEv2-params|IKEv2 Configuration Payload Attribute Types}}. + + + + + + + + + + + Represents an IPsec tunnel, i.e. a virtual IP interface that models an IPsec tunnel entry point and exit point. A {{object}} instance always references (and has the same lifetime as) a ({{enum|Tunnel|.IP.Interface.{i}.Type}},{{enum|Tunneled|.IP.Interface.{i}.Type}}) {{object|.IP.Interface}} pair. The {{object}} instance models the IPsec-specific concepts, the {{enum|Tunnel|.IP.Interface.{i}.Type}} {{object|.IP.Interface}} instance models the generic concepts, and the {{enum|Tunneled|.IP.Interface.{i}.Type}} {{object|.IP.Interface}} instance exists only so it can be referenced by forwarding or filter rules. + {{object}} instances are automatically created (as needed) when {{object|#.Filter}} instances are enabled and disabled. + Each instance's {{param|Filters}} parameter references the {{object|#.Filter}} instances that require the {{object}} instance to exist. If this list ever becomes {{empty}}, e.g. because all the referenced {{object|#.Filter}} instances have been disabled or deleted, the CPE MAY choose not to delete the {{object}} instance (and its associated ({{enum|Tunnel|.IP.Interface.{i}.Type}},{{enum|Tunneled|.IP.Interface.{i}.Type}}) {{object|.IP.Interface}} pair). This can be desirable, because {{object|.QoS.Classification}}, {{object|.Routing.Router.{i}.IPv4Forwarding}}, {{object|.Routing.Router.{i}.IPv6Forwarding}} etc instances might be referencing the {{object|.IP.Interface}} instances. + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The corresponding auto-created {{enum|Tunnel|Device.IP.Interface.{i}.Type}} {{object|.IP.Interface}} instance. {{reference||delete}} + + + + + + + + + + The corresponding auto-created {{enum|Tunneled|Device.IP.Interface.{i}.Type}} {{object|.IP.Interface}} instance. {{reference||delete}} + + + + + + + + + + The {{object|#.Filter}} instances that require this {{object}} instance to exist. {{reference}} + + + + + + + + + + + + Statistics for this IPsec tunnel, i.e. all traffic that has passed through the tunnel, including IKEv2 negotiation, IKEv2 SA and ChildSA traffic. + The CPE MUST reset the tunnel's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the tunnel becomes operationally down due to a previous administrative down (i.e. its associated {{param|.IP.Interface.{i}.Status}} parameter transitions to a down state after the tunnel has been disabled) or when the tunnel becomes administratively up (i.e. its associated {{param|.IP.Interface.{i}.Enable}} parameter transition from {{false}} to {{true}}). + Note that this object does not include generic statistics that are available in the associated {{object|.IP.Interface.{i}.Stats}} object. + + + + The total number of inbound {{units}} discarded due to ESP decryption errors. + + + + + + + + + + The total number of inbound {{units}} discarded due to integrity errors. + + + + + + + + + + The total number of inbound {{units}} discarded due to replay errors. + + + + + + + + + + The total number of inbound {{units}} discarded due to policy errors. + + + + + + + + + + The total number of inbound {{units}} discarded due to errors other than decryption, integrity, replay or policy errors. This can include packets dropped due to a lack of receive buffers. + + + + + + + + + + + Represents an IKEv2 Security Association (SA), corresponding to an IKEv2 session. Instances are automatically created and deleted as IKEv2 SAs are created and deleted. + + + + + + + The current operational state of the IKEv2 SA. + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The associated {{object|#.Tunnel}} instance. {{reference}} + Note that {{param}} is a unique key, i.e only one {{object}} instance is associated with a given {{object|#.Tunnel}} instance. During rekeying {{bibref|RFC5996|Section 2.8}}, a new IKEv2 SA is created and inherits the existing IKEv2 SA's child SAs, then the old IKEv2 SA is deleted. From the management point of view the new and old IKEv2 SAs are the same SA and MUST be modeled using the same {{object}} instance. + + + + + + + + + + The local IP address that this IKEv2 SA was negotiated with. This is assigned via IKEv2 and will also be available via the associated {{object|#.Tunnel}}'s {{param|#.Tunnel.{i}.TunnelInterface}} {{object|##.IP.Interface.{i}.IPv4Address}} or {{object|##.IP.Interface.{i}.IPv6Address}} table (as appropriate). + + + + + + + + The IP address of the peer that this IKEv2 SA was negotiated with. This will be the IP address of one of the security gateways configured via {{param|#.Profile.{i}.RemoteEndpoints}}. + + + + + + + + The encryption algorithm applied to traffic carried by this IKEv2 SA. + This will be one of the {{param|#.Profile.{i}.IKEv2AllowedEncryptionAlgorithms}} from the {{object|#.Profile}} instance via which this IKEv2 SA was created. + + + + + + + + + + The length of the encryption key in {{units}} used for the algorithm specified in the {{param|EncryptionAlgorithm}} parameter. + The value is 0 if the key length is implicit in the specified algorithm or there is no encryption applied. + + + + + + + + + + The pseudo-random function used by this IKEv2 SA. + This will be one of the {{param|#.Profile.{i}.IKEv2AllowedPseudoRandomFunctions}} from the {{object|#.Profile}} instance via which this IKEv2 SA was created. + + + + + + + + + + The integrity algorithm applied to the traffic carried by this IKEv2 SA. + This will be one of the {{param|#.Profile.{i}.IKEv2AllowedIntegrityAlgorithms}} from the {{object|#.Profile}} instance via which this IKEv2 SA was created. + + + + + + + + + + The Diffie-Hellman Group used by this IKEv2 SA. + This will be one of the {{param|#.Profile.{i}.IKEv2AllowedDiffieHellmanGroupTransforms}} from the {{object|#.Profile}} instance via which this IKEv2 SA was created. + + + + + + + + + + When this IKEv2 SA was set up. + + + + + + + + Whether NAT traversal is supported by the device and, if so, whether a NAT was detected. + + + + + + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + Statistics for this IKEv2 Security Association (SA). + The CPE MUST reset the IKEv2 SA's Stats parameters (unless otherwise stated in individual object or parameter descriptions) whenever the associated {{param|#.Tunnel}} instance's Stats parameters are reset. + + + + The total number of {{units}} handled in the outbound direction by the IKEv2 SA. + + + + + + + + + + The total number of {{units}} handled in the inbound direction by the IKEv2 SA. + + + + + + + + + + The total number of {{units}} handled in the outbound direction by the IKEv2 SA. + + + + + + + + + + The total number of {{units}} handled in the inbound direction by the IKEv2 SA. + + + + + + + + + + The total number of outbound {{units}} from this IKEv2 SA discarded for any reason. This can include {{units}} dropped due to a lack of transmit buffer space. + Note that this refers to IKE protocol {{units}}, and not to {{units}} carried by other SAs. + + + + + + + + + + The total number of inbound {{units}} to this IKEv2 SA discarded due to decryption errors. + Note that this refers to IKEv2 protocol {{units}}, and not to {units}} carried by other SAs. + + + + + + + + + + The total number of inbound {{units}} to this IKEv2 SA discarded due to integrity errors. + Note that this refers to IKEv2 protocol {{units}}, and not to {{units}} carried by other SAs. + + + + + + + + + + The total number of inbound {{units}} to this IKEv2 SA discarded for reasons other than decryption or integrity errors. This can include {{units}} dropped due to a lack of receive buffer space. + Note that this refers to IKEv2 protocol {{units}}, and not to {{units}} carried by other SAs. + + + + + + + + + + + This is a transitory table that lists all the IKEv2 Configuration Payload (CP) {{bibref|RFC5996|Section 3.15}} Attributes that have been received via CFG_REPLY messages. Table entries are automatically created to correspond with received Attributes. However, it is a local matter to the CPE when to delete old table entries. + If the same Attribute is received multiple times, it is up to the CPE to decide which entries to include (i.e. whether the same Attribute will be present multiple times). In order to allow for the same Attribute to be present multiple times within the table, this table has no unique key defined. + + + + CP Attribute Type as described in {{bibref|RFC5996|Section 3.15.1}} and defined in {{bibref|IKEv2-params|IKEv2 Configuration Payload Attribute Types}}. + + + + + + + + + + A hexbinary encoded CP Attribute Value as described in {{bibref|RFC5996|Section 3.15.1}} and defined in {{bibref|IKEv2-params|IKEv2 Configuration Payload Attribute Types}}. + + + + + + + + + + + Represents a child Security Association (SA) pair, i.e. an inbound child SA and an outbound child SA. + + + + + + + + + + The current operational state of the child SA pair. + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The inbound child SA's Security Parameter Index (SPI). + + + + + + + + The outbound child SA's Security Parameter Index (SPI). + + + + + + + + The date and time when the child SA was created. + + + + + + + + + Statistics for this child Security Association (SA). + The CPE MUST reset the child SA's Stats parameters (unless otherwise stated in individual object or parameter descriptions) whenever the parent {{object|#}} instance's Stats parameters are reset. + + + + The number of {{units}} handled by the outbound child SA. + + + + + + + + + + The number of {{units}} handled by the inbound child SA. + + + + + + + + + + The number of {{units}} handled by the outbound child SA. + + + + + + + + + + The number of {{units}} handled by the inbound child SA. + + + + + + + + + + The number of {{units}} discarded by the outbound child SA due to any error. This can include compression errors or errors due to a lack of transmit buffers. + + + + + + + + + + The number of {{units}} discarded by the inbound child SA due to decryption errors. + + + + + + + + + + The number of {{units}} discarded by the inbound child SA due to integrity errors. + + + + + + + + + + The number of {{units}} discarded by the inbound child SA due to replay errors. + + + + + + + + + + The number of {{units}} discarded by the inbound child SA due to policy errors. + + + + + + + + + + The number of {{units}} discarded by the inbound child SA due to errors other than decryption, integrity, replay or policy errors. This can include decompression errors or errors due to a lack of receive buffers. + + + + + + + + + + + This object contains parameters associated with the Generic Routing Encapsulation (GRE) Tunnel ({{bibref|RFC2784}}) with Key and Sequence Number extensions ({{bibref|RFC2890}}). This object also provides a means to treat packets that are encapsulated within a GRE Tunnel by using a set of {{object|Filter}} objects to determine the treatment of the packet. + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + GRE Tunnel table, models the GRE Tunnel instance and represents the entry point and exit point of the tunnel in relation to the WAN interface. A {{object}} object has one or more {{object|Interface}} objects that further define the sessions or flows within the tunnel. + + + + + + + Enables or disables the tunnel. + + + + + + + + The current operational state of the tunnel. + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The Fully Qualified Domain Name (FQDN) or IP address of the remote GRE tunnel endpoint. If more than one name/address is supplied, they will be tried in turn, i.e. they are in decreasing order of precedence. + + + + + + + + + + + The mechanism used to keep the tunnel from timing out at the {{param|ConnectedRemoteEndpoint}}. + + + + + + + + + + + + The tunnel keepalive timeout in {{units}}. + + + + + + + + + + + Number of KeepAlive messages unacknowledged by the {{param|ConnectedRemoteEndpoint}} before the {{object}} is perceived failed. + + + + + + + + + The protocol used for the delivery header. + + + + + + + + + + + If the specified entries in the {{object|#.Filter}} table do not match this {{object}} object or an instance of the {{object|Interface}} object for this {{object}} object, then the value of this parameter is applied to the delivery header of the packets in this {{object}}. + + + + + + + + + The Fully Qualified Domain Name (FQDN) name or IP address of the connected remote GRE tunnel endpoint. + + + + + + + + + + {{numentries}} + + + + + + + + + Statistics for this GRE tunnel, i.e. all traffic that has passed through the tunnel. + The device MUST reset the tunnel's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the tunnel becomes operationally down due to a previous administrative down (i.e., Status parameter transitions to a disabled state after the tunnel has been disabled) or when the tunnel becomes administratively up (i.e. the Enable parameter transitioned from {{false}} to {{true}}). + + + + The total number of KeepAlive {{units}} sent out the tunnel. + + + + + + + + + + The total number of KeepAlive {{units}} received by the tunnel. + + + + + + + + + + The total number of {{units}} sent by the tunnel. + + + + + + + + + + The total number of {{units}} received by the tunnel. + + + + + + + + + + The total number of {{units}} sent by the tunnel. + + + + + + + + + + The total number of {{units}} received by the tunnel. + + + + + + + + + + The total number of {{units}} discarded by the tunnel due to any error. This can include packets dropped due to a lack of transmit buffers. + + + + + + + + + + The total number of {{units}} received by the tunnel that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + + + + GRE Interface table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). The {{object}} object models the GRE Header as defined in {{bibref|RFC2784}} and extensions to the GRE Header as defined in {{bibref|RFC2890}}. The {{object}} object provides a way to discriminate how sessions or flows are encapsulated within the GRE Tunnel. In addition the {{object}} object represents the entry point and exit point of the tunnel in relation to the LAN interface. Unless the Key Identifier of {{bibref|RFC2890}} is supported there is only one instance of this {{object}} object per tunnel. + + + + + + + + + + Enables or disables the interface. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + The current operational state of the interface (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the interface as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the interface entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + + + + + + + + + + + + + The Protocol ID assigned to this {{object}}. The Protocol Id is the EtherType value used to identify the encapsulated payload. When set to {{null}} the CPE determines the Protocol Id. + + + + + + + + + When {{true}}, includes the "Checksum" field in the GRE header as defined in {{bibref|RFC2784}}. + + + + + + + + + The method used to generate the Key Identifier extension as defined in.{{bibref|RFC2890}}. + + + + + + + + The generation of the Key field is CPE specific implementation. + + + + + + + + + When the value of {{param|KeyIdentifierGenerationPolicy}} is {{enum|Provisioned|KeyIdentifierGenerationPolicy}} this {{param}} parameter is used to identify an individual traffic flow within a GRE tunnel, as defined in {{bibref|RFC2890}}. + + + + + + + + + When {{true}}, includes the "SequenceNumber" field in the GRE header as defined in {{bibref|RFC2890}} + + + + + + + + + + Statistics for this GRE tunnel interface, i.e. all traffic that has passed through the interface. + The device MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e., the interface's Status parameter transitions to a down state after the interface has been disabled) or when the interface becomes administratively up (i.e. the Enable parameter transitioned from {{false}} to {{true}}). + + + + The total number of {{units}} sent by this interface. + + + + + + + + + + The total number of {{units}} received by this interface. + + + + + + + + + + The total number of {{units}} sent by this interface. + + + + + + + + + + The total number of {{units}} received by this interface. + + + + + + + + + + The total number of {{units}} discarded by this interface due to any error. This can include packets dropped due to a lack of transmit buffers. + + + + + + + + + + The total number of {{units}} received by this interface that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + + + The total number of {{units}} received by the tunnel interface that are discarded because of Checksum errors. + + + + + + + + + + The total number of {{units}} received by the tunnel interface that are discarded because of Sequence Number errors. + + + + + + + + + + + GRE Filter table. Entries in this table are applied against the packets that are to be encapsulated within the GRE Tunnel based on the following conditions: + * If the value of the {{param|AllInterfaces}} is {{true}}, then this entry will be applied to all {{object|#.Tunnel}} and {{object|#.Tunnel.{i}.Interface}} instances. + * If the value of {{param|AllInterfaces}} is {{false}} and the value of {{param|Interface}} parameter is a reference to a row in the {{object|#.Tunnel}} table then this entry is applied to all {{object|#.Tunnel.{i}.Interface}} instances of the {{object|#.Tunnel}} reference. + * If the value of {{param|AllInterfaces}} is {{false}} and the value of {{param|Interface}} parameter is a reference to a row in the {{object|#.Tunnel.{i}.Interface}} table then this entry is applied to the {{object|#.Tunnel.{i}.Interface}} reference. + * If no entries are matched for the packet, then the default treatment (e.g., {{param|#.Tunnel.{i}.DefaultDSCPMark}}) is applied to the packet. + For enabled table entries, if {{param|Interface}} is not a valid reference and {{param|AllInterfaces}} is {{false}}, then the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + + + + + + + Enables or disables this filter. + + + + + + + + + The status of this filter. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + Position of the {{object}} entry in the order of precedence. A value of ''1'' indicates the first entry considered (highest precedence). For each packet, the highest ordered entry that matches the filter criteria is applied. All lower order entries are ignored. + When this value is modified, if the value matches that of an existing entry, the {{param}} value for the existing entry and all lower {{param}} entries is incremented (lowered in precedence) to ensure uniqueness of this value. A deletion causes {{param}} values to be compacted. When a value is changed, incrementing occurs before compaction. + The value of {{param}} on creation of a {{object}} table entry MUST be one greater than the largest current value (initially assigned the lowest precedence). + + + + + + + + + + {{datatype|expand}} + + + + + + + + Filter criterion. {{reference}} + + + + + + + + + + + + Filter criterion. This specifies that all ingress GRE tunnel interfaces are associated with the entry. If {{true}}, the value of {{param|Interface}} is ignored since all ingress GRE tunnel interfaces are indicated. + + + + + + + + + Filter criterion. + Current outer Ethernet VLAN ID as defined in 802.1Q. A value of -1 indicates this criterion is not used for filtering. + + + + + + + + + + + If {{false}}, the filter includes only those packets that match the {{param|VLANIDCheck}} entry, if specified. + If {{true}}, the filter includes all packets except those that match the {{param|VLANIDCheck}} entry, if specified. + + + + + + + + + DSCP with which to mark the outer IP header for traffic that is associated with the interface criterion. + Automatic DSCP marking behavior is a local matter to the device, possibly influenced by other Broadband Forum standards that it supports. + * A value of -1 indicates copy from the upstream packet. + * A value of -2 indicates automatic marking of DSCP. + + + + + + + + + + + This object contains parameters associated with the configuration and monitoring of stateless tunnels using the Layer Two Tunneling Protocol version 3 (L2TPv3) ({{bibref|RFC3931}}). + This object also provides a means to treat packets that are encapsulated within a L2TPv3 Tunnel by using a set of {{object|Filter}} objects to determine the treatment of the packet. + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + L2TPv3 Tunnel table, models the L2TPv3 Tunnel instance and represents the entry point and exit point of the tunnel in relation to the WAN interface. + A {{object}} object has one or more {{object|Interface}} objects that further define the sessions or flows within the tunnel. + + + + + + + Enables or disables the tunnel. + + + + + + + + The current operational state of the tunnel. + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The Fully Qualified Domain Name (FQDN) or IP address of the remote L2TPv3 tunnel endpoint. + If more than one name/address is supplied, they will be tried in turn, i.e. they are in decreasing order of precedence. + + + + + + + + + + + The mechanism used to keep the tunnel from timing out at the {{param|ConnectedRemoteEndpoint}}. + + + + + + The version of the ICMP packet used for this {{param}} is based on the value of the {{param|DeliveryHeaderProtocol}} parameter (Either ICMP for IPv4 or ICMPv6 for IPv6). + + + + + + + + + + The tunnel keepalive timeout in {{units}}. + + + + + + + + + + + Number of KeepAlive messages unacknowledged by the {{param|ConnectedRemoteEndpoint}} before the {{object}} is perceived failed. + + + + + + + + + The protocol used for the delivery header. + + + + + + + + + + + If the specified entries in the {{object|#.Filter}} table do not match this {{object}} object or an instance of the {{object|Interface}} object for this {{object}} object, then the value of this parameter is applied to the delivery header of the packets in this {{object}}. + + + + + + + + + The protocol that this {{object}} will be encapsulated + + + + + + + + + + + + The Fully Qualified Domain Name (FQDN) name or IP address of the connected remote L2TPv3 tunnel endpoint. + + + + + + + + + + {{numentries}} + + + + + + + + + This {{object}} provides the parameters when the value of the {{param|##.Tunnel.{i}.TunnelEncapsulation}} parameter is {{enum|UDP|##.Tunnel.{i}.TunnelEncapsulation}}. + + + + The source (local) port used to transmit PDUs. A value of 0 indicates that the port selection is performed by the device. + + + + + + + + + + + The remote port used to by the remote endpoint to transmit PDUs. + + + + + + + + + + + Enables or disables checksum processing. + + + + + + + + + + Statistics for this L2TPv3 tunnel, i.e. all traffic that has passed through the tunnel. + The device MUST reset the tunnel's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the tunnel becomes operationally down due to a previous administrative down (i.e., Status parameter transitions to a disabled state after the tunnel has been disabled) or when the tunnel becomes administratively up (i.e. the Enable parameter transitioned from {{false}} to {{true}}). + + + + The total number of KeepAlive {{units}} sent out the tunnel. + + + + + + + + + + The total number of KeepAlive {{units}} received by the tunnel. + + + + + + + + + + The total number of {{units}} sent by the tunnel. + + + + + + + + + + The total number of {{units}} received by the tunnel. + + + + + + + + + + The total number of {{units}} sent by the tunnel. + + + + + + + + + + The total number of {{units}} received by the tunnel. + + + + + + + + + + The total number of {{units}} discarded by the tunnel due to any error. This can include packets dropped due to a lack of transmit buffers. + + + + + + + + + + The total number of {{units}} received by the tunnel that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + + + + L2TPv3 Interface table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). + The {{object}} object models the L2TPv3 Header as defined in {{bibref|RFC3931}} and the transport of L2 frames across over L2TPv3 as defined in {{bibref|RFC4719}}. + The {{object}} object provides a way to discriminate how sessions or flows are encapsulated within the L2TPv3 Tunnel. + In addition the {{object}} object represents the entry point and exit point of the tunnel in relation to the LAN interface. + + + + + + + + + + Enables or disables the interface. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + The current operational state of the interface (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the interface as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the interface entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + + + + + + + + + + + + + The unique Session ID to be used in the L2TPv3 header of the tunnel. + A Session ID with a value of -1 indicates that he CPE is to generate the session ids for this {{object}} instance. + + + + + + + + + + + + The policy that defines how the Cookie is handled in this {{object}} instance. + + + + + + The device does not perform Cooking processing. + + + + + The value of the {{param|Cookie}} parameter is transmitted in the L2TPv3 header. + + + + + The device generates the value of the Cookie transmitted in the L2TPv3 header. + + + + + + + + + The Cookie transmitted in the L2TPv3 header. The default is to set the Cookie to the device's MAC address that is encoded in the low order 6 bytes. + + + + + + + + + Statistics for this L2TPv3 tunnel interface, i.e. all traffic that has passed through the interface. + The device MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e., the interface's Status parameter transitions to a down state after the interface has been disabled) or when the interface becomes administratively up (i.e. the Enable parameter transitioned from {{false}} to {{true}}). + + + + The total number of {{units}} sent by this interface. + + + + + + + + + + The total number of {{units}} received by this interface. + + + + + + + + + + The total number of {{units}} sent by this interface. + + + + + + + + + + The total number of {{units}} received by this interface. + + + + + + + + + + The total number of {{units}} discarded by this interface due to any error. This can include packets dropped due to a lack of transmit buffers. + + + + + + + + + + The total number of {{units}} received by this interface that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + + + The total number of {{units}} received by the tunnel interface that are discarded because of Checksum errors. + + + + + + + + + + The total number of {{units}} received by the tunnel interface that are discarded because of Sequence Number errors. + + + + + + + + + + + L2TPv3 Filter table. Entries in this table are applied against the packets that are to be encapsulated within the L2TPv3 Tunnel based on the following conditions: + * If the value of the {{param|AllInterfaces}} is {{true}}, then this entry will be applied to all {{object|#.Tunnel}} and {{object|#.Tunnel.{i}.Interface}} instances. + * If the value of {{param|AllInterfaces}} is {{false}} and the value of {{param|Interface}} parameter is a reference to a row in the {{object|#.Tunnel}} table then this entry is applied to all {{object|#.Tunnel.{i}.Interface}} instances of the {{object|#.Tunnel}} reference. + * If the value of {{param|AllInterfaces}} is {{false}} and the value of {{param|Interface}} parameter is a reference to a row in the {{object|#.Tunnel.{i}.Interface}} table then this entry is applied to the {{object|#.Tunnel.{i}.Interface}} reference. + * If no entries are matched for the packet, then the default treatment (e.g., {{param|#.Tunnel.{i}.DefaultDSCPMark}}) is applied to the packet. + For enabled table entries, if {{param|Interface}} is not a valid reference and {{param|AllInterfaces}} is {{false}}, then the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + + + + + + + Enables or disables this filter. + + + + + + + + + The status of this filter. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + Position of the {{object}} entry in the order of precedence. A value of ''1'' indicates the first entry considered (highest precedence). For each packet, the highest ordered entry that matches the filter criteria is applied. All lower order entries are ignored. + When this value is modified, if the value matches that of an existing entry, the {{param}} value for the existing entry and all lower {{param}} entries is incremented (lowered in precedence) to ensure uniqueness of this value. A deletion causes {{param}} values to be compacted. When a value is changed, incrementing occurs before compaction. + The value of {{param}} on creation of a {{object}} table entry MUST be one greater than the largest current value (initially assigned the lowest precedence). + + + + + + + + + + {{datatype|expand}} + + + + + + + + Filter criterion. {{reference}} + + + + + + + + + + + + Filter criterion. This specifies that all ingress L2TPv3 tunnel interfaces are associated with the entry. If {{true}}, the value of {{param|Interface}} is ignored since all ingress L2TPv3 tunnel interfaces are indicated. + + + + + + + + + Filter criterion. + Current outer Ethernet VLAN ID as defined in 802.1Q. A value of -1 indicates this criterion is not used for filtering. + + + + + + + + + + + If {{false}}, the filter includes only those packets that match the {{param|VLANIDCheck}} entry, if specified. + If {{true}}, the filter includes all packets except those that match the {{param|VLANIDCheck}} entry, if specified. + + + + + + + + + DSCP with which to mark the outer IP header for traffic that is associated with the interface criterion. + Automatic DSCP marking behavior is a local matter to the device, possibly influenced by other Broadband Forum standards that it supports. + * A value of -1 indicates copy from the upstream packet. + * A value of -2 indicates automatic marking of DSCP. + + + + + + + + + + + This object contains parameters associated with the configuration and monitoring of stateless tunnels using the Virtual eXtensible Local Area Network (VXLAN) ({{bibref|RFC7348}}). + This object also provides a means to treat packets that are encapsulated within a VXLAN Tunnel by using a set of {{object|Filter}} objects to determine the treatment of the packet. + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + VXLAN Tunnel table, models the VXLAN Tunnel instance and represents the entry point and exit point of the tunnel in relation to the WAN interface. + A {{object}} object has one or more {{object|Interface}} objects that further define the sessions or flows within the tunnel. + + + + + + + Enables or disables the tunnel. + + + + + + + + The current operational state of the tunnel. + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The Fully Qualified Domain Name (FQDN) or IP address of the remote VXLAN tunnel endpoint. + If more than one name/address is supplied, they will be tried in turn, i.e. they are in decreasing order of precedence. + + + + + + + + + + + The mechanism used to keep the tunnel from timing out at the {{param|ConnectedRemoteEndpoint}}. + + + + + + The version of the ICMP packet used for this {{param}} is based on the value of the {{param|DeliveryHeaderProtocol}} parameter (Either ICMP for IPv4 or ICMPv6 for IPv6). + + + + + + + + + + The tunnel keepalive timeout in {{units}}. + + + + + + + + + + + Number of KeepAlive messages unacknowledged by the {{param|ConnectedRemoteEndpoint}} before the {{object}} is perceived failed. + + + + + + + + + The protocol used for the delivery header. + + + + + + + + + + + If the specified entries in the {{object|#.Filter}} table do not match this {{object}} object or an instance of the {{object|Interface}} object for this {{object}} object, then the value of this parameter is applied to the delivery header of the packets in this {{object}}. + + + + + + + + + The Fully Qualified Domain Name (FQDN) name or IP address of the connected remote VXLAN tunnel endpoint. + + + + + + + + + + {{numentries}} + + + + + + + + The source (local) port used to transmit PDUs. A value of 0 indicates that the port selection is performed by the device. In such case, it is recommended that the UDP source port number be calculated using a hash of fields from the inner packet and that it is in the dynamic/private port range 49152-65535. + + + + + + + + + + + The remote port used to by the remote endpoint to transmit PDUs. The well-known port allocated by IANA is 4789, but it should be configurable. + + + + + + + + + + + + Statistics for this VXLAN tunnel, i.e. all traffic that has passed through the tunnel. + The device MUST reset the tunnel's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the tunnel becomes operationally down due to a previous administrative down (i.e., Status parameter transitions to a disabled state after the tunnel has been disabled) or when the tunnel becomes administratively up (i.e. the Enable parameter transitioned from {{false}} to {{true}}). + + + + The total number of KeepAlive {{units}} sent out the tunnel. + + + + + + + + + + The total number of KeepAlive {{units}} received by the tunnel. + + + + + + + + + + The total number of {{units}} sent by the tunnel. + + + + + + + + + + The total number of {{units}} received by the tunnel. + + + + + + + + + + The total number of {{units}} sent by the tunnel. + + + + + + + + + + The total number of {{units}} received by the tunnel. + + + + + + + + + + The total number of {{units}} discarded by the tunnel due to any error. This can include packets dropped due to a lack of transmit buffers. + + + + + + + + + + The total number of {{units}} received by the tunnel that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + + + + VXLAN Interface table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). + The {{object}} object models the VXLAN Header as defined in {{bibref|RFC7348}} for the transport of L2 frames across over VXLAN. + The {{object}} object provides a way to discriminate how multiple LAN segments are encapsulated within the VXLAN Tunnel. + In addition the {{object}} object represents the entry point and exit point of the tunnel in relation to the LAN interface. + + + + + + + + + + Enables or disables the interface. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + The current operational state of the interface (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the interface as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the interface entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + + + + + + + + + + + + + The unique Virtual Network Identifier (VNI) to be used in the VXLAN header of the tunnel. + A VNI with a value of -1 indicates that the CPE is to generate the VNI for this {{object}} instance. + + + + + + + + + + + + + Statistics for this VXLAN tunnel interface, i.e. all traffic that has passed through the interface. + The device MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e., the interface's Status parameter transitions to a down state after the interface has been disabled) or when the interface becomes administratively up (i.e. the Enable parameter transitioned from {{false}} to {{true}}). + + + + The total number of {{units}} sent by this interface. + + + + + + + + + + The total number of {{units}} received by this interface. + + + + + + + + + + The total number of {{units}} sent by this interface. + + + + + + + + + + The total number of {{units}} received by this interface. + + + + + + + + + + The total number of {{units}} discarded by this interface due to any error. This can include packets dropped due to a lack of transmit buffers. + + + + + + + + + + The total number of {{units}} received by this interface that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + + + The total number of {{units}} received by the tunnel interface that are discarded because of Checksum errors. + + + + + + + + + + The total number of {{units}} received by the tunnel interface that are discarded because of Sequence Number errors. + + + + + + + + + + + VXLAN Filter table. Entries in this table are applied against the packets that are to be encapsulated within the VXLAN Tunnel based on the following conditions: + * If the value of the {{param|AllInterfaces}} is {{true}}, then this entry will be applied to all {{object|#.Tunnel}} and {{object|#.Tunnel.{i}.Interface}} instances. + * If the value of {{param|AllInterfaces}} is {{false}} and the value of {{param|Interface}} parameter is a reference to a row in the {{object|#.Tunnel}} table then this entry is applied to all {{object|#.Tunnel.{i}.Interface}} instances of the {{object|#.Tunnel}} reference. + * If the value of {{param|AllInterfaces}} is {{false}} and the value of {{param|Interface}} parameter is a reference to a row in the {{object|#.Tunnel.{i}.Interface}} table then this entry is applied to the {{object|#.Tunnel.{i}.Interface}} reference. + * If no entries are matched for the packet, then the default treatment (e.g., {{param|#.Tunnel.{i}.DefaultDSCPMark}}) is applied to the packet. + For enabled table entries, if {{param|Interface}} is not a valid reference and {{param|AllInterfaces}} is {{false}}, then the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + + + + + + + Enables or disables this filter. + + + + + + + + + The status of this filter. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + Position of the {{object}} entry in the order of precedence. A value of ''1'' indicates the first entry considered (highest precedence). For each packet, the highest ordered entry that matches the filter criteria is applied. All lower order entries are ignored. + When this value is modified, if the value matches that of an existing entry, the {{param}} value for the existing entry and all lower {{param}} entries is incremented (lowered in precedence) to ensure uniqueness of this value. A deletion causes {{param}} values to be compacted. When a value is changed, incrementing occurs before compaction. + The value of {{param}} on creation of a {{object}} table entry MUST be one greater than the largest current value (initially assigned the lowest precedence). + + + + + + + + + + {{datatype|expand}} + + + + + + + + Filter criterion. {{reference}} + + + + + + + + + + + + Filter criterion. This specifies that all ingress VXLAN tunnel interfaces are associated with the entry. If {{true}}, the value of {{param|Interface}} is ignored since all ingress VXLAN tunnel interfaces are indicated. + + + + + + + + + Filter criterion. + Current outer Ethernet VLAN ID as defined in 802.1Q. A value of -1 indicates this criterion is not used for filtering. + + + + + + + + + + + If {{false}}, the filter includes only those packets that match the {{param|VLANIDCheck}} entry, if specified. + If {{true}}, the filter includes all packets except those that match the {{param|VLANIDCheck}} entry, if specified. + + + + + + + + + DSCP with which to mark the outer IP header for traffic that is associated with the interface criterion. + Automatic DSCP marking behavior is a local matter to the device, possibly influenced by other Broadband Forum standards that it supports. + * A value of -1 indicates copy from the upstream packet. + * A value of -2 indicates automatic marking of DSCP. + + + + + + + + + + + The Mapping of Address and Port (MAP) object {{bibref|RFC7597}} {{bibref|RFC7599}} {{bibref|RFC7598}}. This object applies only to gateway devices that support IPv4 on the LAN side, include a {{object|#.NAT}}, and typically have only IPv6 connectivity on the WAN side. + See the MAP Theory of Operation {{bibref|TR-181i2|Appendix XV}} for a description of the working of this MAP data model. + + + + Enables or disables MAP. + + + + + + + + {{numentries}} + + + + + + + + + MAP domain settings {{bibref|RFC7597}} {{bibref|RFC7599}}. Each instance models a MAP domain. + MAP supports two transport modes, both of which use NAPT44 (modified to use a restricted port range): + * MAP-E ({{param|TransportMode}} = {{enum|Encapsulation|TransportMode}}) uses an IPv4-in-IPv6 tunnel. + * MAP-T ({{param|TransportMode}} = {{enum|Translation|TransportMode}}) uses stateless NAT64. + Note: There is an n:1 relationship between a MAP domain and the associated {{param|WANInterface}}, i.e. in theory multiple MAP domains can be associated with a single WAN IP interface (each domain would have its own ''End-user IPv6 prefix'' and ''MAP IPv6 address''). + Note: The {{object}} table includes unique key parameters that are strong references. If a strongly referenced object is deleted, the CPE will set the referencing parameter to {{empty}}. However, doing so under these circumstances might cause the updated {{object}} row to then violate the table's unique key constraint; if this occurs, the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}} and disable the offending {{object}} row. + + + + + + + + + + + Enables or disables the MAP domain. + + + + + + + + + The current operational state of the MAP domain. + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The transport mode to use. + Corresponds to the {{bibref|RFC7598}} ''S46_CONT_MAPE'' and ''S46_CONT_MAPT'' container options. + + + + + + MAP-E {{bibref|RFC7597}} + + + + + MAP-T {{bibref|RFC7599}} + + + + + + + + + The IP interface with which this MAP domain is associated. This will always be a NAT-ted upstream (WAN) interface. + The ''End-user IPv6 prefix'' {{param|IPv6Prefix}} is one of this IP interface's prefixes. + The ''MAP IPv6 address'' is derived from the ''End-user IPv6 prefix'' and is one of this IP interface's IP addresses, with an {{param|##.IP.Interface.{i}.IPv6Address.{i}.Origin}} of {{enum|MAP|##.IP.Interface.{i}.IPv6Address.{i}.Origin}}. + + + + + + + + + + The MAP domain's ''End-user IPv6 prefix''. This MUST reference one of {{param|WANInterface}}'s prefixes. + If the Controller configures this prefix directly, the CPE MUST use the Controller-configured prefix. Otherwise, the CPE MUST select one of {{param|WANInterface}}'s prefixes; the selected prefix will typically have {{param|##.IP.Interface.{i}.IPv6Prefix.{i}.Origin}} = {{enum|PrefixDelegation|##.IP.Interface.{i}.IPv6Prefix.{i}.Origin}}. + + + + + + + + + + The MAP Border Relay (BR) address or prefix. + * For MAP-E this is the BR address and therefore MUST be a /128 {{bibref|RFC7597}}. Note this address can be an IPv6 anycast address. This address corresponds to the {{bibref|RFC7598}} ''OPTION_S46_BR'' (Border Relay) option. + * For MAP-T this is the BR prefix {{bibref|RFC7599}}. This address prefix corresponds to the {{bibref|RFC7598}} ''OPTION_S46_DMR'' (Default Mapping Rule) option. + Note: There will be a corresponding {{object|.Routing.Router.{i}.IPv4Forwarding}} default rule. + + + + + + + + DSCP with which to mark the outer IP header for traffic that is associated with this MAP domain. + Downstream packets are never re-marked. + Automatic DSCP marking behavior is a local matter to the device, possibly influenced by other Broadband Forum standards that it supports. + * A value of -1 indicates copy from the incoming packet. + * A value of -2 indicates automatic marking of DSCP. + + + + + + + + + + ''Port-set ID'' (PSID) offset in {{units}}. The number of Port-sets is 2^{{param}}. + Corresponds to the {{bibref|RFC7598}} ''S46_PORTPARAMS'' (Port Parameters) option's ''offset'' field. + This parameter was DEPRECATED because details changed between drafting this data model and the RFC being published. This parameter has been moved to the proper location within the {{object|Rule.{i}.}} object. + This parameter is OBSOLETED in 2.14. + + + + + + + + + + + + The length in {{units}} of the ''Port-set id'' (PSID) configured in the {{param|PSID}} parameter. + Corresponds to the {{bibref|RFC7598}} ''S46_PORTPARAMS'' (Port Parameters) option's ''PSID-len'' field. + This parameter was DEPRECATED because details changed between drafting this data model and the RFC being published. This parameter has been moved to the proper location within the {{object|Rule.{i}.}} object. + This parameter is OBSOLETED in 2.14. + + + + + + + + + + + + ''Port-set ID'' (PSID) to use in preference to the value extracted from the ''Embedded Address'' (EA) bits. + Only the high order {{param|PSIDLength}} bits of the {{param}} value are used, so the parameter is ignored when {{param|PSIDLength}} is zero. + Corresponds to the {{bibref|RFC7598}} ''S46_PORTPARAMS'' (Port Parameters) option's ''PSID'' field. + This parameter was DEPRECATED because details changed between drafting this data model and the RFC being published. This parameter has been moved to the proper location within the {{object|Rule.{i}.}} object. + This parameter is OBSOLETED in 2.14. + + + + + + + + + + + Whether to include low-numbered (system) ports in the Port-sets. Normally ports in the range [0:2^(16-{{param|PSIDOffset}})-1] are excluded, e.g. for the default {{param|PSIDOffset}} value of 4, ports [0:4095] are not included in the Port-sets. + This parameter is related to {{bibref|RFC7597}}'s ''N'', which is defined as ''the number of ports (e.g., 1024) excluded from the lower end of the range''. The parameter is relevant only when {{param|PSIDOffset}} is 0; {{false}} corresponds to ''N=1024'' and {{true}} corresponds to ''N=0''. + + + + + + + + + {{numentries}} + + + + + + + + + The MAP domain's Mapping Rules {{bibref|RFC7597}}. The rule with the longest match between its {{param|IPv6Prefix}} and the end-user {{param|#.IPv6Prefix}} is the Basic Mapping Rule (BMR). Any of the rules (including the BMR) can be a Forwarding Mapping Rule. + + + + + + + + + + + + + Enable or disable this {{object}} instance. + + + + + + + + + The status of this {{object}} instance. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The mechanism via which the {{object}} was created. + If the CPE supports MAP configuration via both DHCPv6 and CWMP, it is up to the implementation to determine how the two mechanisms will interact. + + + + + + Created via a {{bibref|RFC7598}} ''S46_RULE'' option. + + + + + Present in the factory default configuration, created by the Controller, or created by some other management entity (e.g. via a GUI) + + + + + + + + + The ''Rule IPv6 prefix''. + The Rule IPv6 prefix is a leading part of the end-user {{param|#.IPv6Prefix}}, i.e. its length MUST be less than or equal to the length of the end-user ''IPv6Prefix'', and it MUST match the end-user ''IPv6Prefix''. + Corresponds to the {{bibref|RFC7598}} ''S46_RULE'' option's ''ipv6-prefix'' field. + + + + + + + + + The ''Rule IPv4 prefix''. + Corresponds to the {{bibref|RFC7598}} ''S46_RULE'' option's ''ipv4-prefix'' field. + + + + + + + + + The length in {{units}} of the ''Embedded Address (EA) bits'' in the end-user {{param|#.IPv6Prefix}}. + Corresponds to the {{bibref|RFC7598}} ''S46_RULE'' option's ''ea-len'' field. + + + + + + + + + + + + Indicates whether this rule is a ''Forwarding Mapping Rule'' (FMR), i.e. can be used for forwarding. + Corresponds to the {{bibref|RFC7598}} ''S46_RULE'' option's ''flags'' field's ''F-Flag''. + + + + + + + + + ''Port-set ID'' (PSID) offset in {{units}}. The number of Port-sets is 2^{{param}}. + Corresponds to the {{bibref|RFC7598}} ''S46_PORTPARAMS'' (Port Parameters) option's ''offset'' field. + + + + + + + + + + + + The length in {{units}} of the ''Port-set id'' (PSID) configured in the {{param|PSID}} parameter. + Corresponds to the {{bibref|RFC7598}} ''S46_PORTPARAMS'' (Port Parameters) option's ''PSID-len'' field. + + + + + + + + + + + + ''Port-set ID'' (PSID) to use in preference to the value extracted from the ''Embedded Address'' (EA) bits. + Only the high order {{param|PSIDLength}} bits of the {{param}} value are used, so the parameter is ignored when {{param|PSIDLength}} is zero. + Corresponds to the {{bibref|RFC7598}} ''S46_PORTPARAMS'' (Port Parameters) option's ''PSID'' field. + + + + + + + + + + + + MAP interface (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). This models the LAN side MAP domain interface. + + + + Enables or disables the interface. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + + The current operational state of the interface (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Down}} (or {{enum|NotPresent}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the interface as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the interface entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + Note: Since this interface object is a MAP domain interface, it is expected that {{param}} will not be used. + + + + + + + + + + + + + + Throughput statistics for this MAP domain interface. + The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled) or when the interface becomes administratively up (i.e. the interface's {{param|#.Enable}} parameter transitions from {{false}} to {{true}}). Administrative and operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + The total number of bytes transmitted out of the interface, including framing characters. + + + + + + + + The total number of bytes received on the interface, including framing characters. + + + + + + + + The total number of packets transmitted out of the interface. + + + + + + + + The total number of packets received on the interface. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of packets requested for transmission which were not addressed to a multicast or broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were not addressed to a multicast or broadcast address at this layer. + + + + + + + + The total number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a multicast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a multicast address at this layer. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a broadcast address at this layer, including those that were discarded or not sent. + Note that IPv6 does not define broadcast addresses, so IPv6 packets will never cause this counter to increment. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a broadcast address at this layer. + Note that IPv6 does not define broadcast addresses, so IPv6 packets will never cause this counter to increment. + + + + + + + + The total number of packets received via the interface which were discarded because of an unknown or unsupported protocol. + + + + + + + + + This object contains parameters relating to the captive portal configuration on the CPE. + The captive portal configuration defines the CPE's upstream HTTP (port 80) traffic redirect behavior. + When the captive portal is disabled, upstream HTTP (port 80) traffic MUST be permitted to all destinations. + When the captive portal is enabled, upstream HTTP (port 80) traffic MUST be permitted only to destinations listed in the {{param|AllowedList}}; traffic to all other destinations MUST be redirected to the {{param|URL}}. + + + + Enables or disables the captive portal. + + + + + + + + Indicates the status of the captive portal. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + {{param|URL}} is {{empty}} + + + + + + + + + {{list}} List items represent IP addresses to which HTTP (port 80) traffic MUST always be permitted, regardless of whether the captive portal is enabled. + Each entry in the list MUST be either an IP address, or an IP prefix specified using Classless Inter-Domain Routing (CIDR) notation {{bibref|RFC4632}}. + An IP prefix is specified as an IP address followed (with no intervening white space) by "/n", where ''n'' (the prefix size) is an integer in the range 0-32 (for IPv4) or 0-128 (for IPv6) that indicates the number of (leftmost) '1' bits of the prefix. + IPv4 example: + * 1.2.3.4 specifies a single IPv4 address, and 1.2.3.4/24 specifies a class C subnet with subnet mask 255.255.255.0. + * 1.2.0.0/22 represents the 1024 IPv4 addresses from 1.2.0.0 to 1.2.3.255. + IPv6 example: + * fec0::220:edff:fe6a:f76 specifies a single IPv6 address. + * 2001:edff:fe6a:f76::/64 represents the IPv6 addresses from 2001:edff:fe6a:f76:0:0:0:0 to 2001:edff:fe6a:f76:ffff:ffff:ffff:ffff. + + + + + + + + + + + Captive portal {{datatype}} to which upstream HTTP (port 80) traffic to destinations not listed in the {{param|AllowedList}} will be redirected. + The captive portal URL MUST be an HTTP (not HTTPS) URL. + The CPE MUST permit the captive portal URL to be set to {{empty}}, which has the effect of disabling the captive portal (if {{param|Enable}} is {{true}} and the captive portal URL is {{empty}}, {{param|Status}} MUST be {{enum|Error_URLEmpty|Status}}). + + + + + + + + + Routing object that contains the {{object|Router}} table and {{object|RIP}} protocol object. + + + + {{numentries}} + + + + + + + + + This object allows the handling of the routing and forwarding configuration of the device. + + + + + + + Enables or disables this ''Router'' entry. + + + + + + + + + The status of this ''Router'' entry. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + Layer 3 IPv4 forwarding table. + In addition to statically configured routes, this table MUST include dynamic routes learned through layer 3 routing protocols, including RIP (i.e. RIP version 2), OSPF, DHCPv4, and IPCP. The CPE MAY reject attempts to delete or modify a dynamic route entry. + For each incoming packet, the layer 3 forwarding decision is conceptually made as follows: + * Only enabled table entries with a matching {{param|ForwardingPolicy}} are considered, i.e. those that either do not specify a {{param|ForwardingPolicy}}, or else specify a {{param|ForwardingPolicy}} that matches that of the incoming packet. + * Next, table entries that also have a matching destination address/mask are considered, and the matching entry with the longest prefix is applied to the packet (i.e. the entry with the most specific network). An unspecified destination address is a wild-card and always matches, but with a prefix length of zero. + For enabled table entries, if {{param|Interface}} is not a valid reference to an IPv4-capable interface (that is attached to the IPv4 stack), then the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + Note: The {{object}} table includes a unique key parameter that is a strong reference. If a strongly referenced object is deleted, the CPE will set the referencing parameter to {{empty}}. However, doing so under these circumstances might cause the updated {{object}} row to then violate the table's unique key constraint; if this occurs, the CPE MUST disable the offending {{object}} row. + + + + + + + + + + + + + + + Enables or disables the forwarding entry. On creation, an entry is disabled by default. + + + + + + + + + Indicates the status of the forwarding entry. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + If {{true}}, this route is a Static route. + + + + + + + + + Destination IPv4 address. {{empty}} indicates no destination address is specified. + A Forwarding table entry for which {{param}} and {{param|DestSubnetMask}} are both {{empty}} is a default route. + + + + + + + + + Destination subnet mask. {{empty}} indicates no destination subnet mask is specified. + If a destination subnet mask is specified, the {{param}} is ANDed with the destination address before comparing with the {{param|DestIPAddress}}. Otherwise, the full destination address is used as is. + A Forwarding table entry for which {{param|DestIPAddress}} and {{param}} are both {{empty}} is a default route. + + + + + + + + + Identifier of a set of classes or flows that have the corresponding {{param}} value as defined in the {{object|Device.QoS}} object. + A value of -1 indicates no {{param}} is specified. + If specified, this forwarding entry is to apply only to traffic associated with the specified classes and flows. + + + + + + + + + + + IPv4 address of the gateway. + Only one of {{param}} and Interface SHOULD be configured for a route. + If both are configured, {{param}} and {{param|Interface}} MUST be consistent with each other. + + + + + + + + + {{reference}} Specifies the egress layer 3 interface associated with this entry. Example: Device.IP.Interface.1. + Only one of {{param|GatewayIPAddress}} and {{param}} SHOULD be configured for a route. + If both are configured, {{param|GatewayIPAddress}} and {{param}} MUST be consistent with each other. + For a route that was configured by setting {{param|GatewayIPAddress}} but not {{param}}, read access to {{param}} MUST return the full hierarchical parameter name for the routes egress interface. + + + + + + + + + + + + Protocol via which the IPv4 forwarding rule was learned. {{enum}} + + + + + + + + + + For example, present in the factory default configuration, created by the Controller, or created by some other management entity (e.g. via a GUI). + + + + + + + + + Forwarding metric. A value of -1 indicates this metric is not used. + + + + + + + + + + + + Layer 3 IPv6 forwarding table. + In addition to statically configured routes, this table MUST include dynamic routes learned through layer 3 routing protocols, including RIPng, OSPF, DHCPv6, and RA. The CPE MAY reject attempts to delete or modify a dynamic route entry. + For each incoming packet, the layer 3 forwarding decision is conceptually made as follows: + * Only enabled table entries with a matching {{param|ForwardingPolicy}} are considered, i.e. those that either do not specify a {{param|ForwardingPolicy}}, or else specify a {{param|ForwardingPolicy}} that matches that of the incoming packet. + * Next, table entries that also have a matching destination prefix are considered, and the matching entry with the longest prefix length is applied to the packet (i.e. the entry with the most specific network). An unspecified destination address is a wild-card and always matches, but with a prefix length of zero. + For enabled table entries, if {{param|Interface}} is not a valid reference to an IPv6-capable interface (that is attached to the IPv6 stack), then the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + This object is based on ''inetCidrRouteTable'' from {{bibref|RFC4292}}. + + + + + + + + + + + + + + Enables or disables this {{object}} entry. + + + + + + + + + Indicates the status of the forwarding entry. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Destination IPv6 prefix. {{empty}} indicates that it matches all destination prefixes (i.e. equivalent to "::/0"). All bits to the right of the prefix MUST be zero, e.g. 2001:edff:fe6a:f76::/64. + Routes with a 128-bit prefix length (/128) are host routes for a specific IPv6 destination, e.g. 2001:db8:28:2:713e:a426:d167:37ab/128. + + + + + + + + + Identifier of a set of classes or flows that have the corresponding {{param}} value as defined in the {{object|.QoS}} object. + A value of -1 indicates no {{param}} is specified. + If specified, this forwarding entry is to apply only to traffic associated with the specified classes and flows. + + + + + + + + + + + IPv6 address of the next hop. + Only one of {{param}} and {{param|Interface}} SHOULD be configured for a route. {{empty}} indicates no {{param}} is specified. + If both are configured, {{param}} and {{param|Interface}} MUST be consistent with each other. + + + + + + + + + {{reference}} Specifies the egress layer 3 interface associated with this entry. Example: ''Device.IP.Interface.1''. + Only one of {{param|NextHop}} and {{param}} SHOULD be configured for a route. {{empty}} indicates no {{param}} is specified. + If both are configured, {{param|NextHop}} and {{param}} MUST be consistent with each other. + For a route that was configured by setting {{param|NextHop}} but not {{param}}, read access to {{param}} MUST return the full hierarchical parameter name for the route's egress interface. + + + + + + + + + + + + Protocol via which the IPv6 forwarding rule was learned. {{enum}} + + + + + + + + Router Advertisement Route Information Option {{bibref|RFC4191}}. + + + + + RIPng for IPv6 {{bibref|RFC2080}} + + + + + For example, present in the factory default configuration, created by the Controller, or created by some other management entity (e.g. via a GUI). + + + + + + + + + Forwarding metric. A value of -1 indicates this metric is not used. + + + + + + + + + + + The time at which the route will expire, or {{null}} if not known. For an infinite lifetime, the parameter value MUST be 9999-12-31T23:59:59Z. + {{param}} is provided by an underlying dynamic routing protocol, e.g. by an {{bibref|RFC4191}} route information option. + + + + + + + + + + Routing Information Protocol (RIP) object. + + + + Enables or disables RIP on the device. + + + + + + + + The supported RIP protocol modes. {{enum}} + + + + + + + + + + + + {{numentries}} + + + + + + + + + IP Interface RIP configuration table. + For enabled table entries, if {{param|Interface}} is not a valid reference then the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + Note: The {{object}} table includes a unique key parameter that is a strong reference. If a strongly referenced object is deleted, the CPE will set the referencing parameter to {{empty}}. However, doing so under these circumstances might cause the updated {{object}} row to then violate the table's unique key constraint; if this occurs, the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}} and disable the offending {{object}} row. + Note: This object only applies to RIP2; i.e. version 2 of the RIP protocol is used to accept or send over the specified {{param|Interface}}. + + + + + + + + + + Enables or disables this entry. + + + + + + + + + The status of this entry. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + {{reference}} This is the IP interface associated with this {{object}} entry. + + + + + + + + + + + + When set to {{true}}, RIP route advertisements received over {{param|Interface}} are accepted. + When set to {{false}}, RIP route advertisements received over {{param|Interface}} are rejected. + + + + + + + + When set to {{true}}, RIP route advertisements are to be sent over {{param|Interface}}. + When set to {{false}}, no RIP route advertisements will be sent over {{param|Interface}}. + + + + + + + + + Received Router Advertisement (RA) route information {{bibref|RFC4191}}. + + + + Enables or disables receiving route information from the RA. + + + + + + + + {{numentries}} + + + + + + + + + IP Interface RA route information table. Contains received RA route information {{bibref|RFC4191}}. As such, the data in this table cannot be modified. + + + + + + + The status of this entry. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + {{reference}} This is the IP interface associated with this {{object}} entry. + + + + + + + + + + + IPv6 Address of the router that sent the RA that included this route info. + + + + + + + + Flag included in a specific Route Information Option within an RA message (Prf flag), as defined in {{bibref|RFC4191|Section 2.3}}. {{enum}} + Note that this is not the Prf flag included in the base RA message. Also see {{bibref|RFC4191|Section 2.1}} which discusses how this flag is encoded on the wire. + + + + + + + + + + + + IPv6 address prefix, as received in an instance of the Route Information Option of a RA message. + + + + + + + + The time at which {{param|Prefix}} will cease to be usable for use as a forwarding entry, or {{null}} if not known. For an infinite lifetime, the parameter value MUST be 9999-12-31T23:59:59Z. + {{param}} is received in an instance of the Route Information Option of a RA message. + + + + + + + + + The Neighbor Discovery Protocol (NDP) object {{bibref|RFC4861}}. This object applies only to IPv6. It contains an {{object|InterfaceSetting}} table that defines the NDP configuration for individual IP interfaces. + + + + Enables or disables Neighbor Discovery. + + + + + + + + {{numentries}} + + + + + + + + + Per-interface Neighbor Discovery Protocol (NDP) configuration {{bibref|RFC4861}}. + For enabled table entries, if {{param|Interface}} is not a valid reference to an IPv6-capable interface (that is attached to the IPv6 stack), then the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + Note: The {{object}} table includes a unique key parameter that is a strong reference. If a strongly referenced object is deleted, the CPE will set the referencing parameter to {{empty}}. However, doing so under these circumstances might cause the updated {{object}} row to then violate the table's unique key constraint; if this occurs, the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}} and disable the offending {{object}} row. + + + + + + + + + + Enables or disables this {{object}} entry. + + + + + + + + + The status of this entry. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + This is the IP interface associated with this {{object}} entry. + + + + + + + + + + + The number of consecutive Neighbor Solicitation messages sent while performing Duplicate Address Detection on a tentative address (see{{bibref|RFC4862|5.1}}). + A value of zero indicates that Duplicate Address Detection is not performed on tentative addresses. + A value of one indicates a single transmission with no follow-up retransmissions. + If the value is greater than 1, {{param|RetransTimer}} defines the delay between consecutive messages. + + + + + + + + + Retransmission interval in {{units}}, as defined in {{bibref|RFC4861}}. For auto-configuration purposes, {{param}} specifies the delay between consecutive Neighbor Solicitation transmissions performed during Duplicate Address Detection (DAD) {{bibref|RFC4862|Section 5.4}}, as well as the time a node waits after sending the last Neighbor Solicitation before ending the DAD process. + + + + + + + + + + + + Retransmission interval in {{units}}, as defined in {{bibref|RFC4861|6.3.7}}. For auto-configuration purposes, {{param}} specifies the delay between consecutive Router Solicitation transmissions. + + + + + + + + + + + + Maximum Number of Router Solicitation Transmission messages, as defined in {{bibref|RFC4861}}. For auto-configuration purposes {{param}} specifies the Maximum Number of Router Solicitation Transmission messages to help the host to conclude that there are no routers on the link. + + + + + + + + + Enables or disables Neighbor Unreachability Detection (NUD) {{bibref|RFC4861|Section 7}}. + + + + + + + + Enables or disables Router Solicitation (RS) on {{param|Interface}} {{bibref|RFC4861|Section 4.1}}. + + + + + + + + + The Router Advertisement (RA) object {{bibref|RFC4861}}. This object applies only to IPv6. It contains an {{object|InterfaceSetting}} table that defines the RA configuration for individual IP interfaces. + Information received via router advertisement messages is automatically propagated to the relevant {{object|.IP.Interface}} sub-objects, e.g. to the {{object|.IP.Interface.{i}.IPv6Address}} and {{object|.IP.Interface.{i}.IPv6Prefix}} tables. + + + + Enables or disables Router Advertisement. + + + + + + + + {{numentries}} + + + + + + + + + Per-interface Router Advertisement (RA) configuration {{bibref|RFC4861}}. Table entries are created for use in sending Router Advertisements. + For enabled table entries, if {{param|Interface}} is not a valid reference to an IPv6-capable interface (that is attached to the IPv6 stack), then the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + Note: The {{object}} table includes a unique key parameter that is a strong reference. If a strongly referenced object is deleted, the CPE will set the referencing parameter to {{empty}}. However, doing so under these circumstances might cause the updated {{object}} row to then violate the table's unique key constraint; if this occurs, the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}} and disable the offending {{object}} row. + + + + + + + + + + Enables or disables this {{object}} entry. + Defines the value of the ''IsRouter'' and ''AdvSendAdvertisements'' flags from {{bibref|RFC4861|Section 4.2}} + + + + + + + + + The status of this entry. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + This is the IP interface associated with this {{object}} entry. + + + + + + + + + + + {{list}} {{reference}} + Manually-configured prefixes that will be sent in Router Advertisement messages. Each referenced prefix MUST have a {{param|.IP.Interface.{i}.IPv6Prefix.{i}.StaticType}} of {{enum|Static|.IP.Interface.{i}.IPv6Prefix.{i}.StaticType}} or {{enum|Child|.IP.Interface.{i}.IPv6Prefix.{i}.StaticType}}. Router Advertisement messages MUST include Prefix Information Options {{bibref|RFC4861}} for all ''Valid'' ({{param|.IP.Interface.{i}.IPv6Prefix.{i}.ValidLifetime}} is infinite or in the future) prefixes in this list. + Prefixes MUST be associated with the interface instance referenced by {{param|Interface}}. + + + + + + + + + + + + {{list}} {{reference}} + All prefixes that will be included in Router Advertisement (RA) messages sent out this interface. This list can include: + * Prefixes from {{param|ManualPrefixes}} that are included in RA messages. + * Prefixes with {{param|.IP.Interface.{i}.IPv6Prefix.{i}.Origin}} = {{enum|Child|.IP.Interface.{i}.IPv6Prefix.{i}.Origin}} or {{enum|AutoConfigured|.IP.Interface.{i}.IPv6Prefix.{i}.Origin}} associated with the interface instance referenced by {{param|Interface}}. + + + + + + + + + + + The maximum time allowed between sending unsolicited multicast Router Advertisements from the interface, in {{units}} (see {{bibref|RFC4861|Section 4.2}}). + + + + + + + + + + + + The minimum time allowed between sending unsolicited multicast Router Advertisements from the interface, in {{units}} (see {{bibref|RFC4861|Section 4.2}}). + The value MUST be no greater than 3/4 * {{param|MaxRtrAdvInterval}}. + Note: The ''1350'' maximum was derived from the RFC, based on 3/4 times the maximum value of {{param|MaxRtrAdvInterval}}. Similarly, the ''200'' default was derived from the RFC, based on 1/3 times the default value of {{param|MaxRtrAdvInterval}}. + + + + + + + + + + + + The value placed in the "Router Lifetime" field of Router Advertisement messages on this interface, in {{units}} (see {{bibref|RFC4861|Section 4.2}}). + The value can be zero or between {{param|MaxRtrAdvInterval}} and 9000 {{units}}, but these limits can be overridden by specific documents that describe how IPv6 operates over different link layers. + A value of zero indicates that the router is not to be used as a default router. + Note: The ''1800'' default was derived from the RFC, based on 3 times the default value of {{param|MaxRtrAdvInterval}}. + + + + + + + + + + + + The value placed in the "Managed address configuration" (M) flag field of Router Advertisement messages on this interafce (see {{bibref|RFC4861|Section 4.2}}, and {{bibref|RFC4862}}). + + + + + + + + + The value placed in the "Other configuration" (O) flag field of Router Advertisement messages on this interface (see {{bibref|RFC4861|Section 4.2}}, and {{bibref|RFC4862}}). + + + + + + + + + The value placed in the "Home agent" (H) flag field of Router Advertisement messages on this interface (see {{bibref|RFC3775|Section 7.1}}). + + + + + + + + + The value placed in the "Default Router Preference" (Prf) field of Router Advertisement messages on this interface, as defined in {{bibref|RFC4191|Section 2.2}}. {{enum}} + Also see {{bibref|RFC4191|Section 2.1}} which discusses how this flag is encoded on the wire. + + + + + + + + + + + + + The value placed in the "Proxy" (P) flag field of Router Advertisement messages on this interface (see {{bibref|RFC4389|Section 4.1.3.3}}). + + + + + + + + + The value placed in MTU options of Router Advertisement messages on this interface. A value of zero indicates that no MTU options are included (see {{bibref|RFC4861|Section 4.6.4}}). + + + + + + + + + The value placed in the "Reachable Time" field of Router Advertisement messages on this interface, in {{units}} (see {{bibref|RFC4861|Section 4.2}}). + The value zero means unspecified (by the router). + + + + + + + + + + + + The value placed in the "Retrans Timer" field of Router Advertisement messages on this interface (see {{bibref|RFC4861|Section 4.2}}). + The value zero means unspecified (by the router). + + + + + + + + + + + The value placed in the "Cur Hop Limit" field of Router Advertisement messages on this interface (see {{bibref|RFC4861|Section 4.2}}). + The value zero means unspecified (by the router). + Note: The default can be overridden with the value specified in {{bibref|RFC3232}} that was in effect at the time of implementation. + + + + + + + + + + + {{numentries}} + + + + + + + + + This object specifies the options in a Router Advertisement (RA) message {{bibref|RFC4861|Section 4.6}}. {{object}} entries are created for use in sending Router Advertisements (enabled options MUST be included in RA messages sent). This includes support for sending DNS information in the RA message as described in {{bibref|RFC6106}}. + This table is intended only for options that are not modeled elsewhere. For example, it is not appropriate for the MTU option (which is modeled via {{param|#.AdvLinkMTU}}). + + + + + + + + + + Enables or disables this {{object}} entry. + + + + + + + + + {{datatype|expand}} + + + + + + + + Option tag (type) {{bibref|RFC4861|Section 4.6}}. + + + + + + + + + + A hexbinary encoded option value {{bibref|RFC4861|Section 4.6}}. + + + + + + + + + + + Settings allowing a CPE to derive and route IPv6 Rapid Deployment (6rd) delegated prefixes as specified in {{bibref|RFC5969}}. The 6rd mechanism is intended to be implemented only on what {{bibref|RFC5969}} refers to as ''Customer Edge Routers'', i.e. on gateway devices, that support IPv6 on the LAN side and only have IPv4 connectivity on the WAN side. + See the 6rd Theory of Operation {{bibref|TR-181i2|Appendix VI}} for a description of the working of this 6rd data model. + + + + Enables or disables IPv6rd. + + + + + + + + {{numentries}} + + + + + + + + + 6rd {{bibref|RFC5969}} settings. + A 6rd delegated prefix is expected to be of maximum length 64 bits, and is the concatenation of the following two items: + * Service provider IPv6 prefix: specified via the {{param|SPIPv6Prefix}} parameter + * IPv4 address suffix: the IPv4 address with the first {{param|IPv4MaskLength}} bits removed + This object definition is derived from {{bibref|RFC5969}} with some minor nomenclature changes. + + + + + + + Enable or disable this {{object}} instance. + + + + + + + + The status of this entry. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + List items are the IPv4 addresses (possibly anycast) of the 6rd Relay(s). + + + + + + + + + If {{true}}, the destination address for all 6rd traffic will be set (IPv4 destination address) to one of the {{param|BorderRelayIPv4Addresses}}. If {{false}}, traffic whose destination address begins with the same prefix as {{param|SPIPv6Prefix}} will be sent directly to the destination IPv4 address of the endpoint, which is in the same 6rd domain. See 6rd Theory of Operation for further explanation {{bibref|TR-181i2|Appendix VI}}. + + + + + + + + The Service Provider's 6rd IPv6 prefix for this deployment and this 6rd RG. + + + + + + + + The number of high-order {{units}} that are identical across all IPv4 addresses within a given 6rd domain. This number of {{units}} MUST be removed from the start of the IPv4 address when generating the 6rd delegated prefix. + For example, if this value is 8, only the final 24 {{units}} of the subscriber IPv4 prefix will be used when creating the IPv6 delegated prefix, determining the destination IPv4 encapsulation address, etc. + If the value is 0, then the whole 32 {{units}} of the IPv4 address are used in the encoding. + + + + + + + + + + + {{reference}} Points to the IPv4 address that is the source of the IPv4 address embedded in the IPv6 6rd prefix, and used as the source encapsulating IPv4 address. If the value is {{empty}} or this parameter is not present, the device will use internal logic to determine which IPv4 source address to use. + + + + + + + + + + + {{reference}} This is an IP interface of ''Type'' {{enum|Tunnel|.IP.Interface.{i}.Type}} that is logically the tunnel entry point for upstream IPv6 traffic and is also logically the tunnel exit point for downstream IPv6 traffic (i.e. the entry point for non-tunneled upstream IPv6 traffic to enter a tunnel and become tunneled, or conversely, the exit point for downstream IPv6 traffic leaving a tunnel after being un-tunneled). + IPv6 traffic that enters {{param}} from the LAN is expected to continue on through {{param|TunneledInterface}}, and traffic from the WAN is expected to come from {{param|TunneledInterface}} into {{param}}. {{param}} is a logical interface that can allow for classification, marking (of IPv6 headers), and policing of IPv6 traffic that will be going over a 6rd tunnel. These functions are modeled in the {{object|.QoS.}} object. + {{param}} can be used also to represent the 6rd virtual interface defined in {{bibref|RFC5969}}. + Note: In 6rd, IPv6 packets arriving over one or more device LAN IP interfaces are logically fed into this {{param}}. Likewise, 6rd traffic from the WAN gets logically sent from this {{param}} to LAN IP interfaces. + + + + + + + + + + + {{reference}} This is an IP interface of ''Type'' {{enum|Tunneled|.IP.Interface.{i}.Type}} that provides information about the IPv4 headers used to encapsulate the IPv6 packets. + Encapsulated IPv6 traffic that enters {{param}} from the WAN is expected to continue on through {{param|TunnelInterface}}, and traffic from the LAN is expected to come from {{param|TunnelInterface}} into {{param}}. {{param}} is a logical interface that can allow for classification, marking (of IPv4 headers and VLAN tags), and policing of IPv4 packets that encapsulate IPv6 packets in 6rd traffic. These functions are modeled in the {{object|.QoS.}} object. + Note: In 6rd, {{param}} traffic originating from the LAN logically feeds into a WAN-side IPv4 capable IP interface that the "IPv6 6rd tunnel" goes over. 6rd traffic that enters over this IPv4 WAN interface gets logically sent to this {{param}}. + + + + + + + + + + + + Settings allowing a CPE to configure and route IPv6 Dual-Stack Lite (DSLite) as specified in {{bibref|DSLite}}. The DS-Lite mechanism is intended to be implemented only on gateway devices that support IPv4 on the LAN side and only have IPv6 connectivity on the WAN side. + See the Dual-Stack Lite Theory of Operation {{bibref|TR-181i2|Appendix VII}} for a description of the working of this DS-Lite data model. + + + + Enables or disables DSLite. + + + + + + + + {{numentries}} + + + + + + + + + DSLite {{bibref|DSLite}} settings. + + + + + + + Enable or disable this {{object}} instance. + + + + + + + + The status of this entry. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Indicates the preferred method to be used in assigning values to {{param|EndpointName}} when both static and dynamic values are available. See {{param|EndpointName}} for further clarification. + + + + + + + + + + + + Indicates the preferred method to be used to assign the address of the DS-Lite Endpoint when both {{param|EndpointName}} and {{param|EndpointAddress}} values are available and the {{enum|Static|EndpointAssignmentPrecedence}} method is used. See {{param|EndpointName}} and {{param|EndpointAddress}} for further clarification. + + + + + + Derive from {{param|EndpointName}} via a DNS lookup. + + + + + Use {{param|EndpointAddress}} directly. + + + + + + + + Indicates the address currently in use for the tunnel concentrator (remote endpoint). It is derived from the values of the {{param|EndpointAssignmentPrecedence}}, {{param|EndpointAddressTypePrecedence}}, {{param|EndpointName}} and {{param|EndpointAddress}} parameters. + It is {{empty}} if no endpoint address is currently known. + + + + + + + + The Fully Qualified Domain Name (FQDN) of the tunnel concentrator (remote endpoint). + This parameter is based on ''OPTION_DS_LITE_NAME'' from {{bibref|DSLite-options|Section 4}} and can be assigned statically (e.g. present in the factory default configuration or set by the Controller) or can be updated dynamically (via DHCPv6). If both statically and dynamically assigned, then {{param|EndpointAssignmentPrecedence}} indicates whether it is the static configuration or the DHCPv6 configuration that is actually applied to {{param}}. + Note: {{param}} is only writable when {{param|EndpointAssignmentPrecedence}} is {{enum|Static|EndpointAssignmentPrecedence}}; otherwise, {{param}} is automatically configured via the DHCPv6 received option. + + + + + + + + + + The address of the tunnel concentrator (remote endpoint). + This parameter can only be assigned statically (e.g. present in the factory default configuration or set by the Controller). + + + + + + + + Method used to assign {{param|EndpointAddressInUse}}. + + + + + + Assigned by DHCPv6 {{bibref|RFC3315}}. + + + + + For example, present in the factory default configuration, set by the Controller, or set by some other management entity (e.g. via a GUI). + + + + + + + + {{reference}} This is an IP interface of ''Type'' {{enum|Tunnel|.IP.Interface.{i}.Type}} that is logically the tunnel entry point for upstream IPv4 traffic and is also logically the tunnel exit point for downstream IPv4 traffic (i.e. the entry point for non-tunneled upstream IPv4 traffic to enter a tunnel and become tunneled, or conversely, the exit point for downstream IPv4 traffic leaving a tunnel after being un-tunneled). + IPv4 traffic that enters {{param}} is expected to continue on through {{param|TunneledInterface}} from the LAN, and traffic from the WAN is expected to come from TunneledInterface into TunnelInterface. TunnelInterface is a logical interface that can allow for classification, marking (of IPv4 headers), and policing of IPv4 traffic that will be going over a DS-Lite tunnel. These functions are modeled in the Device.QoS object. + Note: In DS-Lite, IPv4 packets arriving over one or more device LAN IP interfaces are logically fed into this {{param}}. Likewise, DS-Lite traffic from the WAN gets logically sent from this {{param}} to LAN IP interfaces. + + + + + + + + + + + {{reference}} This is an IP interface of ''Type'' {{enum|Tunneled|.IP.Interface.{i}.Type}} that provides information about the IPv6 headers used to encapsulate the IPv4 packets. + Encapsulated IPv4 traffic that enters {{param}} from the WAN is expected to continue on through {{param|TunnelInterface}}, and traffic from the LAN is expected to come from {{param|TunnelInterface}} into {{param}}. {{param}} is a logical interface that can allow for classification, marking (of IPv6 headers and VLAN tags), and policing of IPv6 packets that encapsulate IPv4 packets in DS-Lite traffic. These functions are modeled in the {{object|.QoS.}} object. + Note: In DS-Lite, {{param}} traffic originating from the LAN logically feeds into a WAN-side IPv6 capable IP interface that the "DSLite IPv4-in-IPv6 tunnel" goes over. DS-Lite traffic that enters over this IPv6 WAN interface gets logically sent to this {{param}}. + + + + + + + + + + + + Queue management configuration object. + + + + The maximum number of entries available in the Classification table. + + + + + + + + {{numentries}} + + + + + + + + The maximum number of entries available in the {{object|App}} table. + + + + + + + + {{numentries}} + + + + + + + + The maximum number of entries available in the {{object|Flow}} table. + + + + + + + + {{numentries}} + + + + + + + + The maximum number of entries available in the {{object|Policer}} table. + + + + + + + + {{numentries}} + + + + + + + + The maximum number of entries available in the {{object|Queue}} table. + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + The maximum number of entries available in the {{object|Shaper}} table. + + + + + + + + {{numentries}} + + + + + + + + Identifier of the forwarding policy associated with traffic not associated with any specified classifier. + + + + + + + + Identifier of the traffic class associated with traffic not associated with any specified classifier. + + + + + + + + {{reference}} Indicates the ''Policer'' table entry for traffic not associated with any specified classifier. + {{empty}} indicates a null policer. + + + + + + + + + + + {{reference}} Indicates the ''Queue'' table entry for traffic not associated with any specified classifier. Note: The interpretation of {{empty}} value is implementation specific. + + + + + + + + + + + DSCP to mark traffic not associated with any specified classifier. + A value of -1 indicates no change from the incoming packet. + A value of -2 indicates automatic marking of DSCP based upon the EthernetPriority value of the incoming packet as defined in {{bibref|TR-181i2|Annex A}}. + + + + + + + + + + Ethernet priority code (as defined in {{bibref|802.1Q-2011}}) to mark traffic not associated with any specified classifier. + A value of -1 indicates no change from the incoming packet. + A value of -2 indicates automatic marking of EthernetPriority based upon the DSCP value of the incoming packet as defined in {{bibref|TR-181i2|Annex A}}. + + + + + + + + + + Ethernet priority code (as defined in {{bibref|802.1Q-2011}}) to mark traffic of the inner VLAN Tag as defined in 802.1Q, when the PDU is not associated with any specified classifier. This parameter is only applicable when the PDU has 2 VLAN Tags. + A value of -1 indicates no change from the incoming packet. + A value of -2 indicates automatic marking of EthernetPriority based upon the DSCP value of the incoming packet as defined in {{bibref|TR-181i2|Annex A}}. + + + + + + + + + + {{list}} List items represent URNs, each indicating a protocol supported for use as a ProtocolIdentifier in the App table. This list MAY include any of the URNs defined in {{bibref|TR-181i2|Annex A}} as well as other URNs defined elsewhere. + + + + + + + + + + + + Classification table. + For enabled table entries, if {{param|Interface}} is not a valid reference and {{param|AllInterfaces}} is {{false}}, then the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + Several of this object's parameters specify DHCP option values. Some cases are version neutral (the parameter can apply to both DHCPv4 and DHCPv6), but in other cases the representation of the option is different for DHCPv4 and DHCPv6, so it is necessary to define separate DHCPv4-specific and DHCPv6-specific parameters. Therefore, an instance of this object that uses DHCP option values as classification criteria will be associated with either DHCPv4 or DHCPv6, as indicated by the {{param|DHCPType}} parameter. + + + + + + + Enables or disables this classifier. + + + + + + + + + The status of this classifier. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + Position of the {{object}} entry in the order of precedence. A value of ''1'' indicates the first entry considered (highest precedence). For each packet, the highest ordered entry that matches the classification criteria is applied. All lower order entries are ignored. + When this value is modified, if the value matches that of an existing entry, the {{param}} value for the existing entry and all lower {{param}} entries is incremented (lowered in precedence) to ensure uniqueness of this value. A deletion causes {{param}} values to be compacted. When a value is changed, incrementing occurs before compaction. + The value of {{param}} on creation of a {{object}} table entry MUST be one greater than the largest current value (initially assigned the lowest precedence). + + + + + + + + + + {{datatype|expand}} + + + + + + + + The DHCP protocol associated with the {{object}} instance. Affects only parameters that specify DHCP option values as classification criteria (all such parameter descriptions note this fact). {{enum}} + If {{param}} is {{enum|DHCPv4}}, then {{object}} parameters that are DHCPv6-specific are ignored. If {{param}} is {{enum|DHCPv6}}, then {{object}} parameters that are DHCPv4-specific are ignored. + + + + + + + + + + + + Classification criterion. {{reference}} + This specifies the ingress interface associated with the entry. It MAY be a layer 1, 2 or 3 interface, however, the types of interfaces for which ''Classifications'' can be instantiated is a local matter to the CPE. + Note that this parameter is permitted to reference ''Tunnel'' instances in order to classify upstream packets that have just been encapsulated (such packets are conceptually similar to locally-generated traffic). For example, this parameter might reference a {{object|.GRE.Tunnel}} or a {{object|.MAP.Domain}} instance. + + + + + + + + + + + + Classification criterion. This specifies that all ingress interfaces are associated with the entry. If {{true}}, the value of {{param|Interface}} is ignored since all ingress interfaces are indicated. + + + + + + + + + Classification criterion. + Destination IP address. {{empty}} indicates this criterion is not used for classification. + + + + + + + + + Destination IP address mask, represented as an IP routing prefix using CIDR notation [RFC4632]. The IP address part MUST be {{empty}} (and, if specified, MUST be ignored). + + + + + + + + + If {{false}}, the class includes only those packets that match the (masked) DestIP entry, if specified. + If {{true}}, the class includes all packets except those that match the (masked) DestIP entry, if specified. + + + + + + + + + Classification criterion. + Source IP address. {{empty}} indicates this criterion is not used for classification. + + + + + + + + + Source IP address mask, represented as an IP routing prefix using CIDR notation [RFC4632]. The IP address part MUST be {{empty}} (and, if specified, MUST be ignored). + + + + + + + + + If {{false}}, the class includes only those packets that match the (masked) {{param|SourceIP}} entry, if specified. + If {{true}}, the class includes all packets except those that match the (masked) {{param|SourceIP}} entry, if specified. + + + + + + + + + Classification criterion. + Protocol number. A value of -1 indicates this criterion is not used for classification. + + + + + + + + + + + If {{false}}, the class includes only those packets that match the {{param|Protocol}} entry, if specified. + If {{true}}, the class includes all packets except those that match the {{param|Protocol}} entry, if specified. + + + + + + + + + Classification criterion. + Destination port number. A value of -1 indicates this criterion is not used for classification. + + + + + + + + + + + Classification criterion. + If specified, indicates the classification criterion is to include the port range from {{param|DestPort}} through {{param}} (inclusive). If specified, {{param}} MUST be greater than or equal to {{param|DestPort}}. + A value of -1 indicates that no port range is specified. + + + + + + + + + + + If {{false}}, the class includes only those packets that match the {{param|DestPort}} entry (or port range), if specified. + If {{true}}, the class includes all packets except those that match the {{param|DestPort}} entry (or port range), if specified. + + + + + + + + + Classification criterion. + Source port number. A value of -1 indicates this criterion is not used for classification. + + + + + + + + + + + Classification criterion. + If specified, indicates the classification criterion is to include the port range from {{param|SourcePort}} through {{param}} (inclusive). If specified, {{param}} MUST be greater than or equal to SourcePort. + A value of -1 indicates that no port range is specified. + + + + + + + + + + + If {{false}}, the class includes only those packets that match the {{param|SourcePort}} entry (or port range), if specified. + If {{true}}, the class includes all packets except those that match the {{param|SourcePort}} entry (or port range), if specified. + + + + + + + + + Classification criterion. + Source MAC Address. {{empty}} indicates this criterion is not used for classification. + + + + + + + + + Bit-mask for the MAC address, where matching of a packet's MAC address with the {{param|SourceMACAddress}} is only to be done for bit positions set to one in the mask. A mask of ''FF:FF:FF:FF:FF:FF'' or {{empty}} indicates all bits of the {{param|SourceMACAddress}} are to be used for classification. + + + + + + + + + If {{false}}, the class includes only those packets that match the (masked) {{param|SourceMACAddress}} entry, if specified. + If {{true}}, the class includes all packets except those that match the (masked) {{param|SourceMACAddress}} entry, if specified. + + + + + + + + + Classification criterion. + Destination MAC Address. {{empty}} indicates this criterion is not used for classification. + The use of destination MAC address as a classification criterion is primarily useful only for bridged traffic. + + + + + + + + + Bit-mask for the MAC address, where matching of a packet's MAC address with the {{param|DestMACAddress}} is only to be done for bit positions set to one in the mask. A mask of ''FF:FF:FF:FF:FF:FF'' or {{empty}} indicates all bits of the {{param|DestMACAddress}} are to be used for classification. + + + + + + + + + If {{false}}, the class includes only those packets that match the (masked) {{param|DestMACAddress}} entry, if specified. + If {{true}}, the class includes all packets except those that match the (masked) {{param|DestMACAddress}} entry, if specified. + + + + + + + + + Classification criterion. + Ethertype as indicated in either the Ethernet or SNAP Type header. A value of -1 indicates this criterion is not used for classification. + + + + + + + + + + + If {{false}}, the class includes only those packets that match the {{param|Ethertype}} entry, if specified. + If {{true}}, the class includes all packets except those that match the {{param|Ethertype}} entry, if specified. + + + + + + + + + Classification criterion. + SSAP element in the LLC header. A value of -1 indicates this criterion is not used for classification. + + + + + + + + + + + If {{false}}, the class includes only those packets that match the {{param|SSAP}} entry, if specified. + If {{true}}, the class includes all packets except those that match the {{param|SSAP}} entry, if specified. + + + + + + + + + Classification criterion. + DSAP element in the LLC header. A value of -1 indicates this criterion is not used for classification. + + + + + + + + + + + If {{false}}, the class includes only those packets that match the {{param|DSAP}} entry, if specified. + If {{true}}, the class includes all packets except those that match the {{param|DSAP}} entry, if specified. + + + + + + + + + Classification criterion. + Control element in the LLC header. A value of -1 indicates this criterion is not used for classification. + + + + + + + + + + + If {{false}}, the class includes only those packets that match the {{param|LLCControl}} entry, if specified. + If {{true}}, the class includes all packets except those that match the {{param|LLCControl}} entry, if specified. + + + + + + + + + Classification criterion. + OUI element in the SNAP header. A value of -1 indicates this criterion is not used for classification. + + + + + + + + + + + If {{false}}, the class includes only those packets that match the {{param|SNAPOUI}} entry, if specified. + If {{true}}, the class includes all packets except those that match the {{param|SNAPOUI}} entry, if specified. + + + + + + + + + Classification criterion. + Used to identify one or more LAN devices, value of the DHCPv4 Vendor Class Identifier (Option 60) as defined in {{bibref|RFC2132}}, matched according to the criterion in {{param|SourceVendorClassIDMode}}. Case sensitive. + This is a normal string, e.g. "abc" is represented as "abc" and not say "616263" hex. However, if the value includes non-printing characters then such characters have to be represented using XML escapes, e.g. #x0a for line-feed. + {{empty}} indicates this criterion is not used for classification. + Note: This parameter is DHCPv4-specific. It only applies when {{param|DHCPType}} is {{enum|DHCPv4|DHCPType}}. + + + + + + + + + + + Classification criterion. + A hexbinary string used to identify one or more LAN devices, value of the DHCPv6 Vendor Class Identifier (Option 16) as defined in {{bibref|RFC3315}}. The option value is binary, so an exact match is REQUIRED. + {{empty}} indicates this criterion is not used for classification. + Note: This parameter is DHCPv6-specific. It only applies when {{param|DHCPType}} is {{enum|DHCPv6|DHCPType}}. + + + + + + + + + + + If {{false}}, the class includes only those packets sourced from LAN devices that match the {{param|SourceVendorClassID}} entry (for {{enum|DHCPv4|DHCPType}}) or the {{param|SourceVendorClassIDv6}} entry (for {{enum|DHCPv6|DHCPType}}), if specified. + If {{true}}, the class includes all packets except those sourced from LAN devices that match the {{param|SourceVendorClassID}} entry (for {{enum|DHCPv4|DHCPType}}) or the {{param|SourceVendorClassIDv6}} entry (for {{enum|DHCPv6|DHCPType}}), if specified. + + + + + + + + + SourceVendorClassID pattern match criterion. {{enum}} + For example, if {{param|SourceVendorClassID}} is "Example" then an Option 60 value of "Example device" will match with {{param}} values of {{enum|Prefix}} or {{enum|Substring}}, but not with {{enum|Exact}} or {{enum|Suffix}}. + + + + + + + + + + + + + + Classification criterion. + Used to identify one or more LAN devices, value of the DHCPv4 Vendor Class Identifier (Option 60) as defined in {{bibref|RFC2132}}, matched according to the criterion in {{param|DestVendorClassIDMode}}. Case sensitive. + This is a normal string, e.g. "abc" is represented as "abc" and not say "616263" hex. However, if the value includes non-printing characters then such characters have to be represented using XML escapes, e.g. #x0a for line-feed. + {{empty}} indicates this criterion is not used for classification. + Note: This parameter is DHCPv4-specific. It only applies when {{param|DHCPType}} is {{enum|DHCPv4|DHCPType}}. + + + + + + + + + + + Classification criterion. + A hexbinary string used to identify one or more LAN devices, value of the DHCPv6 Vendor Class Identifier (Option 16) as defined in {{bibref|RFC3315}}. The option value is binary, so an exact match is REQUIRED. + {{empty}} indicates this criterion is not used for classification. + Note: This parameter is DHCPv6-specific. It only applies when {{param|DHCPType}} is {{enum|DHCPv6|DHCPType}}. + + + + + + + + + + + If {{false}}, the class includes only those packets destined for LAN devices that match the {{param|DestVendorClassID}} entry (for {{enum|DHCPv4|DHCPType}}) or the {{param|DestVendorClassIDv6}} entry (for {{enum|DHCPv6|DHCPType}}), if specified. + If {{true}}, the class includes all packets except those destined for LAN devices that match the {{param|DestVendorClassID}} entry (for {{enum|DHCPv4|DHCPType}}) or the {{param|DestVendorClassIDv6}} entry (for {{enum|DHCPv6|DHCPType}}), if specified. + + + + + + + + + {{param|DestVendorClassID}} pattern match criterion. {{enum}} + For example, if {{param|DestVendorClassID}} is "Example" then an Option 60 value of "Example device" will match with {{param}} values of {{enum|Prefix}} or {{enum|Substring}}, but not with {{enum|Exact}} or {{enum|Suffix}}. + + + + + + + + + + + + + + Classification criterion. + A hexbinary string used to identify one or more LAN devices, value of the DHCP Client Identifier. The DHCP Client Identifier is Option 61 (as defined in {{bibref|RFC2132}}) for {{enum|DHCPv4|DHCPType}}, or is Option 1 (as defined in {{bibref|RFC3315}}) for {{enum|DHCPv6|DHCPType}}. The option value is binary, so an exact match is REQUIRED. + {{empty}} indicates this criterion is not used for classification. + Note: DHCPv4 Option values are limited to a length of 255, while DHCPv6 Option values can have a maximum length of 65535. + Note: This parameter is DHCP version neutral. The specific DHCP version in use with this parameter is indicated by {{param|DHCPType}}. + Note: DHCPv6 Option 1 (Client Identifier) is sometimes referred to as ''DUID''. + + + + + + + + + + + If {{false}}, the class includes only those packets sourced from LAN devices that match the {{param|SourceClientID}} entry, if specified. + If {{true}}, the class includes all packets except those sourced from LAN devices that match the {{param|SourceClientID}} entry, if specified. + + + + + + + + + Classification criterion. + A hexbinary string used to identify one or more LAN devices, value of the DHCP Client Identifier. The DHCP Client Identifier is Option 61 (as defined in {{bibref|RFC2132}}) for {{enum|DHCPv4|DHCPType}}, or is Option 1 (as defined in {{bibref|RFC3315}}) for {{enum|DHCPv6|DHCPType}}. The option value is binary, so an exact match is REQUIRED. + {{empty}} indicates this criterion is not used for classification. + Note: DHCPv4 Option values are limited to a length of 255, while DHCPv6 Option values can have a maximum length of 65535. + Note: This parameter is DHCP version neutral. The specific DHCP version in use with this parameter is indicated by {{param|DHCPType}}. + Note: DHCPv6 Option 1 (Client Identifier) is sometimes referred to as ''DUID''. + + + + + + + + + + + If {{false}}, the class includes only those packets destined for LAN devices that match the {{param|DestClientID}} entry, if specified. + If {{true}}, the class includes all packets except those destined for LAN devices that match the {{param|DestClientID}} entry, if specified. + + + + + + + + + Classification criterion. + A hexbinary string used to identify one or more LAN devices, value of the DHCP User Class Identifier. The DHCP User Class Identifier is Option 77 (as defined in {{bibref|RFC3004}}) for {{enum|DHCPv4|DHCPType}}, or is Option 15 (as defined in {{bibref|RFC3315}}) for {{enum|DHCPv6|DHCPType}}. The option value is binary, so an exact match is REQUIRED. + {{empty}} indicates this criterion is not used for classification. + Note: DHCPv4 Option values are limited to a length of 255, while DHCPv6 Option values can have a maximum length of 65535. + Note: This parameter is DHCP version neutral. The specific DHCP version in use with this parameter is indicated by {{param|DHCPType}}. + + + + + + + + + + + If {{false}}, the class includes only those packets sourced from LAN devices that match the {{param|SourceUserClassID}} entry, if specified. + If {{true}}, the class includes all packets except those sourced from LAN devices that match the {{param|SourceUserClassID}} entry, if specified. + + + + + + + + + Classification criterion. + A hexbinary string used to identify one or more LAN devices, value of the DHCP User Class Identifier. The DHCP User Class Identifier is Option 77 (as defined in {{bibref|RFC3004}}) for {{enum|DHCPv4|DHCPType}}, or is Option 15 (as defined in {{bibref|RFC3315}}) for {{enum|DHCPv6|DHCPType}}. The option value is binary, so an exact match is REQUIRED. + {{empty}} indicates this criterion is not used for classification. + Note: DHCPv4 Option values are limited to a length of 255, while DHCPv6 Option values can have a maximum length of 65535. + Note: This parameter is DHCP version neutral. The specific DHCP version in use with this parameter is indicated by {{param|DHCPType}}. + + + + + + + + + + + If {{false}}, the class includes only those packets destined for LAN devices that match the {{param|DestUserClassID}} entry, if specified. + If {{true}}, the class includes all packets except those destined for LAN devices that match the {{param|DestUserClassID}} entry, if specified. + + + + + + + + + Classification criterion. + A hexbinary string used to identify one or more LAN devices, value of the DHCP Vendor-specific Information, matched according to the criteria in {{param|SourceVendorSpecificInfoEnterprise}} and {{param|SourceVendorSpecificInfoSubOption}}. The DHCP Vendor-specific Information is Option 125 (as defined in {{bibref|RFC3925}}) for {{enum|DHCPv4|DHCPType}}, or is Option 17 (as defined in {{bibref|RFC3315}}) for {{enum|DHCPv6|DHCPType}}. + {{empty}} indicates this criterion is not used for classification. + Note: DHCPv4 Option values are limited to a length of 255, while DHCPv6 Option values can have a maximum length of 65535. + Note: This parameter is DHCP version neutral. The specific DHCP version in use with this parameter is indicated by {{param|DHCPType}}. + + + + + + + + + + + If {{false}}, the class includes only those packets sourced from LAN devices that match the {{param|SourceVendorSpecificInfo}} entry, if specified. + If {{true}}, the class includes all packets except those sourced from LAN devices that match the {{param|SourceVendorSpecificInfo}} entry, if specified. + + + + + + + + + {{param|SourceVendorSpecificInfo}} Enterprise Number as defined in {{bibref|RFC3925}}. + The default value (0) is assigned to IANA and will probably need to be replaced with an appropriate enterprise number. + + + + + + + + + {{param|SourceVendorSpecificInfo}} Sub Option Code as defined in {{bibref|RFC3925}}. + + + + + + + + + + + Classification criterion. + A hexbinary string used to identify one or more LAN devices, value of the DHCP Vendor-specific Information, matched according to the criteria in {{param|DestVendorSpecificInfoEnterprise}} and {{param|DestVendorSpecificInfoSubOption}}. The DHCP Vendor-specific Information is Option 125 (as defined in {{bibref|RFC3925}}) for {{enum|DHCPv4|DHCPType}}, or is Option 17 (as defined in {{bibref|RFC3315}}) for {{enum|DHCPv6|DHCPType}}. + {{empty}} indicates this criterion is not used for classification. + Note: DHCPv4 Option values are limited to a length of 255, while DHCPv6 Option values can have a maximum length of 65535. + Note: This parameter is DHCP version neutral. The specific DHCP version in use with this parameter is indicated by {{param|DHCPType}}. + + + + + + + + + + + If {{false}}, the class includes only those packets destined for LAN devices that match the {{param|DestVendorSpecificInfo}} entry, if specified. + If {{true}}, the class includes all packets except those destined for LAN devices that match the {{param|DestVendorSpecificInfo}} entry, if specified. + + + + + + + + + {{param|DestVendorSpecificInfo}} Enterprise Number as defined in {{bibref|RFC3925}}. + The default value (0) is assigned to IANA and will probably need to be replaced with an appropriate enterprise number. + + + + + + + + + {{param|DestVendorSpecificInfo}} Sub Option Code as defined in {{bibref|RFC3925}}. + + + + + + + + + + + Classification criterion. + If {{false}}, this criterion is not used for classification. + If {{true}}, this criterion matches with all TCP segments that have the ACK control bit set. + + + + + + + + + If {{false}}, the class includes only those packets that match the {{param|TCPACK}} entry, if specified. + If {{true}}, the class includes all packets except those that match the {{param|TCPACK}} entry, if specified. + + + + + + + + + Classification criterion. + Minimum IP Packet Length (including header) in bytes. + + + + + + + + + Classification criterion. + Maximum IP Packet Length (including header) in bytes. + A value of zero indicates that no maximum is specified (an umlimited maximum length). + + + + + + + + + If {{false}}, the class includes only those packets whose length (including header) falls within the inclusive range {{param|IPLengthMin}} through {{param|IPLengthMax}}. A value of zero for both {{param|IPLengthMin}} and {{param|IPLengthMax}} allows any length packet. An equal non-zero value of {{param|IPLengthMin}} and {{param|IPLengthMax}} allows only a packet with the exact length specified. + If {{true}}, the class includes all packets except those whose length (including header) falls within the inclusive range {{param|IPLengthMin}} through {{param|IPLengthMax}}. + + + + + + + + + Classification criterion. + DiffServ codepoint (defined in {{bibref|RFC2474}}). + If set to a Class Selector Codepoint (defined in {{bibref|RFC2474}}), all DSCP values that match the first 3 bits will be considered a valid match. + A value of -1 indicates this criterion is not used for classification. + + + + + + + + + + + If {{false}}, the class includes only those packets that match the {{param|DSCPCheck}} entry, if specified. + If {{true}}, the class includes all packets except those that match the {{param|DSCPCheck}} entry, if specified. + + + + + + + + + Classification result. + DSCP to mark traffic with that falls into this classification entry. + A value of -1 indicates no change from the incoming packet. + A value of -2 indicates automatic marking of DSCP based upon the EthernetPriority value of the incoming packet as defined in {{bibref|TR-181i2|Annex A}}. + + + + + + + + + + + Classification criterion. + Current Ethernet priority of a VLAN Tag as defined in {{bibref|802.1Q-2011}} or Ethernet Priority field as defined in 802.1D. If more than 1 VLAN tag is present, then this parameter represents the outer VLAN Tag. A value of -1 indicates this criterion is not used for classification. + + + + + + + + + + + If {{false}}, the class includes only those packets that match the {{param|EthernetPriorityCheck}} entry, if specified. + If {{true}}, the class includes all packets except those that match the {{param|EthernetPriorityCheck}} entry, if specified. + + + + + + + + + Classification result. + Ethernet priority code (as defined in {{bibref|802.1Q-2011}}) to mark traffic with that falls into this classification entry associated with the {{param|EthernetPriorityCheck}}. + A value of -1 indicates no change from the incoming packet. + A value of -2 indicates automatic marking of EthernetPriority based upon the DSCP value of the incoming packet as defined in {{bibref|TR-181i2|Annex A}}. + + + + + + + + + + + Classification criterion. + Current Ethernet priority of the inner VLAN Tag as defined in 802.1Q. This parameter is only applicable when the PDU has 2 VLAN Tags. A value of -1 indicates this criterion is not used for classification. + + + + + + + + + + + If {{false}}, the class includes only those packets that match the {{param|InnerEthernetPriorityCheck}} entry, if specified. + If {{true}}, the class includes all packets except those that match the {{param|InnerEthernetPriorityCheck}} entry, if specified. + + + + + + + + + Classification result. + Ethernet priority code to mark traffic with that falls into this classification entry associated with the {{param|InnerEthernetPriorityCheck}}. + A value of -1 indicates no change from the incoming packet. + A value of -2 indicates automatic marking of EthernetPriority based upon the DSCP value of the incoming packet as defined in {{bibref|TR-181i2|Annex A}}. + + + + + + + + + + + Classification criterion. + Current Ethernet Drop eligible Indication (DEI) of the VLAN tag as defined in 802.1Q. If 2 VLAN Tags are present, then this parameter represents the outer VLAN tag. A value of -1 indicates this criterion is not used for classification. + + + + + + + + + + + If {{false}}, the class includes only those packets that match the {{param|EthernetDEICheck}} entry, if specified. + If {{true}}, the class includes all packets except those that match the {{param|EthernetDEICheck}} entry, if specified. + + + + + + + + + Classification criterion. + Current Ethernet VLAN ID as defined in 802.1Q. A value of -1 indicates this criterion is not used for classification. + + + + + + + + + + + If {{false}}, the class includes only those packets that match the {{param|VLANIDCheck}} entry, if specified. + If {{true}}, the class includes all packets except those that match the {{param|VLANIDCheck}} entry, if specified. + + + + + + + + + Classification criterion. + Allows traffic to be distinguished based on out-of-band information such as physical port or application ID. Primarily intended for, but not restricted to, locally sourced traffic. + If specified, this entry applies to traffic with matching out-of-band information. A value of -1 indicates this criterion is not used for classification. + + + + + + + + + + + Classification result. + Identifier of the forwarding policy associated with traffic that falls in this classification. + + + + + + + + + Classification result. + Identifier of the traffic class associated with traffic that falls in this classification. If specified, at least one {{object|#.Queue}} table entry MUST include this traffic class in its {{param|#.Queue.{i}.TrafficClasses}} parameter (which is a comma-separated list). + A value of -1 indicates a null traffic class. + {{param}} and {{param|App}} are mutually exclusive and one of the two MUST be specified. If {{param}} is {{null}}, {{param|App}} MUST be specified, and vice versa. + + + + + + + + + + + Classification result. {{reference}} + Indicates the ''Policer'' table entry for traffic that falls in this classification. + {{empty}} indicates a null policer. + {{param}} MAY optionally be specified in conjunction with {{param|TrafficClass}}. {{param}} and {{param|App}} are mutually exclusive. + + + + + + + + + + + + Classification result. {{reference}} + Indicates the ''App'' table entry for traffic that falls in this classification. + {{empty}} indicates a null ''App''. + {{param|TrafficClass}} and {{param}} are mutually exclusive and one of the two MUST be specified. If {{param|TrafficClass}} is null, {{param}} MUST be specified, and vice versa. + + + + + + + + + + + + + Application table. + + + + + + + Enables or disables this App table entry. + + + + + + + + + The status of this App table entry. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + URN identifying the protocol associated with the given application. A set of defined URNs is given in {{bibref|TR-181i2|Annex A}}. + + + + + + + + + + + Human-readable name associated with this entry in the App table. + + + + + + + + + + + Identifier of the forwarding policy associated with traffic associated with this App table entry, but not associated with any specified flow. + + + + + + + + + Identifier of the traffic class associated with traffic associated with this App table entry, but not associated with any specified flow. + + + + + + + + + {{reference}} Indicates the ''Policer'' table entry for traffic associated with this {{object}} table entry, but not associated with any specified flow. + {{empty}} indicates a null policer. + + + + + + + + + + + + DSCP to mark traffic associated with this App table entry, but not associated with any specified flow. + A value of -1 indicates no change from the incoming packet. + A value of -2 indicates automatic marking of DSCP based upon the EthernetPriority value of the incoming packet as defined in {{bibref|TR-181i2|Annex A}}. + + + + + + + + + + + Ethernet priority code (as defined in {{bibref|802.1Q-2011}}) to mark traffic associated with this App table entry, but not associated with any specified flow. + A value of -1 indicates no change from the incoming packet. + A value of -2 indicates automatic marking of EthernetPriority based upon the DSCP value of the incoming packet as defined in {{bibref|TR-181i2|Annex A}}. + + + + + + + + + + + Ethernet priority code (as defined in {{bibref|802.1Q-2011}}) to mark the inner VLAN Tags as defined in 802.1Q with this {{object}} table entry where the packet is not associated with any specified flow. This parameter is only applicable when the PDU has 2 VLAN Tags. + A value of -1 indicates no change from the incoming packet. + A value of -2 indicates automatic marking of EthernetPriority based upon the DSCP value of the incoming packet as defined in {{bibref|TR-181i2|Annex A}}. + + + + + + + + + + + Flow table. + + + + + + + Enables or disables this Flow table entry. + + + + + + + + + The status of this Flow table entry. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + URN identifying the type of flow to be associated with the specified policer. A set of defined URNs is given in {{bibref|TR-181i2|Annex A}}. + + + + + + + + + + + List of name-value pairs representing additional criteria to identify the flow type. The use and interpretation is specific to the particular FlowType URN.Encoded using the "x-www-form-urlencoded" content type defined in {{bibref|HTML4.01}}. + + + + + + + + + + + Human-readable name associated with this entry in the Flow table. + + + + + + + + + + + {{reference}} Indicates the ''App'' table entry associated with this flow. {{empty}} indicates the flow table is not associated with any App table entry. + + + + + + + + + + + + Identifier of the forwarding policy associated with this flow. + + + + + + + + + Identifier of the traffic class associated with this flow. + + + + + + + + + {{reference}} Indicates the ''Policer'' table entry for traffic that falls in this flow. + {{empty}} indicates a null policer. + + + + + + + + + + + + DSCP to mark traffic with that falls into this flow. + A value of -1 indicates no change from the incoming packet. + A value of -2 indicates automatic marking of DSCP based upon the EthernetPriority value of the incoming packet as defined in {{bibref|TR-181i2|Annex A}}. + + + + + + + + + + + Ethernet priority code (as defined in {{bibref|802.1Q-2011}}) to mark traffic with that falls into this flow. + A value of -1 indicates no change from the incoming packet. + A value of -2 indicates automatic marking of EthernetPriority based upon the DSCP value of the incoming packet as defined in {{bibref|TR-181i2|Annex A}}. + + + + + + + + + + + Ethernet priority code (as defined in {{bibref|802.1Q-2011}}) to mark the inner VLAN Tags with for traffic that falls into this flow. + A value of -1 indicates no change from the incoming packet. + A value of -2 indicates automatic marking of EthernetPriority based upon the DSCP value of the incoming packet as defined in {{bibref|TR-181i2|Annex A}}. + + + + + + + + + + + + Policer table. + + + + + + + Enables or disables this policer. + + + + + + + + + The status of this policer. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Committed rate allowed for this policer in {{units}}. + + + + + + + + + + + Committed Burstsize in bytes. + + + + + + + + + Excess Burstsize in bytes. + Applied for a {{enum|SingleRateThreeColor|MeterType}} meter. + + + + + + + + + Peak rate allowed for this Meter in {{units}}. + Applied for {{enum|TwoRateThreeColor|MeterType}} meters. + + + + + + + + + + + Peak Burstsize in bytes. + Applied for {{enum|TwoRateThreeColor|MeterType}} meters. + + + + + + + + + Identifies the method of traffic measurement to be used for this policer. + {{enum|SimpleTokenBucket}} makes use of {{param|CommittedRate}} and {{param|CommittedBurstSize}}. + {{enum|SingleRateThreeColor}} makes use of {{param|CommittedRate}}, {{param|CommittedBurstSize}}, and {{param|ExcessBurstSize}} as defined in {{bibref|RFC2697}}. + {{enum|TwoRateThreeColor}} makes use of {{param|CommittedRate}}, {{param|CommittedBurstSize}}, {{param|PeakRate}}, and {{param|PeakBurstSize}} as defined in {{bibref|RFC2698}}. + + + + + + + + + + + {{list}} Indicates supported meter types. + + + + + + + + + + + + + Instructions for how to handle traffic that is conforming. {{pattern}} + {{pattern|Null}} corresponds with no action. + ''<DSCP Value>'' is an unsigned integer that corresponds with a mark action overwriting the traffic's DSCP with the configured DSCP. + ''<:Ethernet Priority>'' is a colon (":") followed by an unsigned integer (no white space). It corresponds with a mark action overwriting the traffic's Ethernet Priority with the configured Ethernet Priority. + ''<DSCP Value:Ethernet Priority>'' is an unsigned integer followed by a colon (":") and a second unsigned integer (no white space). It corresponds with a mark action overwriting the traffic's DSCP and Ethernet Priority with the configured values. + For example, "24" specifies a DSCP value of 24, ":3" specifies an Ethernet Priority of 3, and "24:3" specifies both. + + + + + + + + <DSCP Value> + + + + + <Ethernet Priority> + + + + + <DSCP Value:Ethernet Priority> + + + + + + + + + Instructions for how to handle traffic that is partially conforming (colored yellow). {{pattern}} + {{pattern|Null}} corresponds with no action. + ''<DSCP Value>'' is an unsigned integer that corresponds with a mark action overwriting the traffic's DSCP with the configured DSCP.Only applies for three-color meters. + ''<:Ethernet Priority>'' is a colon (":") followed by an unsigned integer (no white space). It corresponds with a mark action overwriting the traffic's Ethernet Priority with the configured Ethernet Priority. + ''<DSCP Value:Ethernet Priority>'' is an unsigned integer followed by a colon (":") and a second unsigned integer (no white space). It corresponds with a mark action overwriting the traffic's DSCP and Ethernet Priority with the configured values. + For example, "24" specifies a DSCP value of 24, ":3" specifies an Ethernet Priority of 3, and "24:3" specifies both. + + + + + + + + <DSCP Value> + + + + + <Ethernet Priority> + + + + + <DSCP Value:Ethernet Priority> + + + + + + + + + Instructions for how to handle traffic that is non-conforming. {{pattern}} + {{pattern|Null}} corresponds with no action. + ''<DSCP Value>'' is an unsigned integer that corresponds with a mark action overwriting the traffic's DSCP with the configured DSCP. + ''<:Ethernet Priority>'' is a colon (":") followed by an unsigned integer (no white space). It corresponds with a mark action overwriting the traffic's Ethernet Priority with the configured Ethernet Priority. + ''<DSCP Value:Ethernet Priority>'' is an unsigned integer followed by a colon (":") and a second unsigned integer (no white space). It corresponds with a mark action overwriting the traffic's DSCP and Ethernet Priority with the configured values. + For example, "24" specifies a DSCP value of 24, ":3" specifies an Ethernet Priority of 3, and "24:3" specifies both. + + + + + + + + <DSCP Value> + + + + + <Ethernet Priority> + + + + + <DSCP Value:Ethernet Priority> + + + + + + + + + Total number of Packets counted by this policer, regardless of meter action. + + + + + + + + + Total number of Bytes counted by this policer, regardless of meter action. + + + + + + + + + Number of conforming Packets counted by this policer, regardless of meter action. + + + + + + + + + Number of conforming Bytes counted by this policer, regardless of meter action. + + + + + + + + + Number of partially conforming Packets counted by this policer, regardless of meter action. + + + + + + + + + Number of partially conforming Bytes counted by this policer, regardless of meter action. + + + + + + + + + Number of non-conforming Packets counted by this policer, regardless of meter action. + + + + + + + + + Number of non-conforming Bytes counted by this policer, regardless of meter action. + + + + + + + + + + Queue table. Each entry is associated with a set of traffic classes, which are specified via the {{param|TrafficClasses}} parameter, and is configured with weight, precedence, drop algorithm, scheduler algorithm etc as appropriate for the traffic classes. An entry can be associated either with all egress interfaces (in which case an actual queue will be instantiated on each egress interface on which traffic of that traffic class can be generated) or else with a single specified egress interface. + For enabled table entries, if {{param|Interface}} is not a valid reference and {{param|AllInterfaces}} is {{false}}, then the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + + + + + + + Enables or disables this queue. + + + + + + + + + The status of this queue. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + {{list}} Each list item identifies the set of traffic classes associated with this queue. + Traffic is sent to this queue if a {{object|#.Classification}}, {{object|#.App}} or {{object|#.Flow}} table entry specifies a traffic class, e.g. via the {{param|#.Classification.{i}.TrafficClass}} parameter. + If more than one queue on a given egress interface is associated with a given traffic class, the implementation will choose which queue to send traffic of this class to. + + + + + + + + + + + + {{reference}} Specifies the egress interface for which the specified queue MUST exist. + This MAY be a layer 1, 2 or 3 interface, however, the types of interfaces for which ''Queues'' can be instantiated is a local matter to the CPE. + + + + + + + + + + + + Indicates that the specified queue MUST exist for all egress interfaces (i.e. this queue entry is to apply to all egress interfaces). If {{true}}, the value of {{param|Interface}} is ignored since all egress interfaces are indicated. + + + + + + + + + Indicates whether ''all'' the queues corresponding to this table entry are hardware assisted. If any of the queues corresponding to this table entry are not hardware assisted, the parameter value MUST be {{false}}. + + + + + + + + + Number of bytes in the buffer. + Queue buffer size for all egress interfaces for which this queue exists. If the buffer size is not the same for all such egress interfaces, this parameter MUST be 0. + + + + + + + + Weight of this queue in case of {{enum|WFQ|SchedulerAlgorithm}} or {{enum|WRR|SchedulerAlgorithm}}, but only used for queues of equal precedence. + + + + + + + + + Precedence of this queue relative to others. Lower numbers imply greater precedence. + + + + + + + + + + + Random Early Detection threshold, used only when {{param|DropAlgorithm}} is {{enum|RED|DropAlgorithm}}. + This is the minimum threshold (''min_th'') and is measured as a percentage of the queue size. If the value is set to zero, the CPE MUST choose a sensible value, e.g. 5 (but the value MUST still read back as zero). + In this version of the data model, there is no way to set the maximum threshold (''max_th''). The CPE MUST choose a sensible value, e.g. three times the minimum threshold. + In this version of the data model, there is no way to set the RED weight (''w_q''). The CPE MUST choose a sensible value, e.g. 0.002. + + + + + + + + + + + Random Early Detection percentage, used only when {{param|DropAlgorithm}} is {{enum|RED|DropAlgorithm}}. + This is the maximum value of the packet marking probability (''max_p''). If the value is set to zero, the CPE MUST choose a sensible value, e.g. 10 (but the value MUST still read back as zero). + In this version of the data model, there is no way to set the RED weight (''w_q''). The CPE MUST choose a sensible value, e.g. 0.002. + + + + + + + + + + + Dropping algorithm used for this queue if congested. + + + + + + Random Early Detection {{bibref|RED}} + + + + + Drop Tail + + + + + Weighted RED + + + + + {{bibref|BLUE}} + + + + + + + + + Scheduling Algorithm used by scheduler. + + + + + + Weighted Fair Queueing + + + + + Weighted Round Robin + + + + + Strict Priority + + + + + + + + + Rate to shape this queue's traffic to. For leaky bucket (constant rate shaping), this is the constant rate. For token bucket (variable rate shaping), this is the average rate. + If <= 100, in percent of the rate of the highest rate-constrained layer over which the packet will travel on egress. + If > 100, in bits per second. + A value of -1 indicates no shaping. + For example, for packets destined for a WAN DSL interface, if the egress will be on a PPP or IP link with a specified ''ShapingRate'', the percentage is calculated relative to this rate. Otherwise, if the ATM layer is rate-constrained, then the rate is calculated relative to this rate. Otherwise, the rate is calculated relative to the physical-layer DSL rate. + + + + + + + + + + + Burst size in bytes. For both leaky bucket (constant rate shaping) and token bucket (variable rate shaping) this is the bucket size and is therefore the maximum burst size. + + + + + + + + + Queue statistics table. This table is managed by the Controller, which will create entries only for those {Queue, Interface} combinations for which statistics are to be collected. + Note: The {{object}} table includes unique key parameters that are strong references. If a strongly referenced object is deleted, the CPE will set the referencing parameter to {{empty}}. However, doing so under these circumstances might cause the updated {{object}} row to then violate the table's unique key constraint; if this occurs, the CPE MUST disable the offending {{object}} row. + + + + + + + + + + + Enables or disables this object. + + + + + + + + + The status of this object. + + + + + + + Enabled and {Queue,Interface} is valid + + + + + Enabled but {Queue,Interface} is invalid + + + + + + + + + {{datatype|expand}} + + + + + + + + {{reference}} Indicates ''Queue'' entry with which this object is associated. + + + + + + + + + + + + {{reference}} Specifies the egress interface for which this object contains statistics. + This MAY be a layer 1, 2 or 3 interface, however, the types of interfaces for which ''QueueStats'' can be instantiated is a local matter to the CPE. + + + + + + + + + + + + Number of packets output through the queue. + + + + + + + + + Number of bytes output through the queue. + + + + + + + + + Number of packets dropped by the queue. + + + + + + + + + Number of bytes dropped by the queue. + + + + + + + + + Queue occupancy in packets (gives a measure of queue latency). + + + + + + + + + Queue occupancy measured as a {{units}}, i.e. 100 * queue occupancy in bytes / queue size in bytes (gives a measure of queue usage). + + + + + + + + + + + + + Shaper table. Used to shape the queue(s) associated with {{param|Interface}}. In case of a single queue for that interface, determines the egress rate of the queue. In case of multiple queues for that interface (possibly with per queue shaping rates), determines the aggregate egress rate on that interface. + For enabled table entries, if {{param|Interface}} is not a valid reference then the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + Note: The {{object}} table includes a unique key parameter that is a strong reference. If a strongly referenced object is deleted, the CPE will set the referencing parameter to {{empty}}. However, doing so under these circumstances might cause the updated {{object}} row to then violate the table's unique key constraint; if this occurs, the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}} and disable the offending {{object}} row. + + + + + + + + + + Enables or disables this shaper. + + + + + + + + + The status of this shaper. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + {{reference}}The interface object associated with this ''Shaper'' entry. It MAY be a layer 1, 2 or 3 interface, however, the types of interfaces for which ''Shapers'' can be instantiated is a local matter to the CPE. + + + + + + + + + + + + Rate to shape the associated interface connection's egress traffic to. For leaky bucket (constant rate shaping), this is the constant rate. For token bucket (variable rate shaping), this is the average rate. + If <= 100, in percent of the rate of the highest rate-constrained layer over which the packet will travel on egress. + If > 100, in bits per second. + A value of -1 indicates no shaping. + For example, for packets destined for a WAN DSL interface, if the ATM layer is rate-constrained, then the rate is calculated relative to this rate. Otherwise, the rate is calculated relative to the physical-layer DSL rate. + + + + + + + + + + + Burst size in bytes. For both leaky bucket (constant rate shaping) and token bucket (variable rate shaping) this is the bucket size and is therefore the maximum burst size. + + + + + + + + + This object contains generic device configuration information. + + + + A password to allow LAN access to protected auto-configuration services. + If the CPE supports TR-064 (LAN-side DSL CPE Configuration Protocol), this parameter is to be used as the ''dslf-config'' password (as defined in TR-064). + If the CPE has a user interface with password protection enabled, this parameter is also to be used as the user password for password-protected operations. However, this parameter MUST NOT be used to set the user password if the parameter {{param|.UserInterface.PasswordUserSelectable}} is {{true}}. + + + + + + + This object provides information about each of the hosts on the LAN, including those whose IP address was allocated by the CPE using DHCP as well as hosts with statically allocated IP addresses. It can also include non-IP hosts. + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + Host table. + + + + + + + + + + {{datatype|expand}} + This parameter was DEPRECATED because {{object}} is a transient object. + This parameter is OBSOLETED in 2.14. + + + + + + + + Unique physical identifier of the host. For many layer 2 technologies this is typically a MAC address. + + + + + + + + + + Current IP Address of the host. {{empty}} if no address is available. + If more than one IP address for this host is known, the CPE will choose a ''primary'' address. All known IP addresses can be listed in the {{object|IPv4Address}} and {{object|IPv6Address}} tables. + + + + + + + + Indicates whether the IP address of the host was allocated by the CPE using DHCP, was assigned to the host statically, or was assigned using automatic IP address allocation. {{enum}} + This parameter was DEPRECATED because only {{enum|None}} and {{enum|DHCP}} made sense (the CPE doesn't know whether the address is {{enum|Static}} or {{enum|AutoIP}}). The {{enum|DHCP}} case is now handled via the {{param|DHCPClient}} reference. + This parameter is OBSOLETED in 2.14. + + + + + + + + + + + + + {{reference}} Each list item is the DHCPv4 or DHCPv6 server's client entry that corresponds to the host. + + + + + + + + + + + DHCP lease time remaining in {{units}}. A value of -1 indicates an infinite lease. The value MUST be 0 (zero) if the {{param|AddressSource}} is not {{enum|DHCP|AddressSource}}. + This parameter was DEPRECATED because DHCP lease/lifetime information can be accessed via the {{param|DHCPClient}} reference. + This parameter is OBSOLETED in 2.14. + + + + + + + + + + + {{noreference}}The value MUST be the path name of the ''AssociatedDevice'' (or equivalent) table row that models the host, or {{null}} if either there is no such table or the host isn't directly connected to this device (e.g. the host is connected to a Wi-Fi Access Point). + For example: ''Device.WiFi.AccessPoint.1.AssociatedDevice.2'' + + + + + + + + + + + {{noreference}}The value MUST be the path name of a row in a layer 1 interface table. If either the layer 1 interface isn't known or the host isn't directly connected to this device (e.g. the host is connected to a Wi-Fi Access Point), then {{param}} will be {{null}}. + For example: ''Device.Ethernet.Interface.2'' + + + + + + + + + + + {{reference}} If either the layer 3 interface isn't known or the host isn't directly connected to this device (e.g. the host is connected to a Wi-Fi Access Point), then {{param}} will be {{null}}. + + + + + + + + + + + Type of physical interface through which this host is connected. + + + + + + + + + + + + + + + + + Vendor Class Identifier DHCP option (Option 60) of the host. + This is a normal string, e.g. "abc" is represented as "abc" and not say "616263" hex. However, if the value includes non-printing characters then such characters have to be represented using XML escapes, e.g. #x0a for line-feed. + It MAY be defined when {{param|AddressSource}} is {{enum|DHCP|AddressSource}}. {{empty}} indicates this option is not used. + Note: DHCPv4 Option values are limited to a length of 255, while DHCPv6 Option values can have a maximum length of 65535. + This parameter was DEPRECATED because host-supplied DHCP options can be accessed via the {{param|DHCPClient}} reference. + This parameter is OBSOLETED in 2.14. + + + + + + + + + + A hexbinary string, Client Identifier DHCP option (Option 61) for the specific IP connection of the client. The option value is binary, so an exact match is REQUIRED. + It MAY be defined when {{param|AddressSource}} is {{enum|DHCP|AddressSource}}. {{empty}} indicates this option is not used. + Note: DHCPv4 Option values are limited to a length of 255, while DHCPv6 Option values can have a maximum length of 65535. + This parameter was DEPRECATED because host-supplied DHCP options can be accessed via the {{param|DHCPClient}} reference. + This parameter is OBSOLETED in 2.14. + + + + + + + + + + A hexbinary string, User Class Identifier DHCP option (Option 77) of the host. + It MAY be defined when {{param|AddressSource}} is {{enum|DHCP|AddressSource}}. {{empty}} indicates this option is not used. + Note: DHCPv4 Option values are limited to a length of 255, while DHCPv6 Option values can have a maximum length of 65535. + This parameter is DEPRECATED because host-supplied DHCP options can be accessed via the {{param|DHCPClient}} reference. + + + + + + + + + + The device's host name or {{empty}} if unknown. + + + + + + + + + + Whether or not the host is currently present on the LAN. The method of presence detection is a local matter to the CPE. + The ability to list inactive hosts is OPTIONAL. If the CPE includes inactive hosts in this table, {{param}} MUST be set to {{false}} for each inactive host. The length of time an inactive host remains listed in this table is a local matter to the CPE. + Entries in Device.Hosts.Host SHOULD NOT be removed when they become inactive if there are {{object|WANStats}} statistics collected for the entry in the past seven days. + + + + + + + + The datetime when {{param|Active}} last changed from {{true}} to {{false}} or from {{false}} to {{true}}. The initial detection of a host SHOULD be treated as a transition from {{false}} to {{true}}, showing the datetime when the host was first detected. + The ability to list inactive hosts is OPTIONAL. The length of time an inactive host remains listed in this table is a local matter to the CPE. + Entries in Device.Hosts.Host SHOULD NOT be removed when they become inactive if there are {{object|WANStats}} statistics collected for the entry in the past seven days. + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + The host's known IPv4 addresses. This includes any addresses assigned via DHCP, which can also be accessed via the {{param|#.DHCPClient}} reference. + + + + + + + IPv4 address. + + + + + + + + + The host's known IPv6 addresses. This includes any addresses assigned via DHCP, which can also be accessed via the {{param|#.DHCPClient}} reference. + + + + + + + IPv6 address. + + + + + + + + + These count bytes or packets at the IP layer sent to the WAN, or received from the WAN. + + + + The total number of bytes transmitted to the WAN from the Host device at the IP layer. + + + + + + + + The total number of bytes received from the WAN and sent to the Host device at the IP layer. + + + + + + + + The total number of IP packets transmitted to the WAN from the Host device. + + + + + + + + The total number of IP packets received from the WAN and sent to the Host device. + + + + + + + + The total number of outbound IP packets to the WAN from the Host device that could not be transmitted because of errors. These may be due to the number of retransmissions exceeding the retry limit, or from other causes. + + + + + + + + The total number of transmitted IP packets to the WAN from the Host device which were retransmissions. Two retransmissions of the same packet results in this counter incrementing by two. + + + + + + + + The total number of outbound IP packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + + Every instance of this object provides access control for a LAN device. + Access is allowed if no instance of {{object}} is defined for a device. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Unique physical identifier of the device. For many layer 2 technologies this is typically a MAC address. + + + + + + + + + + Any user defined name for the device. + + + + + + + + + + Enables or disables this {{object}} entry. + + + + + + + + + Allows or denies access for a device. + If {{param}} is set to "Allow", device access is allowed based on the {{object|Schedule}} objects. Access is enabled if there is no {{object|Schedule}} object defined. + If {{param}} is set to "Deny", defined {{object|Schedule}} objects are ignored and no access is allowed for the device. + + + + + + + + + + + + {{numentries}} + + + + + + + + + Each instance of this object provides a schedule where access is enabled. + + + + + + + {{datatype|expand}} + + + + + + + + Enables or disables this {{object}} entry. + + + + + + + + + Comma-separated list of days which access is enabled. {{enum}} + + + + + + + + + + + + + + + + + Start time of the enable schedule in hh:mm format. [hh] refers to a zero-padded hour between 00 and 23. [mm] refers to a zero-padded minute between 00 and 59. + Start time is in local time zone. + + + + + + + + + + + + The duration, in {{units}}, which the access is enabled. + If the {{param|StartTime}} is not defined, duration is the total time access is allowed during a calendar day. + If a {{param|StartTime}} is defined, access is allowed for the {{param}} period starting from {{param|StartTime}}. + + + + + + + + + + + + Properties for Domain Name Service (DNS). + + + + The DNS record types that are supported by the device. {{enum}} + + + + + + + {{bibref|RFC1035}} + + + + + {{bibref|RFC3596}} + + + + + {{bibref|RFC2782}} + + + + + {{bibref|RFC1035}} + + + + + + + + + Client properties for Domain Name Service (DNS). The DNS client resolves FQDN on behalf of device internal (client) applications. + + + + Enables or disables the DNS client. + + + + + + + + The status of the DNS client. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + {{numentries}} + + + + + + + + + This table contains the DNS Server IP address to be used by the DHCP Client (it does ''not'' model a DNS Server). Entries are either automatically created as result of DHCP (v4 or v6), IPCP, or RA received DNS server information, or are statically configured by the Controller. + + + + + + + + + + Enables or disables this entry. + + + + + + + + + The status of this entry. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + DNS server IP address. + Note: {{param}} is only writable when {{param|Type}} is {{enum|Static|Type}}; otherwise, {{param}} is automatically configured as result of DHCP, IPCP, or RA received DNS server information. + + + + + + + + {{reference}} This parameter specifies the IP interface over which the DNS query is sent. + If {{empty}} is specified, the CPE MUST use its routing policy (Forwarding table entries), if necessary, to determine the appropriate interface. + Note: {{param}} is only writable when {{param|Type}} is {{enum|Static|Type}}; otherwise, {{param}} is automatically configured as result of DHCP, IPCP, or RA received DNS server information. + + + + + + + + + + + + Method used to assign the {{param|DNSServer}} address. {{enum}} + Table entries that are automatically created as result of DHCP, IPCP, or RA received DNS server information will have {{param}} set to {{enum|DHCPv4}}, {{enum|DHCPv6}}, {{enum|IPCP}}, or {{enum|RouterAdvertisement}}, as the case may be. Manually created table entires will have their {{param}} set to {{enum|Static}}. + + + + + + Replaced by {{enum|DHCPv4}}. + + + + + + + + + + + + + + + DNS Relay object. The DNS proxy (or relay) function allows the forwarding of local network DNS queries to local or external DNS server(s) {{bibref|RFC5625}}. + + + + Enables or disables the DNS Relay function. + + + + + + + + The status of the DNS relay. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + {{numentries}} + + + + + + + + + DNS Server forwarding policy to be used by the DNS Relay. Entries are either automatically created as result of DHCP (v4 or v6), IPCP, or RA received DNS server information, or are statically configured by the Controller. + Note: Management of re-directing queries to the device embedded DNS server is not defined in this version of the specification. + + + + + + + + + + Enables or disables this entry. + + + + + + + + + The status of this entry. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + DNS server IP address. + Note: {{param}} is only writable when {{param|Type}} is {{enum|Static|Type}}; otherwise, {{param}} is automatically configured as result of DHCP, IPCP, or RA received DNS server information. + + + + + + + + {{reference}} Specifies the IP interface over which the DNS query is sent. + If {{empty}} is specified, the CPE MUST use its routing policy (IP Forwarding table entries), if necessary, to determine the appropriate interface. + Note: {{param}} is only writable when {{param|Type}} is {{enum|Static|Type}}; otherwise, {{param}} is automatically configured as result of DHCP, IPCP, or RA received DNS server information. + + + + + + + + + + + + Method used to assign the {{param|DNSServer}} address. {{enum}} + Table entries that are automatically created as result of DHCP, IPCP, or RA received DNS server information will have {{param}} set to {{enum|DHCPv4}}, {{enum|DHCPv6}}, {{enum|IPCP}}, or {{enum|RouterAdvertisement}}, as the case may be. Manually created table entires will have their {{param}} set to {{enum|Static}}. + + + + + + Replaced by {{enum|DHCPv4}}. + + + + + + + + + + + + + + + The DNS Diagnostics object containing the {{object|NSLookupDiagnostics()}} test. + + + + This command defines access to an IP-layer NS Lookup test for the specified IP interface. + When initiated, the NS Lookup test will contact {{param|DNSServer}} and look up {{param|HostName}} {{param|NumberOfRepetitions}} times. + There will be a {{object|Result}} instance for each time the device performs a DNS lookup, which is determined by the value of {{param|NumberOfRepetitions}}. + Any previous {{object|Result}} instances are removed when a new test is initiated. + + + + Input arguments. + + + + {{reference}} The layer 2 or layer 3 interface over which the test is to be performed. Example: ''Device.IP.Interface.1'', ''Device.Bridge.1.Port.2'' + If {{empty}} is specified, the CPE MUST use the interface as directed by its bridging or routing policy (''Forwarding'' table entries) to determine the appropriate interface. + + + + + + + + + + + Specifies the Host Name that NS Lookup is to look for. The current domain name MUST be used unless the name is a fully qualified name. + + + + + + + + + + Specifies the DNS Server name or IP address that NS Lookup is to use for the lookup. The name of this server will be resolved using the default DNS server unless an IP address is provided. + If {{empty}} is specified, the device's default DNS server will be used. + + + + + + + + + + Timeout in {{units}} that indicates that a request has failed. + + + + + + + + + + The number of times the device SHOULD repeat the execution of the NSLookup using the same input parameters. If the diagnostics test fails the CPE MAY terminate the test without completing the full number of repetitions. + Each repetition will use a Result instance to hold the NSLookup result data. + + + + + + + + + Output arguments. + + + + Indicates the availability of diagnostics data. {{enum}} + If the value of this parameter is anything other than {{enum|Complete}}, the values of the other results parameters for this test are indeterminate. + + + + + + + Unable to resolve DNSServer Name + + + + + + + + + + Number of successfully executed repetitions. + + + + + + + + Results from the most recent invocation of the test, one instance per repetition. + + + + Result Parameter to represent whether the NS Lookup was successful or not. + + + + + + + + + + + + + + Result parameter to represent whether the answer is Authoritative or not. + + + + + + Indicates that the NS Lookup failed to find the host. + + + + + + + + + + Result parameter to represent the fully qualified name for the Host Name in the calling parameter (e.g. HostName.DomainName); if no response was provided, then this parameter is {{empty}}. + + + + + + + + + + {{list}} Indicates the IP Address results returned by the NS Lookup; if no response was provided, then this parameter is {{empty}}. + + + + + + + + + Result parameter to represent the actual DNS Server IP address that the NS Lookup used. + + + + + + + + Response time (for the first response packet) in {{units}}, or 0 if no response was received. + + + + + + + + + + + + + + This object contains the DNS Service Discovery {{bibref|DNS-SD}} object and parameters necessary to discover services and their associated devices. + Upon reboot the the contents of the service table are repopulated. When the DNS.SD service is disabled, the contents of the service table is implementation specific. + + + + The parameter, when {{true}}, enables the discovery of DNS-SD services hosted by other devices. + + + + + + + + {{numentries}} + + + + + + + + {{reference|the {{object|##.IP.Interface}} object instance from which DNS-SD services are advertised}} + If this parameter is not supported by an implementation then DNS-SD services are advertised on all LAN interfaces. + + + + + + + + + + + + The {{object}} table contains discovered DNS-SD services. DNS.SD service information is provided in DNS RR SRV records {{bibref|RFC2782}}. The Service Instance Name {{bibref|DNS-SD|Section 4.1 Structured Instance Names}} further specifies information about the service name (RFC2782 Service field) and domain name (RFC2782 Name field) in the form: + Service Instance Name = <InstanceName> . <Service> . <Domain> + <Service> = _<ApplicationProtocol> . _<TransportProtocol> + RFC2782 Service field will always be equal to <InstanceName>. <Service> + RFC2782 Name field will always be equal to <Domain> + For example, an SSH service might have: + *{{param|InstanceName}} = "Secure Shell (SSH))" + *{{param|ApplicationProtocol}} = "ssh" + *{{param|TransportProtocol}} = "TCP" + *{{param|Domain}} = "example.com" + *{{param|Port}} = 22 + *{{param|Target}} = "ssh.example.com." + + + + + + + + + + Human-readable instance name {{bibref|DNS-SD|Section 4.1.1 Instance Names}} (i.e. The "<{{param}}>" portion of the '"Service Instance Name'"). + + + + + + + + + + The Application Protocol, without the leading underscore, associated with the service (e.g., daap) as defined by the DNS-SD service {{bibref|DNS-SD|Section 7 Application Protocol Names}}. + + + + + + + + + + The Transport Protocol associated with the service as defined by the DNS-SD service {{bibref|DNS-SD|Section 4.1.2 Service Names}}. + + + + + + + + + + + The value extracted from the Name field of the DNS SRV record {{bibref|RFC2782}} which represents the fully qualified domain name (FQDN) associated with the service as defined by the DNS-SD service {{bibref|DNS-SD|Section 4.1.3 Domain Names}}. + + + + + + + + + + The value extracted from the Port field of the DNS SRV record {{bibref|RFC2782}} that is used to contact the service. + + + + + + + + + + The fully qualified domain name (FQDN) with the trailing dot "." of the target host implementing the service as in the DNS SRV record {{bibref|RFC2782}}. + + + + + + + + + + The status of the discovered {{object}} at {{param|LastUpdate}} time. {{enum}} + The ability to instantiate an inactive {{object}} is OPTIONAL. + The time an inactive {{object}} remains listed in this table is a local matter to the device. + + + + + + The {{object}} has received a response record with TTL > 0 and the {{param|#.Service.{i}.TimeToLive}} has not expired yet. The {{object}} is considered active. + + + + + The device has received a response record containing TTL=0 indicating a goodbye message and the {{param|#.Service.{i}.TimeToLive}} has not expired yet. The {{object}} is considered inactive. + + + + + The {{param|#.Service.{i}.TimeToLive}} has expired. The {{object}} is considered inactive + + + + + + + + The date and time at which the last advertisement for this {{object}} was received. + + + + + + + + {{list}} {{reference|all Host table entries, active or inactive, that correspond to this discovered DNS.SD service. As such, when entries are added or removed from the Host tables the value of this parameter MUST be updated accordingly|ignore}} + + + + + + + + + + + + + + The value extracted from the TTL field of the DNS SRV record {{bibref|RFC2782}}. + + + + + + + + + + The value extracted from the Priority field of the DNS SRV record {{bibref|RFC2782}}. + + + + + + + + + + A server selection mechanism. The value extracted from the Weight field of the DNS SRV record {{bibref|RFC2782}} that specifies the relative weight for entries with the same {{param|Priority}}. + + + + + + + + + + {{numentries}} + + + + + + + + + This object maintains an instance of a (key/value pairs) of the service. The information is extracted from DNS TXT records {{bibref|RFC1035}} of the discovered service. + When multiple instances of the {{object}} table have the same value for the {{param|Key}} parameter, the implementation is CPE specific. + + + + The key that identifies the text record + + + + + + + + + + The value of the text record. + + + + + + + + + + + Properties for Network Address Translation (NAT). + The entire {{object}} object only applies to IPv4. + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + NAT settings for an associated IP Interface on which NAT is enabled. + For enabled table entries, if {{param|Interface}} is not a valid reference then the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + Note: The {{object}} table includes a unique key parameter that is a strong reference. If a strongly referenced object is deleted, the CPE will set the referencing parameter to {{empty}}. However, doing so under these circumstances might cause the updated {{object}} row to then violate the table's unique key constraint; if this occurs, the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}} and disable the offending {{object}} row. + + + + + + + + + + Enables or disables the {{object}} entry, indicating if NAT is enabled for the referenced IP Interface instance. On creation, an {{object}} entry is disabled by default. + + + + + + + + + The status of this entry. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + NAT enabled but forced by a third party to be operationally disabled, e.g. because a {{object|##.MAP.Domain}} is enabled but there is no Basic Mapping Rule {{bibref|RFC7597}}. + + + + + NAT enabled but port mapping has been operationally disabled by a third party, e.g. because this is REQUIRED by the current {{object|##.Firewall}} level. + + + + + + + + + + + {{datatype|expand}} + + + + + + + + {{reference}} The associated IP interface on which NAT is to be enabled. + + + + + + + + + + + + Determines the timeout, in {{units}}, of NAT translations for TCP sessions. It is the time after which a NAT entry is removed from the NAT table if there is no activity. A value of -1 represents an infinite duration. + + + + + + + + + + + + Determines the timeout, in {{units}}, of NAT translations for UDP bindings. It is the time after which a NAT entry is removed from the NAT table if there is no activity. A value of -1 represents an infinite duration. + + + + + + + + + + + + + Port mapping table. + This table MUST contain all NAT port mappings associated with this connection, including static and dynamic port mappings programmatically created via local control protocol, such as UPnP. + This table MUST NOT contain dynamic NAT binding entries associated with the normal operation of NAT. + If the CPE hosts a firewall, it is assumed that it will appropriately configure the firewall for the port mapping. + For enabled table entries, if {{param|InternalClient}} is {{empty}}, or if {{param|Interface}} is not a valid reference and {{param|AllInterfaces}} is {{false}}, then the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + + + + + + + + + + + + Enables or disables the port mapping instance. On creation, an entry is disabled by default. + + + + + + + + + The status of this entry. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + {{datatype|expand}} + Note: There is no guarantee that the {{param}} value on automatically-created {{object}} instances will be retained. This is because automatically-created {{object}} instances can be transitory. + + + + + + + + {{reference}} Specifies the IP interface to which this port mapping applies. + + + + + + + + + + + + Indicates whether this port mapping applies to all IP interfaces that support port mappings. If {{true}}, the value of {{param|Interface}} is ignored since all supported IP interfaces are indicated. + + + + + + + + + Determines the time to live, in {{units}}, of a port mapping lease, where "time to live" means the number of {{units}} before the port mapping expires. + A value of 0 means the port mapping is static. Support for dynamic (non-static) port mappings is OPTIONAL. That is, the only value for {{param}} that MUST be supported is 0. + For a dynamic (non-static) port mapping, when this parameter is read, the value represents the time remaining on the port mapping lease. That is, for a dynamic port mapping, the value counts down toward 0. When a dynamic port mapping lease expires, the CPE MUST automatically terminate that port mapping, and MUST automatically delete the corresponding {{object}} table entry. + + + + + + + + + + This parameter is the IP address of the source of inbound packets. {{empty}} indicates a "wildcard", i.e. any IP address (this will be {{empty}} in most cases). CPE are REQUIRED only to support {{empty}}. + When {{param}} is {{empty}}, all traffic sent to the {{param|ExternalPort}} on the WAN interface of the gateway is forwarded to the {{object|.IP.Interface}} associated with the {{param|InternalClient}} on the {{param|InternalPort}}. + When {{param}} is specified as one external IP address, the NAT will only forward inbound packets from this {{param}} to the {{param|InternalClient}}, all other packets will be dropped. + If a CPE supports non-empty values for {{param}}, it MAY additionally support the ability to have more than one port mapping with the same {{param|ExternalPort}} and {{param|Protocol}}, but with differing values of {{param}}. + When wildcard values are used for {{param}} and/or {{param|ExternalPort}}, the following precedence order applies (with the highest precedence listed first): + # Explicit {{param}}, explicit {{param|ExternalPort}} + # Explicit {{param}}, zero {{param|ExternalPort}} + # Empty {{param}}, explicit {{param|ExternalPort}} + # Empty {{param}}, zero {{param|ExternalPort}} + If an incoming packet matches the criteria associated with more than one entry in this table, the CPE MUST apply the port mapping associated with the highest precedence entry. + + + + + + + + + The external port (or the first port of a range of external ports) that the NAT gateway would listen on for traffic to a corresponding {{param|InternalPort}}. Inbound packets to this external port on the WAN interface SHOULD be forwarded to the {{object|.IP.Interface}} associated with the {{param|InternalClient}} on the {{param|InternalPort}}. + A value of zero ({{null}}) represents a "wildcard", i.e. any port number. If this value is {{null}}, traffic on all external ports (that are not otherwise mapped) will be forwarded to {{param|InternalClient}}, and the value(s) of {{param|InternalPort}} on {{param|InternalClient}} are ignored. + When wildcard values are used for {{param|RemoteHost}} and/or {{param}}, the following precedence order applies (with the highest precedence listed first): + # Explicit {{param|RemoteHost}}, explicit {{param}} + # Explicit {{param|RemoteHost}}, zero {{param}} + # Empty {{param|RemoteHost}}, explicit {{param}} + # Empty {{param|RemoteHost}}, zero {{param}} + If an incoming packet matches the criteria associated with more than one entry in this table, the CPE MUST apply the port mapping associated with the highest precedence entry. + + + + + + + + + + Indicates the last port of the external port range that starts with {{param|ExternalPort}}. + If an external port range is specified, then the behavior described for {{param|ExternalPort}} applies to all ports within the range. + A value of zero (0) indicates that no external port range is specified, i.e. that the range consists only of {{param|ExternalPort}}. + If {{param|ExternalPort}} is zero (wildcard), the value of this parameter MUST be ignored. + If specified, the value of this parameter MUST be greater than or equal to the value of {{param|ExternalPort}}. + + + + + + + + + + + The port on {{param|InternalClient}} that the gateway SHOULD forward traffic to. + + + + + + + + + + The protocol of the port mapping. {{enum}} + + + + + + + + + + + The IP address or DNS host name of an internal client (on the LAN). + Support for an IP address is mandatory. If {{param}} is specified as an IP address and the LAN device's IP address subsequently changes, the port mapping MUST remain associated with the original IP address. + Support for DNS host names is OPTIONAL. If {{param}} is specified as a DNS host name and the LAN device's IP address subsequently changes, the port mapping MUST remain associated with this LAN device. In this case, it is the responsibility of the CPE to maintain the name-to-address mapping in the event of IP address changes. This can be accomplished, for example, by assigning the DNS host name via use of DHCP option 12 (Host Name) or option 81 (FQDN). Note that the Controller can learn the host name associated with a given LAN device via the {{object|.Hosts.Host.}} table. + Read access to this parameter MUST always return the exact value that was last set by the Controller. For example, if the internal client is set to a DNS host name, it MUST read back as a DNS host name and not as an IP address. + It MUST be possible to set the {{param}} to the broadcast IP address 255.255.255.255 for UDP mappings. This is to enable multiple NAT clients to use the same well-known port simultaneously. + + + + + + + + + + + User-readable description of this port mapping. + + + + + + + + + + + + Properties for Port Control Protocol (PCP) {{bibref|RFC6887}}. + See the PCP Theory of Operation {{bibref|TR-181i2|Appendix XIV}} for a description of the working of this PCP data model. + + + + {{list}} Each list item denotes a PCP version supported by the PCP Client. Currently known versions are 0, 1 and 2. + This parameter is based on Version from {{bibref|RFC6887}}. + + + + + + + + + + + This is the version to be used in the first exchange with a new PCP Server. + The factory default MUST be the highest supported version, as described in {{bibref|RFC6887|Section 9}}. + + + + + + + + + + {{list}} The list of the PCP Options supported by the PCP Client. + + + + + + + + + + + {{numentries}} + + + + + + + + + Client properties for Port Control Protocol (PCP). The PCP Client interacts with a PCP Server as defined in {{bibref|RFC6887}} for internal device applications or LAN device applications via Interworking functions. + + + + + + + + + + Enables or disables the PCP Client. + + + + + + + + {{datatype|expand}} + + + + + + + + {{reference|the interface stack instance representing the WAN interface this client operates on}} See {{object|.InterfaceStack.}} + + + + + + + + + + The status of the PCP Client. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + Enables or disables the MAP OpCode. + + + + + + + + Enables or disables the PEER OpCode. + + + + + + + + Enables or disables the ANNOUNCE OpCode. + When {{false}} the PCP Client does not support unsolicited ANNOUNCE messages. + + + + + + + + Enables or disables the THIRD_PARTY Option. + + + + + + + + Indicates whether THIRD_PARTY Option is enabled or not. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + Enables or disables the FILTER option. + + + + + + + + {{numentries}} + + + + + + + + + Properties for the Port Control Protocol (PCP) Proxy, as specified in {{bibref|PCPProxy}}. + + + + Enables or disables the PCP Proxy for this PCP Client. + + + + + + + + A string identifying the highest version of PCP that the proxy supports. + This parameter is based on Version from {{bibref|RFC6887}}. + + + + + + + + + + The status of the PCP Proxy for this PCP Client. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + Properties for the interworking function between UPnP IGD (Internet Gateway Device) and PCP, as specified in {{bibref|RFC6970}}. + + + + Enables or disables the UPnP IGD-PCP Interworking Function for this PCP Client. + + + + + + + + The status of the UPnP IGD-PCP Interworking Function for this PCP Client. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + This table contains the PCP Servers to be used by the PCP Client. Entries are either statically configured or automatically created via DHCP options OPTION_V4_PCP_SERVER and OPTION_V6_PCP_SERVER, as per {{bibref|RFC7291}}. + Each OPTION_V4_PCP_SERVER or OPTION_V6_PCP_SERVER option corresponds to a {{object}} instance. If an option returns multiple addresses then that {{object}} instance has multiple addresses. + + + + + + + + + + Enables or disables this PCP Server. + + + + + + + + + The status of the PCP Server. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Method used to assign {{param|ServerNameOrAddress}} and create this table entry. {{enum}} + Note: In the {{enum|DHCPv4}} and {{enum|DHCPv6}} cases, if more than one IP address is received {{param|ServerNameOrAddress}} will be the first address and {{param|AdditionalServerAddresses}} will be the remaining addresses. + + + + + + {{param|ServerNameOrAddress}} is an IPv4 address that was received via OPTION_V4_PCP_SERVER + + + + + {{param|ServerNameOrAddress}} is an IPv6 address that was received via OPTION_V6_PCP_SERVER + + + + + {{param|ServerNameOrAddress}} is an FQDN, IPv4 address or IPv6 address that was created by the Controller, by some other management entity (e.g. via a GUI), or is present in the factory default configuration + + + + + + + + + The FQDN or IP address of the PCP Server, assigned as described under {{param|Origin}}. + + + + + + + + + + The IP address currently in use for the PCP Server, derived from the value of {{param|ServerNameOrAddress}}. + {{empty}} indicates that no PCP Server address is currently known. + + + + + + + + PCP Server addresses in addition to {{param|ServerNameOrAddress}}. This can be non-empty only if {{param|Origin}} is {{enum|DHCPv4|Origin}} or {{enum|DHCPv6|Origin}} and if more than one PCP Server address was received. + + + + + + + + + The external IP address of the PCP-controlled device hosting this server. + + + + + + + + This is the version of PCP resulting from client-server Version Negotiation. + This parameter is based on Version from {{bibref|RFC6887}}. + + + + + + + + + + Indicates the maximum number of inbound filters allowed to be associated with a mapping entry on this server. + + + + + + + + Indicates the maximum number of ports allocated to this PCP Client on this server. + A value of 0 means that there is no limitation. + + + + + + + + + + + Indicates the preferred lifetime (in {{units}}) to be used for mappings with this server when no preference is selected by an application/user. + + + + + + + + + + Indicates the capabilities supported by the PCP Server. {{enum}} + + + + + + + + + + + + + + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + Inbound Mapping table. + This table contains all Inbound Mappings requested by this PCP Client on this PCP Server. Such a mapping is created by a PCP request with OpCode MAP, as described in {{bibref|RFC6887|Section 11}}. + These requests can be issued from internal device applications, from static configuration or from other LAN device applications via interworking functions such as UPnP IGD or PCP proxies. The {{param|Origin}} parameter indicates which mechanism requested the mapping. + For non-{{enum|Static|Origin}} mappings (here ''Static'' refers to the mechanism that created the mapping, not to the {{param|Lifetime}}), the Controller MAY modify the {{param|Enable}} parameter but MUST NOT modify any other parameters in the mapping or its sub-objects. + + + + + + + + + + + + Enables or disables this {{object}} instance. + + + + + + + + + The status of this entry. {{enum}} + The {{enum|Error_PCPErrorCodeReceived}} value indicates that the PCP Client received an error code from the PCP Server. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + Provides the PCP error code when {{param|Status}} is {{enum|Error_PCPErrorCodeReceived|Status}}. Error code values are defined in {{bibref|RFC6887|Section 7.4}}. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Mechanism via which the mapping was requested. {{enum}} + + + + + + Requested via internal device application + + + + + Requested via UPnP IGD interworking function + + + + + Requested via PCP proxy + + + + + Requested via static configuration, i.e. created by the Controller, by some other management entity (e.g. via a GUI), or is present in the factory default configuration + + + + + + + + Determines the time to live, in {{units}}, of this Inbound Mapping lease, i.e. the remaining time before this port mapping expires. + A value of 0 means that the port mapping is permanent (referred to as a static mapping in {{bibref|RFC6887}}). + When a dynamic Inbound Mapping lease expires, the CPE MUST automatically delete the corresponding {{object}} table entry. + + + + + + + + + + The external IPv4 or IPv6 Address that the PCP-controlled device will listen on for incoming packets to be forwarded to the PCP Client. + This is useful for refreshing an Inbound Mapping, especially after the PCP Server loses state. If the PCP client does not know the external address, or does not have a preference, it MUST use {{empty}}. + + + + + + + + + The external port (or the first port of a range of external ports) that the PCP-controlled device will listen on for incoming packets. Those inbound packets will be forwarded to {{param|InternalPort}}. If the PCP client does not know the external port, or does not have a preference, it MUST use 0. + This is useful for refreshing an Inbound Mapping, especially after the PCP Server loses state. If the PCP Client does not know the external port, or does not have a preference, it MUST use 0. + + + + + + + + + + + Indicates the last port of the external port range that starts with {{param|SuggestedExternalPort}}. + If an external port range is specified, then the behavior described for {{param|SuggestedExternalPort}} applies to all ports within the range. + A value of zero (0) indicates that no external port range is specified, i.e. that the range consists only of {{param|SuggestedExternalPort}}. + If {{param|SuggestedExternalPort}} is zero (wildcard), the value of {{param}} MUST be ignored. + If specified, the value of this parameter MUST be zero or be greater than or equal to the value of {{param|SuggestedExternalPort}}. + + + + + + + + + + + The port on this PCP Client's {{param|##.WANInterface}} that the PCP-controlled device forwards incoming packets to. + + + + + + + + + + The protocol number of the {{object}}. Values are taken from {{bibref|IANA-protocolnumbers}}. + The value -1 means ''all protocols''. + + + + + + + + + + Under certain conditions, the PCP Client can create a PCP mapping on behalf of another device, by using the THIRD_PARTY option, as specified in {{bibref|RFC6887|Section 7.3}}. In that case, {{param}} is the IP address of the device for which the PCP operation is requested. + For non-third-party mappings, {{param}} SHOULD be {{empty}}. + + + + + + + + User-readable description of this {{object}}. + + + + + + + + + + + The external IPAddress returned by the PCP Server. The IP address that the PCP-controlled device is listening on for incoming packets to a corresponding PCP Client. + + + + + + + + + The external port returned by the PCP Server. The external port (or the first port of a range of external ports) that the PCP-controlled device is listening on for incoming packets to a corresponding {{param|InternalPort}}. Inbound packets to this external port on the External interface of the PCP-controlled device is forwarded to the on the {{param|InternalPort}}. + + + + + + + + + + Indicates the last port of the external port range that starts with {{param|AssignedExternalPort}}. + If an external port range is specified, then the behavior described for {{param|AssignedExternalPort}} applies to all ports within the range. + A value of zero (0) indicates that no external port range is specified, i.e. that the range consists only of {{param|AssignedExternalPort}}. + + + + + + + + + + + {{numentries}} + + + + + + + + + Filter table. + This table contains all Filters restricting this Inbound Mapping, as defined in {{bibref|RFC6887|}}. + + + + + + + {{datatype|expand}} + + + + + + + + Permitted remote peer IP address for this filter. + + + + + + + + + Indicates how many bits of {{param|RemoteHostIPAddress}} are relevant for this filter. + + + + + + + + + + + Permitted remote peer port number for this filter. + The value 0 indicates ''all ports''. + + + + + + + + + + Indicates the last port of the remote port range that starts with {{param|RemotePort}}. + If an external port range is specified, then the behavior described for {{param|RemotePort}} applies to all ports within the range. + A value of zero (0) indicates that no remote port range is specified, i.e. that the range consists only of {{param|RemotePort}}. + + + + + + + + + + + + Outbound Mapping table. + This table contains all Outbound Mappings requested by this PCP Client on this PCP Server. Such a mapping is created by a PCP request with OpCode PEER, as described in {{bibref|RFC6887|Section 12}}. + These requests can be issued from internal device applications, from static configuration or from other LAN device applications via interworking functions such as UPnP IGD or PCP proxies. The {{param|Origin}} parameter indicates which mechanism requested the mapping. + For non-{{enum|Static|Origin}} mappings (here ''Static'' refers to the mechanism that created the mapping, not to the {{param|Lifetime}}), the Controller MAY modify the {{param|Enable}} parameter but MUST NOT modify any other parameters in the mapping or its sub-objects. + + + + + + + + + + + + + + Enables or disables this {{object}} instance. + + + + + + + + + The status of this entry. {{enum}} + The {{enum|Error_PCPErrorCodeReceived}} value indicates that the PCP Client received an error code from the PCP Server. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + Provides the PCP Error code when {{param|Status}} is {{enum|Error_PCPErrorCodeReceived|Status}}. Error code values are defined in {{bibref|RFC6887|Section 7.4}}. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Mechanism via which the mapping was requested. {{enum}} + + + + + + Requested via internal device application + + + + + Requested via UPnP IGD interworking function + + + + + Requested via PCP proxy + + + + + Requested via static configuration, i.e. created by the Controller, by some other management entity (e.g. via a GUI), or is present in the factory default configuration + + + + + + + + Determines the time to live, in {{units}}, of this Outbound Mapping lease, i.e. the remaining time before this port mapping expires. + A value of 0 means that the port mapping is permanent (referred to as a static mapping in {{bibref|RFC6887}}). + When a dynamic Outbound Mapping lease expires, the CPE MUST automatically delete the corresponding {{object}} table entry. + + + + + + + + + + The external IPv4 or IPv6 Address that the PCP-controlled device will use to send outgoing packets covered by this mapping. + This is useful for refreshing a mapping, especially after the PCP Server has lost state. If the PCP Client does not know the external address, or does not have a preference, it MUST use {{empty}}. + + + + + + + + + The external port that the PCP-controlled device will use to send outgoing packets covered by this mapping. + This is useful for refreshing a mapping, especially after the PCP Server has lost state. If the PCP Client does not know the external port, or does not have a preference, it MUST use 0. + + + + + + + + + + + The remote peer's IP address, as seen from the PCP Client, for this Outbound Mapping. + + + + + + + + The port on PCP Client WAN Interface that the PCP-controlled device SHOULD listen to for this mapping. + + + + + + + + + + The remote peer's port, as seen from the PCP Client, for this Outbound Mapping. + + + + + + + + + + The protocol number of the {{object}}. Values are taken from the {{bibref|IANA-protocolnumbers}}. + The value -1 means ''all protocols''. + + + + + + + + + + Under certain conditions, the PCP Client can create a PCP mapping on behalf of another device, by using the THIRD_PARTY option, as specified in {{bibref|RFC6887|Section 7.3}}. In that case, {{param}} is the IP address of the device for which the PCP operation is requested. + For non-third-party mappings, {{param}} SHOULD be {{empty}}. + + + + + + + + User-readable description of this {{object}}. + + + + + + + + + + + The external IP address returned by the PCP Server. The IP address that the PCP-controlled device uses to send outgoing packets corresponding to this mapping. + + + + + + + + + The external port returned by the PCP Server. The port that the PCP-controlled device uses to send outgoing packets corresponding to this mapping. + + + + + + + + + + + The Dynamic Host Configuration Protocol (DHCP) IPv4 object {{bibref|RFC2131}}. This entire object applies to IPv4 only. It contains the {{object|Client}}, {{object|Server}}, and {{object|Relay}} objects. + + + + {{numentries}} + + + + + + + + + This object contains DHCP client settings for an associated ''IP Interface'' indicated by {{param|Interface}}. + For enabled table entries, if {{param|Interface}} is not a valid reference then the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + Note: The {{object}} table includes a unique key parameter that is a strong reference. If a strongly referenced object is deleted, the CPE will set the referencing parameter to {{empty}}. However, doing so under these circumstances might cause the updated {{object}} row to then violate the table's unique key constraint; if this occurs, the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}} and disable the offending {{object}} row. + + + + + + + + + + Enables or disables the DHCP Client entry. + + + + + + + + + {{datatype|expand}} + + + + + + + + {{reference}} The IP Interface associated with the ''Client'' entry. + + + + + + + + + + + + The status of this table entry. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + The DHCP Client status as defined in {{bibref|RFC2131}}. {{enum}} + Note: This value is only relevant when the DHCP Client is operationally enabled (i.e. when {{param|Status}} is {{enum|Enabled|Status}}). + + + + + + + + + + + + + + + IPv4 Address option received from the DHCP Server. {{empty}} when {{param|Status}} is not equal to {{enum|Bound|DHCPStatus}}. + + + + + + + + + Subnet mask option received from the DHCP Server. {{empty}} when {{param|Status}} is not equal to {{enum|Bound|DHCPStatus}}. + Value is information received via DHCP Option 1. + + + + + + + + + {{list}} Items represent IP Router IPv4 Address(es) received from the DHCP server. {{empty}} when {{param|Status}} is not equal to {{enum|Bound|DHCPStatus}}. + Value is information received via DHCP Options 3, 33 or 121. + + + + + + + + + + + + {{list}} Items represent DNS Server IPv4 Address(es) received from the DHCP server. {{empty}} when {{param|Status}} is not equal to {{enum|Bound|DHCPStatus}}. + Value is information received via DHCP Option 6. + + + + + + + + + + + + DHCP lease time remaining in {{units}}. A value of -1 indicates an infinite lease. + + + + + + + + + + + + The IPv4 address of the current DHCP server. + + + + + + + + + If {{false}}, the DHCP Client retrieved IP address information is configured on the referenced {{param|Interface}} object. + If {{true}}, the DHCP Client retrieved information is propagated to the parameters in the referenced {{param|PassthroughDHCPPool}} object, replacing any existing configuration (including ''MinAddress'', ''MaxAddress'', ''SubnetMask'', ''IPRouters'', and ''DNSServers''). + + + + + + + + + {{reference}}When {{param}} is set to {{empty}}, {{param|PassthroughEnable}} MUST be set to {{false}} (i.e. passthrough can not be enabled without a pool reference specified). + + + + + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + The DHCP client will renew its DHCP lease. + + + + + + Each instance of this object represents a DHCP option that MUST, if enabled, be sent in DHCP client requests. All sent DHCP options MUST be listed. + + + + + + + + + + Enables or disables this SentOption table entry. + + + + + + + + + {{datatype|expand}} + + + + + + + + Option tag as defined in {{bibref|RFC2132}}. + + + + + + + + + + A hexbinary encoded option value. + + + + + + + + + + + + Each instance of this object represents a DHCP option that MUST, if enabled, be requested in DHCP client requests. All requested DHCP options MUST be listed. + + + + + + + + + + Enables or disables this ReqOption table entry. + + + + + + + + + Position of the option in the DHCP client request. A value of ''1'' indicates the first entry. + When this value is modified, if the value matches that of an existing entry, the {{param}} value for the existing entry and all lower {{param}} entries is incremented to ensure uniqueness of this value. A deletion causes {{param}} values to be compacted. When a value is changed, incrementing occurs before compaction. + The value of {{param}} on creation of a {{object}} table entry MUST be one greater than the largest current value. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Option tag as defined in {{bibref|RFC2132}}. + + + + + + + + + + A hexbinary encoded, most recently received DHCP option value. + If no option value has been received, then the value MUST represent {{empty}}. + Received DHCP option values MAY, but need not, persist across CPE reboots. + + + + + + + + + + + + DHCP server configuration. + + + + Enables or disables the DHCP server. + + + + + + + + {{numentries}} + + + + + + + + + DHCP conditional serving pool table. + Each instance of this object defines a DHCP conditional serving pool. Client requests are associated with pools based on criteria such as source interface, supplied DHCP options, and MAC address. + Overlapping pool ranges MUST be supported. + For enabled table entries, if {{param|Interface}} is not a valid reference, or {{param|MinAddress}}, {{param|MaxAddress}}, or {{param|SubnetMask}} is not a valid value, then the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + + + + + + + Enables or disables the Pool entry. + + + + + + + + + The status of this entry. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Position of the {{object}} entry in the order of precedence. A value of ''1'' indicates the first entry considered (highest precedence). For each DHCP request, the highest ordered entry that matches the association criteria is applied. All lower order entries are ignored. + When this value is modified, if the value matches that of an existing entry, the {{param}} value for the existing entry and all lower {{param}} entries is incremented (lowered in precedence) to ensure uniqueness of this value. A deletion causes {{param}} values to be compacted. When a value is changed, incrementing occurs before compaction. + The value of {{param}} on creation of a {{object}} table entry MUST be one greater than the largest current value (initially assigned the lowest precedence). + + + + + + + + + + {{reference}} The IP Interface associated with the ''Pool'' entry. + + + + + + + + + + + + Pool association criterion. + Used to identify one or more LAN devices, value of the DHCP Vendor Class Identifier (Option 60) as defined in {{bibref|RFC2132}}, matched according to the criterion in {{param|VendorClassIDMode}}. Case sensitive. + This is a normal string, e.g. "abc" is represented as "abc" and not say "616263" hex. However, if the value includes non-printing characters then such characters have to be represented using XML escapes, e.g. #x0a for line-feed. + {{empty}} indicates this criterion is not used for conditional serving. + + + + + + + + + + + If {{false}}, matching packets are those that match the {{param|VendorClassID}} entry, if specified. + If {{true}}, matching packets are those that do not match the {{param|VendorClassID}} entry, if specified. + + + + + + + + + {{param|VendorClassID}} pattern match criterion. {{enum}} + For example, if {{param|VendorClassID}} is "Example" then an Option 60 value of "Example device" will match with {{param}} values of {{enum|Prefix}} or {{enum|Substring}}, but not with {{enum|Exact}} or {{enum|Suffix}}. + + + + + + + + + + + + + + Pool association criterion. + A hexbinary string used to identify one or more LAN devices, value of the DHCP Client Identifier (Option 61) as defined in {{bibref|RFC2132}}. The option value is binary, so an exact match is REQUIRED. + {{empty}} indicates this criterion is not used for conditional serving. + + + + + + + + + + + If {{false}}, matching packets are those that match the {{param|ClientID}} entry, if specified. + If {{true}}, matching packets are those that do not match the {{param|ClientID}} entry, if specified. + + + + + + + + + Pool association criterion. + A hexbinary string used to identify one or more LAN devices, value of the DHCP User Class Identifier (Option 77) as defined in {{bibref|RFC3004}}. + {{empty}} indicates this criterion is not used for conditional serving. + + + + + + + + + + + If {{false}}, matching packets are those that match the {{param|UserClassID}} entry, if specified. + If {{true}}, matching packets are those that do not match the {{param|UserClassID}} entry, if specified. + + + + + + + + + Pool association criterion. + Hardware address (MAC address) of the physical interface of the DHCP client. + {{empty}} indicates this criterion is not used for conditional serving. + + + + + + + + + Bit-mask for the MAC address, where matching of a packet's MAC address with the {{param|Chaddr}} is only to be done for bit positions set to one in the mask. A mask of FF:FF:FF:FF:FF:FF or {{empty}} indicates all bits of the {{param|Chaddr}} are to be used for conditional serving classification. + + + + + + + + + If {{false}}, matching packets are those that match the (masked) {{param|Chaddr}} entry, if specified. + If {{true}}, matching packets are those that do not match the (masked) {{param|Chaddr}} entry, if specified. + + + + + + + + + Pool association criterion. Determines which devices are allowed, {{enum}} + + + + + + All clients are served. + + + + + Only clients, whose MAC address is listed in the {{object|Client.{i}.}} table (parameter {{param|Client.{i}.Chaddr}}) or in the {{object|StaticAddress.{i}.}} table (parameter {{param|StaticAddress.{i}.Chaddr}}) are served. + The parameter {{param|#.Chaddr}} is not used, if this value is set. + + + + + Only clients, whose MAC address is '''not''' listed in the {{object|Client.{i}.}} table (parameter {{param|Client.{i}.Chaddr}}) or in the {{object|StaticAddress.{i}.}} table (parameter {{param|StaticAddress.{i}.Chaddr}}) are served. + + + + + + + + Specifies first IPv4 address in the pool to be assigned by the DHCP server on the LAN interface. + The parameter value can be overwritten by dynamic values retrieved via a DHCP client with {{param|##.Client.{i}.PassthroughEnable}} or a PPP interface with {{param|.PPP.Interface.{i}.IPCP.PassthroughEnable}} equal to {{true}}. + + + + + + + + Specifies last IPv4 address in the pool to be assigned by the DHCP server on the LAN interface. + The parameter value can be overwritten by dynamic values retrieved via a DHCP client with {{param|##.Client.{i}.PassthroughEnable}} or a PPP interface with {{param|.PPP.Interface.{i}.IPCP.PassthroughEnable}} equal to {{true}}. + + + + + + + + {{list}} List items represent addresses marked reserved from the address allocation pool. + + + + + + + + + + Specifies the client's network subnet mask. + The parameter value can be overwritten by dynamic values retrieved via a DHCP client with {{param|##.Client.{i}.PassthroughEnable}} or a PPP interface with {{param|.PPP.Interface.{i}.IPCP.PassthroughEnable}} equal to {{true}}. + + + + + + + + {{list}} List items represent DNS servers offered to DHCP clients. Support for more than three DNS Servers is OPTIONAL. + The parameter value can be overwritten by dynamic values retrieved via a DHCP client with {{param|##.Client.{i}.PassthroughEnable}} or a PPP interface with {{param|.PPP.Interface.{i}.IPCP.PassthroughEnable}} equal to {{true}}. + + + + + + + + + Sets the domain name to provide to clients on the LAN interface. + + + + + + + + + + {{list}} List items represent addresses of routers on this subnet. Also known as default gateway. Support for more than one Router address is OPTIONAL. + The parameter value can be overwritten by dynamic values retrieved via a DHCP client with {{param|##.Client.{i}.PassthroughEnable}} or a PPP interface with {{param|.PPP.Interface.{i}.IPCP.PassthroughEnable}} equal to {{true}}. + + + + + + + + + Specifies the lease time in {{units}} of client assigned addresses. A value of -1 indicates an infinite lease. + + + + + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + DHCP static address table. + Entries in this table correspond to what {{bibref|RFC2131}} calls "manual allocation", where a client's IP address is assigned by the network administrator, and DHCP is used simply to convey the assigned address to the client. + Each instance of this object specifies a hardware address (MAC address) and an IP address within the pool. When serving from this pool, this IP address MUST, if available, be assigned to the DHCP client with this hardware address, and MUST NOT be assigned to any other client. + Note that it is possible that an IP address in this table is present in one or more of the other conditional serving pools, in which case it is possible that such an address will be assigned to a different client. + + + + + + + + + + Enables or disables the StaticAddress table entry. + Disabling an entry does not return the IP address to the pool. + + + + + + + + + {{datatype|expand}} + + + + + + + + Hardware address (MAC address) of the physical interface of the DHCP client. + + + + + + + + + IPv4 address to be assigned by the DHCP server to the DHCP client with the specified hardware address (MAC address). + + + + + + + + + + This object specifies the DHCP options that MUST, if enabled, be returned to clients whose DHCP requests are associated with this pool. + + + + + + + + + + Enables or disables this Option table entry. + + + + + + + + + {{datatype|expand}} + + + + + + + + Option tag as defined in {{bibref|RFC2132}}. + + + + + + + + + + A hexbinary encoded option value. + + + + + + + + + + + + DHCPv4 client table. + This table lists details of DHCPv4 clients that matched the filter criteria of this {{object|#}} entry. + + + + + + + + + + {{datatype|expand}} + Note: There is no guarantee that the {{param}} value on automatically-created {{object}} instances will be retained. This is because automatically-created {{object}} instances can be transitory. + + + + + + + + MAC address of the DHCPv4 client. + + + + + + + + Whether or not the DHCPv4 client is currently present on the LAN. The method of presence detection is a local matter to the CPE. + The ability to list inactive DHCPv4 clients is OPTIONAL. If the CPE includes inactive DHCPv4 clients in this table, {{param}} MUST be set to {{false}} for each inactive DHCPv4 client. The length of time an inactive DHCPv4 client remains listed in this table is a local matter to the CPE. + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + IPv4 addresses assigned to this client. + + + + + + + IPv4 address. + + + + + + + + The time at which the DHCP lease will expire or {{null}} if not known. For an infinite lease, the parameter value MUST be 9999-12-31T23:59:59Z. + + + + + + + + + DHCPv4 options supplied by this client, e.g. ''VendorClassID'' (Option 60), ''ClientID'' (option 61) or ''UserClassID'' (Option 77). + + + + Option tag as defined in {{bibref|RFC2132}}. + + + + + + + + + + A hexbinary encoded option value. + + + + + + + + + + + DHCP Relay Agent (conditional relaying). + + + + Enables or disables the DHCP Relay Agent function. + + + + + + + + The status of the DHCP relay. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + {{numentries}} + + + + + + + + + DHCP Relay Agent Forwarding table. + For enabled table entries, if {{param|Interface}} is not a valid reference then the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + + + + + + + Enables or disables the Forwarding entry. + + + + + + + + + The status of this entry. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Position of the {{object}} entry in the order of precedence. A value of ''1'' indicates the first entry considered (highest precedence). For each DHCP request, the highest ordered entry that matches the association criteria is applied. All lower order entries are ignored. + When this value is modified, if the value matches that of an existing entry, the {{param}} value for the existing entry and all lower {{param}} entries is incremented (lowered in precedence) to ensure uniqueness of this value. A deletion causes {{param}} values to be compacted. When a value is changed, incrementing occurs before compaction. + The value of {{param}} on creation of a {{object}} table entry MUST be one greater than the largest current value (initially assigned the lowest precedence). + + + + + + + + + + {{reference}} The IP Interface associated with the ''Forwarding'' entry. + + + + + + + + + + + + Pool association criterion. + Used to identify one or more LAN devices, value of the DHCP Vendor Class Identifier (Option 60) as defined in {{bibref|RFC2132}}, matched according to the criterion in {{param|VendorClassIDMode}}. Case sensitive. + This is a normal string, e.g. "abc" is represented as "abc" and not say "616263" hex. However, if the value includes non-printing characters then such characters have to be represented using XML escapes, e.g. #x0a for line-feed. + {{empty}} indicates this criterion is not used as a relay classification criterion. + + + + + + + + + + + If {{false}}, matching packets are those that match the {{param|VendorClassID}} entry, if specified. + If {{true}}, matching packets are those that do not match the {{param|VendorClassID}} entry, if specified. + + + + + + + + + {{param|VendorClassID}} pattern match criterion. {{enum}} + For example, if {{param|VendorClassID}} is "Example" then an Option 60 value of "Example device" will match with {{param}} values of {{enum|Prefix}} or {{enum|Substring}}, but not with {{enum|Exact}} or {{enum|Suffix}}. + + + + + + + + + + + + + + Pool association criterion. + A hexbinary string used to identify one or more LAN devices, value of the DHCP Client Identifier (Option 61) as defined in {{bibref|RFC2132}}. The option value is binary, so an exact match is REQUIRED. + {{empty}} indicates this criterion is not used as a relay classification criterion. + + + + + + + + + + + If {{false}}, matching packets are those that match the {{param|ClientID}} entry, if specified. + If {{true}}, matching packets are those that do not match the {{param|ClientID}} entry, if specified. + + + + + + + + + Pool association criterion. + A hexbinary string used to identify one or more LAN devices, value of the DHCP User Class Identifier (Option 77) as defined in {{bibref|RFC3004}}. + {{empty}} indicates this criterion is not used as a relay classification criterion. + + + + + + + + + + + If {{false}}, matching packets are those that match the {{param|UserClassID}} entry, if specified. + If {{true}}, matching packets are those that do not match the {{param|UserClassID}} entry, if specified. + + + + + + + + + Pool association criterion. + Hardware address (MAC address) of the physical interface of the DHCP client. + {{empty}} indicates this criterion is not used as a relay classification criterion. + + + + + + + + + Bit-mask for the MAC address, where matching of a packet's MAC address with the {{param|Chaddr}} is only to be done for bit positions set to one in the mask. A mask of FF:FF:FF:FF:FF:FF or {{empty}} indicates all bits of the {{param|Chaddr}} are to be used for relay classification. + + + + + + + + + If {{false}}, matching packets are those that match the (masked) {{param|Chaddr}} entry, if specified. + If {{true}}, matching packets are those that do not match the (masked) {{param|Chaddr}} entry, if specified. + + + + + + + + + If {{true}}, incoming DHCP requests will be forwarded to the CPE DHCP Server. If {{false}}, incoming DHCP requests will be forwarded to the {{param|DHCPServerIPAddress}} configured for this forwarding entry. + + + + + + + + + IPv4 address of the DHCP server, where the request has to be sent to when there is a conditional match with this forwarding entry and {{param|LocallyServed}} is {{false}}. If {{param|LocallyServed}} is {{false}} and this parameter is not configured, then the DHCP request is dropped. + + + + + + + + + The Dynamic Host Configuration Protocol (DHCP) IPv6 object {{bibref|RFC3315}}. This entire object applies to IPv6 only. It contains the {{object|Client}} and {{object|Server}} objects. + + + + {{numentries}} + + + + + + + + + This object contains DHCPv6 client settings for an associated ''IP Interface'' indicated by {{param|Interface}}. + For enabled table entries, if {{param|Interface}} is not a valid reference to an IPv6-capable interface (that is attached to the IPv6 stack), then the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + Note: The {{object}} table includes a unique key parameter that is a strong reference. If a strongly referenced object is deleted, the CPE will set the referencing parameter to {{empty}}. However, doing so under these circumstances might cause the updated {{object}} row to then violate the table's unique key constraint; if this occurs, the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}} and disable the offending {{object}} row. + + + + + + + + + + Enables or disables this {{object}} entry. + + + + + + + + + {{datatype|expand}} + + + + + + + + {{reference}} The IP Interface associated with the {{object}} entry. This will reference an IPv6-capable interface (that is attached to the IPv6 stack), otherwise the table entry will be inoperable. + + + + + + + + + + + + The status of this table entry. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + The client's DHCP Unique Identifier (DUID) {{bibref|RFC3315|Section 9}}. {{param}} is set by the CPE. + + + + + + + + + + Enables or disables inclusion of the ''Identity Association (IA) for Non-Temporary Address'' option OPTION_IA_NA(3) {{bibref|RFC3315|Section 22.4}} in Solicit messages. + + + + + + + + + Enables or disables inclusion of the ''Identity Association (IA) for Prefix Delegation'' option OPTION_IA_PD(25) {{bibref|RFC3633|Section 10}} in Solicit messages. + Note that this is only appropriate for an upstream interface on a requesting router, e.g. for an RG WAN interface. + + + + + + + + + Enables or disables inclusion of the ''Rapid Commit'' option OPTION_RAPID_COMMIT(14) {{bibref|RFC3315|Section 22.14}} in Solicit messages. + + + + + + + + + T1 value, in {{units}}, that the client SHOULD use when sending IA options, e.g. OPTION_IA_NA {{bibref|RFC3315|Section 22.4}} and OPTION_IA_PD {{bibref|RFC3633|Section 10}}. + A value of -1 indicates that no T1 value is specified. + + + + + + + + + + + T2 value, in {{units}}, that the client SHOULD use when sending IA options, e.g. OPTION_IA_NA {{bibref|RFC3315|Section 22.4}} and OPTION_IA_PD {{bibref|RFC3633|Section 10}}. + A value of -1 indicates that no T2 value is specified. + + + + + + + + + + + {{list}} The options that the client is able to process in server responses. This list MUST include both top-level and encapsulated options, e.g. if the client is able to process OPTION_IA_NA (3) with an encapsulated OPTION_IAADDR (5), the list would be expected to include both 3 and 5. + + + + + + + + + {{list}} An ordered list of the top-level options (i.e. not encapsulated options) that the client will explicitly request from the server. + This parameter is intended only for options that are not necessary for the basic operation of the protocol, and are not modeled elsewhere. For example, it is appropriate for OPTION_DNS_SERVERS {{bibref|RFC3646}} but is not appropriate for OPTION_SERVERID (which is part of the protocol), OPTION_IA_NA (which is modeled via {{param|RequestAddresses}}) or OPTION_IA_PD (which is modeled via {{param|RequestPrefixes}}). However, the CPE MUST NOT reject an attempt to set this parameter to a value that includes options that it regards as inappropriate; instead, it MUST accept the requested options and handle them as best it can. + Loosely speaking, these are the options that the client will include in OPTION_ORO {{bibref|RFC3315}} but the client is free to decide (in accordance with {{bibref|RFC3315}}) in which messages to request which option, whether also to request additional options, whether not to request inappropriate options, and in which order to request any options that are also in {{param|SupportedOptions}}. + + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + The {{object}} will renew its DHCPv6-supplied information (i.e. the Agent will do a renew or information request as needed, updating both stateful and stateless parameter values discovered by this Client instance). + + + + + + This is a transitory table that lists the discovered DHCPv6 servers (it does ''not'' model a local DHCP server). Table entries are automatically created to correspond with these servers. However, it is a local matter to the CPE when to delete old table entries. + + + + + + + The IP address from which the message most recently received from this server was sent. + + + + + + + + The server's DHCP Unique Identifier (DUID) {{bibref|RFC3315|Section 9}} as received via OPTION_SERVERID. + + + + + + + + + + The OPTION_INFORMATION_REFRESH_TIME value {{bibref|RFC4242}} that was most recently received from this server, converted to the ''dateTime'' at which the associated information will expire. If no such option has been received, the parameter value MUST be the "Unknown Time" {{null}}. If the information will never expire, the parameter value MUST be infinite time 9999-12-31T23:59:59Z. + + + + + + + + + The top-level options and option values (including any encapsulated options) that the client will send to the server. + This table is intended only for options that are not part of the basic operation of the protocol, and whose values are simple, do not often change and are not modeled elsewhere. For example, it is appropriate for OPTION_USER_CLASS (whose value is a list of user classes) but is not appropriate for OPTION_RECONF_MSG (which is part of the protocol), OPTION_IA_NA (which is modeled via {{param|#.RequestAddresses}}) or OPTION_RAPID_COMMIT (which is modeled via {{param|#.RapidCommit}}). + + + + + + + + + + Enables or disables this {{object}} entry. + + + + + + + + + {{datatype|expand}} + + + + + + + + Option tag (code) {{bibref|RFC3315|Section 22.1}}. + + + + + + + + + + A hexbinary encoded option data {{bibref|RFC3315|Section 22.1}}. + Note: The length of the option data is ''option-len'' octets, as specified in {{bibref|RFC3315|Section 22.1}}. + + + + + + + + + + + + This is a transitory table that lists all the options received from all servers. Table entries are automatically created to correspond with received options. However, it is a local matter to the CPE when to delete old table entries. + If the same option is received multiple times, whether from one or more servers, it is up to the CPE to decide which entries to include (i.e. whether the same option will be present multiple times). In order to allow for the same option to be present multiple times within the table, this table has no unique key defined. + + + + Option tag (code) {{bibref|RFC3315|Section 22.1}}. + + + + + + + + + + A hexbinary encoded option data {{bibref|RFC3315|Section 22.1}}. + + + + + + + + + + {{reference}} This is the server that sent the option to the client. Each {{object}} entry MUST have an associated server. + + + + + + + + + + + DHCPv6 server configuration. + + + + Enables or disables the DHCPv6 server function. + + + + + + + + {{numentries}} + + + + + + + + + DHCPv6 server pool table. + Each instance of this object defines a DHCPv6 server pool. Client requests are associated with pools based on criteria such as source interface, supplied DHCPv6 options, and source address. + Overlapping pool ranges MUST be supported. + For enabled table entries, if {{param|Interface}} is not a valid reference to an IPv6-capable interface (that is attached to the IPv6 stack) then the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + + + + + + + + + + Enables or disables this {{object}} entry. + + + + + + + + + The status of this entry. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Position of the {{object}} entry in the order of precedence. A value of ''1'' indicates the first entry considered (highest precedence). For each DHCPv6 request, the highest ordered entry that matches the association criteria is applied. All lower order entries are ignored. + When this value is modified, if the value matches that of an existing entry, the {{param}} value for the existing entry and all lower {{param}} entries is incremented (lowered in precedence) to ensure uniqueness of this value. A deletion causes {{param}} values to be compacted. When a value is changed, incrementing occurs before compaction. + The value of {{param}} on creation of a {{object}} table entry MUST be one greater than the largest current value (initially assigned the lowest precedence). + + + + + + + + + + {{reference}} The IP Interface associated with the {{object}} entry. + + + + + + + + + + + + Pool association criterion. + A hexbinary string used to identify one or more LAN devices, value of the DHCPv6 Client Identifier (Option 1) {{bibref|RFC3315|Section 22.2}}. The option value is binary, so an exact match is REQUIRED. + {{empty}} indicates this criterion is not used. + Note: DHCPv6 Option 1 (DUID) is sometimes referred to as ''Client Identifier''. + + + + + + + + + + + If {{false}}, matching packets are those that match the {{param|DUID}} entry, if specified. + If {{true}}, matching packets are those that do not match the {{param|DUID}} entry, if specified. + + + + + + + + + Pool association criterion. + A hexbinary string used to identify one or more LAN devices, value of the DHCPv6 Vendor Class Identifier (Option 16) {{bibref|RFC3315|Section 22.16}}. The option value is binary, so an exact match is REQUIRED. + {{empty}} indicates this criterion is not used. + + + + + + + + + + + If {{false}}, matching packets are those that match the {{param|VendorClassID}} entry, if specified. + If {{true}}, matching packets are those that do not match the {{param|VendorClassID}} entry, if specified. + + + + + + + + + Pool association criterion. + A hexbinary string used to identify one or more LAN devices, value of the DHCPv6 User Class Identifier (Option 15) {{bibref|RFC3315|Section 22.15}}. + {{empty}} indicates this criterion is not used. + + + + + + + + + + + If {{false}}, matching packets are those that match the {{param|UserClassID}} entry, if specified. + If {{true}}, matching packets are those that do not match the {{param|UserClassID}} entry, if specified. + + + + + + + + + Pool association criterion. + Source address (link-layer address) of DHCPv6 messages sent from the DHCPv6 client. This criterion is only likely to be useful if this is a link-layer address. + {{empty}} indicates this criterion is not used for serving. + + + + + + + + + Bit-mask for the source address, where matching of a packet's source address with the {{param|SourceAddress}} is only to be done for bit positions set to one in the mask. A mask of {{empty}} indicates all bits of the {{param|SourceAddress}} are to be used. + + + + + + + + + If {{false}}, matching packets are those that match the (masked) {{param|SourceAddress}} entry, if specified. + If {{true}}, matching packets are those that do not match the (masked) {{param|SourceAddress}} entry, if specified. + + + + + + + + + Enables or disables IANA offers. + + + + + + + + {{list}} {{reference}} + Manually-configured prefixes from which IA_NA addresses will be assigned. Each referenced prefix MUST have a {{param|.IP.Interface.{i}.IPv6Prefix.{i}.StaticType}} of {{enum|Static|.IP.Interface.{i}.IPv6Prefix.{i}.StaticType}} or {{enum|Child|.IP.Interface.{i}.IPv6Prefix.{i}.StaticType}}. All clients that request IA_NA and match filter criteria on this {{param|Interface}} MUST be offered IA_NA addresses from all of the ''Valid'' ({{param|.IP.Interface.{i}.IPv6Prefix.{i}.ValidLifetime}} is infinite or in the future) /64 prefixes in this list. + Prefixes MUST be associated with the interface instance referenced by {{param|Interface}}. + + + + + + + + + + + + {{list}} {{reference}} + All prefixes from which IA_NA addresses will be assigned. This list can include: + * Prefixes from {{param|IANAManualPrefixes}} that are used for IA_NA offers. + * Prefixes with {{param|.IP.Interface.{i}.IPv6Prefix.{i}.Origin}} = {{enum|Child|.IP.Interface.{i}.IPv6Prefix.{i}.Origin}} or {{enum|AutoConfigured|.IP.Interface.{i}.IPv6Prefix.{i}.Origin}} associated with the interface instance referenced by {{param|Interface}}. + + + + + + + + + + + Enables or disables IAPD offers. + + + + + + + + {{list}} {{reference}} + Manually-configured prefixes from which IA_PD prefixes will be derived. This list can include: + * Prefixes with {{param|.IP.Interface.{i}.IPv6Prefix.{i}.Origin}} = {{enum|Static|.IP.Interface.{i}.IPv6Prefix.{i}.Origin}} or {{enum|PrefixDelegation|.IP.Interface.{i}.IPv6Prefix.{i}.Origin}} associated with upstream interfaces (i.e. interfaces for which the physical layer interface object has ''Upstream'' = {{true}}). + * Prefixes with {{param|.IP.Interface.{i}.IPv6Prefix.{i}.StaticType}} = {{enum|Static|.IP.Interface.{i}.IPv6Prefix.{i}.StaticType}} or {{enum|Child|.IP.Interface.{i}.IPv6Prefix.{i}.StaticType}} associated with with the interface instance referenced by {{param|Interface}}. + All clients that request IA_PD and match filter criteria on this {{param|Interface}} MUST be offered IA_PD prefixes derived from all of the ''Valid'' ({{param|.IP.Interface.{i}.IPv6Prefix.{i}.ValidLifetime}} is infinite or in the future) prefixes in this list. + + + + + + + + + + + + {{list}} {{reference}} + All prefixes for which IA_PD prefixes will be assigned. This list can include: + * Prefixes from {{param|IAPDManualPrefixes}} that are used for IA_PD offers. + * Prefixes with {{param|.IP.Interface.{i}.IPv6Prefix.{i}.Origin}} = {{enum|PrefixDelegation|.IP.Interface.{i}.IPv6Prefix.{i}.Origin}} or {{enum|AutoConfigured|.IP.Interface.{i}.IPv6Prefix.{i}.Origin}} associated with upstream interfaces (i.e. interfaces for which the physical layer interface object has ''Upstream'' = {{true}}). + * Prefixes with {{param|.IP.Interface.{i}.IPv6Prefix.{i}.Origin}} = {{enum|Child|.IP.Interface.{i}.IPv6Prefix.{i}.Origin}} or {{enum|AutoConfigured|.IP.Interface.{i}.IPv6Prefix.{i}.Origin}} associated with the interface instance referenced by {{param|Interface}}. + + + + + + + + + + + The RECOMMENDED minimum number of bits to add to {{param|IAPDManualPrefixes}} or {{param|IAPDPrefixes}} in order to determine the length of prefixes that are offered in an IA_PD. The device is responsible for ensuring that it does not delegate a prefix longer than /64. The device can have additional logic that is used (in conjunction with this parameter) to determine the actual length of prefixes offered in an IA_PD. + + + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + DHCPv6 client table. + This table lists details of DHCPv6 clients that matched the filter criteria of this {{object|#}} entry. + + + + + + + + + + {{datatype|expand}} + Note: There is no guarantee that the {{param}} value on automatically-created {{object}} instances will be retained. This is because automatically-created {{object}} instances can be transitory. + + + + + + + + Source address of the DHCPv6 client. + + + + + + + + Whether or not the DHCPv6 client is currently present on the LAN. The method of presence detection is a local matter to the CPE. + The ability to list inactive DHCPv6 clients is OPTIONAL. If the CPE includes inactive DHCPv6 clients in this table, {{param}} MUST be set to {{false}} for each inactive DHCPv6 client. The length of time an inactive DHCPv6 client remains listed in this table is a local matter to the CPE. + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + IPv6 addresses assigned to this client via IA_NA. + + + + + + + IPv6 address. + + + + + + + + The time at which this address will cease to be preferred (i.e. will become deprecated), or {{null}} if not known. For an infinite lifetime, the parameter value MUST be 9999-12-31T23:59:59Z. + + + + + + + + The time at which this address will cease to be valid (i.e. will become invalid), or {{null}} if unknown. For an infinite lifetime, the parameter value MUST be 9999-12-31T23:59:59Z. + + + + + + + + + IPv6 prefixes delegated to this client via IA_PD. + + + + + + + IPv6 address prefix. + + + + + + + + The time at which this prefix will cease to be preferred (i.e. will become deprecated), or {{null}} if not known. For an infinite lifetime, the parameter value MUST be 9999-12-31T23:59:59Z. + + + + + + + + The time at which this prefix will cease to be valid (i.e. will become invalid), or {{null}} if unknown. For an infinite lifetime, the parameter value MUST be 9999-12-31T23:59:59Z. + + + + + + + + + DHCPv6 options supplied by this client, e.g. ''DUID'' (Option 1), ''UserClassID'' (Option 15) or ''VendorClassID'' (option 16). + + + + Option tag (code) {{bibref|RFC3315|Section 22.1}}. + + + + + + + + + + A hexbinary encoded option value. + + + + + + + + + + + This object specifies the DHCPv6 options that MUST, if enabled, be offered to clients whose DHCPv6 requests are associated with this pool. If {{param|PassthroughClient}} is specified, and the referenced client has a value for a given option then the {{param|PassthroughClient}} option value will be sent instead of {{param|Value}}. Otherwise, {{param|Value}} will be sent. + + + + + + + + + + Enables or disables this {{object}} entry. + + + + + + + + + {{datatype|expand}} + + + + + + + + Option tag (code) {{bibref|RFC3315|Section 22.1}}. + + + + + + + + + + A hexbinary encoded option value. + + + + + + + + + + + {{reference}} Indicates whether this {{object}} entry is configured for passthrough. + If {{param}} is specified, and the referenced client (since boot) has received a value from an associated upstream DHCPv6 server for the given {{param|Tag}} option, then the referenced client's option value will be sent instead of {{param|Value}}. Otherwise, {{param|Value}} will be sent. + {{empty}} indicates that passthrough is not configured for this {{object}} entry. + + + + + + + + + + + + + IEEE 802.1x object {{bibref|802.1x-2004}}, where {{object|Supplicant}} models authentication supplicants. + + + + {{numentries}} + + + + + + + + + 802.1x supplicant authentication provisioning and status information associated with an interface to be authenticated (e.g. an {{object|.Ethernet.Link}} instance). + For enabled table entries, if {{param|Interface}} is not a valid reference then the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + Note: The {{object}} table includes a unique key parameter that is a strong reference. If a strongly referenced object is deleted, the CPE will set the referencing parameter to {{empty}}. However, doing so under these circumstances might cause the updated {{object}} row to then violate the table's unique key constraint; if this occurs, the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}} and disable the offending {{object}} row. + + + + + + + + + + This parameter controls whether this resource will utilize the 802.1x protocol as a supplicant for device authentication purposes. + + + + + + + + + The current operational status of this 802.1x supplicant. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + {{reference}} The interface on which authentication is to be performed. Example: Device.Ethernet.Link.1 + + + + + + + + + + + + The current supplicant state machine as defined in {{bibref|802.1x-2004|9.5.1}}, Supplicant PAE (Port Access Entity) State. {{enum}} + + + + + + + + + + + + + + + + + + The identity to be exchanged between the supplicant and authenticator. + + + + + + + + + + The maximum number of times the device will attempt to send an EAP start message before authentication fails as defined in {{bibref|802.1x-2004|9.5.1}}, maxStart. + This is in support of {{bibref|802.1x-2004|Section 8.4.6}}, Migration Considerations. + + + + + + + + + + The period in {{units}} a supplicant will wait before the device will attempt to re-send an EAP start message as defined in {{bibref|802.1x-2004|9.5.1}}, startPeriod. + + + + + + + + + + + The hold-off period in {{units}} a supplicant will wait before re-attempting authentication as defined in {{bibref|802.1x-2004|9.5.1}}, heldPeriod. + + + + + + + + + + + The period in {{units}} after which a request will be considered timed out as defined in {{bibref|802.1x-2004|9.5.1}}, authPeriod. + + + + + + + + + + {{list}} Indicates the authentication methods supported by the device. {{enum}} + + + + + + + + + + + + The action to be taken when authentication has failed, when the network fails to respond to the supplicant's start message, and the retries have been exceeded (since network does not yet support 802.1x). {{enum}} + This is in support of {{bibref|802.1x-2004|Section 8.4.6}}, Migration Considerations. + + + + + + + + + + + The action to be taken when authentication succeeds and a connection has already received an address and/or policy settings. {{enum}} + + + + + + + + + + + On a reset the device MUST reset the session by performing an initial authentication attempt as defined in {{bibref|802.1x-2004|9.6.1.3}}, Initialize Port by sending out the EAP start message. + The device MAY delay resetting the resource in order to avoid interruption of a user service such as an ongoing voice call. + + + + + On a reset the device MUST disconnect (forced unauthentication) the resource. + The device MAY delay re-authentication of the resource in order to avoid interruption of a user service such as an ongoing voice call. + + + + + + 802.1x Authentication Supplicant EAP statistics information for this resource. + + + + The number of EAPOL frames of any type that have been received by this Supplicant; {{bibref|802.1x-2004|9.5.2}}, EAPOL frames received. + + + + + + + + + The number of EAPOL frames of any type that have been transmitted by this Supplicant; {{bibref|802.1x-2004|9.5.2}}, EAPOL frames transmitted. + + + + + + + + + The number of EAPOL Start frames that have been transmitted by this Supplicant; {{bibref|802.1x-2004|9.5.2}}, EAPOL Start frames transmitted. + + + + + + + + + The number of EAPOL Logoff frames that have been transmitted by this Supplicant; {{bibref|802.1x-2004|9.5.2}}, EAPOL Logoff frames transmitted. + + + + + + + + + The number of EAP Resp/Id frames that have been transmitted; {{bibref|802.1x-2004|9.5.2}}, EAP Resp/Id frames transmitted. + + + + + + + + + The number of valid EAP Response frames (other than Resp/Id frames) that have been transmitted by this Supplicant; {{bibref|802.1x-2004|9.5.2}}, EAP Resp frames transmitted. + + + + + + + + + The number of EAP Req/Id frames that have been received by this Supplicant; {{bibref|802.1x-2004|9.5.2}}, EAP Req/Id frames received. + + + + + + + + + The number of EAP Request frames (other than Rq/Id frames) that have been received by this Supplicant; {{bibref|802.1x-2004|9.5.2}}, EAP Req frames received. + + + + + + + + + The number of EAPOL frames that have been received by this Supplicant in which the frame type is not recognized; {{bibref|802.1x-2004|9.5.2}}, EAP Req frames received. + + + + + + + + + The number of EAPOL frames that have been received by this Supplicant in which the Packet Body Length field is invalid; {{bibref|802.1x-2004|9.5.2}}, EAP length error frames received. + + + + + + + + + The protocol version number carried in the most recently received EAPOL frame; {{bibref|802.1x-2004|9.5.2}}, Last EAPOL frame version + + + + + + + + The source MAC address carried in the most recently received EAPOL frame; {{bibref|802.1x-2004|9.5.2}}, Last EAPOL frame source. + + + + + + + + + 802.1x Authentication Supplicant provisioning information used for MD5 shared secret exchange. This object will not exist if EAP-MD5 is not a supported authentication type. + + + + This parameter enables or disables the supplicant's support for EAP-MD5. + + + + + + + + The shared secret to be exchanged between the supplicant and authenticator. + + + + + + + 802.1x Authentication Supplicant provisioning information used for TLS certificate authentication. This object will not exist if the EAP-TLS is not a supported authentication type. + + + + This parameter enables or disables the supplicant's support for EAP-TLS. + + + + + + + + The parameter controls if the supplicant will authenticate the authenticator. + + + + + + + + + Users object that contains the {{object|User}} table. + + + + {{numentries}} + + + + + + + + + This object contains parameters relating to the user characteristics. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Enables/disables this user object instance. + If the User being configured is currently accessing the device then a disable MUST apply to the next user session and the current user session MUST NOT be abruptly terminated. + + + + + + + + + Allows this user to remotely access the UserInterface via the mechanism defined in {{object|.UserInterface.RemoteAccess.}} + + + + + + + + + Name of the current user. MUST NOT be {{empty}} for an enabled entry. + + + + + + + + + + + The user's password. + + + + + + String describing the default language for the local configuration interface, specified according to {{bibref|RFC3066}}. + If {{empty}}, {{param|.UserInterface.CurrentLanguage}} is used. + + + + + + + + + + + + SmartCardReaders object that contains the {{object|SmartCardReader}} table. + + + + {{numentries}} + + + + + + + + + This object describes the characteristics of the smart card reader. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Enables or disables this smart card reader. + + + + + + + + Indicates the status of this smart card reader. + + + + + + + Indicates the smart card reader is enabled and functioning properly. + + + + + Indicates the smart card reader is enabled and not functioning properly. + + + + + + + + Human-readable name associated with this smart card reader. + + + + + + + + + + The time at which this SmartCard Reader was reset. + Reset can be caused by: + * {{param|Status}} transition from Disabled to Enabled + * {{param|Reset}} set to {{true}}. + * An internal reset of the SmartCard Reader (including a reboot of the device). + Unknown Time value indicates that this SmartCard Reader has never been reset, which can only happen if it has never been enabled. + + + + + + + + Counter incremented once each time decryption cannot be carried out. + This counter relates to the smart card reader, not to the smart card itself, i.e. it is reset when the {{param|Reset}} parameter is used and not when a Smart Card is inserted or removed. + + + + + + + + Counter incremented once each time the key is not available to decrypt it. This is a subset of the more general {{param|DecryptionFailedCounter}} within the same object and thus will always be less than that parameter. + This counter relates to the smart card reader, not to the smart card itself, i.e. it is reset when the {{param|Reset}} parameter is used and not when a Smart Card is inserted or removed. + + + + + + + + Reset the SmartCard Reader and the associated SmartCard. + + + + + + Status of currently associated smart card. + + + + Status of the Smart Card. + + + + + + Indicates that no Smart Card is inserted. + + + + + Indicates a Smart Card is present and working normally. + + + + + Indicates the Smart Card is present and in an error condition. + + + + + + + + Smart Card Type. {{enum}} + Vendors can extend the enumerated values with vendor specific extensions, in which case the rules outlined in {{bibref|TR-106|Section 3.3}} MUST be adhered to. + + + + + + + + + + + + {{list}} Indicates Smart Card Application(s). {{param}} is only relevant when {{param|Type}} has a value of UICC, otherwise it is {{empty}}. {{enum}} + Vendors can extend the enumerated values with vendor specific extensions, in which case the rules outlined in {{bibref|TR-106|Section 3.3}} MUST be adhered to. + + + + + + + + + + + + + The Smart Card Serial Number or {{empty}} if the Smart Card serial Number is not available, e.g. in the case of IPTV due to restrictions of the Service Delivery Platform. + + + + + + + + + + The Smart Card answer to a reset action. Issued by the Smart Card upon reset. + + + + + + + + + + + This object contains all UPnP related objects and parameters including Device and Discovery related objects and parameters. + + + + + This object defines the UPnP devices and UPnP services that are implemented by the CPE. + + + + Enables/Disables UPnP support. + + + + + + + + Enables/Disables UPnP Media Server. + + + + + + + + Enables/Disables UPnP Media Renderer. + + + + + + + + Enables/Disables UPnP Wireless Access Point. + + + + + + + + Enables/Disables UPnP QoS Device. + + + + + + + + Enables/Disables UPnP QoS Policy Holder. + + + + + + + + Enables/Disables UPnP IGD. + + + + + + + + Enables/Disables UPnP-DM Basic Management. + + + + + + + + Enables/Disables UPnP-DM Configuration Management. + + + + + + + + Enables/Disables UPnP-DM Software Management. + + + + + + + + + This object defines what UPnP capabilities this device has. + + + + Numeric value indicating the major version of the supported UPnP architecture. + If UPnP 1.1 is supported the value is 1. If UPnP 2.0 is supported the value is 2. + A value of 0 indicates no UPnP support. + + + + + + + + Numeric value indicating the minor version of the supported UPnP architecture. + If UPnP 1.1 is supported the value is 1. If UPnP 2.0 is supported the value is 0. + If {{param|UPnPArchitecture}} is 0 then this parameter SHOULD be ignored. + + + + + + + + Numeric value indicating the supported revision for UPnP Media Server. + A value of 0 indicates no support. + + + + + + + + Numeric value indicating the supported revision for UPnP Media Renderer. + A value of 0 indicates no support. + + + + + + + + Numeric value indicating the supported revision for UPnP Wireless Access Point. + A value of 0 indicates no support. + + + + + + + + Numeric value indicating the supported revision for UPnP Basic Device. + A value of 0 indicates no support. + + + + + + + + Numeric value indicating the supported revision for UPnP Qos Device. + A value of 0 indicates no support. + + + + + + + + Numeric value indicating the supported revision for UPnP Qos Policy Holder. + A value of 0 indicates no support. + + + + + + + + Numeric value indicating the supported revision for UPnP IGD. + A value of 0 indicates no support. + + + + + + + + Numeric value indicating the supported revision for UPnP-DM Basic Management. + A value of 0 indicates no support. + + + + + + + + Numeric value indicating the supported revision for UPnP-DM Configuration Management. + A value of 0 indicates no support. + + + + + + + + Numeric value indicating the supported revision for UPnP-DM Software Management. + A value of 0 indicates no support. + + + + + + + + + UPnP {{bibref|UPnP-DAv1}} SSDP discovered root devices, embedded devices and embedded services. + The CPE MAY, but need not, retain some or all of the information in this object across reboots. + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + UPnP root device table. This table contains an entry for each UPnP root device that has been discovered via SSDP. + + + + + + + The status of the UPnP root device. {{enum}} + The ability to list inactive UPnP root devices is OPTIONAL. The length of time an inactive device remains listed in this table is a local matter to the CPE. + + + + + + Device is active and UPnP lease has not expired. + + + + + Device is inactive because UPnP lease has expired. + + + + + Device is inactive because byebye message was received. + + + + + + + + This UPnP root device's UUID (Universally Unique IDentifier) {{bibref|RFC4122}}, extracted from any of its USN (Unique Service Name) headers. This is a 36-byte string that uniquely identifies the device, the following is an example: + : ''02c29d2a-dbfd-2d91-99c9-306d537e9856'' + {{pattern}} + + + + + + + + + + + The value of the USN (Unique Service Name) header for this UPnP root device. Three discovery messages are sent for root devices, and this SHOULD be the value of the USN header of the following form: + : ''uuid:device-UUID::urn:domain-name:device:deviceType:v'' + SSDP is an unreliable protocol and it is possible that no discovery message containing the USN header of the above form was ever received. If so, one of the other two forms MAY be used: + : ''uuid:device-UUID::upnp:rootdevice'' + : ''uuid:device-UUID'' (for root device UUID) + + + + + + + + + + The UPnP root device lease time in {{units}}, extracted from the CACHE-CONTROL header. + + + + + + + + + + The value of the LOCATION header for this UPnP root device, which is the {{datatype}} of the root device's DDD (Device Description Document). + + + + + + + + The value of the SERVER header for this UPnP root device, which is a string of the following form: + : ''OS/version UPnP/udaversion product/version'' + where '''UPnP''' is a literal string, '''udaversion''' is the version of the UPnP Device Architecture. + + + + + + + + + + {{list}} Indicates the full path names of all Host table entries, whether active or inactive, that correspond to this UPnP root device. + As such entries are added to or removed from the Host tables, the value of this parameter MUST be updated accordingly. + + + + + + + + + + + + + The date and time at which the last advertisement from this {{object}} was received. + + + + + + + + + UPnP embedded device table. This table contains an entry for each UPnP embedded device that has been discovered via SSDP. + + + + + + + The status of the UPnP embedded device. {{enum}} + The ability to list inactive UPnP embedded devices is OPTIONAL. The length of time an inactive device remains listed in this table is a local matter to the CPE. + + + + + + Device is active and UPnP lease has not expired. + + + + + Device is inactive because UPnP lease has expired. + + + + + Device is inactive because byebye message was received. + + + + + + + + This UPnP embedded device's UUID (Universally Unique IDentifier) {{bibref|RFC4122}}, extracted from any of its USN (Unique Service Name) headers. This is a 36-byte string that uniquely identifies the device, the following is an example: + : ''02c29d2a-dbfd-2d91-99c9-306d537e9856'' + {{pattern}} + + + + + + + + + + + The value of the USN (Unique Service Name) header for this UPnP embedded device. Two discovery messages are sent for embedded devices, and this SHOULD be the value of the USN header of the following form: + : ''uuid:device-UUID::urn:domain-name:device:deviceType:v'' + SSDP is an unreliable protocol and it is possible that no discovery message containing the USN header of the above form was ever received. If so, the other form MAY be used: + : ''uuid:device-UUID'' + + + + + + + + + + The UPnP embedded device lease time in {{units}}, extracted from the CACHE-CONTROL header. + + + + + + + + + + The value of the LOCATION header for this UPnP embedded device, which is the {{datatype}} of the root device's DDD (Device Description Document). + + + + + + + + The value of the SERVER header for this UPnP embedded device, which is a string of the following form: + : ''OS/version UPnP/udaversion product/version'' + where '''UPnP''' is a literal string, '''udaversion''' is the version of the UPnP Device Architecture. + + + + + + + + + + {{list}} Indicates the full path names of all Host table entries, whether active or inactive, that correspond to this UPnP embedded device. + As such entries are added to or removed from the Host tables, the value of this parameter MUST be updated accordingly. + + + + + + + + + + + + + The date and time at which the last advertisement from this {{object}} was received. + + + + + + + + + UPnP embedded service table. This table contains an entry for each UPnP embedded service that has been discovered via SSDP. + + + + + + + The status of the UPnP embedded service. {{enum}} + The ability to list inactive UPnP embedded services is OPTIONAL. The length of time an inactive service remains listed in this table is a local matter to the CPE. + + + + + + Service is active and UPnP lease has not expired. + + + + + Service is inactive because UPnP lease has expired. + + + + + Service is inactive because byebye message was received. + + + + + + + + The value of the USN (Unique Service Name) header for this UPnP embedded service. This is of the following form: + : ''uuid:device-UUID::urn:domain-name:service:serviceType:v'' + + + + + + + + + + The UPnP embedded service lease time in {{units}}, extracted from the CACHE-CONTROL header. + + + + + + + + + + The value of the LOCATION header for this UPnP embedded service, which is the {{datatype}} of the root device's DDD (Device Description Document). + + + + + + + + The value of the SERVER header for this UPnP embedded service, which is a string of the following form: + : ''OS/version UPnP/udaversion product/version'' + where '''UPnP''' is a literal string, '''udaversion''' is the version of the UPnP Device Architecture. + + + + + + + + + + {{list}} Indicates the full path names of all Host table entries, whether active or inactive, that correspond to this UPnP embedded service. + As such entries are added to or removed from the Host tables, the value of this parameter MUST be updated accordingly. + + + + + + + + + + + + + The date and time at which the last advertisement from this {{object}} was received. + + + + + + + + {{reference|the {{object|#.RootDevice}} or {{object|#.Device}} table entries that embeds this {{object}}}} This parameter is populated by extracting the "device-UUID" from the service's USN and matching the value against the root device or embedded device UUID value. + + + + + + + + + + + + This object contains information from the Description Document discovered from the UPnP Devices and Services. + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + This table contains information read from the Device Description Document of discovered root devices. + The CPE MAY, but need not, retain some or all of the information in this table after the associated SSDP advertisement (objects in the UPnP.Discovery. object tables) expires. + In case the SSDP advertisement expires and the CPE deletes the related instances from the tables in UPnP.Discovery., the reference to such instances MUST be set to the empty string. + + + + + + + The value extracted from the URLBase element in the Device Description Document of the discovered root device. If the URLBase element in the root device's Device Description Document is empty or absent, the {{datatype}} from which the device description was retrieved (e.g. the LOCATION from the SSDP message) is utilized as the URLBase. + Note: the URLBase element is not recommended by {{bibref|UPnP-DAv1}} and is not permitted by {{bibref|UPnP-DAv11}}, so the value of {{param}} will usually be the URL from which the device description was retrieved. + + + + + + + + The UPnP Device Architecture version extracted from the specVersion element in the Device Description Document of the discovered root device. The {{param}} is encoded as "major revison.minor revision". {{pattern}} + + + + + + + + + + + {{list}} {{reference|the Host table entries associated with the root device from which the device description was retrieved|ignore}} + + + + + + + + + + + + + + + This table contains the information from Device Description Document retrieved for a discovered UPnP root or embedded device. + + + + + + + Unique Device Name of this device represented as a UUID for the device. + This value is extracted from the UDN element in the Device Description Document with the leading uuid: removed. + + + + + + + + {{reference|a {{object}} table entry (if this is an embedded device) or {{empty}} (if this is a root device)}} + + + + + + + + + + + {{reference|a {{object|##.Discovery.RootDevice}} table entry (if this is a root device) or a {{object|##.Discovery.Device}} table entry (if this is an embedded device)}} + This {{param}} value can be {{empty}} because the referenced object has been deleted or the CPE was unable to retrieve the Description Document due to some out-of-band error. The determination to delete this {{object}} or use {{empty}} is implementation specific. + + + + + + + + + + + The value of the UPnP deviceType element in the Device Description Document for this {{object}}, or {{empty}} if this value is not provided by the device. + + + + + + + + + + The value of the UPnP friendlyName element in the Device Description Document for this {{object}}, or {{empty}} if this value is not provided by the device. + + + + + + + + + + Each list item is the value of an element in the Device Description Document for this {{object}} that indicates a device category (e.g. "AV_TV" and "AV_Recorder"), or the value is {{empty}} if no such element is provided by the device. + Note: It is assumed that the ''htip:X_DeviceCategory'' Device Description Document element is used for HTIP (Home-network Topology Identifying Protocol) {{bibref|JJ-300.00}} and {{bibref|G.9973}}. Standard HTIP device categories are defined in {{bibref|JJ-300.01}}. In this case, the maximum length of the list is 127 and of each item is 31, and any non-HTIP device categories SHOULD NOT conflict with standard HTIP device categories. + Note: {{param}} is different from {{param|DeviceType}} and is included here for the purpose of HTIP usage. + + + + + + + + + The value of the UPnP manufacturer element in the Device Description Document for this {{object}}, or {{empty}} if this value is not provided by the device. + + + + + + + + + + The value of an element in the Device Description Document for this {{object}} that indicates the manufacturer OUI if this value is provided by the device; or {{empty}} if this value is not provided by the device. + {{pattern}} + Note: It is assumed that the ''htip:X_ManufacturerOUI'' element is used for HTIP (Home-network Topology Identifying Protocol) {{bibref|JJ-300.00}} and {{bibref|G.9973}}. + + + + + + + + + + + + The value of the UPnP manufacturerURL element in the Device Description Document for this {{object}}, or {{empty}} if this value is not provided by the device. + + + + + + + + The value of the UPnP modelDescription element in the Device Description Document for this {{object}}, or {{empty}} if this value is not provided by the device. + + + + + + + + + + The value of the UPnP modelName element in the Device Description Document for this {{object}}, or {{empty}} if this value is not provided by the device. + + + + + + + + + + The value of the UPnP modelNumber element in the Device Description Document for this {{object}}, or {{empty}} if this value is not provided by the device. + + + + + + + + + + The value of the UPnP modelURL element in the Device Description Document for this {{object}}, or {{empty}} if this value is not provided by the device. + + + + + + + + The value of the UPnP serialNumber element in the Device Description Document for this {{object}}, or {{empty}} if this value is not provided by the device. + + + + + + + + + + The value of the UPnP UPC element in the Device Description Document for this {{object}}, or {{empty}} if this value is not provided by the device. + + + + + + + + + + The value of the UPnP presentationURL element in the Device Description Document for this {{object}} and MUST be an absolute URL. + The way to obtain an absolute URL from the presentationURL element is specified in {{bibref|UPnP-DAv1}} and {{bibref|UPnP-DAv11}}. + If the presentationURL is not provided by the device then this value MUST be {{empty}}. + + + + + + + + + This table contains the information from Device Description Document retrieved for a discovered UPnP service. + + + + + + + + {{reference|a {{object|#.DeviceInstance}} table entry}} + + + + + + + + + + + The value of the UPnP serviceId element in the Device Description Document for this {{object}}, or {{empty}} if this value is not provided by the service. + If the UPnP serviceId is not provided by the UPnP service, this {{object}} MUST be deleted. + + + + + + + + + + {{reference|a {{object|##.Discovery.Service}} table entry}} + This {{param}} value can be {{empty}} because the referenced object has been deleted or the CPE was unable to retrieve the Description Document due to some out-of-band error. The determination to delete this {{object}} or use {{empty}} is implementation specific. + + + + + + + + + + + The value of the UPnP serviceType element in the Device Description Document for this {{object}}, or {{empty}} if this value is not provided by the service. + + + + + + + + + + The value of the UPnP SCPDURL element in the Device Description Document for this {{object}} and MUST be an absolute {{datatype}}. + The way to obtain an absolute URL from the SCPDURL element is specified in {{bibref|UPnP-DAv1}} and {{bibref|UPnP-DAv11}}. + If the SCPDURL is not provided by the device then this value MUST be {{empty}}. + + + + + + + + The value of the UPnP controlURL element in the Device Description Document for this {{object}} and MUST be an absolute {{datatype}}. + The way to obtain an absolute URL from the controlURL element is specified in {{bibref|UPnP-DAv1}} and {{bibref|UPnP-DAv11}}. + If the controlURL is not provided by the device then this value MUST be {{empty}} + + + + + + + + The value of the UPnP eventSubURL element in the Device Description Document for this {{object}} and MUST be an absolute {{datatype}}. + The way to obtain an absolute URL from the eventSubURLL element is specified in {{bibref|UPnP-DAv1}} and {{bibref|UPnP-DAv11}}. + If the eventSubURL is not provided by the device then this value MUST be {{empty}} + + + + + + + + + This object contains all DLNA related objects and parameters. + + + + + DLNA capabilities. + + + + {{list}} Indicates the supported DLNA Home Network Device Classes {{bibref|DLNA-NDIG|Table 4-1}}. + + + + + + + + + + + {{list}} Indicates the supported DLNA Device Capabilities {{bibref|DLNA-NDIG|Table 4-2}}. + + + + + + + + + + + {{list}} Indicates the supported DLNA Home Infrastructure Device Classes {{bibref|DLNA-NDIG|Table 4-4}}. + + + + + + + + + + + {{list}} Indicates the DLNA Image Class Profile IDs supported by this device, from Tables 5-2 and 5-3 of {{bibref|DLNA-NDIG}}. + + + + + + + + + + + {{list}} Indicates the DLNA Audio Class Profile IDs supported by this device, from Tables 5-4 through 5-10 of {{bibref|DLNA-NDIG}}. + + + + + + + + + + + {{list}} Indicates the DLNA AV Class Profile IDs supported by this device, from Tables 5-11 through 5-15 of {{bibref|DLNA-NDIG}}. + + + + + + + + + + + {{list}} Indicates the DLNA Media Collection Profile IDs supported by this device {{bibref|DLNA-NDIG|Table 5-16}}. + + + + + + + + + + + {{list}} Indicates the DLNA Printer Class Profile IDs supported by this device {{bibref|DLNA-NDIG|Table 5-17}}. + + + + + + + + + + + + Firewall configuration object. The {{param|Config}} parameter enables and disables the Firewall, and can select either a predefined configuration ({{enum|High|Config}} or {{enum|Low|Config}}) or an explicitly-defined {{enum|Advanced|Config}} configuration. + For an {{enum|Advanced|Config}} configuration, {{param|AdvancedLevel}} controls the currently active Firewall Level, and the Firewall Levels are defined in the {{object|Level}}, {{object|Chain}} and {{object|Chain.{i}.Rule}} tables. + The Firewall rules modeled by this object operate only on the forwarding path. This means that they affect only routed traffic, and do not affect traffic that is destined for or generated by the CPE. Note that any {{object|#.NAT}} processing on the ingress packet occurs before Firewall rules are applied so, for example, the Firewall rules will see the translated destination IP address and port in a downstream packet that has passed through the NAT. + See {{bibref|TR-181i2|Appendix VIII}} for an example {{enum|Advanced|Config}} configuration. + + + + Enables or disables the Firewall. + Firewalls often implement additional Denial of Service and other vulnerability protections, such as those described in {{bibref|ICSA-Baseline}}. If a {{enum|Stateful|Type}} Firewall is enabled, then it is assumed that all implemented stateful protections are enabled, unless they are overridden by some other part of the data model. + + + + + + + + How this firewall is configured. {{enum}} + Vendors can extend the enumerated values with vendor specific extensions, in which case the rules outlined in {{bibref|TR-106|Section 3.3}} MUST be adhered to. + + + + + + The firewall implements the "Traffic Denied Inbound" and "Minimally Permit Common Services Outbound" components of the ICSA residential certification's Required Services Security Policy {{bibref|ICSA-Residential}}. If DoS and vulnerability protections are implemented {{bibref|ICSA-Baseline}}, these are enabled. + + + + + All Outbound traffic and pinhole-defined Inbound traffic is allowed. If DoS and vulnerability protections are implemented {{bibref|ICSA-Baseline}}, these are enabled. + + + + + All Inbound and Outbound traffic is allowed, and the CPE is only protected by NAT settings (if supported and enabled). If DoS and vulnerability protections are implemented {{bibref|ICSA-Baseline}}, these are disabled. + This value is DEPRECATED because it is the same as setting {{param|Enable}} to {{false}}. + + + + + Advanced firewall configuration applies, as specified by {{param|AdvancedLevel}}. + + + + + + + + Selects the currently active Firewall Level. + {{param}} only applies when {{param|Config}} is {{enum|Advanced|Config}}. + + + + + + + + + + Firewall Type. {{enum}} + A {{enum|Stateless}} Firewall treats each packet individually and thus has no concept of sessions. Therefore a {{enum|Stateless}} Firewall cannot distinguish between unsolicited downstream traffic and downstream traffic in response to outbound messages. This means that it has to accept all incoming downstream traffic. Furthermore, because a {{enum|Stateless}} Firewall treats each packet individually, it does not provide any DoS or vulnerability protections. + A {{enum|Stateful}} Firewall maintains state about previous packets and thus supports sessions. Therefore a {{enum|Stateful}} Firewall can distinguish between solicited and unsolicited downstream traffic. In a {{enum|Stateful}} Firewall, explicitly configured rules only apply to unsolicited traffic, and can not cause packets received in response to an upstream request to be dropped. Furthermore, because a {{enum|Stateful}} Firewall maintains state, it can provide DoS and vulnerability protections. + A device that has a {{enum|Stateless}} Firewall depends on the NAT to provide protection against unsolicited downstream IPv4 traffic. This is because, as noted above, a {{enum|Stateless}} Firewall has to be configured to accept all incoming downstream traffic. For IPv6 there is no NAT, so a {{enum|Stateless}} Firewall can not provide simple security protections against unsolicited downstream IPv6 traffic. + + + + + + The Firewall only implements stateless packet inspection. + + + + + The Firewall implements stateful packet inspection. + + + + + + + + A string identifying the firewall settings version currently used in the CPE, or {{empty}} if the firewall settings are not associated with a version. + + + + + + + + + + The time at which the firewall settings most recently changed. + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + Firewall Level table. When an {{enum|Advanced|#.Config}} configuration is selected, {{param|#.AdvancedLevel}} selects the currently active entry in this table. Each {{object}} table entry references the {{object|#.Chain}} that contains the rules for this level. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Human-readable name associated with this {{object}} entry. + + + + + + + + + + Human-readable description associated with this {{object}} entry. + + + + + + + + + + Position of the {{object}} entry for user interface display; levels can be presented according to an increasing or decreasing level of security. + When this value is modified, if the value matches that of an existing entry, the {{param}} value for the existing entry and all greater-valued {{param}} entries is incremented to ensure uniqueness of this value. A deletion causes {{param}} values to be compacted. When a value is changed, incrementing occurs before compaction. + The value of {{param}} on creation of a {{object}} table entry MUST be one greater than the largest current value. + + + + + + + + + + The Chain containing Firewall Level Rules associated with this {{object}} entry. + On creation of a new {{object}} entry, the device will automatically create a new {{object|#.Chain}} table entry that this {{param}} parameter will reference. + + + + + + + + + + Indicates whether NAT port mapping is enabled or disabled when this is the active Level. For a {{enum|Stateless|#.Type}} Firewall this can be set to {{false}} to force any port mappings to be operationally disabled (for a {{enum|Stateful|#.Type}} Firewall this is not necessary because the same effect can be achieved via Firewall rules). + This parameter affects all the interfaces on which NAT is enabled. It operationally enables or disables port mapping functionality and therefore does not affect the individual {{param|##.NAT.PortMapping.{i}.Enable}} settings. Note that the current NAT status and NAT port mapping status are indicated by the {{param|##.NAT.InterfaceSetting.{i}.Status}} parameter. + + + + + + + + + Default action for packets not matching any of the level rules. {{enum}} + + + + + + The firewall discards packets matching this rule. + + + + + The firewall forwards packets matching this rule. + + + + + The firewall discards packets matching this rule, and sends an ICMP message to the originating host. + + + + + + + + + Enable or disable logging, in a {{object|##.DeviceInfo.VendorLogFile}}, of packets not matching any of the level rules. + + + + + + + + + + Firewall Chain table. Each entry contains an ordered list of {{object|Rule}} objects which can themselves reference other {{object}} instances. A hierarchy of rules can therefore be created. + A given Firewall Chain's rules are all created by the same entity, as indicated by the {{param|Creator}} parameter. + + + + + + + + + + Enables or disables this {{object}} entry. + + + + + + + + + {{datatype|expand}} + + + + + + + + Human-readable name associated with this {{object}} entry. + + + + + + + + + + Creator of this {{object}} entry and of its {{object|Rule}}s. {{enum}} + Note that this is the entity that originally created the {{object}} entry. The value of this parameter does not change if the {{object}} entry or one of its rules is subsequently changed by another entity. + + + + + + The {{object}} entry is present in the factory default configuration. + + + + + The {{object}} entry was created as a side-effect of a {{bibref|UPnP-IGD:1}} or {{bibref|TR-064}} port mapping. + + + + + The {{object}} entry was created by {{bibref|UPnP-IGD:2}} WANIPv6FirewallControl. + + + + + The {{object}} entry was created by the Auto Configuration Server. + + + + + The {{object}} entry was created by device user interface or command line interface. + + + + + The {{object}} entry was created by another entity. + + + + + + + + + {{numentries}} + + + + + + + + + Firewall Rule table. Each entry defines a Firewall packet selection rule. The {{param|Target}} parameter defines the action to perform for traffic matching this rule: the packet can be dropped, accepted, rejected or passed to another {{object|#}}. + This table MUST NOT contain dynamic Firewall rules associated with {{enum|Stateful|##.Type}} Firewall sessions. + All entries are created by the creator of the parent {{object|#}}, as indicated by its {{param|#.Creator}} parameter. {{object}} entries in a {{object|#}} with a {{param|#.Creator}} of {{enum|Defaults|#.Creator}}, {{enum|ACS|#.Creator}}, {{enum|UserInterface|#.Creator}} or (maybe) {{enum|Other|#.Creator}} are referred to as ''Static'' {{object}}s. Whether or not a {{object}} in a {{object|#}} with {{param|#.Creator}} {{enum|Other|#.Creator}} is regarded as ''Static'' is a local matter to the CPE. Some of this object's parameter descriptions refer to whether a {{object}} is ''Static'' when specifying whether or not the parameter value can be modified. + For enabled table entries, if {{param|SourceInterface}} is not a valid reference and {{param|SourceAllInterfaces}} is {{false}}, or if {{param|DestInterface}} is not a valid reference and {{param|DestAllInterfaces}} is {{false}}, then the table entry is inoperable and the CPE MUST set {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + + + + + + + Enables or disables this {{object}} entry. + + + + + + + + + The status of this {{object}} entry. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + Position of the {{object}} entry in the order of precedence. A value of ''1'' indicates the first entry considered (highest precedence). For each packet, the highest ordered entry that matches the rule criteria is applied. All lower order entries are ignored. + When this value is modified, if the value matches that of an existing entry, the {{param}} value for the existing entry and all lower {{param}} entries is incremented (lowered in precedence) to ensure uniqueness of this value. A deletion causes {{param}} values to be compacted. When a value is changed, incrementing occurs before compaction. + The value of {{param}} on creation of a {{object}} table entry MUST be one greater than the largest current value (initially assigned the lowest precedence). + + + + + + + + + + {{datatype|expand}} + + + + + + + + Human-readable description associated with this {{object}} entry. + + + + + + + + + + Action to perform for traffic matching this {{object}} entry. {{enum}} + This parameter can only be modified if the {{object}} is ''Static'' (as explained in the object description). + + + + + + The firewall discards packets matching this rule. + + + + + The firewall forwards packets matching this rule. + + + + + The firewall discards packets matching this rule, and sends an ICMP message to the originating host. + + + + + The firewall doesn't consider the remaining rules (if any) in the current chain. + + + + + The rules in the chain referenced by the {{param|TargetChain}} parameter are matched. + + + + + + + + + Specifies the chain to process when {{param|Target}} equals {{enum|TargetChain|Target}}. If there are no matching rules in the referenced chain, processing continues with the next rule in this chain (if any). In other words, {{enum|TargetChain|Target}} behaves like a subroutine call. + {{empty}} indicates no {{param}} is specified. + This parameter can only be modified if the {{object}} is ''Static'' (as explained in the object description). + + + + + + + + + + + Enable or disable logging, in a {{object|###.DeviceInfo.VendorLogFile}}, of packets matching this {{object}}. + If the {{object}} is not ''Static'' (as explained in the object description), whether changes to this parameter persist across re-boot is a local matter to the CPE. + + + + + + + + + Date and time when this {{object}} entry was created. + + + + + + + + The time at which this {{object}} entry will expire, or {{null}} if not known. For an infinite lifetime, the parameter value MUST be 9999-12-31T23:59:59Z. + The only value that MUST be supported is 9999-12-31T23:59:59Z (i.e. support for rules that expire is OPTIONAL). + When a rule expires, the CPE MUST automatically terminate that rule and MUST automatically delete the corresponding {{object}} table entry. + This parameter can only be modified if the {{object}} is ''Static'' (as explained in the object description). + + + + + + + + + {{object}} criterion. {{reference}} + This specifies the ingress interface associated with the entry. It MAY be a layer 1, 2 or 3 interface, however, the types of interfaces for which Rules can be instantiated is a local matter to the CPE. + This parameter can only be modified if the {{object}} is ''Static'' (as explained in the object description). + + + + + + + + + + + + If {{false}}, the rule matches only those packets that match the {{param|SourceInterface}} entry, if specified. + If {{true}}, the rule matches all packets except those that match the {{param|SourceInterface}} entry, if specified. + This parameter can only be modified if the {{object}} is ''Static'' (as explained in the object description). + + + + + + + + + {{object}} criterion. This specifies that all ingress interfaces are associated with the entry. If {{true}}, the values of {{param|SourceInterface}} and {{param|SourceInterfaceExclude}} are ignored since all ingress interfaces are indicated. + This parameter can only be modified if the {{object}} is ''Static'' (as explained in the object description). + + + + + + + + + {{object}} criterion. {{reference}} + This specifies the egress interface associated with the entry. It MAY be a layer 1, 2 or 3 interface, however, the types of interfaces for which Rules can be instantiated is a local matter to the CPE. + This parameter can only be modified if the {{object}} is ''Static'' (as explained in the object description). + + + + + + + + + + + + If {{false}}, the rule matches only those packets that match the {{param|DestInterface}} entry, if specified. + If {{true}}, the rule matches all packets except those that match the {{param|DestInterface}} entry, if specified. + This parameter can only be modified if the {{object}} is ''Static'' (as explained in the object description). + + + + + + + + + {{object}} criterion. This specifies that all egress interfaces are associated with the entry. If {{true}}, the values of {{param|DestInterface}} and {{param|DestInterfaceExclude}} are ignored since all ingress interfaces are indicated. + This parameter can only be modified if the {{object}} is ''Static'' (as explained in the object description). + + + + + + + + + {{object}} criterion. + IP Protocol Version (e.g. 4 for IPv4 and 6 for IPv6). A value of -1 indicates this criterion is not used for matching. + This parameter can only be modified if the {{object}} is ''Static'' (as explained in the object description). + + + + + + + + + + + {{object}} criterion. + Destination IP address. {{empty}} indicates this criterion is not used for matching. + Note that Firewall rules are applied after any {{object|###.NAT}} processing, so if NAT is enabled on the source interface this is always the translated address. + This parameter can only be modified if the {{object}} is ''Static'' (as explained in the object description). + + + + + + + + + Destination IP address mask, represented as an IP routing prefix using CIDR notation [RFC4632]. The IP address part MUST be {{empty}} (and, if specified, MUST be ignored). + + + + + + + + + If {{false}}, the rule matches only those packets that match the (masked) {{param|DestIP}} entry, if specified. + If {{true}}, the rule matches all packets except those that match the (masked) {{param|DestIP}} entry, if specified. + This parameter can only be modified if the {{object}} is ''Static'' (as explained in the object description). + + + + + + + + + {{object}} criterion. + Source IP address. {{empty}} indicates this criterion is not used for matching. + This parameter can only be modified if the {{object}} is ''Static'' (as explained in the object description). + + + + + + + + + Source IP address mask, represented as an IP routing prefix using CIDR notation [RFC4632]. The IP address part MUST be {{empty}} (and, if specified, MUST be ignored). + + + + + + + + + If {{false}}, the rule matches only those packets that match the (masked) {{param|SourceIP}} entry, if specified. + If {{true}}, the rule matches all packets except those that match the (masked) {{param|SourceIP}} entry, if specified. + This parameter can only be modified if the {{object}} is ''Static'' (as explained in the object description). + + + + + + + + + {{object}} criterion. + Protocol number. A value of -1 indicates this criterion is not used for matching. + This parameter can only be modified if the {{object}} is ''Static'' (as explained in the object description). + + + + + + + + + + + If {{false}}, the rule matches only those packets that match the {{param|Protocol}} entry, if specified. + If {{true}}, the rule matches all packets except those that match the {{param|Protocol}} entry, if specified. + This parameter can only be modified if the {{object}} is ''Static'' (as explained in the object description). + + + + + + + + + {{object}} criterion. + Destination port number. A value of -1 indicates this criterion is not used for matching. + Note that Firewall rules are applied after any {{object|###.NAT}} processing, so if NAT is enabled on the source interface this is always the translated port number. + This parameter can only be modified if the {{object}} is ''Static'' (as explained in the object description). + + + + + + + + + + + {{object}} criterion. + If specified, indicates the {{object}} criterion is to include the port range from {{param|DestPort}} through {{param}} (inclusive). If specified, {{param}} MUST be greater than or equal to {{param|DestPort}}. + A value of -1 indicates that no port range is specified. + Note that Firewall rules are applied after any {{object|###.NAT}} processing, so if NAT is enabled on the source interface this is always the translated port number. + This parameter can only be modified if the {{object}} is ''Static'' (as explained in the object description). + + + + + + + + + + + If {{false}}, the rule matches only those packets that match the {{param|DestPort}} entry (or port range), if specified. + If {{true}}, the rule matches all packets except those that match the {{param|DestPort}} entry (or port range), if specified. + This parameter can only be modified if the {{object}} is ''Static'' (as explained in the object description). + + + + + + + + + {{object}} criterion. + Source port number. A value of -1 indicates this criterion is not used for matching. + This parameter can only be modified if the {{object}} is ''Static'' (as explained in the object description). + + + + + + + + + + + {{object}} criterion. + If specified, indicates the {{object}} criterion is to include the port range from {{param|SourcePort}} through {{param}} (inclusive). If specified, {{param}} MUST be greater than or equal to {{param|SourcePort}}. + A value of -1 indicates that no port range is specified. + This parameter can only be modified if the {{object}} is ''Static'' (as explained in the object description). + + + + + + + + + + + If {{false}}, the rule matches only those packets that match the {{param|SourcePort}} entry (or port range), if specified. + If {{true}}, the rule matches all packets except those that match the {{param|SourcePort}} entry (or port range), if specified. + This parameter can only be modified if the {{object}} is ''Static'' (as explained in the object description). + + + + + + + + + {{object}} criterion. + DiffServ codepoint (defined in {{bibref|RFC2474}}). + If set to a Class Selector Codepoint (defined in {{bibref|RFC2474}}), all DSCP values that match the first 3 bits will be considered a valid match. + A value of -1 indicates this criterion is not used for matching. + This parameter can only be modified if the {{object}} is ''Static'' (as explained in the object description). + + + + + + + + + + + If {{false}}, the rule matches only those packets that match the {{param|DSCP}} entry, if specified. + If {{true}}, the rule matchess all packets except those that match the {{param|DSCP}} entry, if specified. + This parameter can only be modified if the {{object}} is ''Static'' (as explained in the object description). + + + + + + + + + + This object configures collection of periodic statistics for the device. + Periodic statistics are measured over a sample interval (which can be aligned with absolute time) and are made available to the Controller as a comma-separated list of the most recent <n> samples. + This object provides a single set of global settings that affect the entire device unless overridden locally. + + + + Minimum sample interval in {{units}} that the CPE is able to support. + A value of 0 indicates no specific minimum sample interval. + + + + + + + + + + Maximum number of samples of each statistic that the CPE is able to store and report. + A value of 0 indicates no specific maximum number of samples. + + + + + + + + {{numentries}} + + + + + + + + + Periodic statistics sample set table. Each sample set has its own sample interval etc. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Enables or disables collection of periodic statistics for this sample set. + When collection of periodic statistics is enabled, any stored samples are discarded, and the first sample interval begins immediately. + + + + + + + + + Indicates availability of Sample statistics. {{enum}} + The {{enum|Trigger}} value is only used for triggering the Controller to fetch the collected data and can only be used when {{param|FetchSamples}} is in the range [1:{{param|ReportSamples}}]. + The transition from {{enum|Enabled}} to {{enum|Trigger}} to {{enum|Enabled}} MUST be instantaneous and so will result in only a single value change for notification purposes. + + + + + + Collection is disabled. + + + + + Collection is enabled. + + + + + Collection is enabled and the Controller SHOULD now fetch the collected data. + + + + + + + + + The name of this sample set, which uniquely distinguishes each sample set. + + + + + + + + + + + The sample interval in {{units}}. Each statistic is measured over this sample interval. + The CPE MAY reject a request to set {{param}} to less than {{param|.PeriodicStatistics.MinSampleInterval}}. + Sample intervals MUST begin every {{param}} {{units}}, with no delay between samples. + If {{param}} is changed while collection of periodic statistics is enabled, any stored samples are discarded, and the first sample interval begins immediately. + For example, if {{param|ReportSamples}} is 24 and {{param}} is 3600 (an hour), the CPE can store up to a day's worth of samples for each statistic. + + + + + + + + + + + + The number of samples that the CPE will store and report for each statistic. + The CPE MUST permit {{param}} to be set to at least {{param|.PeriodicStatistics.MaxReportSamples}}. + If {{param}} is changed while collection of periodic statistics is enabled, the CPE will truncate or extend its statistics buffers as appropriate, but statistics collection MUST NOT otherwise be affected. + For example, if {{param}} is 24 and {{param|SampleInterval}} is 3600 (an hour), the CPE can store up to a day's worth of samples for each statistic. + + + + + + + + + + + An absolute time reference in UTC to determine when sample intervals will complete. Each sample interval MUST complete at this reference time plus or minus an integer multiple of {{param|SampleInterval}}. + {{param}} is used only to set the "phase" of the sample and fetch intervals. The actual value of {{param}} can be arbitrarily far into the past or future. + This time reference also determines when the {{param|Status}} {{enum|Enabled|Status}} to {{enum|Trigger|Status}} to {{enum|Enabled|Status}} transitions that are controlled by {{param|FetchSamples}} will occur. If collection of periodic statistics is enabled and {{param|FetchSamples}} is in the range [1:{{param|ReportSamples}}] then each such {{param|Status}} transition MUST occur at this reference time plus or minus an integer multiple of {{param|FetchSamples}} * {{param|SampleInterval}} (the fetch interval). + If {{param}} is changed while collection of periodic statistics is enabled, any stored samples are discarded, and the first sample interval begins immediately. + The Unknown Time value defined in {{bibref|TR-106}} indicates that no particular time reference is specified. That is, the CPE MAY locally choose the time reference, and is required only to adhere to the specified sample and fetch intervals. + If absolute time is not available to the CPE, its sample and fetch interval behavior MUST be the same as if the {{param}} parameter was set to the Unknown Time value. + For example, if {{param|SampleInterval}} is 3600 (an hour) and if {{param}} is set to UTC midnight on some day (in the past, present, or future) then sample intervals will complete on each UTC hour (00:00, 01:00, 02:00 etc). + If, in addition, {{param|FetchSamples}} is 24, then the fetch interval is 86400 (a day) and {{param|Status}} {{enum|Enabled|Status}} to {{enum|Trigger|Status}} to {{enum|Enabled|Status}} transitions will occur every day at UTC midnight. + Note that, if {{param}} is set to a time other than the Unknown Time, the first sample interval (which has to begin immediately) will almost certainly be shorter than {{param|SampleInterval}}). This is why {{param}} is defined in terms of when sample intervals complete rather than start. + + + + + + + + + The number of sample intervals to be collected before transitioning {{param|Status}} from {{enum|Enabled|Status}} to {{enum|Trigger|Status}} to {{enum|Enabled|Status}}. + If this SampleSet is enabled and {{param}} is in the range [1:{{param|ReportSamples}}] then {{param|Status}} MUST transition from {{enum|Enabled|Status}} to {{enum|Trigger|Status}} to {{enum|Enabled|Status}} on completion of every {{param}} sample intervals. Otherwise, the transition MUST NOT occur. + For example, if {{param|ReportSamples}} is 25 and {{param}} is 24, then the CPE will store 25 values for each monitored parameter and the above {{param|Status}} transition will occur as the CPE stores each 24th of 25 sample intervals, which means that the Controller could delay for up to two sample intervals before reading the stored values and would still not miss any samples (see also {{param|ForceSample}}). + To disable this trigger mechanism and still collect sampled statistics, {{param}} can be set to either 0 or a value greater than {{param|ReportSamples}}. + + + + + + + + + The absolute time at which the sample interval for the first stored sample (for each statistic) started. + + + + + + + + + The absolute time at which the sample interval for the last stored sample (for each statistic) ended. + If {{param|ForceSample}} has been used to force statistics for the current sample to be calculated and updated in the data model, then {{param}} MUST be updated to reflect the actual time over which stored data was collected. + + + + + + + + + {{list}} Each entry indicates the number of {{units}} during which data was collected during the sample interval. + Individual {{param}} values can be less than {{param|SampleInterval}}, for several reasons, including: + : {{param|TimeReference}} has been set to a time other than the Unknown Time and the current sample interval started part of the way through a scheduled sample interval. + : {{param|ForceSample}} has been used to force statistics for the current sample to be calculated and updated in the data model. + + + + + + + + + + + + {{numentries}} + + + + + + + + Force statistics for the current sample to be calculated and updated in the data model. + If this is the first time that this command is called during the current sample interval, this MUST cause a new value to be added to each of the periodic statistics comma-separated list parameters, and the {{param|ReportEndTime}} and all {{param|SampleSeconds}} parameters MUST be updated accordingly. + If this is not the first time that this command is during the current sample interval, then the new values that were added as described in the previous paragraph, and the {{param|ReportEndTime}} and all {{param|SampleSeconds}} parameters, MUST be updated accordingly. + Note that {{param}} just provides a "sneak preview" of the current sample. It does not create a new sample and it does not interfere with the sample interval schedule. + At the end of each sample interval, if this command was executed during the sample interval then the new values that were added as described above, and the {{param|ReportEndTime}} and all {{param|SampleSeconds}} parameters, will be updated accordingly. In other words, the partial sample data that was created when the command was executed will be updated one last time at the end of the sample interval. + + + + + + Periodic statistics parameter table for this sample set. This table contains entries for parameters whose values are to be sampled. + Note that the comma-separated lists in this object (SampleSeconds, SuspectData and Values) only ever change (a) when first enabled, (b) when ForceSample is set to true (a "sneak preview" of the current sample), or (c) at the end of the sample interval. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Enables or disables this object instance. + + + + + + + + + {{reference}} This is the parameter being monitored by the Periodic Statistics mechanism. + + + + + + + + + + + + Controls how this parameter's value is sampled. {{enum}} + Parameters of non-numeric types can only support {{enum|Current}}. The value of the {{param}} MUST be ignored for such parameters. + + + + + + Sampled value is current value + + + + + Sampled value is change in value since start of sample interval + + + + + + + + + Controls how this parameter's statistic is calculated from the sampled value(s). {{enum}} + Parameters of non-numeric types can only support {{enum|Latest}}. The value of the {{param}} MUST be ignored for such parameters. + {{param|SampleMode}} MUST be applied before {{param}}, i.e. the inputs to the calculation will have already accounted for {{param|SampleMode}}. + + + + + + Statistic is sampled value at end of sample interval + + + + + Statistic is minimum sampled value during sample interval + + + + + Statistic is maximum sampled value during sample interval + + + + + Statistic is average (mean) sampled value during sample interval + + + + + + + + + The low threshold value that controls the calculation of {{param|Failures}}. + A value equal to {{param|HighThreshold}} disables the threshold/failure mechanism. + Parameters of non-numeric types cannot support the threshold/failure mechanism. The value of this parameter MUST be ignored for such parameters. + + + + + + + + + The high threshold value that controls the calculation of {{param|Failures}}. + A value equal to {{param|LowThreshold}} disables the threshold/failure mechanism. + Parameters of non-numeric types cannot support the threshold/failure mechanism. The value of this parameter MUST be ignored for such parameters. + + + + + + + + + {{list}} Each entry indicates the number of {{units}} during which data was collected for this parameter during the sample interval. + Individual {{param}} values can be less than {{param|.PeriodicStatistics.SampleSet.{i}.SampleInterval}}, for several reasons, including: + : Any of the reasons for which {{param|.PeriodicStatistics.SampleSet.{i}.SampleSeconds}} values might be less than {{param|.PeriodicStatistics.SampleSet.{i}.SampleInterval}}. + : The parameter doesn't exist, or was created or deleted during a sample interval. + + + + + + + + + + + + {{list}} Each entry is 0 if the sampled value is believed to be valid, or 1 if an event that might affect the validity of the sampled value occurred during the sample interval. + For example, if the parameter value were to be reset during the sample interval then it would be appropriate to set {{param}} to 1. + + + + + + + + + + + + {{list}} Each entry indicates the value of the referenced parameter, as determined by {{param|SampleMode}}, during the sample interval. + The statistics values in this comma-separated lists MUST be in time order, with the oldest one first and the most recent one last. + If the {{param|SampleMode}} parameter is not present, or is inappropriate for the referenced parameter, the statistics values MUST be collected in Current mode. + + + + + + + + + + Counts the number of times (since this object instance was last enabled) that a newly-calculated sample value (accounting for {{param|SampleMode}}) transitioned from the "in range" state to the "out of range" state, or between the "out of range (low)" and "out of range (high)" states. The states are defined as follows: + * "in range" : current value is greater than {{param|LowThreshold}} and less than {{param|HighThreshold}}. + * "out of range" : current value is less than or equal to {{param|LowThreshold}}, or greater than or equal to {{param|HighThreshold}}. + * "out of range (low)" : current value is less than or equal to {{param|LowThreshold}}. + * "out of range (high)" : current value is greater than or equal to {{param|HighThreshold}}. + Note that, if {{param|LowThreshold}} and {{param|HighThreshold}} are both the same, the threshold/failure mechanism is disabled, so the value of this parameter will not increment. + This parameter can be incremented at any time during a sample interval, and might be incremented more than once during a single sample interval. For this reason, the CPE SHOULD place a locally specified limit on the frequency at which it will notify the Controller of such changes. + Parameters of non-numeric types cannot support the threshold/failure mechanism. The value of this parameter MUST be ignored for such parameters. + + + + + + + + + + This object contains parameters relating to Fault/Alarm Management. + + + + {{numentries}} + + + + + + + + The maximum number of entries allowed in the {{object|.FaultMgmt.CurrentAlarm.{i}.}} table. + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + Supported Alarm Entries which can be raised by the device. + The instance numbers for this table SHOULD be maintained across firmware upgrades of the device. + + + + + + + + + + Indicates the type of event. + + + + + + + + + + Qualifies the alarm and provides further information than {{param|EventType}}. + + + + + + + + + + Provides further qualification on the alarm beyond {{param|EventType}} and {{param|ProbableCause}}. + This is vendor defined and will be {{empty}} if the device doesn't support unique indexing of the table using {{param}}. + The string can be set to "*" to indicate the default case if only a subset of {{param}} are to be contained within the table. + + + + + + + + + + Indicates the relative level of urgency for operator attention, see {{bibref|ITU-X.733}}. {{enum}} + This will be {{empty}} if the device doesn't support unique indexing of the table using {{param}}. + The string can be set to "*" to indicate the default case if only a subset of {{param}} are to be contained within the table. + + + + + + {{empty}} + + + + + + + + + + + + + + + Indicates the reporting mechanism setting of the alarm. {{enum}} + + + + + + The device inserts the alarm into the {{object|.FaultMgmt.ExpeditedEvent.{i}.}} table and the {{object|.FaultMgmt.ExpeditedEvent.{i}.}} table. + + + + + The device inserts the alarm into the {{object|.FaultMgmt.QueuedEvent.{i}.}} table and the {{object|.FaultMgmt.QueuedEvent.{i}.}} table. + + + + + The device inserts the alarm into the {{object|.FaultMgmt.HistoryEvent.{i}.}} table. + + + + + The device ignores the alarm. + + + + + + + + + Contains all currently active alarms (whose {{param|.FaultMgmt.SupportedAlarm.{i}.PerceivedSeverity}} is not {{enum|Cleared|.FaultMgmt.SupportedAlarm.{i}.PerceivedSeverity}}). + Newly raised alarms result in a new entry in this table being added, any changes to the alarm as a result of an update event are updated in the existing table entry, and a clear event raised against an alarm results in the alarm being removed from this table. + If maximum entries as indicated by {{param|.FaultMgmt.MaxCurrentAlarmEntries}} is reached, the next event overrides the object with the oldest {{param|AlarmChangedTime}}. + When a new alarm replaces an existing alarm, then all parameter values for that instance are considered as changed for the purposes of value change notifications to the Controller (even if their new values are identical to those of the prior alarm). + + + + + + + + + + + + Identifies one Alarm Entry in the Alarm List. This value MUST be uniquely allocated by the device to the alarm instance during the lifetime of the individual alarm. + + + + + + + + + + Indicates the date and time when the alarm was first raised by the device. + + + + + + + + Indicates the date and time when the alarm was last changed by the device. + + + + + + + + Specifies the instance of the Informational Object Class in which the alarm occurred by carrying the Distinguished Name (DN) of this object instance. The format of the DN is specific to the application that is using this {{object}}. + + + + + + + + + + Indicates the type of event. + + + + + + + + + + Qualifies the alarm and provides further information than {{param|EventType}}. + + + + + + + + + + Provides further qualification on the alarm beyond {{param|EventType}} and {{param|ProbableCause}}. + This is vendor defined and will be {{empty}} if the device doesn't support inclusion of this information. + + + + + + + + + + Indicates the relative level of urgency for operator attention, see {{bibref|ITU-X.733}}. {{enum}} + + + + + + + + + + + + + + This provides a textual string which is vendor defined. + This will be {{empty}} if the device doesn't support inclusion of this information. + + + + + + + + + + This contains additional information about the alarm and is vendor defined. + + + + + + + + + + + Alarm events added or updated in {{object|.FaultMgmt.CurrentAlarm.{i}.}} are simultaneously entered into the this table. This table also contains alarm clearing events. + Active alarms at the time of a power failure or reboot might not get an alarm clearing event. + This object has a fixed number of entries with instance numbers from 1 to {{param|.FaultMgmt.HistoryEventNumberOfEntries}}. + If maximum instance number {{param|.FaultMgmt.HistoryEventNumberOfEntries}} is reached, the next event overrides the object with instance number 1. Subsequent entries override objects at sequentially increasing instance numbers. This logic provides for automatic "rolling" of records. + + + + + + + + Indicates the date and time when the alarm event occurs. + + + + + + + + Identifies one Alarm Entry in the Alarm List. This value MUST be uniquely allocated by the device to the alarm instance during the lifetime of the individual alarm. + + + + + + + + + + Indicates the reason for the specific alarm notification event. {{enum}} + + + + + + + + + + + + Specifies the instance of the Informational Object Class in which the alarm occurred by carrying the Distinguished Name (DN) of this object instance. The format of the DN is specific to the application that is using this {{object}}. + + + + + + + + + + Indicates the type of event. + + + + + + + + + + Qualifies the alarm and provides further information than {{param|EventType}}. + + + + + + + + + + Provides further qualification on the alarm beyond {{param|EventType}} and {{param|ProbableCause}}. + This is vendor defined and will be {{empty}} if the device doesn't support inclusion of this information. + + + + + + + + + + Indicates the relative level of urgency for operator attention, see {{bibref|ITU-X.733}}. {{enum}} + + + + + + + + + + + + + + + This provides a textual string which is vendor defined. + This will be {{empty}} if the device doesn't support inclusion of this information. + + + + + + + + + + This contains additional information about the alarm and is vendor defined. + + + + + + + + + + + Alarm events added or updated in {{object|.FaultMgmt.CurrentAlarm.{i}.}} are simultaneously entered into the this table if their corresponding entry in {{object|.FaultMgmt.SupportedAlarm.{i}.}} has {{param|.FaultMgmt.SupportedAlarm.{i}.ReportingMechanism}} set to {{enum|0 Expedited|.FaultMgmt.SupportedAlarm.{i}.ReportingMechanism}}. This table also contains alarm clearing events. + This object has a fixed number of entries with instance numbers from 1 to {{param|.FaultMgmt.ExpeditedEventNumberOfEntries}}. + Initially the table starts with all instances having {{param|EventTime}} set to the Unknown Time value, as defined in {{bibref|TR-106}}. + If maximum instance number {{param|.FaultMgmt.ExpeditedEventNumberOfEntries}} is reached, the next event overrides the object with instance number 1. Subsequent entries override objects at sequentially increasing instance numbers. This logic provides for automatic "rolling" of records. + When a new alarm replaces an existing alarm, then all parameter values for that instance are considered as changed for the purposes of value change notifications to the Controller (even if their new values are identical to those of the prior alarm). + + + + + + + Indicates the date and time when the alarm event occurs. + For an unpopulated entry, the value is the Unknown Time as defined in {{bibref|TR-106}}. + + + + + + + + Identifies one Alarm Entry in the Alarm List. This value MUST be uniquely allocated by the device to the alarm instance during the lifetime of the individual alarm. + For an unpopulated entry, the value is {{empty}}. + + + + + + + + + + Indicates the reason for the specific alarm notification event. {{enum}} + + + + + + + + + + + + Specifies the instance of the Informational Object Class in which the alarm occurred by carrying the Distinguished Name (DN) of this object instance. The format of the DN is specific to the application that is using this {{object}}. + + + + + + + + + + Indicates the type of event. + + + + + + + + + + Qualifies the alarm and provides further information than {{param|EventType}}. + + + + + + + + + + Provides further qualification on the alarm beyond {{param|EventType}} and {{param|ProbableCause}}. + This is vendor defined and will be {{empty}} if the device doesn't support inclusion of this information. + + + + + + + + + + Indicates the relative level of urgency for operator attention, see {{bibref|ITU-X.733}}. {{enum}} + + + + + + + + + + + + + + + This provides a textual string which is vendor defined. + This will be {{empty}} if the device doesn't support inclusion of this information. + + + + + + + + + + This contains additional information about the alarm and is vendor defined. + + + + + + + + + + + Alarm events added or updated in {{object|.FaultMgmt.CurrentAlarm.{i}.}} are simultaneously entered into the this table if their corresponding entry in {{object|.FaultMgmt.SupportedAlarm.{i}.}} has {{param|.FaultMgmt.SupportedAlarm.{i}.ReportingMechanism}} set to {{enum|1 Queued|.FaultMgmt.SupportedAlarm.{i}.ReportingMechanism}}. This table also contains alarm clearing events. + This object has a fixed number of entries with instance numbers from 1 to {{param|.FaultMgmt.QueuedEventNumberOfEntries}}. + Initially the table starts with all instances having {{param|EventTime}} set to the Unknown Time value, as defined in {{bibref|TR-106}}. + If maximum instance number {{param|.FaultMgmt.QueuedEventNumberOfEntries}} is reached, the next event overrides the object with instance number 1. Subsequent entries override objects at sequentially increasing instance numbers. This logic provides for automatic "rolling" of records. + When a new alarm replaces an existing alarm, then all parameter values for that instance are considered as changed for the purposes of value change notifications to the Controller (even if their new values are identical to those of the prior alarm). + + + + + + + Indicates the date and time when the alarm event occurs. + For an unpopulated entry, the value is the Unknown Time as defined in {{bibref|TR-106}}. + + + + + + + + Identifies one Alarm Entry in the Alarm List. This value MUST be uniquely allocated by the device to the alarm instance during the lifetime of the individual alarm. + For an unpopulated entry, the value is {{empty}}. + + + + + + + + + + Indicates the reason for the specific alarm notification event. {{enum}} + + + + + + + + + + + + Specifies the instance of the Informational Object Class in which the alarm occurred by carrying the Distinguished Name (DN) of this object instance. The format of the DN is specific to the application that is using this {{object}}. + + + + + + + + + + Indicates the type of event. + + + + + + + + + + Qualifies the alarm and provides further information than {{param|EventType}}. + + + + + + + + + + Provides further qualification on the alarm beyond {{param|EventType}} and {{param|ProbableCause}}. + This is vendor defined and will be {{empty}} if the device doesn't support inclusion of this information. + + + + + + + + + + Indicates the relative level of urgency for operator attention, see {{bibref|ITU-X.733}}. {{enum}} + + + + + + + + + + + + + + + This provides a textual string which is vendor defined. + This will be {{empty}} if the device doesn't support inclusion of this information. + + + + + + + + + + This contains additional information about the alarm and is vendor defined. + + + + + + + + + + + This object contains general information related to managing security features on the device. + + + + {{numentries}} + + + + + + + + + This table provides information about all types of public key-based credentials, such as X.509 certificates, see {{bibref|RFC5280}}. + + + + + + + + Enables or disables this certificate. + + + + + + + + The last modification time of this certificate. + + + + + + + + The Serial Number field in an X.509 certificate, see {{bibref|RFC5280}}. + + + + + + + + + + The Issuer field in an X.509 certificate, see {{bibref|RFC5280}}; i.e. the Distinguished Name (DN) of the entity who has signed the certificate. + + + + + + + + + + The beginning of the certificate validity period; i.e. the Not Before field in an X.509 certificate, see {{bibref|RFC5280}}. + + + + + + + + The end of the certificate validity period; i.e., the Not After field in an X.509 certificate, see {{bibref|RFC5280}}. + + + + + + + + The Distinguished Name (DN) of the entity associated with the Public Key; i.e., the Subject field in an X.509 certificate, see {{bibref|RFC5280}}. + + + + + + + + + + {{list}} Each item is a DNS Name. + The Subject Alternative Names extension field in an X.509 certificate, see {{bibref|RFC5280}}. + + + + + + + + + + + The algorithm used in signing the certificate; i.e. the Signature Algorithm field in an X.509 certificate, see {{bibref|RFC5280}}. + + + + + + + + + + + This object is the container for all Femto related component objects, to prevent pollution of the so-called global namespace of the BBF with FAP specific objects. + + + + + This object contains the parameters relating to the GPS scan. + + + + Enables or disables GPS scans during the device start up. + + + + + + + + + Enables or disables periodic GPS scans. + + + + + + + + + When {{param|ScanPeriodically}} is {{true}}, this value indicates the interval in {{units}} which GPS scan is performed. + + + + + + + + + + An absolute time reference in UTC to determine when the CPE will initiate the periodic GPS scan. Each GPS scan MUST occur at (or as soon as possible after) this reference time plus or minus an integer multiple of the {{param|PeriodicInterval}}. + {{param}} is used only to set the "phase" of the GPS scan. The actual value of {{param}} can be arbitrarily far into the past or future. + For example, if {{param|PeriodicInterval}} is 86400 (a day) and if {{param}} is set to UTC midnight on some day (in the past, present, or future) then periodic GPS scans will occur every day at UTC midnight. These MUST begin on the very next midnight, even if {{param}} refers to a day in the future. + The Unknown Time value defined in {{bibref|TR-106|Section 3.2}} indicates that no particular time reference is specified. That is, the CPE MAY locally choose the time reference, and needs only to adhere to the specified PeriodicInformInterval. + If absolute time is not available to the CPE, its periodic GPS scan behavior MUST be the same as if {{param}} parameter was set to the Unknown Time value. + + + + + + + + Whether or not the device SHOULD maintain a continuous GPS lock (e.g. as a frequency stability source). + + + + + + + + Specifies the time-out value in {{units}} since the scan started after which the scan will time out. A timed out scan is to be reported as {{enum|Error_TIMEOUT|ScanStatus}} with {{param|ErrorDetails}} indicating "Timed out" + + + + + + + + + + Indicates the current status of this scan. + + + + + + The scan has not been executed and there are no valid scan results available + + + + + + + + + + + + Provides more detail when the {{param|ScanStatus}} is either {{enum|Error|ScanStatus}} or {{enum|Error_TIMEOUT|ScanStatus}}. + + + + + + + + + + The date and time when the last GPS scan completed. + + + + + + + + Specifies the date and time, when the GPS scan last completed successfully. + This value is retained across reboot and is only reset after another scan completes successfully or {{param|GPSReset}} is set to {{true}}. + The values for {{param|LockedLatitude}}, {{param|LockedLongitude}} and {{param|NumberOfSatellites}} correspond to this time. If a scan has never succeeded before, the value will be the Unknown Time value, as defined in {{bibref|TR-106|Section 3.2}}. + + + + + + + + This parameter specifies the latitude of the device's position in degrees, multiplied by 1 million. The positive value signifies the direction, north of the equator. The negative value signifies the direction, south of the equator. + Range is from: 90d00.00' South (-90,000,000) to 90d00.00' North (90,000,000). + Example: A latitude of 13d19.43' N would be represented as 13,323,833, derived as (13*1,000,000)+((19.43*1,000,000)/60). Latitude of 50d00.00' S would be represented as value -50,000,000. + This value is retained across reboots and is only reset after another scan completes successfully or {{param|GPSReset}} is set to {{true}}. If a scan has never succeeded before, the value 0 is reported. + + + + + + + + + + This parameter specifies the longitude of the device's position in degrees, multiplied by 1 million. The positive value signifies the direction, east of the prime meridian. The negative value signifies the direction, west of the prime meridian. + Range is from: 180d00.00' West (-180,000,000) to 180d00.00' East (180,000,000). + Example: A longitude of 13d19.43' E would be represented as 13,323,833, derived as (13*1,000,000)+((19.43*1,000,000)/60). A longitude of 50d00.00' W would be represented as value -50,000,000. + This value is retained across reboots and is only reset after another scan completes successfully or {{param|GPSReset}} is set to {{true}}. If a scan has never succeeded before, the value 0 is reported. + + + + + + + + + + The number of satellites that were locked during the test execution. The greater the number of satellites the better the precision of the results. + This value is retained across reboots and is only reset after another scan completes successfully or {{param|GPSReset}} is set to {{true}}. If a scan has never succeeded before, the value 0 is reported. + + + + + + + + Reset the GPS Hardware. + + + + + + When {{param|#.ContinuousGPS}} is {{true}}, the parameters in this object contain the GPS status as it is continuously monitored. + When {{param|#.ContinuousGPS}} is {{false}}, the parameters in this object are not being updated and their values are not accurate. + + + + The value is {{true}} if the location fix is currently valid (i.e. GPS receiver is currently tracking satellite signals), otherwise it is {{false}}. After a reboot the value is {{false}} until the GPS receivers has a valid current position. + + + + + + + + The value is {{true}} if {{param|CurrentFix}} has transitioned to {{true}} at least once since {{param|#.ContinuousGPS}} was enabled, otherwise it is {{false}}. After a reboot the value is {{false}} until {{param|CurrentFix}} has transitioned to {{true}} again. + The GPS coordinates ({{param|Latitude}}, {{param|Longitude}}, and {{param|Elevation}}) are not valid until {{param}} has a value of {{true}}. + + + + + + + + The value is {{true}} if the timing synchronization is good, otherwise it is {{false}}. After a reboot the value is {{false}} until the timing is synchronized again. + + + + + + + + This parameter represents the most recent latitude reading for the device's position in degrees, multiplied by 1 million. The positive value signifies the direction, north of the equator. The negative value signifies the direction, south of the equator. + Range is from: 90 deg 00.00' South (-90,000,000) to 90 deg 00.00' North (90,000,000). + Example: A latitude of 13 deg 19.43' N would be represented as 13,323,833, derived as (13*1,000,000)+((19.43*1,000,000)/60). Latitude of 50 deg 00.00' S would be represented as value -50,000,000. + {{param}} is not valid until {{param|GotFix}} is {{true}}. + If the parameter has never been set before, the value 0 is reported. The value SHOULD be maintained over a reboot. + + + + + + + + + + This parameter represents the most recent longitude reading for the device's position in degrees, multiplied by 1 million. The positive value signifies the direction, east of the prime meridian. The negative value signifies the direction, west of the prime meridian. + Range is from: 180d00.00' West (-180,000,000) to 180d00.00' East (180,000,000). + Example: A longitude of 13d19.43' E would be represented as 13,323,833, derived as (13*1,000,000)+((19.43*1,000,000)/60). A longitude of 50d00.00' W would be represented as value -50,000,000. + {{param}} is not valid until {{param|GotFix}} is {{true}}. + If the parameter has never been set before, the value 0 is reported. The value SHOULD be maintained over a reboot. + + + + + + + + + + This parameter represents the most recent elevation reading for the device's position in {{units}}, relative to the WGS84 ellipsoid. The positive value signifies the direction, above sea level. The negative value signifies the direction, below sea level. + Range is from: 5,000.000 meters below sea level (-5,000,000) to 25,000.000 meters above sea level (25,000,000). + {{param}} is not valid until {{param|GotFix}} is {{true}}. + If the parameter has never been set before, the value 0 is reported. The value SHOULD be maintained over a reboot. + + + + + + + + + + + Represents the date and time when the last GPS Fix was acquired. + The Unknown Time value defined in {{bibref|TR-106|Section 3.2}} is used when {{param|GotFix}} is {{false}}. This applies too after a reboot of the device until a valid location is determined and {{param|GotFix}} transsitions to {{true}}. + + + + + + + + Number of {{units}} of continuous GPS fix time. After a reboot this value is reset to 0. + + + + + + + + + + Number of {{units}} to wait for first GPS fix before declaring a GPS fault. + A value of -1 means that there is no timeout and no fault logging. + + + + + + + + + + + The number of satellites the receiver is tracking. + + + + + + + + The interval in {{units}} at which the GPS tracking information gets reported. + + + + + + + + + + + The output of the GPS receiver's status. + + + + + + + + + + Indicates whether the {{param|Latitude}}, {{param|Longitude}}, and {{param|Elevation}} values are determined via a GPS Fix (where the value of this parameter would be {{enum|Real}}) or via some other means (where the value of this parameter would be {{enum|Reference}}). + + + + + + + + + + + The timer duration, in {{units}}, for which the device waits for GPS to acquire lock. + + + + + + + + + + + + This object contains parameters for the configuration of the Assisted Global Positioning System (A-GPS) server. See also {{bibref|3GPP-TS.25.171|Section 3.2}} + + + + Enables or disables the {{object}} entry. + + + + + + + + A-GPS server host name or IP address. + + + + + + + + + + The port to use when communicating to the A-GPS Server. + + + + + + + + + + Username to be used by the device to authenticate with the A-GPS server. This string is set to {{empty}} if no authentication is used. + + + + + + + + + + Password to be used by the device to authenticate with the A-GPS server. This string is set to {{empty}} if no authentication is used. + + + + + + This parameter specifies the reference latitude for an A-GPS request position in degrees, multiplied by 1 million. The positive value signifies the direction, north of the equator. The negative value signifies the direction, south of the equator. + Range is from: 90d00.00' South (-90,000,000) to 90d00.00' North (90,000,000). + Example: A latitude of 13d19.43' N would be represented as 13,323,833, derived as (13*1,000,000)+((19.43*1,000,000)/60). Latitude of 50d00.00' S would be represented as value -50,000,000. + + + + + + + + + + This parameter specifies the reference longitude for an A-GPS request position in degrees, multiplied by 1 million. The positive value signifies the direction, east of the prime meridian. The negative value signifies the direction, west of the prime meridian. + Range is from: 180d00.00' West (-180,000,000) to 180d00.00' East (180,000,000). + Example: A longitude of 13d19.43' E would be represented as 13,323,833, derived as (13*1,000,000)+((19.43*1,000,000)/60). A longitude of 50d00'00'' W would be represented as value -50,000,000. + + + + + + + + + + The value is {{true}} if the device has successfully contacted and received A-GPS info from the A-GPS server, otherwise the value is {{false}}. + After a reboot the value is {{false}} until the server could be contacted again. + + + + + + + + + This object contains parameters relating to Performance Management in a Femto-related environment. + + + + {{numentries}} + + + + + + + + + This object contains parameters relating to File Management configuration for uploading of Performance Files to a designated File Server. Each table entry can be referenced by zero or more radio-specific objects contained in the FAPService instances. The periodic upload will upload data for all of the radio-specific objects that reference it. + + + + + + + + + + + + Enables or disables this entry. If this entry is disabled then its periodic uploads are not performed. + + + + + + + + {{datatype|expand}} + + + + + + + + {{datatype}} specifying the destination file location. HTTP and HTTPS transports MUST be supported. Other transports MAY be supported. + This argument specifies only the destination file location, and does not indicate in any way the name or location of the local file to be uploaded. + + + + + + + + Username to be used by the device to authenticate with the file server. This string is set to {{empty}} if no authentication is used. + + + + + + + + + + Password to be used by the device to authenticate with the file server. This string is set to {{empty}} if no authentication is used. + + + + + + The duration in {{units}} of the interval for which the device MUST create a Performance File and attempt to upload the file to {{param|URL}} if {{param|Enable}} is {{true}}. + + + + + + + + + + + An absolute time reference in UTC to determine when the device will initiate the periodic file upload. Each file upload MUST occur at this reference time plus or minus an integer multiple of the {{param|PeriodicUploadInterval}}. + {{param}} is used only to set the "phase" of the periodic uploads. The actual value of {{param}} can be arbitrarily far into the past or future. + For example, if {{param|PeriodicUploadInterval}} is 86400 (a day) and if {{param}} is set to UTC midnight on some day (in the past, present, or future) then periodic file uploads will occur every day at UTC midnight. These MUST begin on the very next midnight, even if {{param}} refers to a day in the future. + The Unknown Time value as defined in {{bibref|TR-106|Section 3.2}} indicates that no particular time reference is specified. That is, the device MAY locally choose the time reference, and is REQUIRED only to adhere to the specified {{param|PeriodicUploadInterval}}. + If absolute time is not available to the device, its periodic file upload behavior MUST be the same as if the {{param}} parameter was set to the Unknown Time value. + + + + + + + + + This object defines the data model for the following Femtozone APIs. + * Femto Awareness + * SMS + * MMS + * Terminal Location + Femto Awareness, SMS, MMS, and Terminal Location APIs are defined in the Release 1 API Specifications of the Service SIG in the Femto Forum (non public document). + {{bibref|TR-262|appendix I}} provides the "Theory of Operation" for the usage of this object. + + + + Version of Femto Application Platform running on this device + + + + + + + + + + Enable or disable the Femto ApplicationPlatform + + + + + + + + Current state of the Femto Application Platform. + + + + + + The Femto Application Platform is not available + + + + + The Femto Application Platform is available + + + + + The FemtoApplicationPlatform is in the process of being reset and will transition to the {{enum|Disabled}} state when the reset operation is completed + + + + + The FemtoApplicationPlatform is being initialized and will transition to the {{enum|Enabled}} state once the initialization is completed + + + + + + + + Determines how many Femtozone Applications can be supported by the Femto Application Platform simultaneously. + + + + + + + + Specifies how many Femtozone Applications are currently communicating with the Femto Application Platform. + + + + + + + + + This object contains parameters related to the capabilities of the Femtozone Application Platform and the Femtozone APIs. + + + + Specifies whether the Femto Application Platform supports Presence-Based Femtozone Applications + + + + + + + + Specifies whether the Femto Awareness API is supported on this device. + + + + + + + + Specifies whether the SMS API is supported on this device. + + + + + + + + Specifies whether the SubscribeToNotificationsOfSMSSentToApplication functionality is supported by the FAP SMS API. + + + + + + + + Specifies whether the QuerySMSDeliveryStatus functionality is supported by the FAP SMS API. + + + + + + + + Specifies whether the MMS API is supported on this device. + + + + + + + + Specifies whether the QueryMMSDeliveryStatus functionality is supported by the FAP MMS API. + + + + + + + + Specifies whether the SubscribeToNotificationsOfMMSSentToApplication functionality is supported by the FAP MMS API. + + + + + + + + Specifies whether the Terminal Location API is supported on this device. + + + + + + + + Specifies the supported methods that 3rd Party Applications can use to authenticate with the Femto Application Platform at initialization. Comma separated list of strings. + + + + + + + + + + + + + Specifies the supported access levels that 3rd Party Applications can request when authenticating with the Femto Application Platform at initialization. This access level is with respect to resources within the Femto Application Platform only (not to be confused with Access Mode parameter in .FAPService.{i}.AccessMgmt). + + + + + + + + + + + + + + + Specifies the supported types of addresses SMSs can be sent to. + + + + + + + + + + + + + Specifies the supported types of addresses MMSs can be sent to. + + + + + + + + + + + + + + This object contains parameters related to the operation of the Femtozone APIs. + + + + Specifies how 3rd Party Applications have to authenticate against Femto APIs in order to use it. {{reference}} + '''''Note:''''' The credentials are not part of the data model and have to be supplied externally. + + + + + + + + + + + This is the reference to the IPsec tunnel instance to be used by the Application Platform traffic. + The {{param}} MUST point to a tunnel instance defined in the data model. + If the referenced object is deleted, the parameter value MUST be set to an empty string. + + + + + + + + + + + This object contains parameters related to the Femto Awareness API. + + + + Enable or disable FemtoAwareness API exposure on FAP + + + + + + + + Enable or disable Request queueing for the API + + + + + + + + Determines how FAP handles simultaneous requests from different Applications to Femto Awareness API. + + + + + + + + + + + Determines the Max Number of different Applications that can send Requests to Femto Awareness API. + + + + + + + + + + Specifies Identifier of the Femtozone. + + + + + + + + + + Specifies whether the Mobile Station International Subscriber Directory Number (MSISDN) has to be used as UserIdentifier in Femto Awareness Notifications. A value of {{true}} means that the MSISDN is send as user identifier, a value of {{false}} means that an anonymous reference is used. + + + + + + + + Specifies whether the OPTIONAL Argument "Callback Data" has to be used in Responses to Requests to "Subscribe To Femto Awareness Notifications". + + + + + + + + Specifies whether the OPTIONAL Argument "Timezone" has to be used in Responses to Requests to "Query Femtocell Status". + + + + + + + + + This object contains parameters related to the SMS API. + + + + Enable or disable SMS API exposure on FAP + + + + + + + + Enable or disable Request queueing for the API + + + + + + + + Determines how FAP handles simultaneous requests from different Applications to SMS API. + + + + + + + + + + + Determines the Max Number of different Applications that can send Requests to SMS API. + + + + + + + + + + Determines the Minimum Time Interval in {{units}} between two consecutive Send SMS Requests by the same Application. + + + + + + + + + + + Enable or disable "QuerySMSDeliveryStatus" Operation on SMS API. When disabled, QuerySMSDeliveryStatus Requests to SMS API are ignored. + + + + + + + + Enable or disable "SubscribeToNotificationsOfMessageSentToApplication" Operation on SMS API. When disabled, SubscribeTo NotificationsOfMessageSentToApplication Requests to SMS API are ignored. + + + + + + + + + This object contains parameters related to the MMS API. + + + + Enable or disable MMS API exposure on FAP + + + + + + + + Enable or disable Request queueing for the API + + + + + + + + Determines how FAP handles simultaneous requests from different Applications to MMS API. + + + + + + + + + + + Determines the Max Number of different Applications that can send Requests to MMS API. + + + + + + + + + + Determines the Minimum Time Interval in {{units}} between two consecutive Send MMS Requests by the same Application. + + + + + + + + + + + Enable or disable "QuerySMSDeliveryStatus" Operation on MMS API. When disabled, QuerySMSDeliveryStatus Requests to MMS API are ignored. + + + + + + + + Enable or disable "SubscribeTo NotificationsOfMessageSentToApplication" Operation on MMS API. When disabled, SubscribeTo NotificationsOfMessageSentToApplication Requests to MMS API are ignored. + + + + + + + + + This object contains parameters related to the TerminalLocation API. + + + + Enable or disable TerminalLocation API exposure on FAP + + + + + + + + Enable or disable Request queueing for the API + + + + + + + + Determines how FAP handles simultaneous requests from different Applications to TerminalLocation API. + + + + + + + + + + + Determines the Max Number of different Applications that can send Requests to TerminalLocation API. + + + + + + + + + + Specifies Terminal Address Format to be used in QueryMobileLocation Responses. + + + + + + + + + + + Include or exclude FAP Longitude and Latitude arguments in Responses to QueryMobileLocation Requests. + + + + + + + + Include or exclude FAP Altitude argument in Responses to QueryMobileLocation Requests . + + + + + + + + Specifies Response Timestamp in {{units}}. + + + + + + + + + + + + This object contains parameters related to the monitoring of the Femtozone Application Platform and the Femtozone APIs. + + + + Enables and disables this entry. + + + + + + + + Specifies the interval in {{units}} used to collect the monitoring measurements. + + + + + + + + + + Specifies the total number of authentication requests received by the Femto Application Platform. The counter will be reset whenever the device reboots or the {{param|Enable}} parameter is set to {{true}}. + + + + + + + + Specifies the number of authentication requests received by the Femto Application Platform that were rejected. The counter will be reset whenever the device reboots or the {{param|Enable}} parameter is set to {{true}}. + + + + + + + + + This object contains parameters related to the Monitoring of the FemtoAwareness API. + + + + Specifies whether the FemtoAwareness API is currently available on this device (the API could be disabled or could have exhausted its resources) + + + + + + + + Specifies the current number of Applications using the Femto Awareness API. + + + + + + + + + + Specifies the state of the Femto Awareness API Queue. + + + + + + + + + + + + Specifies the current number of requests waiting in the Femto Awareness API Queue. + + + + + + + + + + Specifies the number of requests in the Femto Awareness API Queue that have been received. The counter will be reset whenever the device reboots or the {{param|#.Enable}} parameter is set to {{true}}. + + + + + + + + Specifies the number of requests in the Femto Awareness API Queue that have been discarded. The counter will be reset whenever the device reboots or the {{param|#.Enable}} parameter is set to {{true}}. + + + + + + + + + This object contains parameters related to the Monitoring of the SMS API. + + + + Specifies whether the SMS API is currently available on this device (the API could be disabled or could have exhausted its resources).. + + + + + + + + Specifies the current number of Applications using the SMS API. + + + + + + + + + + Specifies the state of the SMS API Queue. + + + + + + + + + + + + Specifies the current number of requests waiting in the SMS API Queue. + + + + + + + + + + Specifies the number of requests in the SMS API Queue that have been received. The counter will be reset whenever the device reboots or the {{param|#.Enable}} parameter is set to {{true}}. + + + + + + + + Specifies the number of requests in the SMS API Queue that have been discarded. The counter will be reset whenever the device reboots or the {{param|#.Enable}} parameter is set to {{true}}. + + + + + + + + + This object contains parameters related to the Monitoring of the MMS API. + + + + Specifies whether the MMS API is currently available on this device (the API could be disabled or could have exhausted its resources).. + + + + + + + + Specifies the current number of Applications using the MMS API. + + + + + + + + + + Specifies the state of the MMS API Queue. + + + + + + + + + + + + Specifies the current number of requests waiting in the MMS API Queue. + + + + + + + + + + Specifies the number of requests in the MMS API Queue that have been received. The counter will be reset whenever the device reboots or the {{param|#.Enable}} parameter is set to {{true}}. + + + + + + + + Specifies the number of requests in the MMS API Queue that have been discarded. The counter will be reset whenever the device reboots or the {{param|#.Enable}} parameter is set to {{true}}. + + + + + + + + + This object contains parameters related to the Monitoring of the TerminalLocation API. + + + + Specifies whether the TerminalLocation API is currently available on this device (the API could be disabled or could have exhausted its resources).. + + + + + + + + Specifies the current number of Applications using the Terminal Location API. + + + + + + + + + + Specifies the state of the Terminal Location API Queue. + + + + + + + + + + + + Specifies the current number of requests waiting in the Terminal Location API Queue. + + + + + + + + + + Specifies the number of requests in the Terminal Location API Queue that have been received. The counter will be reset whenever the device reboots or the {{param|#.Enable}} parameter is set to {{true}}. + + + + + + + + Specifies the number of requests in the Terminal Location API Queue that have been discarded. The counter will be reset whenever the device reboots or the {{param|#.Enable}} parameter is set to {{true}}. + + + + + + + + + This object provides bulk data collection capabilities and global collection settings that affect the entire device. + Bulk Data utilizes various solutions (e.g., IPDR, HTTP) to collect data from devices and transfer the data to a collection server. + The IPDR solution is based on a service specification described in {{bibref|TR-232}}. + The HTTP solution is based on transfer mechanisms described in {{template|BULK-DATA-HTTP-REF}}. + {{template|BULK-DATA-OPT-SOLNS}} + The Bulk Data Collection Profiles are measured over a reporting interval (which can be aligned with absolute time) and are made available to the collection server. + + + + Enables or disables all collection profiles. + If {{false}}, bulk data will not be collected or reported. + + + + + + + + Indicates the status of the Bulk Data Collection mechanism. + + + + + + Bulk Data Collection is enabled and working as intended. + + + + + Bulk Data Collection is disabled. + + + + + Bulk Data Collection is enabled, but there is an error condition preventing the successful collection of bulk data. + + + + + + + + Minimum reporting interval in {{units}} that the CPE is capable of supporting. + A value of 0 indicates no minimum reporting interval. + + + + + + + + + + Represents the IPDR and transport protocols that this device is capable of supporting. + + + + + + + IPDR Streaming Protocol {{bibref|IPDR-SP}} + + + + + IPDR File Transfer Protocol {{bibref|IPDR-FTP}} + + + + + Hypertext Transfer Protocol {{bibref|RFC2616}} + + + + + User Services Platform (USP - {{bibref|TR-369|Annex A}}) Event Notification + + + + + + + + Represents the Encoding Types for the protocols that this device is capable of supporting. + + + + + + + Used with the IPDR Streaming and File Protocols. {{bibref|IPDR-XML}} + + + + + Used with the IPDR Streaming and File Protocols. {{bibref|IPDR-XDR}} + + + + + Comma Separated Values. Used with the HTTP and USPEventNotif Protocols. {{bibref|RFC4180}} + + + + + JavaScript Object Notation. Used with the HTTP and USPEventNotif Protocols. {{bibref|RFC7159}} + + + + + + + + When {{true}}, the Device supports the use of wildcards to determine the parameters that are reported using a Profile. + + + + + + + + The maximum number of profiles that can exist at any given time. Specifically, the maximum number of {{object|Profile.{i}.}} instances that the Controller can create. + If the value of this parameter is -1, then it means that the CPE doesn't have a limit to the number of profiles that can exist. + + + + + + + + + + The maximum number of parameters that can be referenced via the bulk data collection mechanism. Specifically, the maximum number of parameters that can be referenced via {{param|Profile.{i}.Parameter.{i}.Reference}} across all Profile and Parameter instances (including the expansion of partial paths within the Reference parameter). + If the value of this parameter is -1, then it means that the CPE doesn't have a limit to the number of parameter that can be referenced via the bulk data collection mechanism. + + + + + + + + + + {{numentries}} + + + + + + + + + A set of Bulk Data Collection profiles. + Each profile represents a bulk data report, including its own timing configuration, communications configuration, and set of parameters. This allows the Controller to configure multiple reports to be generated at different times for different sets of data. + + + + + + + Enables or disables this specific bulk data profile. + If {{false}}, this profile will not be collected or reported. + + + + + + + + + {{datatype|expand}} + + + + + + + + The name of the profile. + + + + + + + + + + {{reference|the {{object|Device.LocalAgent.Controller.}} instance that created or last updated this {{object}}}} + The value of this parameter is automatically populated by the USP Agent upon {{object}} creation using the reference to the USP Controller that created the instance. + The value of this parameter is automatically updated by the USP Agent upon {{object}} alteration using the reference to the USP Controller that changed the instance. + + + + + + + + + + The number of failed reports to be retained and transmitted (in addition to the current report) at the end of the current reporting interval. + If the value of the {{param|EncodingType}} parameter is modified any outstanding failed reports are deleted. + If the CPE cannot retain the number of failed reports from previous reporting intervals while transmitting the report of the current reporting interval, then the oldest failed reports are deleted until the CPE is able to transmit the report from the current reporting interval. + A value of 0 indicates that failed reports are not to be retained for transmission in the next reporting interval. + A value of -1 indicates that the CPE will retain as many failed reports as possible. + + + + + + + + + + + The Bulk Data Protocol being used for this collection profile. + + + + + + + + + + The Bulk Data encoding type being used for this collection profile. + + + + + + + + + + The reporting interval in {{units}}. Each report is generated based on this interval and {{param|TimeReference}}. + The CPE MAY reject a request to set {{param}} to less than {{param|#.MinReportingInterval}}. + Reporting intervals MUST begin every {{param}} {{units}}. + If {{param}} is changed while collection is enabled, the first reporting interval begins immediately. + For example, if {{param}} is 86400 (a day) and if {{param|TimeReference}} is set to UTC midnight on some day (in the past, present, or future) then the CPE will generate (and transmit, if the {{param|Protocol}} parameter is set to {{enum|Streaming|#.Protocols}}) its report at midnight every 24 hours. + + + + + + + + + + + + An absolute time reference in UTC to determine when will be transmitted. Each reporting interval MUST complete at this reference time plus or minus an integer multiple of {{param|ReportingInterval}}, unless unable to due to higher prioritized operations. + {{param}} is used only to set the "phase" of the reporting intervals. The actual value of {{param}} can be arbitrarily far into the past or future. + If {{param}} is changed while collection of bulk data is enabled, the first reporting interval begins immediately. + The Unknown Time value as defined in {{bibref|TR-106}} indicates that no particular time reference is specified. That is, the CPE MAY locally choose the time reference, and is required only to adhere to the specified reporting intervals. + If absolute time is not available to the CPE, its reporting interval behavior MUST be the same as if the {{param}} parameter was set to the Unknown Time value. + For example, if {{param|ReportingInterval}} is 86400 (a day) and if {{param}} is set to UTC midnight on some day (in the past, present, or future) then the CPE will generate (and transmit, if in a "ITPush" mode) its report at midnight every 24 hours. + Note that, if {{param}} is set to a time other than the Unknown Time, the first reporting interval (which has to begin immediately) will almost certainly be shorter than {{param|ReportingInterval}}). This is why {{param}} is defined in terms of when reporting intervals complete rather than start. + + + + + + + + + This is the host name or IP Address of the IPDR Collector to be used by the CPE to stream bulk data records if this collection profile is configured for the IPDR Streaming Protocol {{bibref|IPDR-SP}} (the {{param|Protocol}} parameter has a value of {{enum|Streaming|#.Protocols}}). + + + + + + + + + + This is the port number of the IPDR Collector to be used by the CPE to stream bulk data records if this collection profile is configured for the IPDR Streaming Protocol {{bibref|IPDR-SP}} (the {{param|Protocol}} parameter has a value of {{enum|Streaming|#.Protocols}}). + + + + + + + + + + + This is the unique identification of an IPDR Session to be used when this collection profile is configured for the IPDR Streaming Protocol {{bibref|IPDR-SP}} (the {{param|Protocol}} parameter has a value of {{enum|Streaming|#.Protocols}}). + A Controller MUST NOT configure multiple IPDR Streaming Protocol collection profiles with the same {{param}}. Doing so MUST cause the CPE to fail the SetParameterValues. + Within the IPDR Streaming Protocol specification the Session ID has a type of a single 'char', but we are restricting the range even further (ASCII values of '0' - '9' and 'A' - 'Z'. + + + + + + + + + + + This is the {{datatype}} within the CPE that is used by an IPDR Collector to retrieve the IPDRDocs when this collection profile is configured for the IPDR File Transfer Protocol {{bibref|IPDR-FTP}} (the {{param|Protocol}} parameter has a value of {{enum|File|#.Protocols}}). + + + + + + + + Username used for authentication of the {{param|FileTransferURL}}. + This is the {{param}} that the IPDR Collector uses to access the CPE when this collection profile is configured for the IPDR File Transfer Protocol {{bibref|IPDR-FTP}} (the {{param|Protocol}} parameter has a value of {{enum|File|#.Protocols}}). + + + + + + + + + + Password used for authentication of the {{param|FileTransferURL}}. + This is the {{param}} that the IPDR Collector uses to access the CPE when this collection profile is configured for the IPDR File Transfer Protocol {{bibref|IPDR-FTP}} (the {{param|Protocol}} parameter has a value of {{enum|File|#.Protocols}}). + + + + + + If this collection profile is configured for the IPDR File Transfer Protocol {{bibref|IPDR-FTP}} (the {{param|Protocol}} parameter has a value of {{enum|File|#.Protocols}}) then the control file names will be of the following format: + : <ControlFilePrefix>_<ControlFilePolicy>.<ControlFileSuffix> + Where the following rules apply: + * ControlFilePrefix MUST NOT contain an underscore '_' or any other character not suitable for a file name. + * ControlFilePolicy MUST contain one or more 'N' characters, where the number of 'N' characters denotes the number of digits in the sequence number, including leading zeros as necessary to match the number of 'N' characters. + * ControlFileSuffix is a file extension. + For example, BulkData_NNNN.log where "BulkData" would be the prefix, "NNNN" would be the policy, and "log" would be the suffix. Files adhering to this file format would look like: BulkData_0000.log, BulkData_0001.log, etc. + + + + + + + + + + {{numentries}} + + + + + + + + Bulk Data Push event for delivering a bulk data report within a USP Notification message. + + + + The contents of the bulk data report in the configured CSV or JSON Encoding Type. + + + + + + + + + + Bulk data parameter table. + Each entry in this table represents a parameter (or set of parameters if a partial path is provided) to be collected and reported. + + + + Name of the parameter in the report body. + If the value of this parameter is {{empty}}, then the value of the {{param|Reference}} parameter is used as the name. + When the value {{param|Reference}} parameter contains wildcards and/or partial parameter names, the rules for determining the value of this parameter are specified in {{template|BULK-DATA-WILD-REF}}. + + + + + + + + + + Represents the parameter(s) that are part of this Bulk Data collection profile. The value MUST be a path name of a parameter or an object. + When the {{param|##.ParameterWildCardSupported}} parameter has a value of {{true}}, patterns for instance identifiers are permitted with wildcards (an "*" character) in place of instance identifiers; any attempt to set the value otherwise MUST be rejected by the CPE. + In the case where a partial parameter path is specified, the sub-objects of the resolved pattern and contained parameters will be part of the bulk data collected and reported. If the path name refers to an object then it MUST end with a '.'. + + + + + + + + + + + + + This object defines the properties to be used when the {{object|##.Profile}} object's {{param|#.EncodingType}} parameter value is {{enum|CSV|##.EncodingTypes}}. + + + + Field separator to use when encoding CSV data. + + + + + + + + + Row separator to use when encoding CSV data. + + + + + + + + + Escape character to use when encoding CSV data. + + + + + + + + + This parameter describes the formatting used for reports defined by this profile as described in {{template|BULK-DATA-CSV-REF}}. + Note: This parameter is encoded as a token in the BBF-Report-Format header field and MUST NOT include spaces or other characters excluded from token characters defined in {{bibref|RFC2616}}. + + + + + + Reports are formatted with each parameter formatted as a row entry. + + + + + Reports are formatted with each parameter formatted as a column entry. + + + + + + + + + The format of the timestamp to use for data inserted into the row. + + + + + + Timestamp is inserted using the UNIX epoch time (milliseconds since Jan 1, 1970 UTC) timestamp format. If the CPE is unable to acquire a time, then the time that has elapsed since the last reboot of the device is used. + + + + + Timestamp is inserted using the ISO-8601 timestamp format{{template|BULK-DATA-TIMESTAMP}}. + + + + + Timestamp is not inserted in the row. + + + + + + + + + + This object defines the properties to be used when the {{object|##.Profile}} object's {{param|#.EncodingType}} parameter value is {{enum|JSON|##.EncodingTypes}}. + + + + This parameter describes the formatting used for the report as described in {{template|BULK-DATA-JSON-REF}}. + Note: This parameter is encoded as a token in the BBF-Report-Format header field and MUST NOT include spaces or other characters excluded from token characters defined in {{bibref|RFC2616}}. + + + + + + Reports are formatted with each object in the object hierarchy of the data model encoded as a corresponding hierarchy of JSON Objects with the parameters of the object specified as name/value pairs of the JSON Object. + + + + + Reports are formatted with each parameter of the data model encoded as a corresponding array of JSON Objects with the parameters specified as name/value pairs. + + + + + + + + + The format of timestamp to use for the JSON Object named "CollectionTime" as described in {{template|BULK-DATA-JSON-REF}}. + + + + + + Timestamp is inserted using the UNIX epoch time (milliseconds since Jan 1, 1970 UTC) timestamp format. If the CPE is unable to acquire a time, then the time that has elapsed since the last reboot of the device is used. + + + + + Timestamp is inserted using the ISO-8601 timestamp format{{template|BULK-DATA-TIMESTAMP}}. + + + + + Timestamp is not inserted. + + + + + + + + + + This object defines the properties to be used when transporting bulk data using the HTTP/HTTPS protocol. This object is used when the {{param|#.Protocol}} parameter has a value of {{enum|HTTP|##.Protocols}}. For authentication purposes the CPE MUST support HTTP Basic and Digest Access Authentication as defined in {{bibref|RFC2616}}. + + + + The {{datatype}} for the collection server to receive the Bulk Data transmitted by the CPE. + + + + + + + + Username used to authenticate the CPE when making a connection to the collection server. + + + + + + + + + + Password used to authenticate the CPE when making a connection to the collection server. + + + + + + Indicates the HTTP Compression mechanism(s) supported by this CPE for the purposes of transferring bulk data. + + + + + + + As defined in {{bibref|RFC2616|Section 3.5}} + + + + + As defined in {{bibref|RFC2616|Section 3.5}} + + + + + As defined in {{bibref|RFC2616|Section 3.5}} + + + + + + + + The value of this parameter represents the HTTP Compression mechanism to be used by the CPE when transferring data to the collection server. + + + + + + + + + + + Indicates the HTTP method(s) supported by this CPE for the purposes of transferring bulk data. + + + + + + + As defined in {{bibref|RFC2616|Section 9.5}} + + + + + As defined in {{bibref|RFC2616|Section 9.6}} + + + + + + + + The value of this parameter represents the HTTP method to be used by the CPE when transferring data to the collection server. + + + + + + + + + + + When {{true}}, the CPE encodes the HTTP Date Header {{bibref|RFC2616|Section 14.18}} in the HTTP client request. + + + + + + + + + When {{true}}, the CPE retries unsuccessful attempts to transfer data. + + + + + + + + + Configures the data transfer retry wait interval, in seconds, as specified in {{template|BULK-DATA-HTTP-RETRY-REF}}. + The device MUST use a random value between {{param}} and ({{param}} * {{param|RetryIntervalMultiplier}} / 1000) as the first retry wait interval. Other values in the retry pattern MUST be calculated using this value as a starting point. + + + + + + + + + + + Configures the retry interval multiplier as specified in {{template|BULK-DATA-HTTP-RETRY-REF}}. + This value is expressed in units of 0.001. Hence the values of the multiplier range between 1.000 and 65.535. + The device MUST use a random value between {{param|RetryMinimumWaitInterval}} and ({{param|RetryMinimumWaitInterval}} * {{param}} / 1000) as the first retry wait interval. Other values in the retry pattern MUST be calculated using this value as a starting point. + + + + + + + + + + + {{numentries}} + + + + + + + + Determines whether or not data transfers that have failed are required to be persisted across reboots. + If {{param}} is {{true}}, then failed data transfers MUST be persisted across reboots. + If {{param}} is {{false}}, then failed data transfers are not required to be persisted across reboots. + + + + + + + + + + This object represents an instance of a parameter to be used in the report header used as part of the HTTP Request-URI transmitted by the CPE to the collection server using the Request-URI in addition to the parameters required by {{template|BULK-DATA-HTTP-QUERY-REF}}. + + + + Name of the Request-URI parameter. + If {{param}} is {{empty}}, the name of the Request-URI parameter is the value of {{param|Reference}}. + + + + + + + + + + The value MUST be the path name of a parameter to be used as the Request-URI parameter. + If the value of this parameter is empty, then this object is not encoded in the report header. + + + + + + + + + + + + This object contains general information about the USP Agent itself. For information related to the Device that hosts the Agent, please reference the {{object|.DeviceInfo}} object. + NOTE: The Vendor Log File table ({{object|.DeviceInfo.VendorLogFile}}) details are located on the {{object|.DeviceInfo}} object. + + + + The unique USP identifier for this USP Agent. + + + + + + + + The current USP Agent software version; not the version of the overall device firmware, which is located in {{param|.DeviceInfo.SoftwareVersion}}. + To allow version comparisons, this element SHOULD be in the form of dot-delimited integers, where each successive integer represents a more minor category of variation. For example, ''3.0.21'' where the components mean: ''Major.Minor.Build''. + + + + + + + + + + Time in {{units}} since the USP Agent was last restarted (either via a reset of the software or reboot of the underlying device). + + + + + + + + + + Periodic event configured via the recipient Controller's {{param|Controller.{i}.PeriodicNotifInterval}} and {{param|Controller.{i}.PeriodicNotifTime}} parameters. + + + + + Wake-up event. + + + + + Indicates that a file has been transferred to or from the Device. The event is sent when the transfer has either completed successfully (in which case {{param|FaultCode}} will be zero), or else has failed (in which case {{param|FaultCode}} will be non-zero and {{param|FaultString}} will give further details). + The file transfer can be requested via a USP operation or via some other mechanism. If it's requested via a USP operation {{param|Command}}, {{param|CommandKey}} and {{param|Requestor}} give further details. + + + + The Path Name of the command that requested the transfer, or {{empty}} if the transfer was not requested via a USP operation. + + + + + + + + The ''command_key'' supplied when requesting the transfer, or {{empty}} if the transfer was not requested via a USP operation. + + + + + + + + + The Endpoint ID of the Controller that requested the transfer, or {{empty}} if no Controller requested it. + + + + + + + + + The type (direction) of the transfer. + + + + + + Downstream transfer; to the Agent. + + + + + Upstream transfer; from the Agent. + + + + + + + + + The Path Name of the Object or Object Instance that was affected by the transfer, or {{empty}} if no data model object was affected by the transfer. + + + + + + + + + The {{datatype}} from or to which this transfer was performed, or {{empty}} if no such URL is available. + + + + + + + + The date and time in UTC at which the transfer was started. The Device SHOULD record this information and report it in this argument, but if this information is not available, the value of this argument MUST be set to the ''Unknown Time'' value. + + + + + + + + + The date and time in UTC at which the transfer was fully completed. This need only be filled in if the transfer has been fully completed. The Device SHOULD record this information and report it in this argument, but if this information is not available or the transfer has not completed, the value of this argument MUST be set to the ''Unknown Time'' value. + + + + + + + + + The numerical fault code as defined in {{bibref|TR-369}}. A value of 0 (zero) indicates no fault. + + + + + + + + + A human-readable text description of the fault. This field SHOULD be {{empty}} if the {{param|FaultCode}} equals 0 (zero). + + + + + + + + + + + + This command is issued to allow a Controller (with the proper permissions) to add a new certificate to {{object|#.Certificate.{i}}}. This does not automatically produce a trust relationship with the host identified by the Certificate. To produce a trust relationship, an entry is required to exist in {{param|#.Controller.{i}.Credential}} or {{param|#.ControllerTrust.Credential.{i}.Credential}} that references the new {{object|#.Certificate.{i}}} entry. The Agent will use the Serial Number and Issuer fields from the input {{param|Certificate}} to populate the {{param|#.Certificate.{i}.SerialNumber}} and {{param|#.Certificate.{i}.Issuer}} parameters. If {{object|#.Certificate}} already has an instance with the same {{param|#.Certificate.{i}.SerialNumber}} and {{param|#.Certificate.{i}.Issuer}} parameters, this command will fail. To replace an instance with the same {{param|#.Certificate.{i}.SerialNumber}} and {{param|#.Certificate.{i}.Issuer}}, the existing instance must first be deleted. + + + + Input arguments. + + + + An optional input the Controller can use to specify the {{param|##.Certificate.{i}.Alias}} value for the added entry. If provided as an input and the value already exists in {{object|##.Certificate.{i}}}, this commmand will fail. + + + + + + + + The X.509 certificate in Privacy-enhanced Electronic Mail (PEM) {{bibref|RFC7468}} format. + + + + + + + + + + + + USP Message Transfer Protocols supported by this USP Agent. The USP Agent MUST support at least one Protocol. + + + + + + + See {{bibref|RFC7252}} + + + + + See {{bibref|RFC6455}} + + + + + See {{bibref|STOMP1.2}} + + + + + See {{bibref|MQTT311}} and {{bibref|MQTT50}} + + + + + + + + {{list|each entry is an algorithm for calculating firgerprints that is supported by the Agent}} + + + + + + + As specified in {{bibref|RFC3174}}. + + + + + As specified in {{bibref|RFC6234}}. + + + + + As specified in {{bibref|RFC6234}}. + + + + + As specified in {{bibref|RFC6234}}. + + + + + As specified in {{bibref|RFC6234}}. + + + + + + + + {{list|each entry is a threshold operation for {{param|Threshold.{i}.ThresholdOperator}} supported by the Agent}} + + + + + + + Parameter value changes from below the {{param|Threshold.{i}.ThresholdValue}} to a value above + + + + + Parameter value changes from above the {{param|Threshold.{i}.ThresholdValue}} to a value below + + + + + Parameter value either changes from above the {{param|Threshold.{i}.ThresholdValue}} to a value below or vice versa + + + + + Parameter value changes from any value to the {{param|Threshold.{i}.ThresholdValue}} + + + + + Parameter value changes from the {{param|Threshold.{i}.ThresholdValue}} to any other value + + + + + + + + {{list|each entry is a subtype component of the service type that is advertised for the device using mDNS as defined in {{bibref|RFC6762}}}} + + + + + + + + + The acceptable amount of time in {{units}} between the alteration of the Agent's Subscriptions (e.g. updated subscription, new subscription, removed subscription, etc.) and the notifications related to those subscriptions being delivered. + For example, if this parameter is set to 30 {{units}}, then once a Subscription has been updated, the Agent has 30 {{units}} before it needs to start delivering notifications based on the updated version of the Subscription (instead of the old version of the Subscription). + + + + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + Each instance of this table represents a MTP used by the local Agent. + + + + + + + {{datatype|expand}} + + + + + + + + Enable/Disable this {{object}} instance. + If this {{object}} instance is to be disabled and currently used for communication with the requesting controller, the agent has to send the request response first, before disabling it. + + + + + + + + + The current operational state of the {{object}} instance. + + + + + + + Value when this {{object}} instance cannot establish communication. + + + + + Value when this {{object}} instance is misconfigured. + + + + + + + + The Message Transport Protocol (MTP) to be used for communications by a USP Endpoint. + + + + + + + + + + + This parameter, when {{true}}, enables the advertisement of DNS-SD services defined for this {{object}} instance using mDNS as defined in {{bibref|RFC6762}}. + This parameter cannot be set to {{true}} if there are multiple {{object}} instances with the same value of the {{param|Protocol}} parameter. + When {{true}}, the hostname advertised in the SRV record MUST be a Fully Qualified Domain Name (FQDN). + The interfaces that advertise these DNS-SD services are restriced to the set of interfaces associated with this {{object}} instance and the interfaces defined by the {{param|##.DNS.SD.AdvertisedInterfaces}} parameter. + + + + + + + + + + If the USP Endpoint uses the CoAP Message Transport Protocol (MTP), then this object contains CoAP specific configuration parameters. + + + + {{reference|the {{object|###.IP.Interface}} object instance that this server will use as its host address to receive USP messages}} + {{empty}} will bind this server to all interfaces for this device. + + + + + + + + + + + The port number used by the CoAP Server to receive USP messages. + + + + + + + + + + + The path that is used by the CoAP Server in order to receive USP messages. + + + + + + + + This parameter represents whether or not communications that utilize this {{object}} object instance are encrypted. + This parameter is DEPRECATED, because the {{param|EnableEncryption}} parameter will dictate whether all connections to this CoAP server instance are or are not encrypted. + + + + + + + + When {{true}}, encryption MUST be used for this MTP instance. + + + + + + + + + + If the USP Endpoint uses the STOMP Message Transport Protocol (MTP), then this object contains STOMP Client specific configuration parameters related to how the Agent communicates with the STOMP Server. + + + + A reference to the STOMP Connection used by this Agent when communicating via the STOMP MTP. + + + + + + + + + + + The STOMP destination where the Agent will be listening to incoming USP messages. + + + + + + + + + The STOMP destination contained in the subscribe-dest header of the CONNECTED STOMP Frame. + If the Agent doesn't receive a subscribe-dest header in the CONNECTED STOMP Frame, then the value of this Parameter MUST be set to {{empty}}. + If this parameter's value is not empty then this is the STOMP destination address for this Agent, but if the value is empty the {{param|Destination}} Parameter contains the STOMP destination address for this Agent. + + + + + + + + + + If the USP Endpoint uses the WebSocket Message Transport Protocol (MTP) as a WebSocket server, then this object contains WebSocket specific configuration parameters. + + + + {{reference|the {{object|###.IP.Interface}} object instance that this server will use as its host address to receive USP messages}} + {{empty}} will bind this server to all interfaces for this device. + + + + + + + + + + + The port number used by the WebSocket Server to receive USP messages. + + + + + + + + + + + The path that is used by the WebSocket Server in order to receive USP messages. + + + + + + + + When {{true}}, encryption MUST be used for all connections to this MTP instance. + + + + + + + + + + If the USP Endpoint uses the MQTT Message Transport Protocol (MTP), then this object contains MQTT Client specific configuration parameters related to how the Agent communicates with the MQTT broker. + + + + A reference to the MQTT Client used by this Agent when communicating via the MQTT MTP. + + + + + + + + + + + The Agent's configured "reply to" topic. When MQTT 5.0 is being used, this value is put in the PUBLISH Response Topic property for all PUBLISH packets with a USP Record, if no Response Information (value recorded in {{param|ResponseTopicDiscovered}}) is included in the CONNACK. When MQTT 3.1.1 is being used, this value is put at the end of the PUBLISH Topic Name property (as specified in {{bibref|TR-369|Section "MQTT Binding"}}. If the value of {{param}} is not a subset (wildcarded or precise match) of any of the {{param|Reference}} {{param|.MQTT.Client.{i}.Subscription.{i}.Topic}} values the Agent MUST subscribe to this Topic. The value MUST NOT contain any wild card characters (“+”, “#”). + + + + + + + + + + Duplicate of {{param|Reference}} {{param|.MQTT.Client.{i}.ResponseInformation}}. This is the value of the CONNACK Response Information property supplied by a MQTT 5.0 server and is used by a MQTT 5.0 client as the basis for the PUBLISH Response Topic property for all PUBLISH packets that expect a response. If a value is received from the MQTT 5.0 server, it will be used instead of any value configured in {{param|ResponseTopicConfigured}}. + + + + + + + + + + The Agent MUST use this QoS value when sending a USP Record on this MTP. + If the referenced MQTT Client uses MQTT 5.0 and the MQTT server only indicates support for a QoS value in the CONNACK Maximum QoS property lower than this QoS value, the Agent MUST use the highest QoS value that is supported by the server. + + + + + + + + + + + Each {{object}} instance of this table represents a Threshold Event. + {{param|ThresholdParam}} is monitored to determine if it has met the {{param|ThresholdOperator}} condition against {{param|ThresholdValue}}, when it meets the condition a {{event|Triggered!}} Event is sent. + {{param|ThresholdParam}} may only reference integer parameters and {{param|ThresholdValue}} only usese integer values. + For example: + {{param|ReferencePath}}: Device.Ethernet.Interface.[Enable=="1"].Stats. + {{param|ThresholdParam}}: BytesSent + {{param|ThresholdOperator}}: Rise + {{param|ThresholdValue}}: 100000 + This would trigger a {{event|Triggered!}} Event whenever a value of a parameter matching Device.Ethernet.Interface.[Enable==1].Stats.BytesSent rises from below to above 100000. + When creating a {{object}}, if the {{param|ReferencePath}}, {{param|ThresholdParam}} or {{param|ThresholdValue}} are invalid (not in the supported Data Model), the object will not be created. + If the concatenation of {{param|ReferencePath}} and {{param|ThresholdParam}} reference a parameter that isn't in the instantiated data model, then there will be no {{event|Triggered!}} Event. + + + + + + + {{datatype|expand}} + + + + + + + + Enable/Disable this {{object}} instance. + If the {{object}} instance is disabled, the {{event|Triggered!}} Event will not be invoked, even if there is a {{object|.LocalAgent.Subscription.{i}.}} instance that references it + + + + + + + + + Determines whether to disable this {{object}} instance after the {{event|Triggered!}} Event has been invoked. + + + + + + The {{object}} will generate events as long as the {{param|Enable}} is {{true}} + + + + + After invoking the {{event|Triggered!}} Event, the {{param|Enable}} parameter will be automatically set to {{false}} + + + + + + + + + The concatenation of {{param}} and {{param|ThresholdParam}} refers to the parameter being checked for the threshold test. + {{param}} can be either an Object Path, Object Instance Path, or and Object Instance Path with a Search Expression instead of an Instance Identifier, as defined in the introduction section of {{bibref|TR-369}}. + + + + + + + + The concatenation of {{param|ReferencePath}} and {{param}} refers to the parameter being checked for the threshold test. + {{param}} is the name of the Parameter in the context of {{param|ReferencePath}}. + + + + + + + + The operator used for the threshold test. + + + + + + + + + + + The Value used for the threshold test. + + + + + + + + Triggered event requested via a {{object}} object. + When any of the {{param|##.Threshold.{i}.ThresholdParam}}s that are in the {{param|##.Threshold.{i}.ReferencePath}} change and the threshold test conditation changes from {{false}} to {{true}}, the Triggered Event will be invoked. The Triggered Event will only be eligible for retriggering if the test condition is fulfilled again. + + + + The parameter ({{param|.LocalAgent.Threshold.{i}.ReferencePath}} and {{param|.LocalAgent.Threshold.{i}.ThresholdParam}}) for which the threshold has been triggered. + + + + + + + + The new ({{param|.LocalAgent.Threshold.{i}.ReferencePath}} and {{param|.LocalAgent.Threshold.{i}.ThresholdParam}}) Value. + + + + + + + + + + Each instance of this table represents a USP Controller that has access to this USP Agent. + On the deletion of an entry from this table, the Agent MUST send the ObjectDeletion notification to all subscribed recipients, even if the recipient is the deleted Controller itself. This notification is the last notification sent to this Controller. + + + + + + + + + + {{datatype|expand}} + + + + + + + + The unique USP identifier for this USP Controller. + + + + + + + + + Information about the configuration state of an Agent as it pertains to the {{object}} instance. This is not information related to an operator's installation or usage of the protocol, that information is maintained in {{param|ProvisioningCode}}. + This parameter could be used in scenarios where the Controller needs to perform some kind of initialization or periodic configuration monitoring. For example, a Controller might perform some initial configuration of an Agent on first contact (perhaps to configure the Subscriptions). The Controller could inspect this parameter to determine the current state of the Agent's configuration, allowing the Controller to streamline the configuration process. + + + + + + + + + + + Identifying information which MAY be used by the {{object}} instance to determine {{object}} instance specific customization and provisioning parameters. + + + + + + + + + + + Enable/Disable this {{object}} instance. + If the Controller instance is to be disabled, the Agent MUST send the ValueChange notification to all subscribed recipients, even if the recipient is the disabled Controller itself. This notification is the last notification sent to this Controller until it is enabled again. The USP Endpoint MUST terminate the MTP connection. When {{false}}, messages (notifications) are not sent to the remote endpoint represented by this {{object}} instance, and any MTP session establishment are refused. + + + + + + + + + {{list|each entry is a Role that has been assigned to this {{object}} instance by means other than the {{param|.LocalAgent.ControllerTrust.Credential.{i}.Role}} parameter}} + + + + + + + + + + + {{list|each entry is a Role that has been assigned to this {{object}} instance from the {{param|.LocalAgent.ControllerTrust.Credential.{i}.Role}} parameter associated with the CA credential ({{param|.LocalAgent.ControllerTrust.Credential.{i}.Credential}}) used to validate the Controller certificate}} + + + + + + + + + + + {{nolist}} + Comma-separated list of strings, the set of certificates from {{object|#.Certificate.{i}}} that a Controller can present for use in authenticating the identity of this {{object}} instance. + + + + + + + + + + If a Periodic Event Notification {{object|#.Subscription}} instance is associated with this USP Controller, then this is the duration in {{units}} of the interval for which the USP Agent MUST attempt to issue a Periodic Notification to the USP Controller. + + + + + + + + + + + If a Periodic Event Notification {{object|#.Subscription}} instance is associated with this USP Controller, then this is an absolute time reference in UTC to determine when the USP Agent will issue a Periodic Notification. Each Periodic Notification MUST occur at this reference time plus or minus an integer multiple of the {{param|PeriodicNotifInterval}}. + {{param}} is used only to set the ''phase'' of the Periodic Event Notifications. The actual value of {{param}} can be arbitrarily far into the past or future. + For example, if {{param|PeriodicNotifInterval}} is 86400 (a day) and if {{param}} is set to UTC midnight on some day (in the past, present, or future) then Periodic Notifications will be sent every day at UTC midnight. These MUST begin on the very next midnight, even if {{param}} refers to a day in the future. + The Unknown Time value defined in {{bibref|TR-106|section 3.2}} indicates that no particular time reference is specified. That is, the USP Agent MAY locally choose the time reference, and needs only to adhere to the specified {{param|PeriodicNotifInterval}}. + If absolute time is not available to the USP Agent, its Periodic Notification behavior MUST be the same as if the {{param}} parameter was set to the Unknown Time value. + + + + + + + + This parameter is related to the retry mechanism for Notifications. + Configures the first retry wait interval, in {{units}}, as specified in {{bibref|TR-369|Section "Responses to Notifications and Notification Retry"}}. + A value of 5 corresponds to the default behavior. + The USP Agent MUST use a random value between {{param}} and ({{param}} * {{param|USPNotifRetryIntervalMultiplier}} / 1000) as the first retry wait interval. Other values in the retry pattern MUST be calculated using this value as a starting point. + + + + + + + + + + + + This parameter is related to the retry mechanism for Notifications. + Configures the retry interval multiplier as specified in {{bibref|TR-369|Section "Responses to Notifications and Notification Retry"}}. + This value is expressed in units of 0.001. Hence the values of the multiplier range between 1.000 and 65.535. + A value of 2000 corresponds to the default behavior. + The USP Agent MUST use a random value between {{param|USPNotifRetryMinimumWaitInterval}} and ({{param|USPNotifRetryMinimumWaitInterval}} * {{param}} / 1000) as the first retry wait interval. Other values in the retry pattern MUST be calculated using this value as a starting point. + + + + + + + + + + + Schedule a ''Timer!'' event on the associated {{object}}. + This command is DEPRECATED because it was replaced by a more flexible asynchronous {{command|Device.ScheduleTimer()}} in 2.14. + + + + Input arguments. + + + + The number of {{units}} from the time this command is invoked until the Agent initiates a Timer! Event notification (based on the associated subscriptions). + + + + + + + + + + + + + + Timer event requested via a ScheduleTimer() command invoked on the same Controller instance via an Operate USP message. + This event is DEPRECATED because the associated {{command|ScheduleTimer()}} was replaced by a more flexible asynchronous {{command|Device.ScheduleTimer()}} in 2.14. + + + + The ''command_key'' supplied when requesting the timer event. + + + + + + + + + This command is issued to allow a Controller to add a new certificate for itself. This can be useful when the current certificate is expiring or has become compromised. This command creates a new entry in {{object|#.Certificate}} and adds a reference to the new entry to the Controller's {{param|#.Controller.{i}.Credential}}. The Agent will use the Serial Number and Issuer fields from the input {{param|Certificate}} to populate the {{param|#.Certificate.{i}.SerialNumber}} and {{param|#.Certificate.{i}.Issuer}} parameters. If {{object|#.Certificate}} already has an instance with the same {{param|#.Certificate.{i}.SerialNumber}} and {{param|#.Certificate.{i}.Issuer}} parameters, this command will fail. To replace an instance with the same {{param|#.Certificate.{i}.SerialNumber}} and {{param|#.Certificate.{i}.Issuer}}, the existing instance must first be deleted. + This command can only be used by the Controller to whom the object belongs. If the Controller issuing the USP Operate message is a different Controller, the message MUST be denied. + + + + Input arguments. + + + + An optional input the Controller can use to specify the {{param|###.Certificate.{i}.Alias}} value for the added entry. If provided as an input and the value already exists in {{object|###.Certificate.{i}}}, this commmand will fail. + + + + + + + + The X.509 certificate in Privacy-enhanced Electronic Mail (PEM) {{bibref|RFC7468}} format. + + + + + + + + + + + + Requests the Agent to send an ''OnBoardRequest'' notification to this Controller. + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + Each instance of this table represents a MTP used by this Controller. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Enable/Disable this {{object}} instance. + If this {{object}} instance is to be disabled and currently used for communication with the requesting controller, the agent has to send the request response first, before disabling it. + + + + + + + + + The Message Transport Protocol (MTP) to be used for communications by a USP Endpoint. + + + + + + + + + + + + If the USP Endpoint uses the CoAP Message Transport Protocol (MTP), then this object contains CoAP specific configuration parameters. + + + + The hostname or IP Address of the Controller's CoAP server. + + + + + + + + + + The port number used by the Controller's CoAP Server to receive USP messages. + + + + + + + + + + The path that is used by the Controller's CoAP Server in order to receive USP messages. + + + + + + + + When {{true}}, encryption MUST be used as specified in {{bibref|TR-369|Section "MTP Message Encryption"}}. + + + + + + + + + + If the USP Endpoint uses the STOMP Message Transport Protocol (MTP), then this object contains STOMP Client specific configuration parameters related to how this Controller communicates with the STOMP Server. + + + + A reference to the STOMP Connection used by this Controller when communicating via the STOMP MTP. + + + + + + + + + + + The STOMP destination where the Controller will be listening to incoming USP messages. + + + + + + + + + + If the USP Endpoint uses the WebSocket Message Transport Protocol (MTP) as a WebSocket client, then this object contains WebSocket specific configuration parameters. + + + + The hostname or IP Address of the Controller's WebSocket server. + + + + + + + + + + The port number used by the Controller's WebSocket server to receive USP messages. + + + + + + + + + + The path that is used by the Controller's WebSocket server in order to receive USP messages. + + + + + + + + This parameter represents whether or not communications that utilize this {{object}} object instance are encrypted. + This parameter is DEPRECATED, because the {{param|EnableEncryption}} parameter will dictate whether this {{object}} is or is not encrypted. + + + + + + + + When {{true}}, encryption MUST be used for this MTP instance. + + + + + + + + + The the duration in {{units}} between when WebSocket ping control frames are transmitted by the Agent to the WebSocket server for the USP Controller. + + + + + + + + + + + The current retry count of the session. When zero (0), the session is not in a retry state. + + + + + + + + Configures the first retry wait interval, in {{units}}, as specified in {{bibref|TR-369|Section "WebSocket Session Retry"}}. + The USP Agent MUST use a random value between {{param}} and ({{param}} * {{param|SessionRetryIntervalMultiplier}} / 1000) as the first retry wait interval. Other values in the retry pattern MUST be calculated using this value as a starting point. + + + + + + + + + + + + Configures the retry interval multiplier as specified in {{bibref|TR-369|Section "WebSocket Session Retry"}}. + This value is expressed in units of 0.001. Hence the values of the multiplier range between 1.000 and 65.535. + The USP Agent MUST use a random value between {{param|SessionRetryMinimumWaitInterval}} and ({{param|SessionRetryMinimumWaitInterval}} * {{param}} / 1000) as the first retry wait interval. Other values in the retry pattern MUST be calculated using this value as a starting point. + + + + + + + + + + + If enabled, this command will either request to start or restart an WebSocket session with the Controller. + + + + + + If the USP Endpoint uses the MQTT Message Transport Protocol (MTP), then this object contains MQTT Client specific configuration parameters related to how this Controller communicates with the MQTT broker. + + + + A reference to the MQTT Client used by this Controller when communicating via the MQTT MTP. + + + + + + + + + + + The topic name the USP Controller has subscribed to, to be used for Notify messages send by the USP Agent. + + + + + + + + + + If set to {{true}} the Agent MUST set the RETAIN flag in MQTT PUBLISH messages carrying a USP Response Message to 1, unless the MQTT server sent Retain Available = 0 (MQTT 5.0) in its CONNACK (in which case, the Agent MUST set the RETAIN flag to 0). + + + + + + + + + If set to {{true}} the Agent MUST set the RETAIN flag in MQTT PUBLISH messages carrying a USP Notify Message to 1, unless the MQTT server sent Retain Available = 0 (MQTT 5.0) in its CONNACK (in which case, the Agent MUST set the RETAIN flag to 0). + + + + + + + + + + The policy defined in this object determines the conditions under which the USP Agent notifies a USP Controller, that has an appropriate Subscription, of the completion of file transfers. + + + + Indicates the transfer results that MUST be included when the USP Agent notifies a USP Controller of file transfers. Transfer results omitted from this list MUST NOT be included when the USP Agent notifies a USP Controller. + + + + + + The autonomous file transfer completed successfully; i.e., the {{event|##.TransferComplete!}} event's {{param|##.TransferComplete!.FaultCode}} was zero + + + + + The autonomous file transfer did not complete successfully; i.e., the the {{event|##.TransferComplete!}} event's {{param|##.TransferComplete!.FaultCode}} was non-zero + + + + + Success and Failure + + + + + + + + + This table provides the Controller with the ability to dictate the Parameters that are delivered via ''Boot!'' events. + Any Parameter (identified by {{param|ParameterName}}) contained in this table MUST be included within the ''param_map'' element of the ''Boot!'' event. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Enables or disables this {{object}}. + + + + + + + + + A pattern that describes the Parameter(s) to be included in the ''param_map'' element of a ''Boot!'' event. Specifically, patterns with wildcards (an "*" character) in place of Instance Identifiers are allowed. + If the pattern does not match any existing Parameters at the time that the Agent is creating the ''Boot!'' event, then this {{object|#.BootParameter}} instance is not included in the ''param_map'' of the ''Boot!'' event. + + + + + + + + + + + + The {{object}} object represents the End to End (E2E) Session Context functionality for this {{object|##.Controller.{i}}} object instance. + + + + Enable/Disable this {{object}} instance. + When {{true}}, Session Context is used when exchanging USP Records with the remote endpoint represented by this {{object|##.Controller.{i}}} object instance. + When {{false}}, Session Context is not used when exchanging USP Records with the remote endpoint represented by this {{object|##.Controller.{i}}} object instance. + + + + + + + + + The current status of the Session Context. + + + + + + + A new Session Context is being negotiated (i.e., a USP Record with sequence_id of 0 and session_id not previously used with this remote endpoint was sent and response has not yet been received). + + + + + + + + + The duration in {{units}} in which the current Session Context will expire since the last session-related activity (e.g., Message sent or received, Session Context start or restart). + A value of 0 means session expiration is disabled. + + + + + + + + + + + + Configures the first retry wait interval, in {{units}}, as specified in {{bibref|TR-369|Section "Failure Handling in the Session Context"}}. + A value of 5 corresponds to the default behavior that is described in {{bibref|TR-369}}. + The USP Agent MUST use a random value between {{param}} and ({{param}} * {{param|SessionRetryIntervalMultiplier}} / 1000) as the first retry wait interval. Other values in the retry pattern MUST be calculated using this value as a starting point. + + + + + + + + + + + + Configures the retry interval multiplier as specified in {{bibref|TR-369|Section "Failure Handling in the Session Context"}}. + This value is expressed in units of 0.001. Hence the values of the multiplier range between 1.000 and 65.535. + A value of 2000 corresponds to the default behavior that is described in {{bibref|TR-369}}. + The USP Agent MUST use a random value between {{param|SessionRetryMinimumWaitInterval}} and ({{param|SessionRetryMinimumWaitInterval}} * {{param}} / 1000) as the first retry wait interval. Other values in the retry pattern MUST be calculated using this value as a starting point. + + + + + + + + + + + The current retry count of the Session Context. When zero (0), the Session Context is not in a retry state. + + + + + + + + The maximum size, in {{units}}, of the Record (payload(s) and headers) that can be transmitted to the remote endpoint. The smallest size, which can be configured is 512 bytes. + A value of 0 means that the segmentation function is effectively disabled. + + + + + + + + + + + + + The maximum times that a USP Endpoint attempts to retransmit the requested USP Record to the remote endpoint. + If the maximum tries is met for any requested USP Record, the USP Endpoint will restart the E2E Session. + A value of -1 means that the USP Endpoint will always attempt to retransmit the requested USP Record. + A value of 0 means that the USP Endpoint will not attempt to retransmit the requested USP Record and will restart the E2E Session. + + + + + + + + + + + The security mechanism to use when exchanging the payload of the Record with the remote endpoint. + + + + + + + The payload is encrypted at the originating endpoint and decrypted at the receiving endpoint using TLS. + The procedures for using TLS in a Session Context is defined in {{bibref|TR-369}}. + + + + + + + + + If the {{object}} is enabled then this command will either request to start or restart a Session Context with the remote endpoint. + If the {{object}} is not enabled and there is an active Session Context then this command will terminate that Session Context with the remote endpoint. + If the {{object}} is not enabled and there is no active Session Context then this command does nothing. + + + + + + A Subscription dictates how a USP Agent issues USP Notification Messages to a USP Controller. + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Enables/disables this {{object}}. A disabled entry MUST NOT be processed by the USP Agent. + + + + + + + + + {{reference|the {{object|#.Controller}} instance that will receive the Notification associated with this {{object}}|delete}} + The value of this parameter is automatically populated by the USP Agent upon {{object}} creation using the reference to the USP Controller that created the instance. + + + + + + + + + + Unique identifier of the {{object}} itself, which is specific to the USP Controller that creates the instance of the {{object}}. + This value is used as the ''subscription_id'' element of every Notification message from a USP Agent to a USP Controller caused by this subscription entry. + + + + + + + + + + The date and time when this instance of {{object}} was created. This is internally used by the {{param|TimeToLive}} parameter to determine the expiration of this {{object}} instance. + The value of this parameter is automatically populated by the USP Agent upon {{object}} creation. + + + + + + + + Type of Notification message that will be sent to the USP Controller specified by {{param|Recipient}} when this {{object}} is triggered. + + + + + + + + + + + + + + Each entry in the list is a Path Name, Search Path, Command reference, or Event reference that determines the element(s) of the data model that the {{object}} is applicable to. + Different values of the {{param|NotifType}} parameter will cause the {{object}} to interact with {{param}} differently. For example, an instance of {{object}} with {{enum|ValueChange|NotifType}} will utilize the value of this parameter differently than an instance with {{enum|Event|NotifType}}. + Once the value of the {{param}} is written, the value cannot be changed as the {{object}} instance is considered to be immutable. If the value of a non-empty {{param}} parameter needs to change, the {{object}} instance MUST be deleted and a new {{object}} instance created. + The following bullet points describe what is allowed as a value of {{param}} based on the different values of the {{param|NotifType}} parameter: + * ValueChange: may be either a Path Name or Search Path; if an Object Path (one type of Path Name) then it is treated like a filter match such that all supported parameters in all objects below this point will be relevant for the subscription. + * ObjectCreation: may be either a Path Name or Search Path as long as it only refers to a Multi-Instance Object; only the referenced Multi-Instance Objects will be relevant for the subscription. + * ObjectDeletion: may be either a Path Name or Search Path as long as it only refers to instances of a Multi-Instance Object; only the referenced instances (wildcard references all instances over time) of the Multi-Instance Objects will be relevant for the subscription. + * OperationComplete: may be either a Path Name, Search Path, or Command reference; if an Object Path (one type of Path Name) then it is treated like a filter match such that all supported data model commands in all objects below this point will be relevant for the subscription. + * Event: may be either a Path Name, Search Path, or Event reference; if an Object Path (one type of Path Name) then it is treated like a filter match such that all supported Events in all objects below this point will be relevant for the subscription. + + + + + + + + + + + Determines whether or not this {{object}} remains after the USP Agent is restarted (either via a reset of the software or reboot of the underlying device). + If {{true}}, this {{object}} stays in existence until either a Delete message removes it or the {{param|TimeToLive}} parameter expires. + If {{false}}, this {{object}} is automatically removed by the USP Agent whenever it is restarted. + + + + + + + + + Specifies the duration of time (in {{units}}) that this {{object}} remains in existence. After {{param}} has expired, this {{object}} instance is automatically removed by the USP Agent. + If the value of {{param}} is 0, then this parameter is ignored and this {{object}} stays in existence until either a Delete message removes it or the {{param|Persistent}} parameter determines that it needs to be removed. + If the value of {{param}} is greater than 0, then this parameter determines the length of time (from {{object}} creation) until it will be automatically removed by the USP Agent (unless the {{param|Persistent}} parameter is {{false}} and the USP Agent is restarted, in which case it will be removed before the {{param}} expiration). NOTE: This parameter does not count down as time moves forward; it will always read back with the same value that it was last set to. + If the USP Agent is incapable of maintaining absolute time then {{param}} will automatically expire if the USP Agent is restarted (either via a reset of the software or reboot of the underlying device) before {{param}} expiration. + + + + + + + + + + + Specifies whether or not the USP Agent attempts to re-deliver the Notification in the event that it could not be delivered to the USP Controller. + When {{param}} is {{true}}, the USP Agent MUST retry the delivery of the Notification. This implies that the Notification MUST be generated with the "send_resp" flag set to {{true}} such that the USP Agent knows when the Notification has been successfully delivered. The retry attempt(s) are performed using the retry algorithm defined in {{bibref|TR-369|Section "Responses to Notifications and Notification Retry"}}. + When {{param}} is {{false}}, the USP Agent MUST NOT retry the delivery of the Notification, and SHOULD generate the notification with "send_resp" flag set to {{false}}. + + + + + + + + + Specifies the duration of time (in {{units}}) that the Notification associated with this {{object}} will continue to be retried. After {{param}} has expired, if the Notification has still not been successfully delivered then the USP Agent MUST stop attempting to re-deliver the Notification. + If {{param|NotifRetry}} is set to {{false}} then this parameter is ignored. + If {{param|NotifRetry}} is set to {{true}} and the value of {{param}} is 0, then the USP Agent will attempt to re-deliver the Notification until it has been successfully delivered or until the USP Agent is restarted (either via a reset of the software or reboot of the underlying device). + If {{param|NotifRetry}} is set to {{true}} and the value of {{param}} is greater than 0, then the USP Agent will attempt to re-deliver the Notification until either it has been successfully delivered, until the length of time (from the time the Notification was initially attempted to be delivered) specified in this parameter expires, or until the USP Agent is restarted (either via a reset of the software or reboot of the underlying device). + NOTE: This parameter does not count down as time moves forward; it will always read back with the same value that it was last set to. + + + + + + + + + + + + {{object}} instances are created using USP ''Operate'' messages. Only ''Operate'' messages with ''async''=''true'' will create a {{object}} instance in the data model. + When the command of the ''Operate'' completes, then this {{object}} instance is removed from this table. + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The USP Endpoint Identifier that originated the command. + + + + + + + + The command to be executed. This parameter is a Path Name that addresses a Command in an Object or Object Instance. + The command is a result of the evaluation of the ''command'' argument of an ''Operate'' message. + + + + + + + + The ''command_key'' from the USP ''Operate'' message. + + + + + + + + The operational status of the request to execute the command. + + + + + + The command has been requested but is currently not executing. + + + + + The command is currently executing. + + + + + The command has been requested to be canceled. + + + + + The command has successfully been canceled. + + + + + The command has successfully been completed its execution. + + + + + The command has unsuccessfully completed its execution or has unsuccessfully been canceled. + + + + + + + + Request cancelation of this {{object}}'s command. + This command completes immediately. If successful, {{param|Status}} will immediately change to {{enum|Canceling|Status}} and will change to {{enum|Canceled|Status}} when the cancelation is complete. + + + + + + Each instance of this table represents information related to a X.509 certificate (see {{bibref|RFC5280}}) of a Controller or Certificate Authority. Instances are referenced from {{param|##.LocalAgent.Controller.{i}.Credential}} and {{param|##.LocalAgent.ControllerTrust.Credential.{i}.Credential}}. + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Enable/Disable this {{object}} instance. + + + + + + + + The Serial Number field in an X.509 certificate, see {{bibref|RFC5280}}. + + + + + + + + + + The Issuer field in an X.509 certificate, see {{bibref|RFC5280}}; i.e. the Distinguished Name (DN) of the entity who has signed the certificate. + + + + + + + + + + This command is issued to allow a Controller (with the proper permissions) to delete an entry from the {{object|##.Certificate.{i}}}. It also removes references to the Certificate in {{param|##.LocalAgent.Controller.{i}.Credential}} or {{param|##.LocalAgent.ControllerTrust.Credential.{i}.Credential}} and removes any X.509 certificate data the Agent had stored related to the entry. + + + + + This command is issued to allow a Controller to request the value of a fingerprint calculated for the specified table entry using the input {{param|FingerprintAlgorithm}}. + + + + Input arguments. + + + + The algorithm to be used to calculate the requested fingerprint. The value MUST be one the Agent supports, as noted in {{param|###.SupportedFingerprintAlgorithms}}. + + + + + + As specified in {{bibref|RFC3174}}. + + + + + As specified in {{bibref|RFC6234}}. + + + + + As specified in {{bibref|RFC6234}}. + + + + + As specified in {{bibref|RFC6234}}. + + + + + As specified in {{bibref|RFC6234}}. + + + + + + + + + Output arguments. + + + + The value of the fingerprint. + + + + + + + + + + + + + This object contains information that an Agent applies when establishing a trust relationship with a Controller. + + + + {{list|each entry is a Role that is associated with Controllers whose identity cannot be authenticated. The value of the {{param}} parameter is appended to the {{param|##.LocalAgent.Controller.{i}.AssignedRole}} parameter}} + In some instances, this policy is set by the Agent and cannot be modified by Controllers. If the Agent does not allow modification of this parameter, the Agent MUST respond with an error to the request to set this parameter. + + + + + + + + + + + The Role that is associated with Controllers indicate banned access. + When assigned to a Controller or associated with an entry in the {{object|Credential}} table, this MUST be the only value of the {{param}} parameter of the {{param|##.LocalAgent.Controller.{i}.AssignedRole}} parameter. + The Agent SHOULD refuse to accept USP messages from, or send USP messages to, any Controller that has this Role. + + + + + + + + + + When {{true}}, Agent has active policy that allows for self-signed certificates and certificates from unknown Certificate Authorities (CAs) to be trusted on first use (TOFU). + + + + + + + + Inactivity timer in {{units}}. + This timer is started when trust on first use (TOFU) policy is used to accept a Controller certificate. If no USP Message is received before this timer elapses, the Agent MUST tear down the MTP connection and underlying (D)TLS session. + A value of 0 means that the TOFU inactivity timer is effectively disabled. + + + + + + + + + + This command is issued to retrieve the instruction for the referenced challenge. + There is at most one (1) outstanding RequestChallenge for a requesting Controller. + As such, any new challenges with a different value of the {{param|ChallengeRef}} parameter are denied until a successful response to the outstanding challenge is received by the Agent or the current RequestChallenge expires. + When the value of the {{param|ChallengeRef}} parameter defined in the RequestChallenge does not exist, the Agent returns an "Invalid Value" error. + + + + Input arguments. + + + + {{reference|the {{object|#.Challenge}} object instance for this request}} + + + + + + + + + + The expiration period, in {{units}}, where the Controller request that this challenge request expire (times-out). + A value of zero indicates that the challenge request will never expire. The default is 900 {{units}}. + + + + + + + + + + + + Output arguments. + + + + The value of the {{param|##.Challenge.{i}.Instruction}} parameter associated with the requested challenge in the {{param|#.Input.ChallengeRef}} parameter. + + + + + + + + The media type with a format as defined by {{bibref|RFC6838}} of the content of the {{param|Instruction}} parameter. + The allowable values of the media type are defined by the {{param|##.Challenge.{i}.InstructionType}} parameter. + + + + + + + + The media type with a format as defined by {{bibref|RFC6838}} of the content of the {{param|##.Challenge.{i}.Value}} parameter. + The allowable values of the media type are defined by the {{param|##.Challenge.{i}.ValueType}} parameter. + + + + + + + + The challenge identifier the Controller uses in the ChallengeResponse command to correlate this request with a response. + + + + + + + + + + This command is issued to return the response of challenge. + + + + Input arguments. + + + + The challenge identifier the Controller uses to correlate the challenge request with a response. + + + + + + + + The value of the challenge that is specific to the type of challenge. The challenge value is provided by the external party to the Controller. + + + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + Each instance of this table represents a Role that can be assigned to or inherited by a Controller via the Controller Trust mechanism. The Role contains a set of permissions that determine how the Controller can interact with the data model. + If multiple permission entries associated with this table contain a Target that evaluates to the same instantiated Object/Parameter for multiple Roles, then the permissions to be used are a union of the identified permissions. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Enable/Disable this {{object}} instance. + + + + + + + + + The Role assigned to this {{object}} instance. + + + + + + + + {{numentries}} + + + + + + + + + Each instance of this table represents the permissions that are extended to a set of Targets for a specified Role. + If there are multiple entries in this table for a specific Role where the Targets overlap, the permissions for the entry with the highest value takes priority over all others. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Enable/Disable this {{object}} instance. + + + + + + + + + The order (relative priority) to use when determining the permissions for overlapping Targets that are contained within the same {{object|#.}}. + The larger value of this parameter takes priority over a permission with a smaller value (i.e., 0 has the lowest priority). + + + + + + + + + {{list|each entry is a target to which the value of the permissions parameters are assigned}} + When an entry is a value of a Partial Path, the permissions are associated to that Object and any child Object/Parameter. + When the value of an entry is an Object instance then the permissions are associated to all Parameters of the Object instance. + When an entry is a value of a Search Path as defined in {{bibref|TR-369}} that resolves to zero or more Parameter Paths, then all Parameter Paths that result from the evaluation of the Search Path are subject to the permissions assigned by this {{object}} instance. + + + + + + + + + + The permissions of a Role for the specified Targets. + A string of 4 characters where each character represents a permission ("r" for Read, "w" for Write, "x" for Execute", and "n" for Notify). + The string is always in the same order (rwxn) and the lack of a permission is signified by a "-" character (e.g., r--n). + The following describes the meaning of the permissions for Parameter type of Targets: + # Read: Grants the capability to read the value of the Parameter via Get and read the meta-information of the Parameter via GetSupportedDM. + # Write: Grants the capability to update the value of the Parameter via Add or Set. + # Execute: Grants no capabilities; Parameters can not be executed. + # Notify: Grants the capability to use this Parameter in the ReferenceList of a ValueChange Subscription. + + + + + + + + + + + The permissions of a Role for the specified Targets. + A string of 4 characters where each character represents a permission ("r" for Read, "w" for Write, "x" for Execute", and "n" for Notify). + The string is always in the same order (rwxn) and the lack of a permission is signified by a "-" character (e.g., r--n). + The following describes the meaning of the permissions for Object type of Targets: + # Read: Grants the capability to read the meta-information of the Object via GetSupportedDM. + # Write: Grants no capabilities for Static Objects. Grants the capability to create a new instance of a Multi-Instanced Object via Add (e.g. Device.LocalAgent.Controller.). + # Execute: Grants no capabilities; Objects are not executable and Commands are controlled by the CommandEventPermissions. + # Notify: Grants the capability to use this Object in the ReferenceList of an ObjectCreation (for multi-instance objects only) Subscription. + + + + + + + + + + + The permissions of a Role for the specified Targets. + A string of 4 characters where each character represents a permission ("r" for Read, "w" for Write, "x" for Execute", and "n" for Notify). + The string is always in the same order (rwxn) and the lack of a permission is signified by a "-" character (e.g., r--n). + The following describes the meaning of the permissions for Instantiated Object type of Targets: + # Read: Grants the capability to read the instance numbers and unique keys of the Instantiated Object via GetInstances and read the value of Parameters related to the Instantiated Object via a Get containing a search expression or wildcard in place of the instance identifier. + # Write: Grants the capability to remove an existing instance of an Instantiated Object via Delete (e.g. Device.LocalAgent.Controller.1.). + # Execute: Grants no capabilities; Object Instances are not executable and Commands are controlled by the CommandEventPermissions. + # Notify: Grants the capability to use this Instantiated Object in the ReferenceList of an ObjectDeletion Subscription. + + + + + + + + + + + The permissions of a Role for the specified Targets. + A string of 4 characters where each character represents a permission ("r" for Read, "w" for Write, "x" for Execute", and "n" for Notify). + The string is always in the same order (rwxn) and the lack of a permission is signified by a "-" character (e.g., r--n). + The following describes the meaning of the permissions for Command and Event type of Targets: + # Read: Grants the capability to read the meta-information of the Command (including input and output arguments) and Event (including arguments) via GetSupportedDM. + # Write: Grants no capabilities; Commands are executed instead of written to and Events are read only. + # Execute: Grants the capability to execute the Command via Operate, but grants no capabilities to an Event. + # Notify: Grants the capability to use this Event or Command in the ReferenceList of an Event or OperationComplete Subscription. + + + + + + + + + + + + Each instance of this table represents a trusted credential. The credential can be that of a certificate authority (CA) for a Controller whose EndpointID is unknown. + When a credential is supplied to the Agent by a Controller during authentication, the credentials in this table are used to determine if any of the supplied certificates (including those in the chain of trust) are considered "trusted". + If the Controller authenticated via an entry in this table is not previously known to the Agent, the associated Role entry is automatically applied to the Controller. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Enable/Disable this {{object}} instance. + + + + + + + + + {{nolist}} + Comma-separated list of strings, the (set of) Role(s) applied to a Controller authenticated through this {{object}} instance. + The roles are added to the Controller's current list of Roles by replacing the value of the {{param|###.LocalAgent.Controller.{i}.InheritedRole}} parameter. + If the Controller is already known to the Agent, with an associated Role, this parameter has no impact. + + + + + + + + + + + A reference to the {{object|##.Certificate.{i}}} instance for use in the authentication of certificates provided by a Controller and authorization of Controllers, and for authentication of certificates used for MTP encryption. + + + + + + + + + + Identifies what usages the Certificate Authority (CA) authenticated by the associated credential is trusted to authorize. + + + + + + The CA can only authorize MTP (domain) connectivity, and cannot authenticate Controllers. + + + + + The CA can authorize MTP (domain) connectivity and authenticate Controllers. + + + + + The CA can authorize MTP (domain) connectivity and the presenter of this certificate is trusted to have authenticated the identity of Endpoints whose Records it transmits such that the from_id can be trusted without additional authentication. See {{bibref|TR-369|"Authentication and Authorization"}} for additional description of the Trusted Broker function. + + + + + + + + + Each instance of this table represents information that is used to challenge a Controller in order to assign a Role to the Controller or to determine the authenticity of a Certificate. + The Controller requests a type of challenge from an Agent using the RequestChallenge command. + The Agent returns the value of the {{param|Instruction}} for that type of challenge to the Controller which the Controller then provides a third-party. + The third-party responds to the Instruction which the Controller then sends to the Agent using the ChallengeResponse command. + The Agent verifies the response to the Challenges and executes an implementation specific Agent logic in order to establish trust with the Controller. + This could include (but is not limited to): + *Assignment of roles to the Controller is done by appending the non-duplicate roles of the {{param|Role}} parameter to the value of the {{param|###.LocalAgent.Controller.{i}.AssignedRole}} parameter. + *Use the Controller's certificate to which the challenge response was received in order to authenticate the identity of the Controller. + + + + + + + {{datatype|expand}} + + + + + + + + The description of this {{object}} instance. + + + + + + + + {{nolist}} + Comma-separated list of strings, the (set of) role(s) appended (non-duplicate values only) to the value of the {{param|###.LocalAgent.Controller.{i}.AssignedRole}} parameter. + + + + + + + + + + + Enable/Disable this {{object}} instance. + + + + + + + + + The type of challenge that will be verified from the challenge response provided by the third-party through the Controller. + + + + + + The challenge uses a passphrase the third-party is expected to match. + + + + + + + + The value of the challenge that is specific to the type of challenge. + + + + + + The media type with a format as defined by {{bibref|RFC6838}} of the content of the {{param|Value}} parameter. + + + + + + + + + + + The instruction that is provided to the external party by the Controller requesting the challenge. + + + + + + + + The media type with a format as defined by {{bibref|RFC6838}} of the content of the {{param|Instruction}} parameter. + + + + + + + + + + + + The number of times a challenge is retried before the challenge procedure is terminated. + + + + + + + + The time, in {{units}} that a Controller that has failed the challenge is locked out (based on the value of the {{param|Retries}} parameter) prior to being provided the challenge again. + A value of zero means that a LockoutPeriod doesn't apply and the challenge can be provided indefinitely. + + + + + + + + + + + + + The {{object}} represents the STOMP capabilities of the device as described in {{bibref|TR-369}}. + + + + {{numentries}} + + + + + + + + + The {{object}} represents a STOMP connection between the Agent and a STOMP server. + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Enables or disables this {{object}}. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + + The current operational state of this {{object}} (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Disabled}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Enabled}} if and only if the interface is able to transmit and receive PDUs; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + + + + + + + + + + + + + + + + + The date and time at which this {{object}} entered into its current operational state. + + + + + + + + The hostname or IP Address of the STOMP Server. + + + + + + + + + + The port number of the STOMP Server. + + + + + + + + + + + The username part of the credentials to be used when authenticating this {{object}} during connection establishment with the STOMP Server. + + + + + + + + + + The password part of the credentials to be used when authenticating this {{object}} during connection establishment with the STOMP Server. + + + + + + The Virtual Host to use when establishing the connection. + Some STOMP Server implementations utilize virtual hosts to place a context around credentials, permissions, and internal resources. + + + + + + + + + + + Enable or disable the STOMP Heart-beating mechanism as described in STOMP (for this {{object}}). + When the STOMP Heart-beat mechanism is enabled, {{param|OutgoingHeartbeat}} and {{param|IncomingHeartbeat}} determine how the heart-beat header within the CONNECT frame is formatted. + When the STOMP Heart-beat mechanism is disabled, {{param|OutgoingHeartbeat}} and {{param|IncomingHeartbeat}} are ignored and the CONNECT frame MUST NOT contain a heart-beat header element. + Any changes to this parameter will not take effect until the next connection. + + + + + + + + + Represents the Outgoing heart-beat timing of the STOMP Heart-beating mechanism as described in STOMP (for this {{object}}). + The Outgoing heart-beat represents what the sender of the frame can do. A value of 0 means that it cannot send heart-beats. + Any changes to this parameter will not take effect until the next connection. + + + + + + + + + + + Represents the Incoming heart-beat timing of the STOMP Heart-beating mechanism as described in STOMP (for this {{object}}). + The Incoming heart-beat represents what the sender of the frame would like to get. A value of 0 means that it does not want to receive heart-beats. + Any changes to this parameter will not take effect until the next connection. + + + + + + + + + + + The maximum first reconnection wait interval, in {{units}}, as specified in {{bibref|TR-369}}. + The Device MUST use a random value between ''0'' and {{param}} as the first reconnection wait interval. + + + + + + + + + + + + The reconnection interval multiplier as specified in {{bibref|TR-369}}. This value is expressed in units of 0.001. Hence the values of the multiplier range between 1.000 and 65.535. + For the ''n''th reconnection wait interval, the Device MUST use a random value, in ''seconds'', between ''0'' and {{param|ServerRetryInitialInterval}} * ({{param}} / 1000) ** (''n'' - ''1''). + The server retry mechanism reaches its upper limit at 10 reconnection attempts. Meaning, that if the number of reconnection attempts exceeds 10, then the Device MUST use a random value, in seconds, between 0 and ServerRetryInitialInterval * (ServerRetryIntervalMultiplier / 1000) ** (10 - 1). + + + + + + + + + + + The maximum reconnection wait interval, in {{units}}. + If the ''n''th reconnection wait interval calculated from {{param|ServerRetryInitialInterval}} and {{param|ServerRetryIntervalMultiplier}} exceeds the value of this parameter, then the Agent MUST use the value of this parameter as the next reconnection wait interval. + + + + + + + + + + + + This parameter represents whether or not communications that utilize this {{object}} object instance are encrypted. + This parameter is DEPRECATED, because the {{param|EnableEncryption}} parameter will dictate whether all connections for this STOMP instance are or are not encrypted. + + + + + + + + When {{true}}, encryption MUST be used for this STOMP Connection {{object}}. + + + + + + + + + + Capabilities of a Device as it pertains to entering a standby state. + + + + Indicates that the device is capable of maintaining a network connection and responding to communications via the network connection while in a standby state. + + + + + + + + Indicates that the device is capable of maintaining and responding to timers while in a standby state. + + + + + + + + + The {{object}} represents the XMPP capabilities of the device{{template|XMPP-APP-REF}}. + + + + {{numentries}} + + + + + + + + The algorithms supported by the CPE for resolving XMPP server addresses and ports. {{enum}} + + + + + + + Use the preferred connection algorithm as specified in {{bibref|RFC6120|Section 3.2.1}} where the value of the {{param|Connection.{i}.Domain}} parameter is used to look up the server address and port to use. + + + + + Use the fallback connection mechanism as specified in {{bibref|RFC6120|Section 3.2.2}}, where the value of the {{param|Connection.{i}.Domain}} parameter is used to look up the server address, and the port is the ''xmpp-client'' port (5222). + + + + + Use the instances of the {{object|Connection.{i}.Server}} table based on the values of the {{param|Connection.{i}.Server.{i}.Priority}} and {{param|Connection.{i}.Server.{i}.Weight}} parameters as the basis for reconnect. Instances MUST be reachable and reachable instances with the lowest value MUST be preferred. + + + + + Use the discovery and connection algorithm as specified in {{bibref|RFC7395|Section 4}} where the value of the {{param|Connection.{i}.Domain}} parameter is used to create a secure HTTP request to discover the URL to use for the XMPP over WebSocket connection. + + + + + + + + + The {{object}} represents a XMPP connection between the device and a server. The {{param|Username}}, {{param|Domain}} and {{param|Resource}} comprise the full identity (JabberID) of this {{object}} for this device. + + + + + + + + + + + + Enables or disables this {{object}}. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + + {{datatype|expand}} + + + + + + + + The proposed local-part of the Jabber ID of this {{object}}, and the value to be used to authenticate this {{object}} when making a connection to the Server using the procedure outlined in {{bibref|RFC6120|Section 6}}. + + + + + + + + + + Password used to authenticate this {{object}} when making a connection to the {{object|Server}} using the procedure outlined in {{bibref|RFC6120|Section 6}}. + Note that on a factory reset of the CPE, the value of this parameter might be reset to its factory value. If a Controller modifies the value of this parameter, it SHOULD be prepared to accommodate the situation that the original value is restored as the result of a factory reset. + + + + + + The proposed domain-part of the Jabber ID of this {{object}}. + + + + + + + + + + The proposed resource-part of the Jabber ID of this {{object}}. + + + + + + + + + + The complete Jabber ID as determined by the first-hop XMPP server at time of connection establishment. This Jabber ID will usually be the standard concatentation of the local-part (Username), domain-part (Domain), and resource-part (Resource) as defined in {{bibref|RFC6120|Section 2.1}} (local-part@domain-part/resource-part), but since the Jabber ID is owned by the first-hop XMPP Server there are cases where the value will be different. + + + + + + + + The current operational state of this {{object}} (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + When {{param|Enable}} is {{false}} then {{param}} SHOULD normally be {{enum|Disabled}} or {{enum|Error}} if there is a fault condition on the interface). + When {{param|Enable}} is changed to {{true}} then {{param}} SHOULD change to {{enum|Enabled}} if and only if the interface is able to transmit and receive PDUs; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Enabled}} if still operable when the expected actions have completed); it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + + + + + + + + + + + + + + + + + + The date and time at which this {{object}} entered into its current operational state. + + + + + + + + The algorithm the {{object}} uses when connecting with the associated lists of servers. + + + + + + + + + + + The number of {{units}} that keep alive events as specified in {{bibref|RFC6120|Section 4.6.1}} are sent by this {{object}}. + A value of 0 disables the keep alive functionality. A value of -1 indicates that the keep alive interval is a vendor specific implementation. + {{bibref|RFC6120|Section 4.6.4}} recommends not checking more frequently than every 5 minutes (or 300 {{units}}). + + + + + + + + + + + + The number of times that this {{object}} attempts to connect to a given IP address before moving on to the current server's next IP address, or to the next server if the current server has no more IP addresses. + If {{param}}, {{param|ServerRetryInitialInterval}}, {{param|ServerRetryIntervalMultiplier}} and {{param|ServerRetryMaxInterval}} all have their default values, the maximum reconnection wait intervals, in ''minutes'', will be ''{1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 512, 512, 512, 512, 512}''. After the initial attempt there are 15 further attempts, making a total of 16. The maximum reconnection wait interval is reached on the 10th retry, i.e. the 11th attempt. + NOTE: If this {{object}} fails to connect to any of the servers' IP addresses, fallback behavior SHOULD be as specified in {{bibref|RFC6120|Section 3.2}}. + NOTE: If the value of this parameter is 0, server connection and reconnection behavior is implementation-dependent. + + + + + + + + + The maximum first reconnection wait interval, in {{units}}{{template|XMPP-REF}}. + The Device MUST use a random value between ''0'' and {{param}} as the first reconnection wait interval. + NOTE: If the value of the {{param|ServerConnectAttempts}} parameter is 0, the value of this parameter is ignored. + + + + + + + + + + + + The reconnection interval multiplier{{template|XMPP-REF}}. This value is expressed in units of 0.001. Hence the values of the multiplier range between 1.000 and 65.535. + For the ''n''th reconnection wait interval, the Device MUST use a random value, in ''seconds'', between ''0'' and {{param|ServerRetryInitialInterval}} * ({{param}} / 1000) ** (''n'' - ''1''). + NOTE: If the value of the {{param|ServerConnectAttempts}} parameter is 0, the value of this parameter is ignored. + + + + + + + + + + + The maximum reconnection wait interval, in {{units}}. + If the ''n''th reconnection wait interval calculated from {{param|ServerRetryInitialInterval}} and {{param|ServerRetryIntervalMultiplier}} exceeds the value of this parameter, then the Device MUST use the value of this parameter as the next reconnection wait interval. + NOTE: If the value of the {{param|ServerConnectAttempts}} parameter is 0, the value of this parameter is ignored. + + + + + + + + + + + + This parameter allows a Controller to configure whether or not this XMPP Connection is required to use TLS independent of whether or not the XMPP Server that is being connected to is configured for TLS "mandatory-to-negotiate". + If the value of {{param}} is {{true}} then the CPE will initiate TLS negotiation if not required to by the XMPP Server. + If the value of {{param}} is {{false}} then the CPE will not initiate TLS negotiation if not required to by the XMPP Server. + + + + + + + + + This parameter represents the TLS state of this XMPP Connection. + If this XMPP Connection is established and is secured by TLS then the value of this parameter is {{true}}. + If this XMPP Connection is either not established or established but not secured by TLS then the value of this parameter is {{false}}. + + + + + + + + {{numentries}} + + + + + + + + + The {{object}} represents an XMPP server to be used for a {{object|##.Connection}}. + This table is only relevant when {{param|##.Connection.{i}.ServerConnectAlgorithm}} is set to {{enum|ServerTable|##.Connection.{i}.ServerConnectAlgorithm}}. If {{param|##.Connection.{i}.ServerConnectAlgorithm}} is set to {{enum|DNS-SRV|##.Connection.{i}.ServerConnectAlgorithm}} then any instances of this table are ignored by this {{object|##.Connection}}. + + + + + + + + + + + Enables or disables this {{object}}. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + + {{datatype|expand}} + + + + + + + + The priority of this {{object}} that is used by the {{object|##.Connection}} when determining the {{object}} to connect. The {{object|##.Connection}} MUST contact the {{object}} with the lowest-numbered priority that the {{object|##.Connection}} can reach as defined in {{bibref|RFC2782}}. The selection of {{object}}s with the same {{param}} value utilizes the {{param|Weight}} parameter to determine which {{object}} is selected by the {{object|##.Connection}}. + + + + + + + + + + This parameter specifies a relative weight for entries with the same {{param|Priority}}. The mechanism is defined in {{bibref|RFC2782}}. A value of -1 indicates that the implementation of this parameter is specific to the Vendor. + + + + + + + + + + Fully Qualified Domain Name (FQDN) or IP address of the XMPP server for this {{object|##.Connection}}. + If the value of this Parameter is a FQDN that resolves to multiple addresses then each address SHOULD be attemtped (in an implemnetation-specific order) until a connection can be made or all addresses are exhausted, in which case the next {{object}} instance (based on {{param|Priority}} and {{param|Weight}}) SHOULD be used. + + + + + + + + + + Port number of the XMPP server for this {{object|##.Connection}}. + + + + + + + + + + + + XMPP Connection statistics information for this resource. + + + + The number of XMPP stanzas (iq, presence, or message) that have been received on this {{object|##.Connection}}. + + + + + + + + + The number of XMPP stanzas (iq, presence, or message) that have been transmitted by this {{object|##.Connection}}. + + + + + + + + + The number of XMPP stanzas (iq, presence, or message) that have been received on this {{object|##.Connection}} where the type attribute had a value of "error". + + + + + + + + + The number of XMPP stanzas (iq, presence, or message) that have been transmitted by this {{object|##.Connection}} where the type attribute had a value of "error". + + + + + + + + + + This object represents the management functions for the 1905 capabilities as defined in {{bibref|IEEE1905.1a}}. + + + + 1905 profile version number of the AL as would be sent in a Higher Layer response message as defined in {{bibref|IEEE1905.1a|Table 6-37: 1905 profile version TLV}}. + + + + + + + + + + + + This object represents the management functions for the 1905 Abstraction Layer as defined in {{bibref|IEEE1905.1a|Section 4.4 Abstraction Layer}}. + + + + 1905 AL MAC Address. + + + + + + + + The current operational state of the 1905 Abstraction Layer. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + NOT RECOMMENDED for use; if used it means {{enum|Enabled}} + + + + + NOT RECOMMENDED for use; if used it means {{enum|Disabled}} + + + + + NOT RECOMMENDED for use; if used it means {{enum|Error}} + + + + + NOT RECOMMENDED for use; if used it means {{enum|Error}} + + + + + NOT RECOMMENDED for use; if used it means {{enum|Error}} + + + + + NOT RECOMMENDED for use; if used it means {{enum|Error}} + + + + + + + + + This parameter is NOT RECOMMENDED to be used because IEEE1905 is not an interface. The accumulated time in {{units}} since the 1905 Abstraction Layer entered its current operational state. + + + + + + + + + + This parameter is NOT RECOMMENDED to be used because IEEE1905 is not an interface. {{list}} {{reference}} See {{bibref|TR-181i2|Section 4.2.1}}. + + + + + + + + + + + + + {{list}} See {{bibref|IEEE1905.1a|Table 6-25: SupportedFreqBand TLV}}. {{enum}} + + + + + + + + + + + + + + + {{numentries}} + + + + + + + + + The 1905 interface table (described in {{bibref|IEEE1905.1a|sub-clause 5 Abstraction Layer Management}}). + + + + + + + MAC Address of this interface. This is the value of the intfAddress parameter defined in {{bibref|IEEE1905.1a|Table 5-2: intfDescriptor elements}} + + + + + + + + This parameter is NOT RECOMMENDED to be used because it is not a parameter defined in a 1905 ALME primitive or protocol TLV. The current operational state of the interface (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + It SHOULD change to {{enum|Up}} if and only if the interface is able to transmit and receive network traffic; it SHOULD normally be {{enum|Down}} when the interface cannot transmit and receive network traffic; it SHOULD change to {{enum|Dormant}} if and only if the interface is operable but is waiting for external actions before it can transmit and receive network traffic (and subsequently change to {{enum|Up}} if still operable when the expected actions have completed); it SHOULD change to {{enum|LowerLayerDown}} if and only if the interface is prevented from entering the {{enum|Up}} state because one or more of the interfaces beneath it is down; it SHOULD remain in the {{enum|Error}} state if there is an error or other fault condition detected on the interface; it SHOULD remain in the {{enum|NotPresent}} state if the interface has missing (typically hardware) components; it SHOULD change to {{enum|Unknown}} if the state of the interface can not be determined for some reason. + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + This parameter is NOT RECOMMENDED to be used because it is not a parameter defined in a 1905 ALME primitive or protocol TLV. The accumulated time in {{units}} since the interface entered its current operational state. + + + + + + + + + + This parameter is NOT RECOMMENDED to be used because it is not a parameter defined in a 1905 ALME primitive or protocol TLV. {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + + + + + + + + + + + + + Path name of an interface object described by this 1905 {{object}}. Referenced interface object MUST have a MACAddress and the InterfaceId MUST be the same as the interface object MACAddress. + + + + + + + + + + Media type of this {{object}}. This is derived from the value of the intfType parameter defined in {{bibref|IEEE1905.1a|Tables 5.2: intfDescriptor elements}}. {{enum}} + + + + + + IEEE 802.3u Fast Ethernet + + + + + IEEE 802.3ab Gigabit Ethernet + + + + + IEEE 802.11b (2.4GHz) + + + + + IEEE 802.11g (2.4GHz) + + + + + IEEE 802.11a (5GHz) + + + + + IEEE 802.11n (2.4GHz) + + + + + IEEE 802.11n (5GHz) + + + + + IEEE 802.11ac (5GHz) + + + + + IEEE 802.11ad (60GHz) + + + + + IEEE 802.11af + + + + + IEEE 1901 Wavelet + + + + + IEEE 1901 FFT + + + + + MoCAv1.1 + + + + + + + + + OUI of the Generic Phy networking technology of the local interface that would be included in a Generic Phy Device Information Type TLV defined in {{bibref|IEEE1905.1a|Tables 6-29: Generic Phy Device Information type TLV}}. + + + + + + + + + + + Variant Index of the Generic Phy networking technology of the local interface that would be included in a Generic Phy Device Information Type TLV defined in {{bibref|IEEE1905.1a|Tables 6-29: Generic Phy Device Information type TLV}}. + + + + + + + + + + {{datatype}} to the Generic Phy XML Description of the Generic Phy networking technology of the local interface that would be included in a Generic Phy Device Information Type TLV defined in {{bibref|IEEE1905.1a|Table 6-29: Generic Phy device information type TLV}}. + + + + + + + + Enables or disables the Abstraction Layer's ability to set the power state for the interface. Boolean can be {{true}} for "enabled" and {{false}} for "disabled". + + + + + + + + The Power State of this {{object}}. This is derived from the value of the powerState parameter as defined in {{bibref|IEEE1905.1a|Tables 5.3: ALME-SET-INTF-PWR-STATE.request parameters and Table 5.7: ALME-GET-INTF-PWR-STATE.response parameters}}. {{enum}} + + + + + + + not used when written + + + + + + not used when written + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + This object defines the vendor specific properties (vendorSpecificInfo field) of this {{object|##.Interface}} as defined in {{bibref|IEEE1905.1a|Table 5-2: intfDescriptor elements}}. + + + + Organizationally unique identifier of a manufacturer of this {{object|##.Interface}}. Represented as a six hexadecimal-digit value using all upper-case letters and including any leading zeros according to {{bibref|IEEE1905.1a|Table 5-20: VendorSpecificInfo information element}}. {{pattern}} + + + + + + + + + + + A hexbinary string used to to provide vendor specific information about this {{object|##.Interface}}. This is the value of the vendorSpecificInfo parameter defined in {{bibref|IEEE1905.1a|Table 5-20: VendorSpecificInfo information element}}. + + + + + + + + + + + This object defines the 1905 neighbors and link properties. + + + + + + + + MAC Address of the interface of the Neighbor for this {{object}}. This value comes from the neighbor’s Topology discovery message as defined in {{bibref|IEEE1905.1a|Table 6-9: MAC address typeTLV}}. + + + + + + + + MAC Address of the 1905 AL entity of the Neighbor device on this {{object}}. This value comes from the neighbor’s Topology discovery message as defined in {{bibref|IEEE1905.1a|Table 6-8: AL MAC address type TLV}}. + + + + + + + + Media type of this {{object}}. This value is derived from the neighbor’s Topology response message 1905 device information type TLV Media Type field as defined in {{bibref|IEEE1905.1a|Table 6-12: Media type}}. {{enum}} + + + + + + IEEE 802.3u Fast Ethernet + + + + + IEEE 802.3ab Gigabit Ethernet + + + + + IEEE 802.11b (2.4GHz) + + + + + IEEE 802.11g (2.4GHz) + + + + + IEEE 802.11a (5GHz) + + + + + IEEE 802.11n (2.4GHz) + + + + + IEEE 802.11n (5GHz) + + + + + IEEE 802.11ac (5GHz) + + + + + IEEE 802.11ad (60GHz) + + + + + IEEE 802.11af + + + + + IEEE 1901 Wavelet + + + + + IEEE 1901 FFT + + + + + MoCAv1.1 + + + + + + + + + OUI of the Generic Phy networking technology of the interface of the Neighbor for this {{object|#.Link}}. This value is from a Generic Phy response message field as defined in {{bibref|IEEE1905.1a|Tables 6-29: Generic Phy Device Information type TLV}}. + + + + + + + + + + + Variant Index of the Generic Phy networking technology of the interface of the Neighbor for this {{object|#.Link}}. This value is from a Generic Phy response message variant index field as defined in {{bibref|IEEE1905.1a|Tables 6-29: Generic Phy Device Information type TLV}}. + + + + + + + + + + {{datatype}} to the Generic Phy XML Description of the Generic Phy networking technology of the interface of the Neighbor for this {{object|#.Link}}. This value is from a Generic Phy response message URL to Generic Phy field as defined in {{bibref|IEEE1905.1a|Table 6-29: Generic Phy device information type TLV}}. + + + + + + + + + This object represents the metrics for this {{object|##.Link}} as defined in {{bibref|IEEE1905.1a|Tables 6-18: 1905 transmitter link metrics and Table 6-20: 1905 receiver link metrics}}. + + + + Indicates whether or not the 1905 link includes one or more IEEE 802.1 bridges. If {{false}}, the 1905 link does not include an IEEE 802.1 bridge. If {{true}}, the 1905 link does include one or more IEEE 802.1 bridges. + + + + + + + + Estimated number of lost {{units}} on the transmit side of the link {{bibref|IEEE1905.1a|Table 6-18: 1905 transmitter link metrics}} during a measurement period. + + + + + + + + + + Estimated number of lost {{units}} on the receive side of the link {{bibref|IEEE1905.1a|Table 6-20: 1905 receiver link metrics}} during a measurement period. + + + + + + + + + + Estimated number of {{units}} sent to the Neighbor on this {{object|##.Link}}, in the same measurement period used to estimate {{param|PacketErrors}}. + + + + + + + + + + Estimated number of {{units}} received from this Neighbor on this {{object|##.Link}} {{bibref|IEEE1905.1a|Table 6-20: 1905 receiver link metrics}}, in the same measurement period used to estimate {{param|PacketErrors}}. + + + + + + + + + + The maximum MAC throughput in {{units}} between this {{object|###.Interface}} and the Neighbor on this {{object|##.Link}} that is estimated at this {{object|###.Interface}}. + + + + + + + + + + The estimated average {{units}} of time that the {{object|##.Link}} is available for data transmissions. + + + + + + + + + + + The Physical Layer (PHY) rate in {{units}} between this {{object|###.Interface}} and the Neighbor on this {{object|##.Link}} that is estimated at this {{object|###.Interface}}. + + + + + + + + + + The estimated Received Signal Strength Indicator (RSSI) ratio in {{units}} between this {{object|###.Interface}} and the Neighbor on this {{object|##.Link}} that is estimated at the receive side of this {{object|###.Interface}}. + + + + + + + + + + + + This object represents the rules to forward PDUs between interfaces within the 1905 Abstraction Layer. + + + + Abstraction Layer ability to set, modify, and remove {{object|ForwardingRule}} entries for interfaces. Boolean can be {{true}} for "enabled" and {{false}} for "disabled". + + + + + + + + {{numentries}} + + + + + + + + + The 1905 fowarding rule for the ALME-SET-FWD-RULE.request and ALME-GET-FWD-RULES.response with classification criteria as defined in {{bibref|IEEE1905.1a|Table 5-9: ClassificationSet elements}}. + + + + The list of interfaces to which a frame satisfying the following classification criteria should be forwarded (intfAddressList parameter as defined in {{bibref|IEEE1905.1a|Table 5-8: ALME-SET-FWD-RULE.request parameters and Table 5-12: fwdRuleList elements}}). {{list}} Each list item MUST be the path name of an object, which MUST be a row of an {{object|##.Interface}} object. If the referenced item is deleted, the corresponding item MUST be removed from the list. {{noreference}} + + + + + + + + + + + + + Classification criterion. + The destination MAC address. + + + + + + + + If {{false}}, the classification criterion {{param|MACDestinationAddress}} is ignored. If {{true}}, the classification criterion {{param|MACDestinationAddress}} is used. + + + + + + + + + Classification criterion. + The source MAC address. + + + + + + + + If {{false}}, the classification criterion {{param|MACSourceAddress}} is ignored. If {{true}}, the classification criterion {{param|MACSourceAddress}} is used. + + + + + + + + + Classification criterion. + Ether Type Field in a frame. + + + + + + + + If {{false}}, the classification criterion {{param|EtherType}} is ignored. If {{true}}, the classification {{param|EtherType}} is used. + + + + + + + + + Classification criterion. + IEEE 802.1Q VLAN ID in a frame. + + + + + + + + + + If {{false}}, the classification criterion {{param|Vid}} is ignored. If {{true}}, the classification {{param|Vid}} is used. + + + + + + + + + Classification criterion. + IEEE 802.1Q Priority Code Point field. + + + + + + + + + + If {{false}}, the classification criterion {{param|PCP}} is ignored. If {{true}}, the classification {{param|PCP}} is used. + + + + + + + + + + This object represents the 1905 Network Topology capabilities of this device. + + + + Enables or disables the 1905 Network Topology reporting (via a Controller). When {{true}}, the device clears and (re)populates the {{object|IEEE1905Device}} and {{object|ChangeLog}} tables. When {{false}}, the contents of the {{object|IEEE1905Device}} and {{object|ChangeLog}} tables have no meaning. + + + + + + + + When {{param|Enable}} is set to {{true}}, this parameter indicates the transient phase of the discovery of the {{object}}. + {{enum}} + + + + + + Indicates that the device is populating the topology object during the transient phase. + + + + + Indicates that the transient phase is over and the device is maintaining and updating the topology object as changes occur. + + + + + NOT RECOMMENDED for use; if used, indicates that a necessary configuration value is undefined or invalid. + + + + + + + + The maximum number of entries allowed in the {{object|ChangeLog}} table. + + + + + + + + + + {{reference}} If the {{object|ChangeLog}} is modified the parameter is modified to reflect the last entry added to the {{object|ChangeLog}}. + + + + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + This object represents log entries for changes in the 1905 Network Topology. The Change Log is a First In First Out queue where the oldest entries (defined by values of the {{param|TimeStamp}} parameter) are deleted once the log is full. + + + + Date and Time at which the entry was added to the {{object}} table. + + + + + + + + Type of event for this entry. {{enum}} + + + + + + Entry represents a discovery of a Neighbor. + + + + + Entry represents the loss of a Neighbor. + + + + + + + + 1905 AL MAC Address of device which reported the change. + + + + + + + + MAC Address of the interface of the reporting device on which the change has been detected. + + + + + + + + Type of Neighbor for this event. {{enum}} + + + + + + + + + + + MAC Address of the Neighbor of this event. If the value of the {{param|EventType}} parameter is {{enum|NewNeighbor|EventType}}, then the value of this parameter represents the MAC Address of the new Neighbor that joined the network; if the value of the {{param|EventType}} parameter is {{enum|LostNeighbor|EventType}}, then the value of this parameter represents the MAC Address of the Neighbor that left the network. + If value of the {{param|NeighborType}} parameter is {{enum|IEEE1905|NeighborType}}, then the value of this parameter is the 1905 AL MAC Address of the Neighbor. + + + + + + + + + This object represents an instance of discovered 1905 Devices in the network (received Topology discovery message as defined in {{bibref|IEEE1905.1a|Clause 6.3.1}}). + + + + + + + 1905 AL MAC Address. + + + + + + + + 1905 profile version number in Higher Layer Response message as defined in {{bibref|IEEE1905.1a|Table 6-37: 1905 profile version TLV}}. + + + + + + + + + + + {{list}} of frequency bands identified as supported for a registrar role in an AP-autoconfiguration response message as defined in {{bibref|IEEE1905.1a|Table 6-25: SupportedFreqBand TLV}} {{enum}}. + + + + + + + + + + + + + + + Friendly Name String received in Higher Layer response message as defined in {{bibref|IEEE1905.1a|Table 6-30: Device Identification Type TLV}}. + + + + + + + + + + Manufacturer Name String received in Higher Layer response message as defined in {{bibref|IEEE1905.1a|Table 6-30: Device Identification Type TLV}}. + + + + + + + + + + Manufacturer Model String received in Higher Layer response message as defined in {{bibref|IEEE1905.1a|Table 6-30: Device Identification Type TLV}}. + + + + + + + + + + Control {{datatype}} received in Higher Layer response message as defined in defined in {{bibref|IEEE1905.1a|Table 6-31: Control URL Type TLV}}. + + + + + + + + {{param}} is a reference to the Wi-Fi Network "APDevice". Since IEEE 1905.1 is the protocol used by the Wi-Fi Alliance's EasyMesh specification for communications, this parameter allows the IEEE 1905.1 portion of the data model to reference the associated EasyMesh portion of the data model. + + + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + This object represents represents all IPv4 addresses reported for a MAC address (AL or interface) in a Higher Layer response message for the IEEE1905Device as defined in {{bibref|IEEE1905.1a|Table 6-32: IPv4 type TLV}}. + + + + + + + + MAC Address. + + + + + + + + IPv4 Address. + + + + + + + + The IPv4 Address Type of this {{param|IPv4Address}}. {{enum}} + + + + + + + + + + + + + Either IPv4 address of DHCPv4 server or IPv6 address of DHCPv6 server. + + + + + + + + + This object represents represents all IPv6 addresses reported for a MAC address (AL or interface) in a Higher Layer response message for the IEEE1905Device as defined in {{bibref|IEEE1905.1a|Table 6-34: IPv6 type TLV}}. + + + + + + + + MAC Address. + + + + + + + + IPv6 Address. + + + + + + + + The IPv6 Address Type of this {{param|IPv6Address}}. {{enum}} + + + + + + + + + + + + + + "::" or the IPv6 address of the origin of this IPv6 address. + + + + + + + + + This object represents vendor specific information received in a message with a Vendor specific TLV (as defined in in {{bibref|IEEE1905.1a|Table 6-7: Vendor specific TLV}}). + + + + The Message type of a message received from this IEEE1905Device that contained a Vendor specific TLV, as defined in {{bibref|IEEE1905.1a|Table 6-4: Message type}}. + + + + + + + + + + This is the value of the Vendor specific OUI defined in {{bibref|IEEE1905.1a|Table 6-7: Vendor specific TLV}}. {{pattern}} + + + + + + + + + + + A hexbinary string used to provide vendor specific information. This is the value of the Vendor specific information parameter defined in {{bibref|IEEE1905.1a|Table 6-7: Vendor specific TLV}}. + + + + + + + + + + + This object represents an instance of an interface for the {{object|##.IEEE1905Device}}. + + + + + + + MAC Address of the interface. This comes from the Topology response message as defined in {{bibref|IEEE1905.1a|Table 6-10: 1905 device information type TLV}}. + + + + + + + + Media type of this {{object}}. This comes from the Topology response message as defined in {{bibref|IEEE1905.1a|Table 6-10: 1905 device information type TLV}}. {{enum}} + + + + + + IEEE 802.3u Fast Ethernet + + + + + IEEE 802.3ab Gigabit Ethernet + + + + + IEEE 802.11b (2.4GHz) + + + + + IEEE 802.11g (2.4GHz) + + + + + IEEE 802.11a (5GHz) + + + + + IEEE 802.11n (2.4GHz) + + + + + IEEE 802.11n (5GHz) + + + + + IEEE 802.11ac (5GHz) + + + + + IEEE 802.11ad (60GHz) + + + + + IEEE 802.11af + + + + + IEEE 1901 Wavelet + + + + + IEEE 1901 FFT + + + + + MoCAv1.1 + + + + + + + + + The Power State of this {{object}}. "{{enum|Off}}" is used for interfaces identified in a Power Off Interface TLV as defined in {{bibref|IEEE1905.1a|Table 6-38}}. "{{enum|On}}" is used for all other interfaces. "{{enum|Power_Save}}" and "{{enum|Unsupported}}" are not used at this time. Updated as a result of a received Interface Power Change response with “request completed” or “alternate change made” Interface Power Change status as defined in {{bibref|IEEE1905.1a|Table 6-40: Interface Power Change status TLV}}. {{enum}} + + + + + + + + + + + + + {{param}} of this {{object|#.Interface}}. {{pattern}} + + + + + + + + + + + Variant Index of the Generic Phy networking technology of this {{object|#.Interface}}. This value is from a Generic Phy response message variant index field as defined in {{bibref|IEEE1905.1a|Table 6-29: Generic Phy device information type TLV}}. + + + + + + + + + + {{datatype}} to the Generic Phy XML Description of the Generic Phy networking technology of this {{object|#.Interface}}. This value is from a Generic Phy response message URL to generic phy field as defined in {{bibref|IEEE1905.1a|Table 6-29: Generic Phy device information type TLV}}. + + + + + + + + MACAddress Field from Media specific information for an 802.11 interface provided in a Topology response message 1905 device information type TLV as defined in {{bibref|IEEE1905.1a|Table 6-13: IEEE 802.11 specific information}}. + + + + + + + + Field from Media specific information for an 802.11 interface provided in a Topology response message 1905 device information type TLV as defined in {{bibref|IEEE1905.1a|Table 6-13: IEEE 802.11 specific information}}. {{enum}} + + + + + + + + + + + + + + Hexadecimal digit. Field from Media specific information for an 802.11 interface provided in a Topology response message 1905 device information type TLV as defined in {{bibref|IEEE1905.1a|Table 6-13: IEEE 802.11 specific information}} + + + + + + + + + + Field from Media specific information for an 802.11 interface provided in a Topology response message 1905 device information type TLV as defined in {{bibref|IEEE1905.1a|Table 6-13: IEEE 802.11 specific information}} + + + + + + + + + + Field from Media specific information for an 802.11 interface provided in a Topology response message 1905 device information type TLV as defined in {{bibref|IEEE1905.1a|Table 6-13: IEEE 802.11 specific information}} + + + + + + + + + + + This object represents an instance of a Non-IEEE1905 Neighbor for the {{object|##.IEEE1905Device}}. These fields come from a Topology response message as defined in {{bibref|IEEE1905.1a|Table 6-14: Non-1905 neighbor device TLV}}. + + + + + + + + {{reference}} + + + + + + + + + + + MAC Address of the interface for the {{object}}. + + + + + + + + + This object represents an instance of an L2 Neighbor for the {{object|##.IEEE1905Device}}. These fields come from a Topology response message as defined in {{bibref|IEEE1905.1a|Table 6-41: L2 neighbor device TLV}}. + + + + + + + + {{reference}} + + + + + + + + + + + MAC Address of the {{object}}. + + + + + + + + {{list}} Behind MAC Addresses of the {{object}}. + + + + + + + + + + + + This object represents an instance of an {{object}} for the {{object|##.IEEE1905Device}}. These values are from the Topology response message as defined in {{bibref|IEEE1905.1a|Table 6-15: 1905 neighbor device TLV}}. + + + + + + + + {{reference}} + + + + + + + + + + + 1905 AL MAC Address of the Neighbor. + + + + + + + + {{numentries}} + + + + + + + + + This object represents the metrics included in a Link metric response from the IEEE1905Device where {{param|#.LocalInterface}} is the MAC address of an interface in the receiving 1905 AL as defined in {{bibref|IEEE1905.1a|Table 6-17: 1905 transmitter link metric TLV}}. + + + + + + + The MAC address of an interface in a neighbor 1905 device as defined in {{bibref|IEEE1905.1a|Table 6-17: 1905 transmitter link metric TLV or Table 6-19: 1905 receiver link metric TLV}}. + + + + + + + + Indicates whether or not the 1905 link includes one or more IEEE 802.1 bridges. If {{false}}, the 1905 link does not include an IEEE 802.1 bridge. If {{true}}, the 1905 link does include one or more IEEE 802.1 bridges. + + + + + + + + Estimated number of lost {{units}} on the transmit side of the link {{bibref|IEEE1905.1a|Table 6-18: 1905 transmitter link metrics}} during a measurement period. + + + + + + + + + + Estimated number of lost {{units}} on the receive side of the link {{bibref|IEEE1905.1a|Table 6-20: 1905 receiver link metrics}} during a measurement period. + + + + + + + + + + Estimated number of {{units}} sent to the Neighbor on this link, in the same measurement period used to estimate {{param|PacketErrors}}. + + + + + + + + + + Estimated number of {{units}} received from this Neighbor {{bibref|IEEE1905.1a|Table 6-20: 1905 receiver link metrics}} on this link, in the same measurement period used to estimate {{param|PacketErrors}}. + + + + + + + + + + The maximum MAC throughput in {{units}} between this Interface and the Neighbor on this link that is estimated at this Interface. + + + + + + + + + + The estimated average {{units}} of time that this link is idle. + + + + + + + + + + + The Physical Layer (PHY) rate in {{units}} between this Interface and the Neighbor on this link that is estimated at this Interface. + + + + + + + + + + The estimated Received Signal Strength Indicator (RSSI) ratio in {{units}} between this Interface and the Neighbor on this link that is estimated at the receive side of this Interface. Note: This parameter is valid only for IEEE 802.11 Neighbors. + + + + + + + + + + + + This object represents an instance of an {{object}} for the {{object|##.IEEE1905Device}}. These values come from the 1905 Device’s Topology response message as defined in {{bibref|IEEE1905.1a|Table 6-11: Device bridging capability TLV}}. + + + + {{list}} {{reference}} + + + + + + + + + + + + + This object represents the Security configuration for the 1905 device as defined in {{bibref|IEEE1905.1a|Section 9.2 Security Setup Methods}}. + + + + {{list}} Supported security setup method(s) for the network. {{enum}} + + + + + + + + + User Configured Passphrase or Key + + + + + Push Button Configuration + + + + + Near-field Communication Network Key + + + + + + + + 1905 network passphrase for generating security keys. + + + + + + + This object represents the detected Network Registrars detection function for the IEEE 1905 network. They are determined by received AP-autoconfiguration response messages with Registrar role, with supported band as defined in {{bibref|IEEE1905.1a|Table 6-25: SupportedFreqBand TLV}} + + + + {{list}} 1905 AL MAC addresses as determined by source MAC address in received AP-autoconfiguration response messages with supported frequency band of 802.11 2.4 GHz. + + + + + + + + + + + {{list}} 1905 AL MAC addresses as determined by source MAC address in received AP-autoconfiguration response messages with supported frequency band of 802.11 5 GHz. + + + + + + + + + + + {{list}} 1905 AL MAC addresses as determined by source MAC address in received AP-autoconfiguration response messages with supported frequency band of 802.11 60 GHz. + + + + + + + + + + + + MQTT Base object describing all MQTT related parameters and objects. + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + Indicates the MQTT capabilities of the device. + + + + Indicates the supported protocol versions. {{enum}} + + + + + + + Protocol according to {{bibref|MQTT31}} + + + + + Protocol according to {{bibref|MQTT31}} + + + + + Protocol according to {{bibref|MQTT50}} + + + + + + + + Indicates the supported transport protocols. {{enum}} + + + + + + + + + + + + + Indicates the maximum number of subscriptions per MQTT client, which can be stored in the {{object|#.Client.{i}.Subscription}} table. A value of 0 means no limit. + + + + + + + + Indicates the maximum number of bridges, which can be configured in the {{object|#.Broker.{i}.Bridge}} table. A value of 0 means no limit. + + + + + + + + Indicates the maximum number of subscriptions, which can be stored per bridge instance in the {{object|#.Broker.{i}.Bridge.{i}.Subscription}} table. A value of 0 means no limit. + + + + + + + + + MQTT client table. Contains a list of configured MQTT clients. + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the MQTT client. + + + + + + + + + + Allows to enable or disable the MQTT client. + If a MQTT client gets enabled then the MQTT client has first to establish a MQTT broker session and then subscribe for all enabled topics in the {{object|Subscription.}} table. + If the {{param|ProtocolVersion}} is set to {{enum|3.1|#.Capabilities.ProtocolVersionsSupported}} or {{enum|3.1.1|#.Capabilities.ProtocolVersionsSupported}} and {{param|CleanSession}} is set to {{false}} a subscription MUST only be sent for topics which haven't been subscribed before (see {{bibref|MQTT31|section 3.1.2.4}}). + If the {{param|ProtocolVersion}} is set to {{enum|5.0|#.Capabilities.ProtocolVersionsSupported}} and {{param|CleanStart}} is set to {{false}} a subscription MUST only be sent for topics which haven't been subscribed before (see {{bibref|MQTT50|section 3.1.2.4}}). + If a connected MQTT client gets disabled ({{param|Status}} is either {{enum|Connecting|Status}} or {{enum|Connected|Status}}) then the MQTT client has to send a MQTT DISCONNECT packet to disconnect from the MQTT broker ({{bibref|MQTT31|section 3.14}},{{bibref|MQTT31|section 3.14}}) or {{bibref|MQTT50|section 3.14}}), before setting the {{param|Status}} to {{enum|Disabled|Status}}. + + + + + + + + Indicates the status of this MQTT client. {{enum}} + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid (e.g. The MQTT client can not use the defined port, because it is blocked) + The {{enum|Error_BrokerUnreachable}} value indicates that the connection to the MQTT broker could not be established. + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + + + Specifies the MQTT protocol version used in the communication with the MQTT broker. + + + + + + + + + + When {{true}}, encryption MUST be used for this MQTT {{object}} instance. + + + + + + + + + Host name or IP address of the MQTT Broker. + + + + + + + + + + Port number of the MQTT broker. + + + + + + + + + + + Indicates the transport protocol to be used for the MQTT broker connection. + + + + + + + + + + + The value of the MQTT clean session flag in the MQTT CONNECT packet (see {{bibref|MQTT31|section 3.1}} and {{bibref|MQTT31|section 3.1.2.4}}). If this flag is set to {{true}} (default), the MQTT broker will delete all subscription information after a Disconnect. + {{template|MQTTReconnect}} + This parameter only applies if {{param|ProtocolVersion}} is set to {{enum|3.1|#.Capabilities.ProtocolVersionsSupported}} or {{enum|3.1.1|#.Capabilities.ProtocolVersionsSupported}}. + + + + + + + + + The value of the MQTT Clean Start flag in the MQTT CONNECT packet (see {{bibref|MQTT50|section 3.1.2.4}}. If this flag is set to {{true}} (default), the MQTT broker will delete all subscription information after a Disconnect. + {{template|MQTTReconnect}}. + {{template|MQTT50ONLY}} + + + + + + + + + Enables or disables the will handling (see {{bibref|MQTT31|section 3.1}}, {{bibref|MQTT31|section 3.1.2.5}}) or {{bibref|MQTT50|section 3.1.2.5}}). + If the connection gets enabled and this parameter is set to {{true}} and either the parameter {{param|WillTopic}} or {{param|WillValue}} are {{empty}}, the CPE MUST set the {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + {{template|MQTTReconnect}}. + + + + + + + + The MQTT QoS level assigned with the will message (see {{bibref|MQTT31|section 3.1}}, {{bibref|MQTT31|section 3.1.2.6}}) or {{bibref|MQTT50|section 3.1.2.6}}). This parameter is only used if {{param|WillEnable}} is set to {{true}}. + {{template|MQTTWillChange}} + + + + + + + + + + Indicate to the MQTT broker to retain the Will over a Disconnect (see {{bibref|MQTT31|section 3.1}}, {{bibref|MQTT31|section 3.1.2.7}}) or {{bibref|MQTT50|section 3.1.2.7}}). This parameter is only used if {{param|WillEnable}} is set to {{true}}. + {{template|MQTTWillChange}} + + + + + + + + Keep Alive Time in {{units}} defines the maximum wait time after which a packet has to be sent to the MQTT broker (see {{bibref|MQTT31|section 3.1}}, {{bibref|MQTT31|section 3.1.2.10}}) or {{bibref|MQTT50|section 3.1.2.10}}). If no regular packet can be sent a MQTT PINGREQ packet is sent. + A value of zero (0) means no keep alive packets are sent and the MQTT client is not disconnected by the server. + {{template|MQTTReconnect}} + + + + + + + + + + + + Session expiry interval in {{units}} defines the wait time before a session expires after the connection has been closed by the MQTT client {{bibref|MQTT50|section 3.1.2.11.2}}). + {{template|MQTT50ONLY}} + + + + + + + + + + The MQTT client uses this value to limit the number of QoS 1 and QoS 2 publications that it is willing to process concurrently (see {{bibref|MQTT50|section 3.1.2.11.3}}). + {{template|MQTTReconnect}} + {{template|MQTT50ONLY}} + + + + + + + + The maximum packet size in {{units}} the MQTT client can and will accept from the MQTT broker. A value of 0 means no limit. If the value is set to another value, the MQTT client will inform the broker in the next CONNECT packet {{bibref|MQTT50|section 3.1.2.11.4}}). + {{template|MQTTReconnect}} + {{template|MQTT50ONLY}} + + + + + + + + + + This value indicates the highest value that the MQTT client will accept as a Topic Alias sent by the Server (see {{bibref|MQTT50|section 3.1.2.11.5}}). The MQTT client uses this value to limit the number of Topic Aliases that it is willing to hold on this connection. + A value of 0 indicates that Topic Alias is not supported. + {{template|MQTTReconnect}} + {{template|MQTT50ONLY}} + + + + + + + + + + The MQTT client uses this value in a MQTT CONNECT packet to request the Server to return Response Information in the MQTT CONNACK (see {{bibref|MQTT50|section 3.1.2.11.6}}). + {{template|MQTTReconnect}} + {{template|MQTT50ONLY}} + + + + + + + + This value indicates whether the Reason String or User Properties are sent in the case of failures.(see {{bibref|MQTT50|section 3.1.2.11.7}}). + {{template|MQTTReconnect}} + {{template|MQTT50ONLY}} + + + + + + + + This value defines the extended authentication method to be used (see {{bibref|MQTT50|section 3.1.2.11.9}}). + If the parameter is empty, no extended authentication is performed. + {{template|MQTTReconnect}} + {{template|MQTT50ONLY}} + + + + + + + + + + The MQTT client identifier used in the MQTT CONNECT packet (see {{bibref|MQTT31|section 3.1}}, {{bibref|MQTT31|section 3.1.3.1}}) or {{bibref|MQTT50|section 3.1.3.1}}). + If {{param|ProtocolVersion}} is set to {{enum|3.1|#.Capabilities.ProtocolVersionsSupported}} or {{enum|3.1.1|#.Capabilities.ProtocolVersionsSupported}}, this parameter MUST NOT be an empty string. + If {{param|ProtocolVersion}} is set to {{enum|5.0|#.Capabilities.ProtocolVersionsSupported}}, an empty string is allowed. + {{template|MQTTReconnect}} + + + + + + + + + + The delay in {{units}} after the session is disconnected, before sending the Will message {{bibref|MQTT50|section 3.1.3.2.2}}). A value of 0 indicates that there is no delay. + {{template|MQTTWillChange}} + {{template|MQTT50ONLY}} + + + + + + + + + + + The lifetime in {{units}} of a Will Message (see {{bibref|MQTT50|section 3.1.3.2.4}}). A value of 0 indicates that no message expiry interval value is specified for in the will message properties of a CONNECT packet. + {{template|MQTT50ONLY}} + + + + + + + + + + Describes the type of the {{param|WillValue}} {{bibref|MQTT50|section 3.1.3.2.5}}). + {{template|MQTTWillChange}} + {{template|MQTT50ONLY}} + + + + + + + + + + Topic Name for a will response message. The presence of a Response Topic identifies the Will Message as a Request {{bibref|MQTT50|section 3.1.3.2.6}}). + If the {{param}} is an empty string the will response topic will not be sent in a MQTT CONNECT packet. + {{template|MQTTWillChange}} + {{template|MQTT50ONLY}} + + + + + + + + + + The Topic sent in the Will Message (see {{bibref|MQTT31|section 3.1}}, {{bibref|MQTT31|section 3.1.3.3}}) or {{bibref|MQTT50|section 3.1.3.3}}). This parameter is only used if {{param|WillEnable}} is set to {{true}}. + {{template|MQTTWillChange}} + + + + + + + + + + The value sent in the Will Message (see {{bibref|MQTT31|section 3.1}}, {{bibref|MQTT31|section 3.1.2.5}}) or {{bibref|MQTT50|section 3.1.3.4}}). This parameter is only used if {{param|WillEnable}} is set to {{true}}. + {{template|MQTTWillChange}} + + + + + + + + + + Username used to authenticate the MQTT client when making a connection to the MQTT broker. The value is sent in the MQTT CONNECT packet (see {{bibref|MQTT31|section 3.1}}, {{bibref|MQTT31|section 3.1.3.4}} or {{bibref|MQTT50|section 3.1.3.5}}). + For MQTT 3.1 {{bibref|MQTT31|section 3.1}} recommends that the user name has 12 characters or fewer, but this is not required. + If this parameter is {{empty}} no authentication parameters are sent in the MQTT CONNECT packet. + + + + + + + + + + Password used to authenticate the MQTT client when making a connection to the MQTT broker. The value is sent in the MQTT CONNECT packet (see {{bibref|MQTT31|section 3.1}}, {{bibref|MQTT31|section 3.1.3.5}} or {{bibref|MQTT50|section 3.1.3.6}}). + This password is only sent in the MQTT CONNECT packet if {{param|Username}} is not {{empty}}. + + + + + + The lifetime in {{units}} of a PUBLISH Message (see {{bibref|MQTT50|section 3.3.2.3.3}}). A value of 0 indicates that no message expiry interval value is included in the PUBLISH packet. + {{template|MQTT50ONLY}} + + + + + + + + + + Message retry time in {{units}} defines the wait time before a MQTT message that expects a response (QoS value of message is > 0, or PUBLISH, PUBREL, SUBSCRIBE, UNSUBSCRIBE message) is resent, because the response is not received (see {{bibref|MQTT31|section 4.2}}). + This parameter only applies if {{param|ProtocolVersion}} is set to {{enum|3.1|#.Capabilities.ProtocolVersionsSupported}}. + + + + + + + + + + + + Connect retry time in {{units}} defines the wait time before a failed MQTT broker connection is retried. + A failure can either be on the connection level (the TCP/IP or TLS can not be established) or on the Protocol level, the MQTT client does not receive a MQTT CONNACK packet on a MQTT CONNECT packet sent. + If the parameter {{param|ConnectRetryIntervalMultiplier}} is defined, the MQTT client MUST use a random value between {{param}}*({{param|ConnectRetryIntervalMultiplier}}/1000)^(n-1) and {{param}}*({{param|ConnectRetryIntervalMultiplier}}/1000)^n for the connect retry time, with n equals the current retry number. The max number of n is 10, starting with the 11th retry always the value n = 10 is used. + If the parameters {{param|ConnectRetryIntervalMultiplier}} and {{param|ConnectRetryMaxInterval}} are defined, the MQTT client MUST use the value of {{param|ConnectRetryMaxInterval}} if the calculated random value exceeds the value of {{param|ConnectRetryMaxInterval}}. + + + + + + + + + + + + Configures the retry interval multiplier. + This value is expressed in units of 0.001. Hence the values of the multiplier range between 1.000 and 65.535. + + + + + + + + + + + The maximum reconnection wait interval, in {{units}}. + + + + + + + + + + + + The value of the CONNACK Response Information property supplied by a MQTT 5.0 server. This value is used by a MQTT 5.0 client as the basis for the PUBLISH Response Topic property for all PUBLISH packets that expect a response. If the value of {{param}} is not a subset (wildcarded or precise match) of any of the {{param|Subscription.{i}.Topic}} values the MQTT client MUST subscribe to this Topic. + + + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + Disconnects the MQTT client from the MQTT broker and reconnects it again (toggle connection). It is only effective if the MQTT client is currently connected to the MQTT broker (Parameter {{param|Status|}} is {{enum|Connected|Status}}). + If the MQTT client is in a different state, the command has no effect. + This command may be used to immediately apply changes in the MQTT connection settings. + + + + + + List of MQTT subscriptions handled by the MQTT client. + The MQTT client MUST subscribe with the MQTT broker for all subscription instances, whose parameter {{param|Enable}} is set to {{true}}, when it establishes a new connection to the MQTT broker. Disabled subscription instances with {{param|Enable}} set to {{false}} will be ignored during connection establishment. + + + + + + + + + + {{datatype|expand}} + + + + + + + + When a MQTT client connects to a MQTT server, it MUST send a SUBSCRIBE message including all instances with {{param}} set to {{true}}. If the MQTT client is already connected with the MQTT server ({{param|#.Status}} is {{enum|Connected|#.Status}}), a MQTT SUBSCRIBE or UNSUBSCRIBE message MUST be sent directly when {{param}} is changed to {{true}} or {{false}}, respectively. + The actual status of the subscription is indicated with {{param|Status}}. + + + + + + + + Indicates the status of this subscription. {{enum}} + The {{enum|Subscribed}} value indicates that the topic was successfully subscribed with the MQTT broker, the MQTT client received the SUBACK message for this topic from the server. + The {{enum|Subscribing}} value MAY be used by the CPE to indicate that the a SUBSCRIBE message for this topic was sent, and the CPE is waiting for a SUBACK message. + The {{enum|Unsubscribed}} value indicates that the topic is not registered with the MQTT broker. + The {{enum|Unsubscribing}} value MAY be used by the CPE to indicate that the an UNSUBSCRIBE message for this topic was sent, and the CPE is waiting for an UNSUBACK message. + If the {{param|Enable}} is set to {{false}} the status MUST be either {{enum|Unsubscribed}} or if the unsubscription failed {{enum|Error}}. + + + + + + + + + + + + + + Name of the subscribed topic. Topic names may contain wildcards according to the rules specified in {{bibref|MQTT31|section Appendix A}}, {{bibref|MQTT31|section 4.7}} or {{bibref|MQTT50|4.7}}. + + + + + + + + + + The MQTT QoS level assigned with the subscription (see {{bibref|MQTT31|section 4.1}}, {{bibref|MQTT31|section 4.3}}) or {{bibref|MQTT50|4.3}}. + + + + + + + + + + + List of user properties used by the MQTT client. + This table only applies if {{param|#.ProtocolVersion}} is set to {{enum|5.0|##.Capabilities.ProtocolVersionsSupported}}. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Setting Enable to {{true}} means the user property is used in the indicated control packet(s). The user property will be applied to all control packets of the same control packet type (e.g PUBLISH). + + + + + + + + Name of the user property + + + + + + + + + + Value of the user property + + + + + + + + + + {{list}} Each entry defines the control packet type(s) in which the user property is included. + + + + + + + User property will be added in the AUTH control packet (see {{bibref|MQTT50|section 3.15.2.2.5}}) + + + + + User property will be added in the CONNECT packet (see {{bibref|MQTT50|section 3.1.3.2.8}}) + + + + + User property will be added in the DISCONNECT packet (see {{bibref|MQTT50|section 3.14.2.2.4}}) + + + + + User property will be added in the PUBLISH packet (see {{bibref|MQTT50|section 3.3.2.3.7}}) + + + + + User property will be added in the PUBACK packet (see {{bibref|MQTT50|section 3.4.2.2.3}}) + + + + + User property will be added in the PUBREC packet (see {{bibref|MQTT50|section 3.5.2.2.3}}) + + + + + User property will be added in the PUBREL packet (see {{bibref|MQTT50|section 3.6.2.2.3}}) + + + + + User property will be added in the PUBCOMP packet (see {{bibref|MQTT50|section 3.7.2.2.3}}) + + + + + User property will be added in the SUBSCRIBE packet (see {{bibref|MQTT50|section 3.8.2.1.3}}) + + + + + User property will be added in the UNSUBSCRIBE packet (see {{bibref|MQTT50|section 3.10.2.1.2}}) + + + + + User property will be added in the WILL properties (see {{bibref|MQTT50|section 3.1.3.2}}) + + + + + + + + + Contains the MQTT client statistics and usage information. + The CPE MUST reset the Stats parameters after the MQTT client gets (re-)enabled or if the MQTT client connects with a new MQTT broker (e.g. {{param|#.BrokerAddress}} has changed). The CPE MAY retain the values across a reboot if it reconnects with the same MQTT broker. + + + + Time when the MQTT broker connection was established. + + + + + + + + Time when the last publish message was sent to the MQTT broker. + + + + + + + + Time when the last publish message was received from the MQTT broker. + + + + + + + + Number of publish messages sent to the MQTT broker. + + + + + + + + Number of publish messages received from to the MQTT broker. + + + + + + + + Number of subscribe messages sent to the MQTT broker. + + + + + + + + Number of unsubscribe messages sent to the MQTT broker. + + + + + + + + Total number of MQTT messages sent to the MQTT broker. + + + + + + + + Total number of MQTT messages received from the MQTT broker. + + + + + + + + Number of connection errors. + + + + + + + + Number of errors which prevented sending publish messages. + + + + + + + + + MQTT broker table. Contains a list of configured MQTT brokers. + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the MQTT broker. + + + + + + + + + + Allows to enable or disable the MQTT broker. + + + + + + + + Indicates the status of the MQTT broker. {{enum}} + The "{{enum|Error_Misconfigured}}" value indicates that a necessary configuration value is undefined or invalid. + The "{{enum|Error}}" value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + + + + + + + + Port used by the MQTT Broker. + + + + + + + + + + + If {{empty}} is specified, the CPE MUST bind the MQTT broker to all available interfaces. + + + + + + + + + + + User name used to authenticate the MQTT clients, which connect to the MQTT broker. + If this parameter is {{empty}} no authentication is used. + + + + + + + + + + Password used used to authenticate the MQTT clients, which connect to the MQTT broker. + This password is only used if {{param|Username}} is not {{empty}}. + + + + + + {{numentries}} + + + + + + + + + Configures MQTT bridges, which are used to communicate with other MQTT brokers. + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the MQTT bridge used for identification. + + + + + + + + + + Allows to enable or disable the MQTT Bridge. + + + + + + + + Indicates the status of this MQTT Bridge. {{enum}} + The {{enum|Disabled}} value indicates that the MQTT bridge is not in service; parameter {{param|Enable}} is set to {{false}}. + The {{enum|Connecting}} value indicates that the MQTT bridge is currently established. + The {{enum|Connected}} value indicates that the MQTT bridge is currently active. + The {{enum|Error_Misconfigured}} value indicates that a necessary configuration value is undefined or invalid (e.g. No active Server entry, the MQTT broker can not use the defined bridge port, because it is blocked) + The {{enum|Error_BrokerUnreachable}} value indicates that the MQTT bridge connection to the remote MQTT broker could not be established. + The {{enum|Error}} value MAY be used to indicate a locally defined error condition. + + + + + + + + + + + + + + + + Specifies the MQTT protocol version used in the MQTT bridge connection. + + + + + + + + + + Indicates the transport protocol to be used for the MQTT bridge connection. + + + + + + + + + + + The value of the MQTT clean session flag in the MQTT CONNECT packet (see {{bibref|MQTT31|section 3.1}} and {{bibref|MQTT31|section 3.1.2.4}}) to establish a MQTT bridge connection. If this flag is set to {{true}} (default), the remote MQTT broker will delete all subscription information after a Disconnect. + {{template|MQTTReconnect}} + This parameter only applies if {{param|ProtocolVersion}} is set to {{enum|3.1|##.Capabilities.ProtocolVersionsSupported}} or {{enum|3.1.1|##.Capabilities.ProtocolVersionsSupported}}. + + + + + + + + + The value of the MQTT Clean Start flag in the MQTT CONNECT packet (see {{bibref|MQTT50|section 3.1.2.4}} to establish a MQTT bridge connection. If this flag is set to {{true}} (default), the remote MQTT broker will delete all subscription information after a Disconnect. + {{template|MQTTReconnect}}. + This parameter only applies if {{param|ProtocolVersion}} is set to {{enum|5.0|##.Capabilities.ProtocolVersionsSupported}}. + + + + + + + + + Keep Alive Time in {{units}} defines the maximum wait time after which a packet has to be sent to the remote MQTT broker (see {{bibref|MQTT31|section 3.1}}, {{bibref|MQTT31|section 3.1.2.10}}) or {{bibref|MQTT50|section 3.1.2.10}}). If no regular packet can be sent a MQTT PINGREQ packet is sent. + A value of zero (0) means no keep alive packets are sent and the bridge is not disconnected by the server. + {{template|MQTTReconnect}} + + + + + + + + + + + + The MQTT client identifier used in the CONNECT packet (see {{bibref|MQTT31|section 3.1}}, {{bibref|MQTT31|section 3.1.3.1}}) or {{bibref|MQTT50|section 3.1.3.1}}). + If {{param|ProtocolVersion}} is set to {{enum|3.1|##.Capabilities.ProtocolVersionsSupported}} or {{enum|3.1.1|##.Capabilities.ProtocolVersionsSupported}}, this parameter MUST NOT be an empty string. + If {{param|ProtocolVersion}} is set to {{enum|5.0|##.Capabilities.ProtocolVersionsSupported}}, an empty string is allowed. + {{template|MQTTReconnect}} + + + + + + + + + + User name used to authenticate the MQTT broker when making a connection over the MQTT bridge. The value is sent in the MQTT CONNECT packet (see {{bibref|MQTT31|section 3.1}}, {{bibref|MQTT31|section 3.1.3.4}} or {{bibref|MQTT50|section 3.1.3.5}}). + For MQTT 3.1 {{bibref|MQTT31|section 3.1}} recommends that the user name has 12 characters or fewer, but this is not required. + If this parameter is {{empty}} no authentication parameters are sent in the MQTT CONNECT packet. + + + + + + + + + + Password used to authenticate the MQTT broker when making a connection over the MQTT bridge. The value is sent in the MQTT CONNECT packet (see {{bibref|MQTT31|section 3.1}}, {{bibref|MQTT31|section 3.1.3.5}} or {{bibref|MQTT50|section 3.1.3.6}}). + This password is only sent in the MQTT CONNECT packet if {{param|Username}} is not {{empty}}. + + + + + + Message retry time in {{units}} defines the wait time before a MQTT message that expects a response (QoS value of message is > 0, or PUBLISH, PUBREL, SUBSCRIBE, UNSUBSCRIBE message) is resent, because the response is not received (see {{bibref|MQTT31|section 4.2}}. + This parameter only applies if {{param|ProtocolVersion}} is set to {{enum|3.1|##.Capabilities.ProtocolVersionsSupported}}. + + + + + + + + + + + + Connect retry time in {{units}} defines the wait time before a failed bridge connection is retried. + A failure can either be on the connection level (e.g. the TCP/IP or TLS connection can not be established) or on the Protocol level, the MQTT client does not receive a MQTT CONNACK packet on a MQTT CONNECT packet sent. + + + + + + + + + + + + The algorithm used to select a server entry from the {{object|Server}} table + + + + + + Select the server from the {{object|Server.}} table according to the sequence defined with the {{param|Server.{i}.Priority}} and {{param|Server.{i}.Weight}} values. + + + + + Select the servers round robin. + + + + + Select the servers randomly. + + + + + + + + {{reference|the {{object|Server.}} instance that is used for this {{object}}, while the {{param|Status}} is {{enum|Connecting|Status}} or {{enum|Connected|Status}}. If the MQTT bridge is not connected the value MUST be an empty string}} + + + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + Disconnects the MQTT bridge to the remote MQTT broker and reconnects it again (toggle connection). It is only effective if the MQTT bridge is currently connected to the remote MQTT broker (Parameter {{param|Status|}} is {{enum|Connected|Status}}). + If the MQTT bridge is in a different state, the command has no effect. + This command may be used to immediately apply changes in the MQTT connection settings. + + + + + + Each {{object}} instance represents a MQTT bridge server to be used for a {{object|##.Bridge}}. A remote MQTT broker, which is connected by a MQTT bridge can be reachable via several host addresses each represented by its own {{object}} table entry. For an active MQTT bridge at least one enabled entry has to exist. + If a MQTT bridge gets enabled by setting the parameter {{param|##.Bridge.{i}.Enable}} to {{true}}, which either has an empty {{object}} table or the {{object}} table only contains instances whose {{param|Enable}} is set to {{false}}, the {{param|##.Bridge.{i}.Status}} has to be set to {{enum|Error_Misconfigured|##.Bridge.{i}.Status}}. + Any attempt to delete an instance, which is currently in use ({{param|##.Bridge.{i}.ServerConnection}} refers to the instance to be deleted), has to be rejected. + + + + + + + + + + + Enables or disables this {{object}}. + + + + + + + + + {{datatype|expand}} + + + + + + + + The priority of this {{object}} that is used by the {{object|##.Bridge}} when determining the {{object}} to connect to. The {{object|##.Bridge}} MUST contact the {{object}} with the lowest-numbered priority that the {{object|##.Bridge}} can reach as defined in {{bibref|RFC2782}}. The selection of {{object}}s with the same {{param}} value utilizes the {{param|Weight}} parameter to determine which {{object}} is selected by the {{object|##.Bridge}}. + This value is only used if {{param|##.Bridge.{i}.ServerSelectionAlgorithm}} is set to {{enum|Priority|##.Bridge.{i}.ServerSelectionAlgorithm}}. + + + + + + + + + + This parameter specifies a relative weight for entries with the same {{param|Priority}}. The mechanism is defined in {{bibref|RFC2782}}. A value of -1 indicates that the implementation of this parameter is specific to the Vendor. + This value is only used if {{param|##.Bridge.{i}.ServerSelectionAlgorithm}} is set to {{enum|Priority|##.Bridge.{i}.ServerSelectionAlgorithm}}. + + + + + + + + + + Fully Qualified Domain Name (FQDN) or IP address of the MQTT broker server this {{object|##.Bridge}} connects to. + If the value of this parameter is a FQDN that resolves to multiple addresses then each address SHOULD be attempted (in an implementation-specific order) until a connection can be made or all addresses are exhausted, in which case the next {{object}} instance (based on rules defined over the selected {{param|##.Bridge.{i}.ServerSelectionAlgorithm}}) SHOULD be used. + + + + + + + + + + Port number of the MQTT broker server this {{object|##.Bridge}} connects to. + + + + + + + + + + + + List of MQTT subscriptions handled over the bridge. + + + + + + + + + + + {{datatype|expand}} + + + + + + + + Setting Enable to {{true}} activates the handling of this subscription instance. In case of incoming directions ({{param|Direction}} is either {{enum|in|Direction}} or {{enum|both|Direction}}) the topic is subscribed over the bridge at the remote MQTT broker with a MQTT SUBSCRIBE message if {{param}} is set to {{true}} or unsubscribed from the remote MQTT broker with a MQTT UNSUBSCRIBE message if the value is set to {{false}}. + The actual status of the subscription is indicated with {{param|Status}}. + + + + + + + + Indicates the status of this subscription. {{enum}} + The {{enum|Enabled}} value indicates that the this subscription is active. In case of incoming directions ({{param|Direction}} is either {{enum|in|Direction}} or {{enum|both|Direction}}) the topic was successfully subscribed with the remote MQTT broker. + The {{enum|Disabled}} value indicates that this subscription is not used. + The {{enum|Error}} value indicates that an error occurred (e.g. an subscription could not be made with the remote MQTT broker) and the subscription is not in use. + + + + + + + + + + + + Name of the subscribed topic. Topic names may contain wildcards according to the rules specified in {{bibref|MQTT31|section Appendix A}}, {{bibref|MQTT31|section 4.7}} or {{bibref|MQTT50|4.7}}. + + + + + + + + + + The direction of the subscription. {{enum}}. + + + + + + Indicates that all matching topics will be sent over the bridge to the next MQTT broker. + + + + + Indicates that all matching topics will be received over the bridge from the next MQTT broker. + + + + + Indicates that all matching topics will be sent and received over the bridge. + + + + + + + + The MQTT QoS level assigned with the subscription (see {{bibref|MQTT31|section 4.1}}, {{bibref|MQTT31|section 4.3}}) or {{bibref|MQTT50|4.3}}. + + + + + + + + + + The local prefix is used for remapping received topics to the local topics of the MQTT broker and to select the topics to be sent over bridge to the remote MQTT broker. + * In incoming direction ({{param|Direction}} is either {{enum|in|Direction}} or {{enum|both|Direction}}): + : For remote topics received over the bridge the MQTT broker adds the LocalPrefix in front of the received topic, before processing it. + :: '' '' + : ''Example:'' + :: Topic is "/bus/+", LocalPrefix is "/local", Direction is "in" + :: MQTT broker receives message with topic "/bus/tr181" over bridge => MQTT broker uses topic "/local/bus/tr181" for internal processing + * In outgoing direction ({{param|Direction}} is either {{enum|out|Direction}} or {{enum|both|Direction}}): + : For selection of the topics to be sent over the bridge the MQTT broker uses the combination of {{param}} and {{param|Topic}} to match the topics to be sent over bridge, and removes the {{param}} from the selected topic before sending it over the bridge. + :: '' '' + : ''Example:'' + :: Topic is "/bus/+", LocalPrefix is "/local", Direction is "out" + :: MQTT broker receives message with topic "/local/bus/tr181" from a MQTT client => MQTT broker sends topic "/bus/tr181" to remote MQTT broker + + + + + + + + + + The remote prefix is used for remapping topics to the remote MQTT broker topic lists. + * In incoming direction ({{param|Direction}} is either {{enum|in|Direction}} or {{enum|both|Direction}}): + : For remote topics received over the bridge the MQTT broker removes the remote prefix topic from the received topic (before handling the {{param|LocalPrefix}}), before processing it. + :: '' '' + : ''Example:'' + :: Topic is "/bus/+", LocalPrefix is "/local", RemotePrefix is "/remote", Direction is "in" + :: MQTT broker receives message with topic "/remote/bus/tr181" over bridge => MQTT broker uses topic "/local/bus/tr181" for internal processing + : During activation of the bridge, the MQTT broker prepends the {{param|Topic}} with {{param}} topic and subscribes to the remote MQTT broker with it, in order to receive all applicable remote topics. + :: '' '' + : ''Example:'' + :: Topic is "/bus/+", RemotePrefix is "/remote", Direction is "in" + :: MQTT broker sends a subscription to the remote MQTT broker with the topic "/remote/bus/+". + * In outgoing direction ({{param|Direction}} is either {{enum|out|Direction}} or {{enum|both|Direction}}): + : For all topics to be sent over the bridge ({{param|Direction}} is either {{enum|out|Direction}} or {{enum|both|Direction}}), the RemotePrefix will be prepended to the topic after the {{param|LocalPrefix}} has been processed and before sending the message over the bridge. + :: '' '' + : ''Example:'' + :: Topic is "/bus/+", LocalPrefix is "/local", RemotePrefix is "/remote" Direction is "out" + :: MQTT broker receives message with topic "/local/bus/tr181" from a MQTT client => MQTT broker sends topic "/remote/bus/tr181" to remote MQTT broker + + + + + + + + + + + The MQTT broker statistics values. These will reset with each MQTT broker start, either after reboot or if the MQTT broker gets (re-)enabled. + + + + Total number of MQTT clients registered with the MQTT broker. + + + + + + + + Number of MQTT clients, which have a connection with the MQTT broker established. + + + + + + + + Number of MQTT clients, which have no connection with the MQTT broker established. + + + + + + + + Number of subscriptions held by the MQTT broker. + + + + + + + + Number of publish messages sent by the MQTT broker. + + + + + + + + Number of publish messages received by the MQTT broker. + + + + + + + + Total number of MQTT messages sent by the MQTT broker. + + + + + + + + Total number of MQTT messages received by the MQTT broker. + + + + + + + + Number of connection errors. + + + + + + + + Number of errors which prevented sending publish messages + + + + + + + + + Properties for Dynamic DNS. + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + List of Dynamic DNS service names that are supported by the CPE. + + + + + + + + + + + + Client properties for Dynamic DNS. + A dynamic DNS client is responsible for verifying IP address changes and updating information from a subscribed account on a Dynamic DNS Server. + For enabled table entries, if {{param|Server}} is not a valid reference then the table entry is inoperable and the CPE MUST set the {{param|Status}} to {{enum|Error_Misconfigured|Status}}. + + + + + + + + + + + Enables or disables this Dynamic DNS Client. + + + + + + + + Status of this Dynamic DNS Client. + + + + + + The Dynamic DNS Client is trying to connect to the Server. + + + + + The Dynamic DNS Client is in the authentication phase. + + + + + The Dynamic DNS Client has performed an update request since the last IP address change. + + + + + Error due to configuration. + + + + + An error has occurred during the communication with the Server. The {{param|LastError}} parameter is updated with the detail of this error. + + + + + The Client is disabled. + + + + + + + + {{datatype|expand}} + + + + + + + + The last error this Dynamic DNS Client has encountered. + The parameter MAY instead indicate a vendor-specific cause, which MUST use the format defined in {{bibref|TR-106}}. + + + + + + + + + + + + + + + + The DynamicDNS server associated with this Dynamic DNS Client. + {{reference}} + + + + + + + + + + + The IP interface over which update queries to the server are sent. + {{reference}} + If an empty string is specified, the CPE MUST use its routing policy (Forwarding table entries), to determine the appropriate interface. + + + + + + + + + + + Username used by this Dynamic DNS Client to authenticate with the Server. + + + + + + + + + + Password used by this Dynamic DNS Client to authenticate with the Server. + + + + + + {{numentries}} + + + + + + + + + Each table entry represents a fully qualified domain name updated by this Dynamic DNS Client. + + + + + + + Enables or disables this Hostname. + + + + + + + + Status of this Hostname. + + + + + + The Hostname has been updated with the current IP address. + + + + + The IP address has changed since last update. + + + + + The Client is trying to update this Hostname. + + + + + The Hostname doesn't exist for this Dynamic DNS account. + + + + + The Hostname is disabled. + + + + + + + + Fully qualified domain name that has to be updated with the IP address. + If the name is set to another value, the Client MUST immediately send an update request to the Server. + + + + + + + + + + The date time of the last successful update of this name to the Dynamic DNS Server. + + + + + + + + + Table of Dynamic DNS servers available for this CPE. + + + + + + + + + + Enables or disables Dynamic DNS Server. + + + + + + + + + + The textual name of the Dynamic DNS Server. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Dynamic DNS service used to contact this server. + {{reference}} + + + + + + + + + + + Host name or IP address of the Dynamic DNS server. + + + + + + + + + + Port number of the Dynamic DNS server. + + + + + + + + + + Indicates the protocols that are supported by the CPE for sending requests to the Dynamic DNS server. {{list}} This list depends on the Dynamic DNS service defined by the {{param|ServiceName}} parameter. + + + + + + + As defined in {{bibref|RFC2616}} + + + + + As defined in {{bibref|RFC2818}} + + + + + + + + Indicates the protocol used to send requests to the Dynamic DNS server. + + + + + + + + + + Interval (in {{units}}) between two checks for IP change. + A value of zero indicates that the CPE knows when IP changes and doesn’t need to check it periodically. + + + + + + + + + + Initial retry interval (in {{units}}) after a failed request. This parameter can be used as a fixed value or as part of a retry interval calculation. + + + + + + + + + + Maximum number of retries after a failed request. When the maximum number is reached, no further requests are sent until the context changes. + A value of 0 means that there are no retries after a failed request. + + + + + + + + + This object describes the LEDs on the device. + + + + {{numentries}} + + + + + + + + + Each instance of this object describes an LED on the device. + The default illumination characteristics (e.g., Color, Brightness) of an in use LED is vendor specific. When a cycle completes (i.e., {{param|CyclePeriodRepetitions}} = 0), the LED reverts back to its default illumination characteristics. + When the value of the {{param|Status}} parameter is {{enum|Controlled|Status}}, then the value of {{param|CycleElementNumberOfEntries}} and {{param|CycleElementNumberOfEntries}} parameters SHOULD be 0. + When the value of the {{param|RelativeXPosition}} and {{param|RelativeYPosition}} parameters are 0, this indicates that the position of the LED is unknown. + + + + + + + + + + {{datatype|expand}} + + + + + + + + The internal name used to identify this LED. + + + + + + + + The status of the LED. + + + + + + The LED is currently not in use. + + + + + The LED is currently being used by the CPE. + + + + + Indicates that the LED is controlled from an electronic circuit which cannot be monitored. + + + + + The LED status cannot be determined by the CPE. + + + + + + + + The textual purpose that represents the visual display of the LED (e.g., Broadband Down). + + + + + + + + The number of cycle periods left for this LED. As each cycle period is completed this parameter is reduced by 1. A value of -1 indicates an infinite number of cycle period repetitions. + + + + + + + + + + The location of the LED as the user looks at the front of the device in its typical orientation (e.g., on-end, flat). + + + + + + + + + + + + + + + The relative x position of the LED from left to right (x) and top to bottom (y) as the user looks at the device from the orientation identified in the {{param|Location}} parameter in its typical orientation (e.g., on-end, flat). + + + + + + + + The relative y position of the LED from left to right (x) and top to bottom (y) as the user looks at the device from the orientation identified in the {{param|Location}} parameter in its typical orientation (e.g., on-end, flat). + + + + + + + + {{numentries}} + + + + + + + + + Each instance of this object describes the LED characteristics for a portion of the LED cycle period. + The pattern of lighting for the LED corresponding to this table (i.e., the LED cycle period) is defined by the illumination of the LED according to the entries in this table, taken sequentially in the order specified by the {{param|Order}} parameter, with the duration for the portion of the LED illumination corresponding to a given instance specified by the {{param|Duration}} parameter. + The other parameters of the instance of this object (e.g., Color, Brightness) describes the illumination characteristics applied to the LED for this {{object}} instance. + The length of the complete LED cycle is the sum of the Duration parameters for all of the entries in this table. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Enables or disables this {{object}} instance. + + + + + + + + The relative order of this {{object}} in the LED's cycle period. + + + + + + + + + + The color being displayed by the LED RGB hexadecimal notation (e.g., FF0088). + Note: If the parameter is set to an unsupported color the CPE MUST NOT infer a different color. + + + + + + + + + + The duration, in {{units}}, for this element of the cycle period. + + + + + + + + + + The interval corresponding to this {{object}} instance, in {{units}}, from the starting from the target illumination characteristics of the previous {{object}} instance to the target illumination characteristics of this {{object}} instance. + The transition to the target illumination characteristics is uniformly interpolated "perceptually" over the value of this {{param}} parameter. + + + + + + + + + + + This object describes the status of the current cycle element for this LED. + + + + This object describes the current properties of the {{object|#.CycleElement.{i}}} object instance that is currently active. + {{reference}} If the LED instances does not have a current cycle element active, this parameter MUST be set to {{empty}}. + + + + + + + + + + The color, formatted as RGB hexadecimal notation (e.g., FF0088), that is currently being displayed by the LED. + + + + + + + + + + The remaining duration, in {{units}}, for this element of the cycle period. + + + + + + + + + + + This object represents the objects necessary to manage and control the functionality for tests that utilize the Broadband Access Service Attributes and Performance Metrics measurement test framework as defined in by {{bibref|TR-304}}. + + + + {{numentries}} + + + + + + + + + This object represents the measurement endpoint that provides additional contextual information regarding the measurement agent. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Enables or disables this {{object}} instance. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + {{reference|a {{object|##.LMAP.MeasurementAgent}} object that is associated with this measurement endpoint.}} + + + + + + + + + + This parameter describes the ownership of the device that hosts the measurement endpoint. + {{enum}} + + + + + + ISP Owned Device + + + + + Customer Owned Device + + + + + + + + This parameter describes the operational domain for this measurement endpoint + + + + + + + + + + The top level Internet domain used to identify this measurement endpoint. + + + + + + + + + + If the value of this parameter is {{false}} then the Measurement Endpoint MUST not be included in measurement reports. + + + + + + + + + This object represents the information necessary to utilize an ISP owned device within the measurement endpoint. + + + + This parameter describes the measurement reference point of the measurement endpoint. + {{enum}} + + + + + + Internet Source Test Point + + + + + Internet Drain Test Point + + + + + Regional Network Test Point + + + + + Internal Regional Test Point + + + + + Metro Test Point + + + + + Internal Access Test Point + + + + + User Network Interface Test Point + + + + + Customer End Device Test Point + + + + + + + + {{reference|a {{object|###.DeviceInfo.Location}} object that describes the geographic location of the measurement endpoint}} + + + + + + + + + + + This object represents the information necessary to utilize customer owned device within the measurement endpoint. + + + + This parameter describes the customer equipment identifier of the measurement endpoint. + + + + + + + + + + The unique customer identifier within the operational domain for this measurement endpoint. + + + + + + + + + + + This object represents the objects necessary to manage and control the functionality for Large-Scale Measurement of Broadband Performance{{bibref|RFC7594}} as defined in by {{bibref|LMAPIFM}}. + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + This object represents the measurement agent that performs measurement tasks and reporting functions defined in {{bibref|RFC7594}}. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Enables or disables this {{object}} instance. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + Version of the measurement agent. + + + + + + + + Date and time, based on {{bibref|RFC3339}}, in UTC that the measurement agent was successfully started. + + + + + + + + Capabilities of the measurement agent that cannot be expressed elsewhere in the data model. + + + + + + + + + Identifier of the {{object}} instance. + + + + + + + + Identifier of the measurement group of interest to which the measurement agent belongs. + + + + + + + + + + Identifier of the measurement point indicating where the measurement agent is located on a path as defined in [bibref|RFC7398}}. + + + + + + + + + + If the value of the {{param|Identifier}} parameter is not {{empty}} and the value of this parameter is {{false}} then the value of the {{param|Identifier}} parameter MUST not be included in measurement reports. + + + + + + + + + If the value of the {{param|GroupIdentifier}} parameter is not {{empty}} and the value of this parameter is {{false}} then the value of the {{param|GroupIdentifier}} parameter MUST not be included in measurement reports. + + + + + + + + + If the value of the {{param|MeasurementPoint}} parameter is not {{empty}} and the value of this parameter is {{false}} then the value of the {{param|MeasurementPoint}} parameter MUST not be included in measurement reports. + + + + + + + + + {{reference|a {{object|##.Security.Certificate}} object that is used to identify this measurement agent}} + + + + + + + + + + {{reference|a {{object|##.Security.Certificate}} object that is used to contain the private keys for this measurement agent}} + + + + + + + + + + {{reference|a {{object|##.DeviceInfo.VendorLogFile}} object that is used to record events for this measurement agent}} + + + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + This object represents a capabilities, in the context of a task, that are supported by the measurement agent. Types of capabilities include: Report tasks, Configuration Tasks and Instruction Tasks. + + + + + + + Name of the supported task. + + + + + + + + + + Version of the task. + + + + + + + + + + {{numentries}} + + + + + + + + + This object represents a registry function and an associated list of roles supported by this measurement agent + + + + + + + A URI ({{bibref|RFC3986}}) that is the value of the task registry entry as defined in {{bibref|LMAPREG}} or a value for a task that is understood by the measurement agent, measurement controller and measurement collector. + + + + + + + + {{list| representing the roles of the function}} + + + + + + + + + + + + This objects represents the measurement controller that is assigned to a measurement agent. + + + + The timer, in {{units}}, that is started after each successful contact with a measurement controller. + When the timer reaches the timeout en event is raised indicating that connectivity to the controller has been lost. + + + + + + + + + + + {{list}} {{reference|a {{object|#.Schedule}} object}} + This parameter lists the available control schedules for invoking control tasks by the measurement agent. + + + + + + + + + + + {{list}} {{reference|a {{object|#.Task}} object}} + This parameter lists the available control tasks that can be invoked by the measurement agent. + + + + + + + + + + + {{list}} {{reference|a {{object|#.CommunicationChannel}} object}} + The measurement agent to measurement controller channel is used for conveying results of communication sessions with the configuration, instruction status and logging information elements defined in defined in {{bibref|LMAPIFM}}. + + + + + + + + + + + + This object represents a schedule that is associated with a set of scheduled actions to be performed by a measurement agent. + Note: Actions of an occurrence of this {{object}} are gracefully terminated by the defining either the {{param|End}} or {{param|Duration}} parameters. Only one of these parameters may be defined at a time. + + + + + + + + + + Enables or disables this {{object}} instance. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + {{datatype|expand}} + + + + + + + + Name of the schedule. + + + + + + + + + + The current operational state of the Schedule. Only one instance of the schedule is active. An active schedule is defined where the {{param}} parameter has a value of {{enum|Running|State}}. + {{enum}} + + + + + + + + + + + + + {{reference|a {{object|##.Event}} object that is used define the event to start an occurrence of this {{object}}}} + + + + + + + + + + {{reference|a {{object|##.Event}} object that is used define the event to gracefully terminate all actions associated with an occurrence of this {{object}}}}. + + + + + + + + + + + When the {{param}} value is not 0, this parameter is used define the duration, in {{units}}, where after this duration all actions associated with an occurrence of this {{object}} are gracefully terminated. + + + + + + + + + + + {{list|each entry represents tags that are to be reported together with the measurement results.}} + + + + + + + + + {{list|representing the suppression tags to be matched}} + + + + + + + + + This parameter describes the execution method to apply to this schedule for the associated Actions. + {{enum}} + + + + + + Actions are executed in sequence as defined by the value of the {{param|Action.{i}.Order}} parameter. + The first Scheduled Action of the DestinationOutput is provided the input. + + + + + Actions are executed in parallel. + The all Scheduled Actions of the DestinationOutput are provided the input. + + + + + Actions are executed in sequence where the output of one Action is used as the input of subsequent Action. + The first Scheduled Action of the DestinationOutput is provided the input. + + + + + + + + + Date and time, based on {{bibref|RFC3339}}, in UTC that the {{object}} was invoked by the measurement agent. + + + + + + + + The amount of secondary storage, in {{units}}, allocated to an instance of this {{object}}. + The value of this parameter reflects the amount of allocated physical storage and not the storage used by logical data records. + For example the secondary storage can be the storage allocated in a file system holding temporary data. + + + + + + + + + + {{numentries}} + + + + + + + + + This object represents the statistics associated with this object. + + + + Number of invocations of this schedule. This counter does not include suppressed invocations or invocations that were prevented due to an overlap with a previous invocation of this schedule. + + + + + + + + Number of suppressed executions of this schedule. + + + + + + + + Number of executions prevented due to overlaps with a previous invocation of this schedule. + + + + + + + + Number of failed executions of this schedule. A failed execution is an execution where at least one action failed. + + + + + + + + + This object represents an action that is associated with the this {{object|##.Schedule}} object. + + + + + + + Enables or disables this {{object|##.Schedule.{i}.Action}} object. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + {{datatype|expand}} + + + + + + + + The current operational state of the {{object}}. {{enum}} + + + + + + + + + + + + + The order of the scheduled action. + + + + + + + + {{reference|a {{object|##.Task}} object used in this scheduled action}} + + + + + + + + + + {{list}} {{reference|a {{object|##.Schedule}} object used to receive the output(s) of this scheduled action}} + + + + + + + + + + + {{list|representing the suppression tags to be matched}} + + + + + + + + + {{list|each entry represents tags that are to be reported together with the measurement results.}} + + + + + + + + + The amount of secondary storage, in {{units}}, allocated to an instance of this {{object}}. + The value of this parameter reflects the amount of allocated physical storage and not the storage used by logical data records. + For example the secondary storage can be the storage allocated in a file system holding temporary data. + + + + + + + + + + Date and time, based on {{bibref|RFC3339}}, in UTC that the {{object}} was invoked by the measurement agent. + + + + + + + + Date and time, based on {{bibref|RFC3339}}, in UTC of a successful completion of the {{object}}. + + + + + + + + The status code returned by successful execution of the {{object}}. A value of 0 indicates successful completion. + + + + + + + + The message associated with the successful completion of the {{object}}. + + + + + + + + Date and time, based on {{bibref|RFC3339}}, in UTC of a failure to complete the {{object}}. + + + + + + + + The status code returned by failed execution of the {{object}}. A value of 0 indicates successful completion. + + + + + + + + The message associated with the failure to complete the task. + + + + + + + + {{numentries}} + + + + + + + + + This object represents the statistics associated with this object. + + + + Number of invocations of this action. This counter does not include suppressed invocations or invocations that were prevented due to an overlap with a previous invocation of this schedule. + + + + + + + + Number of suppressed executions of this action. + + + + + + + + Number of executions prevented due to overlaps with a previous invocation of this action. + + + + + + + + Number of failed executions of this action. A failed execution is an execution where at least one action failed. + + + + + + + + + This object represents an option associated with the Scheduled Action. When an option with the same Name exists between the Seheduled Action's Option and The Task's option, the option of the Scheduled Action takes precedence over the option associated with the Task. + + + + + + + + + + Enables or disables this {{object}} instance. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + {{datatype|expand}} + + + + + + + + The order of the Option. + + + + + + + + The name of the option. + When the value of this parameter is equal to "channel", the option value specifies the Communication Channel used for this scheduled task. + + + + + + + + The value associated with the Option. + + + + + + + + + The {{object}} object defines the configuration for a task that can be performed by {{object|##.MeasurementAgent}} objects. + Tasks are performed by {{object|##.MeasurementAgent}} objects when a {{object|#.Schedule}} object invokes the Task. + + + + + + + + + + Enables or disables this {{object}} instance. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + {{datatype|expand}} + + + + + + + + Name of the task. + + + + + + + + + + {{list|each entry represents tags that are to be reported together with the measurement results.}} + + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + This object represents a registry function and an associated list of roles for this task + + + + + + + + + + Enables or disables this {{object}} instance. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + {{datatype|expand}} + + + + + + + + A URI ({{bibref|RFC3986}}) that is the value of the task registry entry as defined in {{bibref|LMAPREG}} or a value for a task that is understood by the measurement agent, measurement controller and measurement collector. + + + + + + + + {{list| representing the roles of the function}} + + + + + + + + + + + + This object represents an option associated with the task. + + + + + + + + + + Enables or disables this {{object}} instance. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + {{datatype|expand}} + + + + + + + + The order of the Option. + + + + + + + + The name of the option. + When the value of this parameter is equal to "channel", the option value specifies the Communication Channel used for this task. + + + + + + + + The value associated with the Option. + + + + + + + + + This object represents the properties communication channel used to establish communication between a measurement agent and other elements of the LMAP framework (e.g., measurement controller, measurement collector). The value of the {{param|Name}} parameter used for conveying information is defined as an option in the Task's or scheduled Task's option parameter. + When this object uses the BulkData capability, a {{object|###.BulkData.Profile.{i}}} object instance referred to by this object. + + + + + + + + + + Enables or disables this {{object}} instance. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + {{datatype|expand}} + + + + + + + + Name of the channel. + + + + + + + + + + Enables or disables the ability to use a bulk data profile for this communication channel + + + + + + + + {{reference|a {{object|###.BulkData.Profile}} object that is used to represent communication channel}} + + + + + + + + + + The {{datatype}} of the LMAP component that is the target of this communication channel. + + + + + + + + {{reference|a {{object|###.Security.Certificate}} object that is used to identify the target of this channel}} + + + + + + + + + + {{reference|an interface object used to restrict the data transmitted or received using this channel to a specific interface}} If the value of this parameter is {{empty}} the data that is transmitted or received using this channel is able to use any available interface. + + + + + + + + + + + The {{object}} object defines the instruction to the measurement agent by the measurement controller. At most one {{object}} object for the {{object|##.MeasurementAgent}} instance is enabled at a time. . + + + + + + + Enables or disables this {{object}} instance. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + {{datatype|expand}} + + + + + + + + Date and time, based on {{bibref|RFC3339}}, in UTC that the {{object}} object or its sub-object's configuration was changed by a measurement agent's controller. + + + + + + + + {{list}} {{reference|a {{object|#.Schedule}} object}} + This parameter lists the available instruction schedules for invoking control tasks by the measurement agent. + + + + + + + + + + + {{list}} {{reference|a {{object|#.Task}} object}} + This parameter lists the available instruction tasks that can be invoked by the measurement agent. + + + + + + + + + + + {{list}} {{reference|a {{object|#.CommunicationChannel}} object}} + This parameter defines the corresponding report channels to be used when reporting results of tasks to a measurement collector. + + + + + + + + + + + {{numentries}} + + + + + + + + + This object defines the schedules and actions that are suppressed based on criteria defined in the {{param|SuppressionMatch}} parameter. + + + + + + + + + + Enables or disables this {{object}} instance. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + {{datatype|expand}} + + + + + + + + Name of the suppression object. + + + + + + + + + + The current operational state of the {{object}}. {{enum}} + + + + + + + + + + + + When {{true}}, the measurement agent is instructed to stop running schedules or actions that have been matched by this object. + + + + + + + + + {{reference|a {{object|###.Event}} object that is used define the event that to start an occurrence of this {{object}}}} When {{empty}} the default behavior is to perform the suspension event immediately. + + + + + + + + + + + {{reference|a {{object|###.Event}} object that is used define the event to gracefully suspend all actions associated with an occurrence of this {{object}}}} When {{empty}} the default behavior is for the suspension period to be indefinite. + + + + + + + + + + + {{list|representing the match patterns to be used for applying suppression to {{object|##.Schedule.{i}}} (and their actions) and all {{object|##.Schedule.{i}.Action.{i}}} object instances that have a matched using their SuppressionTags parameters}} The match pattern syntax is defined in {{bibref|LMAPIFM}}. + + + + + + + + + + This {{object}} object instance represents a report that is generated by a reporting task where the reporting task is defined as a {{object|#.MeasurementAgent.{i}.Task.{i}}} and executed as a scheduled action ({{object|#.MeasurementAgent.{i}.Schedule.{i}.Action.{i}}}). + The {{object}} replicates the {{object|#.MeasurementAgent.{i}}} object instance's data at the time of the action exection. + When a {{object|##.BulkData.Profile.{i}}} object instance is used to communicate a {{object}} instance, the CPE adds a {{object|##.BulkData.Profile.{i}.Parameter.{i}}} object instance referring to this {{object}} object instance. + + + + The report date and time, based on {{bibref|RFC3339}}, that the report was sent to the collector. + + + + + + + + Identifier of the measurement agent at the time the measurement was run. + + + + + + + + Identifier of the measurement group of interest to which the MA belongs. + + + + + + + + Identifier of the measurement point indicating where the measurement agent is located on a path as defined in {{bibref|RFC7398}}. + + + + + + + + + + {{numentries}} + + + + + + + + + The {{object}} object provides the meta-data of the result report of a single executed action that produced the result. + + + + + + + + + Name of the task that produced the result. + + + + + + + + + + Name of the schedule that produced the result. + + + + + + + + + + Name of the action that produced the result. + + + + + + + + + + The date and time, based on {{bibref|RFC3339}}, that the event that triggered the schedule of the action that produced the reported result values in UTC. + + + + + + + + The date and time, based on {{bibref|RFC3339}}, that the action started in UTC. + + + + + + + + The date and time, based on {{bibref|RFC3339}}, that the action was completed in UTC. + + + + + + + + The cycle number derived from the {{param|EventTime}}. + The cycle number is the time, in UTC, closest to the {{param|EventTime}} that is a multiple of the cycle interval of the event that triggered the execution of the schedule. + The value is valid if the event that triggered the execution of the schedule has a defined cycle interval. An {{empty}} value represent an invalid CycleNumber. + {{pattern}} + + + + + + + + + + The status code returned by the execution of the action. + + + + + + + + {{list|each entry represents tags defined for the schedule, task and action objects that produced this result}} + + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + This object represents an option associated with the task or action object that produced the result. + + + + + + + The order of the Option. + + + + + + + + The name of the Option. + When the value of this parameter is equal to "channel", the option value specifies the Communication Channel used for this task. + + + + + + + + The value associated with the Option. + + + + + + + + + This object represents actions that might have impacted the results being reported. + + + + + + + + + Name of the task. + + + + + + + + + + Name of the schedule. + + + + + + + + + + Name of the action. + + + + + + + + + + + This {{object}} object instances represents a row of results. + + + + {{list}} This parameter contains the column labels used for the result. + The column labels are ordered with the corresponding entries in the {{object|ResultRow}} table. + + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + This {{object}} object instances represents a row of results for the report. + + + + {{list}} This parameter contains an ordered set of values that align to the columns defined in the {{param|#.ColumnLabels}} parameter. + + + + + + + + + + This object represents a registry function and an associated list of roles for this result report. + + + + + + + A URI ({{bibref|RFC3986}}) that is the value of the registry entry as defined in {{bibref|LMAPREG}} or a value for a task that is understood by the measurement agent, measurement controller and measurement collector. + + + + + + + + {{list| representing the roles of the function}} + + + + + + + + + + + + This object defines the information associated with an event used within the measurement agent. Event instances may be referenced by various objects within the LMAP model. + + + + + + + + + + Enables or disables this {{object}} instance. + This parameter is based on ''ifAdminStatus'' from {{bibref|RFC2863}}. + + + + + + + + {{datatype|expand}} + + + + + + + + Name of the Event. + + + + + + + + + + This parameter describes the type of {{object}} for this object instance. The timing of the event occurrence is adjusted based on the value of the {{param|RandomnessSpread}} parameter. + {{enum}} + + + + + + Periodic Timing Event. When selected one or more event occurrences are emitted based on the parameters defined in the {{object|PeriodicTimer}} object. + + + + + Calendar Timing Event. When selected one or more event occurrences are emitted based on the parameters defined in the {{object|CalendarTimer}} object. + + + + + One-off Timing Event. When selected a single event occurrence is emitted based on the parameters defined in the {{object|OneOff}} object. + + + + + Immediate Timing Event. When selected a single event occurrence is emitted as soon as possible. + + + + + Startup Timing Event. When selected a single event occurrence is emitted when the corresponding measurement agent starts up. + + + + + Controller Lost Event. When selected a single event occurrence is emitted when the connectivity to the controller is lost. + + + + + Controller Connected Event. When selected a single event occurrence is emitted when the connectivity to the controller is established. + + + + + + + + + The spread, in {{units}}, of the Uniform Discrete random distribution algorithm. A value of 0 means that the random algorithm is not applied. + + + + + + + + + + The duration of the time interval, in {{units}}, that used to calculate cycle numbers. + + + + + + + + + + + This object defines a periodic timer instance. The periodic timer instance has attributes for when the timer is to begin ({{param|StartTime}}) and end ({{param|EndTime}}) as well as the interval to use. + + + + Date and time, based on {{bibref|RFC3339}}, that the {{object}} instance is to begin operation. + + + + + + + + Date and time, based on {{bibref|RFC3339}}, that the {{object}} instance is to end operation. + + + + + + + + The tolerable duration, in {{units}}, of the interval for this {{object}} instance. + + + + + + + + + + + This object defines a calendar timer instance. + The calendar timer instance has attributes for when the timer is to begin ({{param|StartTime}}) and end ({{param|EndTime}}) as well as the schedule of the recurrence. + The algrorithm that defines how the schedule elements are evaluated is defined in {{bibref|LMAPIFM}}. + If the value of any of the {{param|ScheduleMonths}}, {{param|ScheduleDaysOfMonth}}, {{param|ScheduleDaysOfWeek}}, {{param|ScheduleHoursOfDay}}, {{param|ScheduleMinutesOfHour}} or {{param|ScheduleSecondsOfMinute}} is {{empty}} then any actions that use this object will not be invoked. + + + + Date and time that the {{object}} instance is to begin this operation. + + + + + + + + Date and time that the {{object}} instance is to end this operation. + + + + + + + + This parameter represents either a list of the months of year that are applied to the schedule or an asterisk (*) that represents all the elements of the list. + Each entry in the months of the year list can be a numeric value or the name of the month (january (1), february (2), march (3), april (4), may (5), june (6), july (7), august (8), september (9), october (10), november (11), december (12)). + + + + + + + + This parameter represents either a list of the days of the month (1-31) that are applied to the schedule or an asterisk (*) that represents all the elements of the list. + + + + + + + + This parameter represents either a list of the days of the week that are applied to the schedule or an asterisk (*) that represents all the elements of the list. + Each entry in the days of the week list can be a numeric value or the name of the day (sunday (1), monday (2), tuesday (3), wednesday (4), thursday (5), friday (6), saturday (7)). + + + + + + + + This parameter represents either a list of the hours of the day (0-23) that are applied to the schedule or an asterisk (*) that represents all the elements of the list. + + + + + + + + This parameter represents either a list of the minutes of the hour (0-59) that are applied to the schedule or an asterisk (*) that represents all the elements of the list. + + + + + + + + This parameter represents either a list of the minutes of the hour (0-59) that are applied to the schedule or an asterisk (*) that represents all the elements of the list. + + + + + + + + When {{true}}, the value of the {{param|ScheduleTimezoneOffset}} parameter is applied to the schedule elements. + When {{false}}, the device's system timezone offset is applied to the schedule elements. + + + + + + + + The timezone offset, in {{units}}, to be applied to the schedule elements. + + + + + + + + + + + + This object defines a one off timer instance. + + + + Date and time, based on {{bibref|RFC3339}}, that the {{object}} instance is to begin operation. + + + + + + + + + Base object for Wireline Wireless Convergence. The controller can use this object to learn the supported 5G features and whether the 5G-RG is operating in 5G mode. + + + + {{list}} Wireline Wireless Convergence hardware capabilities supported by the CPE. {{enum}} + + + + + + + Able to use the 5G Radio Access Network + + + + + Able to use the 4G (LTE) Radio Access Network + + + + + Able to use fixed access networks + + + + + + + + {{list}} Wireline Wireless Convergence software capabilities supported by the CPE. {{enum}} + + + + + + + Able to use PPPoE or IPoE as specified in {{bibref|TR-124i5}} or earlier + + + + + Able to use 5G capabilities such as specified in {{bibref|TR-124i6}} + + + + + Able to support multi access PDUs using Access Traffic Steering Switching Splitting (ATSSS) + + + + + + + + Sets the mode the CPE is operating in. Whilst the CPE is expected to auto-negotiate, a service provider may need to lock the CPE in {{enum|FN-RG}} or {{enum|5G-RG}} mode for stability. {{enum}} + + + + + + The CPE only attempts to authenticate using PPPoE or IPoE + + + + + The CPE only attempts to register using 5G NAS + + + + + The CPE may operate in either mode + + + + + + + + + The mode the CPE is operating in. A CPE in {{enum|Negotiating}} is deemed to be auto-negotiating its operational mode. {{enum}} + + + + + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + Each table entry describes a single access network. The entire table is built by the 5G-RG upon startup. The primary purpose is to show the registration and connectivity status of each access network. Typically a 5G-RG would register on each available access network. A minimum of one access network must be in the CM-CONNECTED state in order to support N1 messaging. + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the Access Network entry as assigned by the CPE. + + + + + + + + + + {{reference}} Specifies the egress interface associated with this "AccessNetwork" entry. This MUST be a layer 1 interface. + + + + + + + + + + + The registration status of this entry. See {{bibref|3GPP-TS.23.501|Clause 5.3.2}}. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + The 5G-RG has sucessfully authenticated and has been assigned an AMF to manage it. + + + + + The 5G-RG is no longer managed by an AMF. + + + + + The access network will always start in this state and indicates that the 5G-RG has never registered to the access network. This state is only used by the 5G-RG and is never present in the AMF. + + + + + The {{param|LastError}} parameter is updated with the detail of this error. + + + + + + + + The connection status of this entry. A 5G-RG is deemed in the {{enum|CM_CONNECTED|ConnectionStatus}} state if there is a NAS signalling connection established between the 5G-RG and AMF. If {{param|RegistrationStatus}} transitions from {{enum|RM_REGISTERED|RegistrationStatus}} to {{enum|RM_DEREGISTERED|RegistrationStatus}}, the status of {{param}} must change to {{enum|CM_UNDEFINED||ConnectionStatus}}. See {{bibref|3GPP-TS.23.501|Clause 5.3.3}}. {{enum}} + The {{enum|Error}} value MAY be used by the CPE to indicate a locally defined error condition. + + + + + + The 5G-RG does not have a NAS connection over N1 to the AMF. + + + + + The 5G-RG does have a NAS connection over N1 to the AMF. + + + + + The access network will always start in this state and indicates that the 5G-RG is not registered to the access network. This state is only used by the 5G-RG and is never present in the AMF. + + + + + The {{param|LastError}} parameter is updated with the detail of this error. + + + + + + + + The access network type of this entry. {{enum}} + + + + + + + + + + + + Error code. See {{bibref|3GPP-TS.24.501|Clause 9.11.4.2}} + + + + + + + + + A 5G Globally Unique Temparary Identity (GUTI) securely identifes an CPE by keeping the permanent User Equipment (UE identifier (IMSI) hidden. This identity is globally unique and assigned by the AMF at the time of registration. + See {{bibref|3GPP-TS.23.003|.Clause 2.10}}. + + + + The Public Land Mobile Network (PLMN) globally identifies the service provider. A PLMN consists of a country code (MCC) and a network code (MNC). + See {{bibref|3GPP-TS.23.003|Clause 12.1}}. + For example, a PLMN of 50101 refers to MCC 501 (Australia) and MNC 01 (Telstra). + + + + + + + + The AMFId identifies an AMF instance within a service provider's network. In conjunction with the PLMN, it forms a Globally Unique AMF Id (GUAMI) which globally uniquely identifes an AMF. + See {{bibref|3GPP-TS.23.003|Clause 2.10}}. + + + + + + + + The Temporary Mobile Subscriber Identity (TMSI) is allocatred by the AMF at the time of registration and uniquely identifies the CPE. + See {{bibref|3GPP-TS.23.003|Clause 2.4}}. + + + + + + + + + User equipment Router Selection Policy (URSP) is a table of rules used to determine which network slice and data network to route a PDU over. Typically a 5G-RG would search the URSP table in precedence order matching the traffic descriptor types against the service it was setting up. For example a 5G-RG would search for 'connection capabilities' matching 'ims' in order to establish a dedicated PDU session for telephony. + See {{bibref|3GPP-TS.24.526|Clause 5.2}} for a full descrption of the URSP data elements. + + + + + + + + + + {{datatype|expand}} + + + + + + + + The precedence value of URSP rule field is used to specify the precedence of the URSP rule among all URSP rules in the URSP. The precedence value in the range from 0 to 255 (decimal). The higher the value of the precedence value field, the lower the precedence of the URP rule is. Multiple URSP rules in the URSP shall not have the same precedence value. + + + + + + + + + + {{numentries}} + + + + + + + + + A set of rules for a given precedence that must be matched in order to select a router in the form of data network and slice. Selection criteria range from destination IP addresses to connection capabilities. + + + + + + + {{datatype|expand}} + + + + + + + + Traffic Descriptor Type. See {{bibref|3GPP-TS.24.526|Clause 5.2}}. + + + + + + + + Traffic descriptor value. See {{bibref|3GPP-TS.24.526|Clause 5.2}}. + + + + + + + + + + {{numentries}} + + + + + + + + + This object describes the URSP Route Selection Descriptor table which provides a table of data networks and network slices used in PDU establishment. Table entries are used in precedence order until a successful PDU session is established. + See ((bibref|3GPP-TS.23.503|Annex A}} for an example URSP rule traversal. + + + + + + + + + + {{datatype|expand}} + + + + + + + + The precedence value of route selection descriptor field is used to specify the precedence of the route selection descriptor among all route selection descriptors in the URSP rule. The precedence value in the range from 0 to 255 (decimal). The higher the value of the precedence value field, the lower the precedence of the route selection descriptor is. + + + + + + + + + + Session and Service Continuity (SSC) Mode: Indicates that the traffic of the matching application shall be routed via a PDU Session supporting the included SSC Mode. See {{bibref|3GPP-TS.24.501|Clause 9.11.4.16}}. + + + + + + + + + + The DNN value contains an APN as defined in {{bibref|3GPP-TS.23.003|Clause 9.1.1}}. + + + + + + + + + + PDU session type. See {{bibref|3GPP-TS.24.501|Clause 9.11.4.11}}. {{enum}} + + + + + + + + + + + + + The preferred access type for the PDU session. For a 5G-RG non-3GPP refers to any fixed access technology. + See {{bibref|3GPP-TS.24.501|Clause 9.11.3.11}}. {{enum}} + + + + + + + + + + + + Describes a S-NSSAI Information element providing network slice specification. + See {{bibref|3GPP-TS.24.501|Clause 9.11.2.8}} + + + + The Slice Service Type (SST). {{enum}} + See {{bibref|3GPP-TS.23.501|Clause 5.15.2.2}}. + + + + + + + + The Slice differentiator is an optional number used to differentiate network slices with the same SST. + See {{bibref|3GPP-TS.23.501|Clause 5.15.2.1}}. + + + + + + + + + The logical connection between the 5G-RG and data network is the Protocol Data Unit (PDU). The Device.PDU subtree describes each PDU sessions properties together with the QoS rules specific to that PDU session. + + + + {{numentries}} + + + + + + + + + Contains all the properties of a PDU session instance, ranging from maximum bitrate through to assigned network slice. This object contains the {{object}} table. + + + + + + + + + + {{datatype|expand}} + + + + + + + + {{reference}} The IP Interface associated with the ''PDU'' entry. + + + + + + + + + + + PDU session identity. See {{bibref|3GPP-TS.24.501|Clause 9.4}}. + + + + + + + + + + Procedure transaction identity. See {{bibref|3GPP-TS.24.501|Clause 9.6}}. + + + + + + + + + + The PDU session type indicating the protocol the PDU is capable of carrying. See {{bibref|3GPP-TS.24.501|Clause 9.11.4.11}}. {{enum}} + + + + + + + + + + + + + Session and Service Continuity (SSC) Mode: Indicates that the traffic of the matching application shall be routed via a PDU Session supporting the included SSC Mode. See {{bibref|3GPP-TS.24.501|Clause 9.11.4.16}} + + + + + + + + + + Downlink Aggregate Maximum Bit Rate in {{units}}. See {{bibref|3GPP-TS.24.501|Clause 9.11.4.14}}. + + + + + + + + + + Uplink Aggregate Maximum Bit Rate in {{units}}. See {{bibref|3GPP-TS.24.501|Clause 9.11.4.14}}. + + + + + + + + + + Error code. See {{bibref|3GPP-TS.24.501|Clause 9.11.4.2}} + + + + + + + + The IPv4 address allocated to the PDU session by the SMF. This parameter is only valid if {{param|SessionType}} has a value of {{enum|IPv4|SessionType}} or {{enum|IPv4v6|SessionType}}. See {{bibref|3GPP-TS.24.501|Clause 9.11.4.10}}. + + + + + + + + The interface identifier for the IPv6 link local address allocated to the PDU session by the SMF. This parameter is only valid if {{param|SessionType}} has a value of {{enum|IPv6|SessionType}} or {{enum|IPv4v6|SessionType}}. See {{bibref|3GPP-TS.24.501|Clause 9.11.4.10}}. + + + + + + + + Reflective QoS timeout in {{units}}. See {{bibref|3GPP-TS.24.501|Clause 9.11.2.3}}. + + + + + + + + + + Always on PDU session indication. The purpose of the Always-on PDU session indication information element is to indicate whether a PDU session is established as an always-on PDU session. + See {{bibref|3GPP-TS.24.501|clause 9.11.4.3}}. + + + + + + + + The Data Network Name used by the PDU. The DNN value may be from the optional S-NSSAI specified at the time of PDU establishment or a default determined by the 5G core. A DNN is analagous to an LTE APN used the same format defined in {{bibref|3GPP-TS.24.501|clause 9.11.2.1A}}. + + + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + Policy Configuration Options (PCO) is an optional set of configuration parameters supplied by the network at the request of the 5G-RG as defined in {{bibref|3GPP-TS.24.008|clause 10.5.6.3}}. + + + + The IPv6 address of the P-CSCF used for VoLTE telephony. + + + + + + + + A comma separated list of IPv6 DNS servers. + + + + + + + + + + The IPv4 address of the P-CSCF used for VoLTE telephony. + + + + + + + + A comma separated list of IPv4 DNS servers. + + + + + + + + + + + Describes a S-NSSAI Information element providing network slice specification. + See {{bibref|3GPP-TS.24.501|Clause 9.11.2.8}} + + + + The Slice Service Type (SST). {{enum}} + See {{bibref|3GPP-TS.23.501|Clause 5.15.2.2}}. + + + + + + + + The Slice differentiator is an optional number used to differentiate network slices with the same SST. + See {{bibref|3GPP-TS.23.501|Clause 5.15.2.1}}. + + + + + + + + + This object describes the PDU QoS Rule table. The purpose of the QoS Rule table is to assign a QFI to mark traffic based on a set of classification rules. The rules are set by the netowrk operator and are specific for each PDU. + For example: + * A QoS Rule with a default used for general traffic has the following parameters. + * QFI=1 + * DQR=1 - Default rule + * Filter 1 for rule + * Direction=bidirectional + * Type=1 - Match all + * A QoS Rule matchihg a voice service. + * QFI=32 + * DQR=0 + * Filter 1 for rule + * Direction=bidirectional + * Type=33 - Destination IPv6 range + * Value=2001:8000/48 - Destination IPv6 range + * Filter 2 for rule + * Direction=bidirectional + * Type=16 - Destination IPv4 address with netmask + * Value=203.1.0.0 255.255.255.0 - Destination IPv4 address with netmask + A full description can be found at {{bibref|3GPP-TS.24.501|clause 9.11.4.13}} QoS Rules + + + + + + + + + + {{datatype|expand}} + + + + + + + + The QoS rule identifier field is used to identify the QoS rule. + + + + + + + + + + The QoS rule precedence field is used to specify the precedence of the QoS rule among all QoS rules. The higher the value of the QoS rule precedence field, the lower the precedence of that QoS rule is. + + + + + + + + + + In the UE to network direction the segregation bit indicates whether the UE is requesting the network to bind service data flows described by the QoS rule to a dedicated QoS Flow. When {{true}} segregation is requested. + + + + + + + + QoS Flow identifier. + + + + + + + + + + Default QoS rule flag. When {{true}} this QoS rule is the default QoS rule. + + + + + + + + {{numentries}} + + + + + + + + + This object describes the PDU QoS Rule Filter table. As each packet filter is logically anded with the others, there shall not be more than one occurrence of each packet filter component type. + + + + + + + {{datatype|expand}} + + + + + + + + The packet filter direction field is used to indicate for what traffic direction the filter applies. See {{bibref|3GPP-TS.24.501|Clause 9.11.4.13}} {{enum}} + + + + + + + + + + + + Packet filter component type identifier. See {{bibref|3GPP-TS.24.501|Clause 9.11.4.13}}. + + + + + + + + Matching value for the component type. See {{bibref|3GPP-TS.24.501|Clause 9.11.4.13}}. + + + + + + + + + + + Table of all QoS Flow Indicators (QFI) and their properties supported by the access network for this particular PDU. + For example: + * A QoS Flow with a QFI of 1 used for general traffic has the following parameters. + * FiveQI=8 + * A QoS Flow with a QFI of 32 used for voice traffic with a guaranteed bitrate of 150k has the following parameters. + * FiveQI=1 + * GFBRUplink=150 + * GFBRDownlink=150 + + + + + + + + + + {{datatype|expand}} + + + + + + + + QoS Flow Identifier. + + + + + + + + + + 5G QoS Identifier. See {{bibref|3GPP-TS.23.501|Clause 5.7.4}} for a table of standardised 5QI QoS characteristics. + + + + + + + + + + Guaranteed Flow Bitrate - Upstream (expressed in {{units}}). + + + + + + + + + + Guaranteed Flow Bitrate - Downstream (expressed in {{units}}). + + + + + + + + + + Maximum Flow Bitrate - Upstream (expressed in {{units}}). + + + + + + + + + + Maximum Flow Bitrate - Downstream (expressed in {{units}}). + + + + + + + + + + Averaging window for both uplink and downlink in {{units}}. + + + + + + + + + + EPS Bearer Identity. See {{bibref|3GPP-TS.24.301|Clause 9.3.2}}. + + + + + + + + + 5G Wireline wireless Encapsulation transport for data plane. See {{bibref|FWEREG}}. + + + + {{numentries}} + + + + + + + + + 5G Wireline wireless Encapsulation link layer table (a stackable interface object as described in {{bibref|TR-181i2|Section 4.2}}). + + + + + + + + + + The current operational state of the link (see {{bibref|TR-181i2|Section 4.2.2}}). {{enum}} + This parameter is based on ''ifOperStatus'' from {{bibref|RFC2863}}. + + + + + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + The textual name of the link as assigned by the CPE. + + + + + + + + + + The accumulated time in {{units}} since the link entered its current operational state. + + + + + + + + + + {{list}} {{reference|an interface object that is stacked immediately below this interface object}} See {{bibref|TR-181i2|Section 4.2.1}}. + + + + + + + + + + + + + + Throughput statistics for this interface. + The CPE MUST reset the interface's Stats parameters (unless otherwise stated in individual object or parameter descriptions) either when the interface becomes operationally down due to a previous administrative down (i.e. the interface's {{param|#.Status}} parameter transitions to a down state after the interface is disabled). Operational interface status is discussed in {{bibref|TR-181i2|section 4.2.2}}. + + + + The total number of {{units}} transmitted out of the interface, including framing characters. + + + + + + + + + + The total number of {{units}} received on the interface, including framing characters. + + + + + + + + + + The total number of packets transmitted out of the interface. + + + + + + + + The total number of packets received on the interface. + + + + + + + + The total number of outbound packets that could not be transmitted because of errors. + + + + + + + + The total number of inbound packets that contained errors preventing them from being delivered to a higher-layer protocol. + + + + + + + + The total number of packets requested for transmission which were not addressed to a multicast or broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were not addressed to a multicast or broadcast address at this layer. + + + + + + + + The total number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being delivered. One possible reason for discarding such a packet could be to free up buffer space. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a multicast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a multicast address at this layer. + + + + + + + + The total number of packets that higher-level protocols requested for transmission and which were addressed to a broadcast address at this layer, including those that were discarded or not sent. + + + + + + + + The total number of received packets, delivered by this layer to a higher layer, which were addressed to a broadcast address at this layer. + + + + + + + + The total number of packets received via the interface which were discarded because of an unknown or unsupported protocol. + + + + + + + + + Top level object for dynamically managed software applications. + + + + Install one or more Deployment Units (DUs) to the associated {{object}}. + + + + Input arguments. + + + + The {{datatype}} that specifies the location of the DU to be installed. + The URL MUST NOT include the "userinfo" component, as defined in {{bibref|RFC3986}}. + HTTP and HTTPS transports MUST be supported. Other optional transports MAY be supported. + + + + + + + + The UUID (see {{bibref|RFC4122}}) of the DU to be installed. + If this parameter is {{empty}} the device MUST generate the UUID based on the rules defined in {{bibref|RFC4122}} and {{bibref|TR-181i2|Annex C}}. + + + + + + + + Username to be used by the device to authenticate with the file server, if authentication is required. + + + + + + + + + + + Password to be used by the device to authenticate with the file server, if authentication is required. + + + + + + + + + + + A reference to the Execution Environment upon which the DU to be installed. + If {{empty}} the device MUST choose the Execution Environment to use. + + + + + + + + + + + + + This event informs a Controller of the completion (successful or unsuccessful) of a DU state change. + When used, this event MUST be issued after the device has completed any file transfers and carried out all operations related to the DU State Change. + This event MAY contain the results from multiple DU state changes; it is implementation specific how the device chooses to aggregate the DU state changes, although the device MUST notify the Controller of any DU state changes within 24 hours of the time the operations were completed by the device. + The device SHOULD make every attempt to aggregate, as much as possible, the DU State Change notifications to the Controller in the interest of scalability. + + + + The UUID as defined in {{bibref|RFC4122}} of the DU that affected by the state change. + + + + + + + + A reference to the DU that was affected by the state change. + + + + + + + + + + In the case of an Install, this will be the version of the DU created. In the case of an Update, it will be the updated version of the DU. In the case of an Uninstall, it will be the version of the uninstalled DU. + This MUST match the {{param|.SoftwareModules.DeploymentUnit.{i}.Version}} Parameter contained within the instance of the DeploymentUnit that is contained within the {{param|DeploymentUnitRef}} argument. + + + + + + + + + + The current state of the created DU. + + + + + + The DU is in an Installed state due to one of the following: successful Install, successful Update, failed Update, or failed Uninstall. In the case of a failed Update or failed Uninstall the Fault argument will contain an explanation of the failure. + + + + + The DU was successfully uninstalled from the device. + + + + + The DU could not be installed in which case a DU instance MUST NOT be created in the Data Model. + + + + + + + + Whether or not the DU operation resolved all of its dependencies. + In the case of a successful Uninstall, this value is meaningless and should be {{true}}. + + + + + + + + The Execution Units affected by this operation. + In the case of an Install, this will be the list of EUs that were created as a result of the DU’s installation. + In the case an Update, this will be the list of all EUs currently associated with the updated DU, including those that were created through the initial DU installation and any updates that had already occurred but not including any EUs that no longer exist on the device because of this or previous updates. + In the case of an Uninstall, this will be the list of the EUs removed from the device due to the DU being removed. + + + + + + + + + + + The date and time transfer was started in UTC. The device SHOULD record this information and report it in this argument, but if this information is not available, the value of this argument MUST be set to the Unknown Time value. + + + + + + + + The date and time the transfer was fully completed and applied in UTC. This need only be filled in if the transfer has been fully completed and applied. The device SHOULD record this information and report it in this argument, but if this information is not available or the transfer has not completed, the value of this argument MUST be set to the Unknown Time value. + + + + + + + + The operation that was performed against the DU causing the DU state change. + + + + + + The operation attempted was the Installation of a DU. + + + + + The operation attempted was the Update of an existing DU. + + + + + The operation attempted was the Un-Installation of an existing DU. + + + + + + + + Fault Structure. If the operation was successful, the {{param|FaultCode}} MUST be zero. Otherwise a non-zero {{param|FaultCode}} is specified along with a {{param|FaultString}} indicating the failure reason. + + + + The numerical fault code. Valid values are: + *If the operation was successful, the fault code is 0. + *If the device cannot complete the operation for some unknown reason, it SHOULD reject the operation with a 9001 (Request Denied) fault code. + *If the device detects the presence of the "userinfo" component in the file source URL, it SHOULD reject the operation with a 9003 (Invalid Arguments) fault code. + *If the device cannot find the Execution Environment specified in the Install or Update command, it SHOULD reject the operation with a 9023 (Unknown Execution Environment) fault code. + *If the device determines that the Deployment Unit being installed does not match either the Execution Environment specified or any Execution Environment on the device, it SHOULD reject the operation with a 9025 (Deployment Unit to Execution Environment Mismatch) fault code + *If the device detects that the Deployment Unit being installed already has the same version as one already installed on the same Execution Environment, it SHOULD reject the operation with a 9026 (Duplicate Deployment Unit) fault code. + *If the device detects that that there are no more system resources (disk space, memory, etc.) to perform the Install or Update of a Deployment Unit, it SHOULD reject the operation with a 9027 (System Resources Exceeded) fault code. + *If a requested operation attempts to alter the State of a Deployment Unit in a manner that conflicts with the Deployment Unit State Machine Diagram {{bibref|TR-369|Appendix I "Software Module Management"}}, it SHOULD reject the operation with a 9029 (Invalid Deployment Unit State) fault code. + *If a requested operation attempts to Uninstall a DU that caused an EE to come into existence, where that EE has at least 1 installed DU or at least 1 child EE, then the device SHOULD reject the operation with a 9029 (Invalid Deployment Unit State) fault code. + + + + + + + + A human-readable text description of the fault. This field SHOULD be empty if the FaultCode equals 0 (zero). + + + + + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + {{numentries}} + + + + + + + + + The Execution Environments that are available on the device, along with their properties and configurable settings. + + + + + + + + + + Indicates whether or not this {{object}} is enabled. + Disabling an enabled Execution Environment stops it, while enabling a disabled Execution Environment starts it. + When an Execution Environment is disabled, Deployment Units installed to that Execution Environment will be unaffected, but any Execution Units currently running on that Execution Environment will automatically transition to {{enum|Idle|#.ExecutionUnit.{i}.Status}}. + If an Update or Uninstall operation is attempted on a {{object|#.DeploymentUnit}} that is to be applied against a disabled {{object}}, that operation fails and the associated event will contain a FaultStruct for that operation. + Disabling an Execution Environment could place the device in a non-manageable state. For example, if the operating system itself was modeled as an {{object}} and a Controller disabled it, the Agent might be terminated leaving the device unmanageable. + + + + + + + + Indicates the status of this {{object}}. + + + + + + + + + + + + {{datatype|expand}} + + + + + + + + A Name provided by the device that adequately distinguishes this {{object}} from all other {{object}} instances. + + + + + + + + + + Indicates the complete type and specification version of this {{object}}. + + + + + + + + + + The run level that this {{object}} will be in upon startup (whether that is caused by a device Boot or the Execution Environment starting). + Run levels dictate which Execution Units will be started. Execution Units will be started if {{param|CurrentRunLevel}} is greater than or equal to {{param|#.ExecutionUnit.{i}.RunLevel}} and {{param|#.ExecutionUnit.{i}.AutoStart}} is {{true}}. + If the value of {{param|CurrentRunLevel}} is -1, then the value of this parameter is irrelevant when read and setting its value has no impact on the Run Level of this {{object}}. + + + + + + + + + + The run level that this {{object}} is currently operating in. This value is altered by executing the {{command|SetRunLevel()}} command. + Upon startup (whether that is caused by a device Boot or the Execution Environment starting) {{param}} will be equal to {{param|InitialRunLevel}}, unless Run Levels are not supported by this {{object}} in which case {{param}} will be -1. + Run levels dictate which Execution Units will be started. Execution Units will be started if {{param}} is greater than or equal to {{param|#.ExecutionUnit.{i}.RunLevel}} and {{param|#.ExecutionUnit.{i}.AutoStart}} is {{true}}. + If {{param}} is -1 then Run Levels are not supported by this {{object}} and setting {{param|InitialRunLevel}} or executing the command {{command|SetRunLevel()}} will not impact the Run Level of this {{object}}. + + + + + + + + + + Indicates the initial value on creation for {{param|#.ExecutionUnit.{i}.RunLevel}} for all Execution Unit instances associated with this {{object}}. + If the value of {{param|CurrentRunLevel}} is -1, then the value of this parameter is irrelevant when read and setting its value has no impact on the Run Level of any Execution Unit. + + + + + + + + + + The vendor that produced this {{object}}. + + + + + + + + + + The Version of this {{object}} as specified by the Vendor that implemented this {{object}}, not the version of the specification. + + + + + + + + + + Represents the parent {{object}} of this {{object}}. + If this value is {{empty}} then this is the Primary Execution Environment. + + + + + + + + + + The amount of disk space measured in {{units}} allocated to this {{object}}. A value of -1 MUST be used for {{object}} instances where this parameter is not applicable. + + + + + + + + + + + The amount of disk space measured in {{units}} currently available to this {{object}}. This value changes as the {{object|#.ExecutionUnit}} instances associated with this {{object}} consumes disk space. A value of -1 MUST be used for {{object}} instances where this parameter is not applicable. + + + + + + + + + + + The amount of physical RAM measured in {{units}} allocated to this {{object}}. A value of -1 MUST be used for {{object}} instances where this parameter is not applicable. + + + + + + + + + + + The amount of physical RAM measured in {{units}} currently available to this {{object}}. This value changes as the {{object|#.ExecutionUnit}} instances associated with this {{object}} are started/stopped and consume the physical RAM. A value of -1 MUST be used for {{object}} instances where this parameter is not applicable. + + + + + + + + + + + Represents the {{object|#.ExecutionUnit}} instances currently running on this {{object}}. This parameter only contains {{object|#.ExecutionUnit}} instances that currently have a {{param|#.ExecutionUnit.{i}.Status}} of {{enum|Active|#.ExecutionUnit.{i}.Status}}. + + + + + + + + + + + Represents the processors that this {{object}} has available to it. + + + + + + + + + + + Provides a mechanism to remotely manipulate the run level of this {{object}}, meaning that altering this comand will change the value of the {{param|#.CurrentRunLevel}}. + Run levels dictate which Execution Units will be started. Execution Units will be started if {{param|CurrentRunLevel}} is greater than or equal to {{param|#.ExecutionUnit.{i}.RunLevel}} and {{param|#.ExecutionUnit.{i}.AutoStart}} is {{true}}. + + + + Input arguments. + + + + This parameter will request to change the value of the {{param|#.CurrentRunLevel}} to the value of this parameter. + Setting this value when {{param|#.CurrentRunLevel}} is -1 has no impact to the Run Level of this instance of the {{object|##.}} object. + + + + + + + + + + + + This command causes this {{object}} to revert back to the state it was in when the device last issued a Boot event with a cause of a local or remote factory reset. + The following requirements dictate what MUST happen for the reset to be complete: + # All Deployment Units that were installed after the last Boot (with cause of a factory reset) event MUST be removed + # All persistent storage, configuration files, and log files that were associated with the removed Deployment Units MUST be removed + # Any Deployment Unit that is still installed against the Execution Environment MUST be restored to the version present when the last Boot (with cause of a factory reset) event was issued + # Any Deployment Unit that was present when the last Boot (with cause of a factory reset) event was issued, but was subsequently uninstalled and is now not present, MUST be installed with the version that was present when the last Boot (with cause of a factory reset) event was issued + # The Execution Environment MUST be restored to the version and configuration present when the last Boot (with cause of a factory reset) event was issued + # The Execution Environment MUST be restarted after all other restoration requirements have been met + + + + + + This table serves as the Deployment Unit inventory and contains status information about each Deployment Unit. + A new instance of this table gets created during the installation of a Software Module. + + + + + + + + + + + + A Universally Unique Identifier either provided by the Controller, or generated by the device, at the time of Deployment Unit Installation. + The format of this value is defined by {{bibref|RFC4122}} Version 5 (Name-Based) and {{bibref|TR-181i2|Annex C}}. + This value MUST NOT be altered when the {{object}} is updated. + + + + + + + + + + Deployment Unit Identifier chosen by the targeted {{object|#.ExecEnv}}. The format of this value is Execution Environment specific. + + + + + + + + + + {{datatype|expand}} + + + + + + + + Indicates the Name of this {{object}}, which is chosen by the author of the Deployment Unit. + The value of this parameter is used in the generation of the {{param|UUID}} based on the rules defined in {{bibref|TR-181i2|Annex C}}. + + + + + + + + + + Indicates the status of this {{object}}. + + + + + + This instance is in the process of being Installed and SHOULD transition to the {{enum|Installed}} state. + + + + + This instance has been successfully Installed. The {{param|Resolved}} flag SHOULD also be referenced for dependency resolution. + + + + + This instance is in the process of being Updated and SHOULD transition to the {{enum|Installed}} state. + + + + + This instance is in the process of being Uninstalled and SHOULD transition to the {{enum|Uninstalled}} state. + + + + + This instance has been successfully Uninstalled. This status will typically not be seen within a {{object}} instance. + + + + + + + + Indicates whether or not this {{object}} has resolved all of its dependencies. + + + + + + + + Contains the {{datatype}} used by the most recent {{command|#.InstallDU()}} or {{command|Update()}} to either Install or Update this {{object}}. + + + + + + + + Textual description of this {{object}}. The format of this value is Execution Environment specific. + + + + + + + + + + The author of this {{object}} formatted as a domain name. + The value of this parameter is used in the generation of the {{param|UUID}} based on the rules defined in {{bibref|TR-181i2|Annex C}}. + + + + + + + + + + Version of this {{object}}. The format of this value is Execution Environment specific. + + + + + + + + + + Represents the vendor log files that have come into existence because of this {{object}}. + This does not include any vendor log files that have come into existence because of {{object|#.ExecutionUnit}} instances that are contained within this {{object}}. + When this {{object}} is uninstalled the vendor log files referenced here SHOULD be removed from the device. + Not all {{object}} instances will actually have a corresponding vendor log file, in which case the value of this parameter will be {{empty}}. + + + + + + + + + + + Represents the vendor config files that have come into existence because of this {{object}}. + This does not include any vendor config files that have come into existence because of {{object|#.ExecutionUnit}} instances that are contained within this {{object}}. + When this {{object}} is uninstalled the vendor config files referenced here SHOULD be removed from the device. + Not all {{object}} instances will actually have a corresponding vendor config file, in which case the value of this parameter will be {{empty}}. + + + + + + + + + + + Represents the {{object|#.ExecutionUnit}} instances that are associated with this {{object}} instance. + + + + + + + + + + + Represents the {{object|#.ExecEnv}} instance where this {{object}} instance is installed. + + + + + + + + + + Update the associated {{object}}. + + + + Input arguments. + + + + The {{datatype}} that specifies the location of the DU to be installed. + The URL MUST NOT include the "userinfo" component, as defined in {{bibref|RFC3986}}. + HTTP and HTTPS transports MUST be supported. Other optional transports MAY be supported. + If the device receives an Update command with the same source URL as a previous Update or Install comamnd, the device MUST perform each Update as requested, and MUST NOT assume that the content of the file to be downloaded is the same each time. + + + + + + + + Username to be used by the device to authenticate with the file server, if authentication is required. + + + + + + + + + + + Password to be used by the device to authenticate with the file server, if authentication is required. + + + + + + + + + + + + + Uninstall the associated {{object}}. + + + + + + This table serves as the Execution Unit inventory and contains both status information about each Execution Unit as well as configurable parameters for each Execution Unit. + Each {{object|#.DeploymentUnit}} that is installed can have zero or more Execution Units. + Once a Deployment Unit is installed it populates this table with its contained Execution Units. + When the Deployment Unit (that caused this {{object}} to come into existence) is updated, this instance MAY be removed and new instances MAY come into existence. While the Deployment Unit (that caused this {{object}} to come into existence) is being updated, all {{object}} instances associated with the Deployment Unit will be stopped until the update is complete at which time they will be restored to the state that they were in before the update started. + When the Deployment Unit (that caused this {{object}} to come into existence) is uninstalled, this instance is removed. + Each {{object}} MAY also contain a set of vendor specific parameters displaying status and maintaining configuration that reside under the {{object|Extensions}} object. + + + + + + + + + + Execution Unit Identifier chosen by the {{object|#.ExecEnv}} during installation of the associated {{object|#.DeploymentUnit}}. + The format of this value is Execution Environment specific, but it MUST be unique across {{object|#.ExecEnv}} instances. Thus, it is recommended that this be a combination of the {{param|#.ExecEnv.{i}.Name}} and an Execution Environment local unique value. + + + + + + + + + + {{datatype|expand}} + + + + + + + + The name of this {{object}} as it pertains to its associated {{object|#.DeploymentUnit}}, which SHOULD be unique across all {{object}} instances contained within its associated {{object|#.DeploymentUnit}}. + + + + + + + + + + The name of this {{object}} as provided by the {{object|#.ExecEnv}}, which SHOULD be unique across all {{object}} instances contained within a specific {{object|#.ExecEnv}}. + + + + + + + + + + Indicates the status of this {{object}}. + + + + + + This instance is in an Idle state and not running. + + + + + This instance is in the process of Starting and SHOULD transition to the {{enum|Active}} state. + + + + + This instance is currently running. + + + + + This instance is in the process of Stopping and SHOULD transition to the {{enum|Idle}} state. + + + + + + + + If while running or transitioning between states this {{object}} identifies a fault this parameter embodies the problem. The value of {{enum|NoFault}} MUST be used when everything is working as intended. {{enum}} + For fault codes not included in this list, the vendor MAY include vendor-specific values, which MUST use the format defined in {{bibref|TR-106|Section 3.3}}. + + + + + + + + + + + + + + + + If while running or transitioning between states this {{object}} identifies a fault this parameter provides a more detailed explanation of the problem. + If {{param|ExecutionFaultCode}} has the value of {{enum|NoFault|ExecutionFaultCode}} then the value of this parameter MUST be {{empty}} and ignored by the Controller. + + + + + + + + + + If {{true}} and the {{param|RunLevel}} verification is also met, then this {{object}} will be automatically started by the device after its {{object|#.ExecEnv}} is either rebooted or restarted. + If {{false}} this {{object}} will not be started after its {{object|#.ExecEnv}} is either rebooted or restarted until it is explicitly commanded to do so by either the Controller or another Execution Unit. + + + + + + + + Determines when this {{object}} will be started. + If {{param|AutoStart}} is {{true}} and {{param|#.ExecEnv.{i}.CurrentRunLevel}} is greater than or equal to {{param}}, then this {{object}} will be started. + If the value of {{param|#.ExecEnv.{i}.CurrentRunLevel}} is -1, then the associated {{object|#.ExecEnv.}} doesn't support Run Levels, thus the value of this parameter is irrelevant when read and setting its value has no impact to the Run Level of this {{object}}. + + + + + + + + + + Vendor of this {{object}}. + + + + + + + + + + Version of the {{object}}. The format of this value is Execution Environment specific. + + + + + + + + + + Textual description of this {{object}}. The format of this value is Execution Environment specific. + + + + + + + + + + The amount of disk space measured in {{units}} currently being used by this {{object}}. A value of -1 MUST be used for {{object}} instances where this parameter is not applicable. + + + + + + + + + + + The amount of physical RAM measured in {{units}} currently being used by this {{object}}. A value of -1 MUST be used for {{object}} instances where this parameter is not applicable. + + + + + + + + + + + Represents the instances of multi-instanced objects that are directly controlled by, and have come into existence because of, this {{object}}. + NOTE: All other objects and parameters (i.e. not multi-instanced objects) that this {{object}} has caused to come into existence can be discovered via the GetSupportedDM and GetInstances USP messages. + + + + + + + + + + + Represents the system processes that are active in the system because of this {{object}}. + If {{param|Status}} is not {{enum|Active|Status}} it is expected that this list will be {{empty}}. Some {{object}} instances MIGHT NOT have any system processes irrespective of the value of {{param|Status}}. + + + + + + + + + + + Represents the vendor log files that have come into existence because of this {{object}}. + When the {{object|#.DeploymentUnit}} (that caused this {{object}} to come into existence) is uninstalled the vendor log files referenced here SHOULD be removed from the device. + Not all {{object}} instances will actually have a corresponding vendor log file, in which case the value of this parameter will be {{empty}}. + + + + + + + + + + + Represents the vendor config files that have come into existence because of this {{object}}. + When the {{object|#.DeploymentUnit}} (that caused this {{object}} to come into existence) is uninstalled the vendor config files referenced here SHOULD be removed from the device. + Not all {{object}} instances will actually have a corresponding vendor config file, in which case the value of this parameter will be {{empty}}. + + + + + + + + + + + Represents the {{object|#.ExecEnv}} that this {{object}} is associated with. + + + + + + + + + + Set the state transition that the Controller is requesting for this instance of the {{object}} object. + If this instance of the {{object}} object is associated with an Execution Environment that is disabled and an attempt is made to alter this value, then a error message MUST be generated. + + + + Input arguments. + + + + Indicates the requested state to transition this instance of the {{object|##.}} object. {{enum}} + + + + + + If this {{object|##.}} is currently in {{enum|Starting|###.ExecutionUnit.{i}.Status}} or {{enum|Active|###.ExecutionUnit.{i}.Status}} the device will attempt to Stop the Execution Unit; otherwise this requested state is ignored. + + + + + If this {{object|##.}} is currently in {{enum|Idle|###.ExecutionUnit.{i}.Status}} the device will attempt to Start the Execution Unit. + If this {{object|##.}} is in {{enum|Stopping|###.ExecutionUnit.{i}.Status}} the request is rejected and a fault raised. Otherwise this requested state is ignored. + + + + + + + + + + + This object proposes a general location for vendor extensions specific to this Execution Unit, which allows multiple Execution Units to expose parameters without the concern of conflicting parameter names. These vendor extensions are related to displaying status and maintaining configuration for this Execution Unit. + It is also possible for the Execution Unit to expose status and configuration parameters within Service objects or as embedded objects and parameters directly within the root data model, in which case the combination of {{param|#.References}} and use of GetSupportDM and GetInstances USP messages will be used to determine their locations. + + + + + Each entry in the table is a ProxiedDevice object that is a mount point. Each ProxiedDevice represents distinct hardware Devices. ProxiedDevice objects are virtual and abstracted representation of functionality, that exists on hardware other than that which the Agent is running. + + + + + + + {{datatype|expand}} + + + + + + + + {{datatype|expand}} + + + + + + + + Human-readable description of the {{object}}. e.g. a more detailed description of {{param|Type}}. + + + + + + + + + + A textual name of the instance, which can be assigned by the user. {{object}}. + + + + + + + + + + This parameter provides the state of the {{object}} on the underlying (proxied) connected network. + + + + + + + + The date time of the last successful contact. + + + + + + + + {{reference|a protocol object that uses the {{param|ProxyProtocol}}}}. + + + + + + + + + + The protocol being used to communicate between the Agent and this Proxied Device. {{enum}} + Vendors can extend the enumerated values with vendor specific extensions, in which case the rules outlined in {{bibref|TR-106|3.3}} MUST be adhered to. + + + + + + see {{bibref|Z-Wave}} + + + + + see {{bibref|ZigBee}} + + + + + see {{bibref|UPnP-DM:1}} + + + + + + + + {{numentries}} + + + + + + + + + Each Node instance represents distinct functional devices, which are virtual and abstracted representation of functionality. + + + + + + + {{datatype|expand}} + + + + + + + + {{datatype|expand}} + + + + + + + + Human-readable description of the {{object}}. e.g. a more detailed description of {{param|Type}}. + + + + + + + + + + + This list of IoT capability objects. + + + + + + + + + + {{datatype|expand}} + + + + + + + + A textual name of the instance, which can be assigned by the user. + + + + + + + + + + Describes the type of functionality that {{object}} is representing. Depending on the functionality the corresponding sub-object is instantiated. + Note: Only one of the defined sub-objects can exist in an {{object}} instance. + + + + + + + + + + + + + + + + + This capability provides a boolean function that is mapped to the type of function it represents. + E.g. If the instance represents a door lock ({{param|Type}} is {{enum|Locked|Type}}), a {{param|Value}} of {{true}} says the door lock is locked. + + + + Describes the type of functionality that {{object}} is representing. + + + + + + + + + + + Human-readable description of the {{object}}. e.g. a more detailed description of {{param|Type}}. + + + + + + + + + + Value of {{true}} or {{false}} that reflects the functionality. + + + + + + + + Toggle the {{param|Value}}. + + + + + + LevelController is used to model a control with a range of continuous states. + These values are configurable via {{param|Value}} and measured in {{param|Unit}} and are restricted between a Min and Max values. + Intensity profile - {{param|Value}} of intensity and ability to update that level through {{param|StepUp}} and {{param|StepDown}} commands with a configurable {{param|StepValue}}. + + + + {{datatype|expand}} + + + + + + + + Human-readable description of the {{object}}. e.g. a more detailed description of {{param|Type}}. + + + + + + + + + + The desired run value that this {{object}} will be between {{param|MinValue}} and {{param|MaxValue}}. + + + + + + + + Units in which {{param|Value}}, {{param|Value}}, {{param|MinValue}}, {{param|MaxValue}} and {{param|StepValue}} are expressed. {{datatype|expand}}. + + + + + + + + Minimum allowed value for {{param|Value}}. + + + + + + + + Maximum allowed value for {{param|Value}}. + + + + + + + + Number of {{param|Unit}} changes of each {{param|StepUp}} and {{param|StepDown}} command. + + + + + + + + Step Up the {{param|Value}}. + + + + + Step Down the {{param|Value}}. + + + + + + The EnumControl reflects the Enumerated level Control functionality. + The enumeration is defined by the {{param|ValidValues}} parameter. This will provide a comma-separated list of values that are available for configuring via the {{param|Value}} parameter. + + + + {{datatype|expand}} + + + + + + + + Human-readable description of the {{object}}. e.g. a more detailed description of {{param|Type}}. + + + + + + + + + + Current value representing the {{object}}; MUST be an element of {{param|ValidValues}}. + + + + + + + + List of valid values from the control represented by the {{object}}. + + + + + + + + + + + Step up the {{param|Value}} to the next allowed value in the enum. + + + + + Step down the {{param|Value}} to the previous allowed value in the enum. + + + + + + BinarySensor is used to reflect the functionality of a sensor that reports a {{param|Value}}. The {{param|Sensitivity}} configures the degree of sensitivity that the sensor uses for detection. + Timed BinarySensor profile - To provide the ability to add time based control over the {{param|Value}} attribute. How long the {{param|Value}} remains true is controlled by the {{param|HoldTime}}. {{param|RestTime}} controls how soon, after being activated, the sensor will respond to continuous events. + + + + Describes the type of functionality that {{object}} is representing. + + + + + + + + + + + + + + + + Human-readable description of the {{object}}. e.g. a more detailed description of {{param|Type}}. + + + + + + + + + + If the {{object}} has been recently activated, the value would be true. For how long the state attribute remain true after being activated depends on the underlying sensor reports. + + + + + + + + The date and time in UTC when {{param|Value}} has been changed to the current value. + + + + + + + + A 0 to 100 value indicating how reactive to changes the {{object}} should be, 0 being not sensible / disabled and 100 max sensitivity. + + + + + + + + + + After activation has been detected and the sensing attribute set to true, how soon, in {{units}} should the {{param|Value}} be reset to {{false}}. + + + + + + + + + + After activation has been detected and the {{param|Value}} set to {{true}}, how soon, in {{units}} should affected again per subsequent event. + + + + + + + + + + + LevelSensor is used to reflect the functionality of a sensor that reports a {{param|Value}} in {{param|Unit}}. + + + + {{datatype|expand}} + + + + + + + + Human-readable description of the {{object}}. e.g. a more detailed description of {{param|Type}}. + + + + + + + + + + The current value reading of this {{object}} in units defined in {{param|Unit}}. + + + + + + + + The date and time in UTC when {{param|Value}} has been changed to the current value. + + + + + + + + {{datatype|expand}} + Unit in which {{param|Value}} is expressed. + + + + + + + + Low level indicator. Is set to {{true}} if {{param|Value}} is equal or less than the value defined in {{param|LowLevelThreshold}}. + + + + + + + + The threshold value in for {{param|LowLevel}} expressed in the same units like {{param|Value}}. + + + + + + + + High level indicator. Is set to {{true}} if {{param|Value}} is equal or higher than the value defined in {{param|HighLevelThreshold}}. + + + + + + + + The threshold value in for {{param|HighLevel}} expressed in the same units like {{param|Value}}. + + + + + + + + + MultiLevelSensor is used to reflect the functionality of a sensor that reports multiple {{param|Values}} with the same {{param|Unit}}. + + + + Describes the type of functionality that {{object}} is representing. + + + + + + RGB color, encoded as integer value between 0 (usually represented as 0x000000) and 16777215 (usually represented as 0xFFFFFF), e.g. Blue would be 255 (usually represented as 0x0000FF) + + + + + The sensor reports a location with the values of Longitude, Latitude, Altitude as decimal values in km. + + + + + + + + Human-readable description of the {{object}}. e.g. a more detailed description of {{param|Type}}. + + + + + + + + + + The current value reading of this {{object}} in units defined in {{param|Unit}}. + + + + + + + + + The names of the values expressed in {{param|Values}}. + + + + + + + + + The date and time when {{param|Values}} has been changed to the current values. + + + + + + + + {{datatype|expand}} + Unit in which {{param|Values}} are expressed. + + + + + + + + + EnumSensor is used to reflect the functionality of a sensor that reports explicit non-continuous values. + + + + {{datatype|expand}} + + + + + + + + Human-readable description of the {{object}}. e.g. a more detailed description of {{param|Type}}. + + + + + + + + + + The actual reading value; MUST be a member of the enumeration defined in {{param|ValidValues}}. + + + + + + + + The date and time when {{param|Value}} has been changed to the current value. + + + + + + + + List of valid values reported from the sensor represented by this {{object}}. + + + + + + + + + + + + Each Node instance represents distinct functional devices, which are virtual and abstracted representation of functionality. + + + + + + + {{datatype|expand}} + + + + + + + + {{datatype|expand}} + + + + + + + + Human-readable description of the {{object}}. e.g. a more detailed description of {{param|Type}}. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + REQUIRED only for devices that support NAT. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + REQUIRED only for IPv4 capable devices. + + + + + REQUIRED only for IPv4 capable devices. + + + + + REQUIRED only for IPv6 capable devices. + + + + + REQUIRED only for IPv6 capable devices. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Note: This profile is valid for G.992.1 modems. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Note: This profile is valid for G.992.3 and G.992.5 modems. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + REQUIRED only for IPv4 capable devices. + + + + + REQUIRED only for IPv6 capable devices. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + REQUIRED only for IPv4 capable devices. + + + + + REQUIRED only for IPv6 capable devices. + + + + + + REQUIRED only for IPv4 capable devices. + + + + + + REQUIRED only for IPv6 capable devices. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 802.1x Authentication provisioning information used for MD5 shared secret exchange. This object will not exist if EAP-MD5 is not a supported authentication type. + + + + + + + 802.1x Authentication provisioning information used for TLS certificate authentication. This object will not exist if the EAP-TLS is not a supported authentication type. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + This table is REQUIRED to support sending of option 60 (Vendor Class Identifier) and option 77 (User Class Identifier) values. + + + + + + + + This table is REQUIRED to support requesting of option 60 (Vendor Class Identifier), option 61 (Client Identifier) and option 77 (User Class Identifier) values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Provides MQTT client control + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Provides basic MQTT client control and statistics + + + + + + + + + + + + + + + + + + + + + + + + + + Adds client subscription control and access to received topics + + + + + + + + + + + + + Provides basic MQTT broker control and statistics + + + + + + + + + + + + + + + + + + + + + + Adds parameters for MQTT network interconnection with Bridges + + + + + + + + + + + + + + + + + + + + + + + + + + + + Adds client authentication and extends statistics + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Note: This profile is valid for G.9701 modems. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Note: This profile is valid for G.992.1 modems. + + + + + + + + + + + + + + + + + + + + + + + + Note: This profile is valid for G.992.3 and G.992.5 modems. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Note: This profile is valid for G.993.2 modems. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + This profile is IPv4 specific. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + REQUIRED only for IPv6 capable devices. + + + + + + REQUIRED only for IPv6 capable devices. + + + + + + + + + + + + + + + + + + + + + Adds client authentication, will handling and extends statistics + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + This profile adds USP agent extensions for MQTT transport. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + This profile adds USP controller extensions for MQTT transport. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/test/tools/validate_json_plugin.py b/test/tools/validate_json_plugin.py new file mode 100755 index 00000000..6bafd0cf --- /dev/null +++ b/test/tools/validate_json_plugin.py @@ -0,0 +1,181 @@ +#!/usr/bin/python3 + +# Copyright (C) 2021 iopsys Software Solutions AB +# Author: Amin Ben Ramdhane + +import os +import sys +import json +from jsonschema import validate + +obj_schema = { + "definitions": { + "type_t": { + "type": "string", + "enum": [ + "object" + ] + }, + "map_type_t": { + "type": "string", + "enum": [ + "uci", + "ubus" + ] + }, + "protocols_t": { + "type": "string", + "enum": [ + "cwmp", + "usp" + ] + } + }, + "type" : "object", + "properties" : { + "type" : {"$ref": "#/definitions/type_t"}, + "version" : {"type": "string"}, + "protocols" : {"type" : "array", "items" : {"$ref": "#/definitions/protocols_t"}}, + "uniqueKeys" : {"type" : "array"}, + "access" : {"type" : "boolean"}, + "array" : {"type" : "boolean"}, + "mapping" : {"type" : "object", "properties" : { + "type" : {"$ref": "#/definitions/map_type_t"}, + "uci" : {"type" : "object", "properties" : { + "file" : {"type": "string"}, + "section" : {"type": "object", "properties" : { + "type" : {"type": "string"} + } + }, + "dmmapfile" : {"type": "string"} + } + }, + "ubus" : {"type" : "object", "properties" : { + "object" : {"type": "string"}, + "method" : {"type": "string"}, + "args" : {"type": "object"}, + "key" : {"type": "string"} + } + } + } + } + }, + "required": [ + "type", + "protocols", + "array" + ] +} + +param_schema = { + "definitions": { + "type_t": { + "type": "string", + "enum": [ + "string", + "unsignedInt", + "unsignedLong", + "int", + "long", + "boolean", + "dateTime", + "hexBinary", + "base64", + "decimal" + ] + }, + "map_type_t": { + "type": "string", + "enum": [ + "uci", + "ubus", + "procfs", + "sysfs" + ] + }, + "protocols_t": { + "type": "string", + "enum": [ + "cwmp", + "usp" + ] + } + }, + "type" : "object", + "properties" : { + "type" : {"$ref": "#/definitions/type_t"}, + "protocols" : {"type" : "array", "items" : {"$ref": "#/definitions/protocols_t"}}, + "read" : {"type" : "boolean"}, + "write" : {"type" : "boolean"}, + "mapping" : {"type" : "array", "items" : {"type": "object", "properties" : { + "type" : {"$ref": "#/definitions/map_type_t"}, + "uci" : {"type" : "object", "properties" : { + "file" : {"type": "string"}, + "section" : {"type": "object", "properties" : { + "type" : {"type": "string"}, + "index" : {"type": "string"} + } + }, + "option" : {"type": "object", "properties" : { + "name" : {"type": "string"} } + } + } + }, + "ubus" : {"type" : "object", "properties" : { + "object" : {"type": "string"}, + "method" : {"type": "string"}, + "args" : {"type": "object"}, + "key" : {"type": "string"} + } + }, + "procfs" : {"type" : "object", "properties" : { + "file" : {"type": "string"} + } + }, + "sysfs" : {"type" : "object", "properties" : { + "file" : {"type": "string"} + } + } + } + } + } + }, + "required": [ + "type", + "protocols", + "read", + "write" + ] +} + +def print_validate_json_usage(): + print("Usage: " + sys.argv[0] + " ") + print("Examples:") + print(" - " + sys.argv[0] + " tr181.json") + print(" ==> Validate the json file") + print("") + exit(1) + +def parse_value( key , value ): + + if key.endswith('.') and not key.startswith('Device.'): + print(key + " is not a valid path") + exit(1) + + validate(instance = value, schema = obj_schema if key.endswith('.') else param_schema) + + for k, v in value.items(): + if not k.endswith('()') and k != "list" and k != "mapping" and isinstance(v, dict): + parse_value(k, v) + +### main ### +if len(sys.argv) < 2: + print_validate_json_usage() + +json_file = open(sys.argv[1], "r") +json_data = json.loads(json_file.read()) + +for key, value in json_data.items(): + parse_value(key , value) + +print("JSON File is Valid") diff --git a/tools/.gitignore b/tools/.gitignore new file mode 100644 index 00000000..eb64e2c0 --- /dev/null +++ b/tools/.gitignore @@ -0,0 +1,3 @@ +/.repo +/.data_model.txt +/out diff --git a/tools/bbf_common.py b/tools/bbf_common.py index 31f75cdc..93a63e13 100755 --- a/tools/bbf_common.py +++ b/tools/bbf_common.py @@ -6,6 +6,8 @@ import os import subprocess import shutil +import json +from collections import OrderedDict CURRENT_PATH = os.getcwd() BBF_TR181_ROOT_FILE = "device.c" @@ -18,274 +20,410 @@ BBF_DMTREE_PATH_TR104 = BBF_DMTREE_PATH + "/tr104" BBF_DMTREE_PATH_TR143 = BBF_DMTREE_PATH + "/tr143" BBF_DMTREE_PATH_TR181_JSON = BBF_DMTREE_PATH + "/json/tr181.json" BBF_DMTREE_PATH_TR104_JSON = BBF_DMTREE_PATH + "/json/tr104.json" -ARRAY_JSON_FILES = { "tr181" : BBF_DMTREE_PATH_TR181_JSON, - "tr104" : BBF_DMTREE_PATH_TR104_JSON} -LIST_DM_DIR = [BBF_DMTREE_PATH_TR181, BBF_DMTREE_PATH_TR104, BBF_DMTREE_PATH_TR143] +DATA_MODEL_FILE = ".data_model.txt" +ARRAY_JSON_FILES = {"tr181": BBF_DMTREE_PATH_TR181_JSON, + "tr104": BBF_DMTREE_PATH_TR104_JSON} +LIST_DM_DIR = [BBF_DMTREE_PATH_TR181, + BBF_DMTREE_PATH_TR104, BBF_DMTREE_PATH_TR143] LIST_IGNORED_LINE = ['/*', '//', '#'] LIST_OBJ = [] LIST_PARAM = [] LIST_SUPPORTED_DM = [] -def remove_file( file_name ): - try: - os.remove(file_name) - except OSError: - pass - -def create_folder( folder_name ): - try: - os.mkdir(folder_name) - except OSError: - pass - -def remove_folder( folder_name ): - try: - shutil.rmtree(folder_name) - except: - pass - -def cd_dir( path ): - try: - os.chdir(path) - except OSError: - pass - -def obj_has_child( value ): - if isinstance(value, dict): - for obj, val in value.items(): - if isinstance(val, dict): - for obj1, val1 in val.items(): - if obj1 == "type" and val1 == "object": - return 1 - return 0 - -def obj_has_param( value ): - if isinstance(value, dict): - for obj, val in value.items(): - if isinstance(val, dict): - for obj1,val1 in val.items(): - if obj1 == "type" and val1 != "object": - return 1 - return 0 - -def generate_datamodel_tree( filename ): - obj_found = 0 - param_found = 0 - obj_found_in_list = 0 - table_name = "" - parent_obj = "" - - fp = open(filename, 'r') - for line in fp: - - if "DMOBJ" in line: - table_name = line[:line.index('[]')].rstrip('\n').replace("DMOBJ ", "") - obj_found = 1 - continue - - if "DMLEAF" in line: - table_name = line[:line.index('[]')].rstrip('\n').replace("DMLEAF ", "") - param_found = 1 - continue - - if obj_found == 0 and param_found == 0: - continue - - if line.startswith(tuple(LIST_IGNORED_LINE)) == True: - continue - - if "{0}" in line: - obj_found = 0 - param_found = 0 - obj_found_in_list = 0 - table_name = "" - parent_obj = "" - continue - - ## Object Table - if obj_found == 1: - if obj_found_in_list == 0: - for value in LIST_OBJ: - val = value.split(":") - if val[1] == table_name: - parent_obj = val[0] - obj_found_in_list = 1 - LIST_OBJ.remove(value) - - obj = line.rstrip('\n').split(", ") - obj_name = parent_obj + obj[0].replace("{", "").replace("\"", "").replace("BBF_VENDOR_PREFIX", BBF_VENDOR_PREFIX) - obj_permission = obj[1].replace("&", "") - obj_mulinst = obj[5].replace("&", "") - - if obj_mulinst == "NULL": - full_obj_name = obj_name + "." - else: - full_obj_name = obj_name + ".{i}." - - LIST_SUPPORTED_DM.append(full_obj_name + "," + obj_permission + ",DMT_OBJ") - - if obj[8] != "NULL": - LIST_OBJ.append(full_obj_name + ":" + obj[8]) - - if obj[9] != "NULL": - LIST_PARAM.append(full_obj_name + ":" + obj[9]) - - ## Parameter Table - if param_found == 1: - if obj_found_in_list == 0: - for value in LIST_PARAM: - val = value.split(":") - if val[1] == table_name: - parent_obj = val[0] - obj_found_in_list = 1 - LIST_PARAM.remove(value) - - param = line.rstrip('\n').split(", ") - param_name = parent_obj + param[0].replace("{", "").replace("\"", "").replace("BBF_VENDOR_PREFIX", BBF_VENDOR_PREFIX) - param_permission = param[1].replace("&", "") - param_type = param[2] - - LIST_SUPPORTED_DM.append(param_name + "," + param_permission + "," + param_type) - - - fp.close() - - - -def generate_dynamic_datamodel_tree( filename ): - obj_found = 0 - table_name = "" +Array_Types = {"string": "DMT_STRING", + "unsignedInt": "DMT_UNINT", + "unsignedLong": "DMT_UNLONG", + "int": "DMT_INT", + "long": "DMT_LONG", + "boolean": "DMT_BOOL", + "dateTime": "DMT_TIME", + "hexBinary": "DMT_HEXBIN", + "base64": "DMT_BASE64"} - fp = open(filename, 'r') - for line in fp: - if "DM_MAP_OBJ" in line: - table_name = line[:line.index('[]')].rstrip('\n').replace("DM_MAP_OBJ ", "") - obj_found = 1 - continue +def rename_file(old_file_name, new_file_name): + try: + os.rename(old_file_name, new_file_name) + except OSError: + pass + + +def remove_file(file_name): + try: + os.remove(file_name) + except OSError: + pass + + +def create_folder(folder_name): + try: + os.makedirs(folder_name, exist_ok = True) + except OSError: + pass + +# rmtree exception handler +def rmtree_handler(_func, path, _exc_info): + print("Failed to remove %s" % path) + +def remove_folder(folder_name): + if os.path.isdir(folder_name): + shutil.rmtree(folder_name, onerror = rmtree_handler) + +def cd_dir(path): + try: + os.chdir(path) + except OSError: + pass + + +def obj_has_child(value): + if isinstance(value, dict): + for _obj, val in value.items(): + if isinstance(val, dict): + for obj1, val1 in val.items(): + if obj1 == "type" and val1 == "object": + return 1 + return 0 + + +def obj_has_param(value): + if isinstance(value, dict): + for _obj, val in value.items(): + if isinstance(val, dict): + for obj1, val1 in val.items(): + if obj1 == "type" and val1 != "object": + return 1 + return 0 + + +def get_option_value(value, option, default = None): + if isinstance(value, dict): + for obj, val in value.items(): + if obj == option: + return val + return default + + +def get_param_type(value): + paramtype = get_option_value(value, "type") + return Array_Types.get(paramtype, None) + +def clean_supported_dm_list(): + LIST_SUPPORTED_DM.clear() + +def fill_list_supported_dm(): + fp = open(DATA_MODEL_FILE, 'r') + Lines = fp.readlines() + + for line in Lines: + LIST_SUPPORTED_DM.append(line) + + +def fill_data_model_file(): + fp = open(DATA_MODEL_FILE, 'a') + for value in LIST_SUPPORTED_DM: + print("%s" % value, file=fp) + fp.close() + + +def generate_datamodel_tree(filename): + if filename.endswith('.c') is False: + return + + obj_found = 0 + param_found = 0 + obj_found_in_list = 0 + table_name = "" + parent_obj = "" + + fp = open(filename, 'r') + for line in fp: + + if "DMOBJ" in line: + table_name = line[:line.index('[]')].rstrip( + '\n').replace("DMOBJ ", "") + obj_found = 1 + continue + + if "DMLEAF" in line: + table_name = line[:line.index('[]')].rstrip( + '\n').replace("DMLEAF ", "") + param_found = 1 + continue + + if obj_found == 0 and param_found == 0: + continue - if obj_found == 0: - continue + if line.startswith(tuple(LIST_IGNORED_LINE)) is True: + continue + + if "{0}" in line: + obj_found = 0 + param_found = 0 + obj_found_in_list = 0 + table_name = "" + parent_obj = "" + continue - if line.startswith(tuple(LIST_IGNORED_LINE)) == True: - continue + # Object Table + if obj_found == 1: + if obj_found_in_list == 0: + for value in LIST_OBJ: + val = value.split(":") + if val[1] == table_name: + parent_obj = val[0] + obj_found_in_list = 1 + LIST_OBJ.remove(value) + + obj = line.rstrip('\n').split(", ") + obj_name = parent_obj + obj[0].replace("{", "").replace("\"", "").replace( + "BBF_VENDOR_PREFIX", BBF_VENDOR_PREFIX).replace(" ", "") + obj_permission = obj[1].replace("&", "").replace(" ", "") + obj_mulinst = obj[5].replace("&", "").replace(" ", "") + + if obj_mulinst == "NULL": + full_obj_name = obj_name + "." + else: + full_obj_name = obj_name + ".{i}." + + LIST_SUPPORTED_DM.append( + full_obj_name + "," + obj_permission + ",DMT_OBJ") + + if obj[8] != "NULL": + LIST_OBJ.append(full_obj_name + ":" + obj[8]) + + if obj[9] != "NULL": + LIST_PARAM.append(full_obj_name + ":" + obj[9]) - if "{0}" in line: - obj_found = 0 - table_name = "" - continue + # Parameter Table + if param_found == 1: + if obj_found_in_list == 0: + for value in LIST_PARAM: + val = value.split(":") + if val[1] == table_name: + parent_obj = val[0] + obj_found_in_list = 1 + LIST_PARAM.remove(value) + + param = line.rstrip('\n').split(", ") + param_name = parent_obj + param[0].replace("{", "").replace( + "\"", "").replace("BBF_VENDOR_PREFIX", BBF_VENDOR_PREFIX).replace(" ", "") + param_permission = param[1].replace("&", "").replace(" ", "") + param_type = param[2].replace(" ", "") + + LIST_SUPPORTED_DM.append( + param_name + "," + param_permission + "," + param_type) + + fp.close() + + +def generate_dynamic_datamodel_tree(filename): + if filename.endswith('.c') is False: + return + + obj_found = 0 + + fp = open(filename, 'r') + for line in fp: + + if "DM_MAP_OBJ" in line: + obj_found = 1 + continue + + if obj_found == 0: + continue + + if line.startswith(tuple(LIST_IGNORED_LINE)) is True: + continue + + if "{0}" in line: + obj_found = 0 + continue + + # Object Table + if obj_found == 1: + obj = line.rstrip('\n').split(", ") + obj_name = obj[0][1:].replace("\"", "") + + if obj[1] != "NULL": + LIST_OBJ.append(obj_name + ":" + obj[1]) + + if obj[2] != "NULL": + LIST_PARAM.append(obj_name + ":" + obj[2].replace("},", "")) + + fp.close() + + +def parse_dynamic_json_datamodel_tree(obj, value): + obj_permission = "DMWRITE" if get_option_value( + value, "array") is True else "DMREAD" + LIST_SUPPORTED_DM.append(obj + "," + obj_permission + ",DMT_OBJ") + + hasobj = obj_has_child(value) + hasparam = obj_has_param(value) + + if hasparam and isinstance(value, dict): + for k, v in value.items(): + if k != "mapping" and isinstance(v, dict): + for k1, v1 in v.items(): + if k1 == "type" and v1 != "object": + param_name = obj + k + param_type = get_param_type(v) + param_permission = "DMWRITE" if get_option_value( + v, "write") is True else "DMREAD" + LIST_SUPPORTED_DM.append( + param_name + "," + param_permission + "," + param_type) + break - ## Object Table - if obj_found == 1: - obj = line.rstrip('\n').split(", ") - obj_name = obj[0][1:].replace("\"", "") + if hasobj and isinstance(value, dict): + for k, v in value.items(): + if isinstance(v, dict): + for k1, v1 in v.items(): + if k1 == "type" and v1 == "object": + parse_dynamic_json_datamodel_tree(k, v) - if obj[1] != "NULL": - LIST_OBJ.append(obj_name + ":" + obj[1]) - if obj[2] != "NULL": - LIST_PARAM.append(obj_name + ":" + obj[2].replace("},", "")) +def generate_dynamic_json_datamodel_tree(filename): + if filename.endswith('.json') is False: + return - fp.close() - - - - -def generate_supported_dm( remote_dm, vendor_list ): - - ''' - 1/ Download Remote Data Model if needed - 2/ Parse all Standard Data Model - 3/ Parse all Vendor Data Model if needed - 4/ Parse all Remote Data Model if needed - 5/ Generate the list of Supported Data Model 'LIST_SUPPORTED_DM' - ''' - - ############## Download Remote Data Models ############## - if remote_dm != None: - print("Start downloading remote data models...") - print("Download in progress........") - dm_url = remote_dm.split(",") - for i in range(remote_dm.count(',') + 1): - url = dm_url[i].split("^") - subprocess.run(["git", "clone", "--depth=1", url[0], ".repo" + str(i)], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL) - if url.count("^") == 1: - subprocess.run(["git", "-C", ".repo" + str(i), "checkout", url[1]], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL) - - - ############## GEN Standard BBF Data Models TREE ############## - print("Start Generation of Supported Data Models...") - print("Please wait...") - - cd_dir(BBF_DMTREE_PATH_TR181) - generate_datamodel_tree(BBF_TR181_ROOT_FILE) - - cd_dir(BBF_DMTREE_PATH_TR104) - generate_datamodel_tree(BBF_TR104_ROOT_FILE) - - for DIR in LIST_DM_DIR: - cd_dir(DIR) - for root, dirs, files in os.walk("."): - for filename in files: - if ".h" in filename or filename == BBF_TR181_ROOT_FILE or filename == BBF_TR104_ROOT_FILE: - continue - - generate_datamodel_tree(filename) - - - ############## GEN Vendors BBF Data Models TREE ############## - if vendor_list != None: - cd_dir(BBF_DMTREE_PATH) - vendor = vendor_list.split(",") - for i in range(vendor_list.count(',') + 1): - vendor_dir = "vendor/" + vendor[i] + "/tr181" - if os.path.isdir(vendor_dir): - cd_dir(vendor_dir) - - generate_dynamic_datamodel_tree(BBF_VENDOR_ROOT_FILE) - if os.path.isfile(BBF_TR181_ROOT_FILE): - generate_datamodel_tree(BBF_TR181_ROOT_FILE) - - for root, dirs, files in os.walk("."): - for filename in files: - if ".h" in filename or filename == BBF_VENDOR_ROOT_FILE or filename == BBF_TR181_ROOT_FILE: - continue - - generate_datamodel_tree(filename) - - cd_dir(BBF_DMTREE_PATH) - - - ############## GEN External BBF Data Models TREE ############## - if remote_dm != None: - cd_dir(CURRENT_PATH) - - for i in range(remote_dm.count(',') + 1): - if os.path.isdir("./.repo" + str(i)): - - cmd = 'find ./.repo%s/ -name datamodel.c' % str(i) - files = os.popen(cmd).read() - - for file in files.split('\n'): - if os.path.isfile(file): - generate_dynamic_datamodel_tree(file) - generate_datamodel_tree(file) - - - ############## Remove Duplicated Element from List ############## - global LIST_SUPPORTED_DM - LIST_SUPPORTED_DM = list(set(LIST_SUPPORTED_DM)) - - - ############## Sort all elements in List ############## - LIST_SUPPORTED_DM.sort(reverse=False) - - - ############## Back to the current directory ############## - cd_dir(CURRENT_PATH) - - - ############## Remove Remote Data Models ############## - if remote_dm != None: - for i in range(remote_dm.count(',') + 1): - remove_folder("./.repo" + str(i)) + json_file = open(filename, "r") + data = json.loads(json_file.read(), object_pairs_hook=OrderedDict) + + for obj, value in data.items(): + if obj is None or obj.startswith('Device.') is False: + continue + + parse_dynamic_json_datamodel_tree(obj, value) + + +def generate_supported_dm(vendor_prefix=None, vendor_list=None, plugins=None): + ''' + 1/ Download Remote Data Model if needed + 2/ Parse all Standard Data Model + 3/ Parse all Vendor Data Model if needed + 4/ Generate the list of Supported Data Model 'LIST_SUPPORTED_DM' + 5/ Copy the supported data model in file 'DATA_MODEL_FILE' + ''' + + ############## SET BBF VENDOR PREFIX ############## + if vendor_prefix is not None: + global BBF_VENDOR_PREFIX + BBF_VENDOR_PREFIX = vendor_prefix + + ############## GEN Local BBF Data Models TREE ############## + print("Generating the local data models...") + + cd_dir(BBF_DMTREE_PATH_TR181) + generate_datamodel_tree(BBF_TR181_ROOT_FILE) + + cd_dir(BBF_DMTREE_PATH_TR104) + generate_datamodel_tree(BBF_TR104_ROOT_FILE) + + for DIR in LIST_DM_DIR: + cd_dir(DIR) + for _root, _dirs, files in os.walk("."): + for filename in files: + if filename.endswith('.c') is False or filename == BBF_TR181_ROOT_FILE or filename == BBF_TR104_ROOT_FILE: + continue + + generate_datamodel_tree(filename) + + ############## GEN Vendors BBF Data Models TREE ############## + if vendor_list is not None and isinstance(vendor_list, list) and vendor_list: + cd_dir(BBF_DMTREE_PATH) + for vendor in vendor_list: + vendor_dir = "vendor/" + vendor + "/tr181" + if os.path.isdir(vendor_dir): + cd_dir(vendor_dir) + + generate_dynamic_datamodel_tree(BBF_VENDOR_ROOT_FILE) + if os.path.isfile(BBF_TR181_ROOT_FILE): + generate_datamodel_tree(BBF_TR181_ROOT_FILE) + + for _root, _dirs, files in os.walk("."): + for filename in files: + if filename.endswith('.c') is False or filename == BBF_VENDOR_ROOT_FILE or filename == BBF_TR181_ROOT_FILE: + continue + + generate_datamodel_tree(filename) + + cd_dir(BBF_DMTREE_PATH) + + vendor_dir = "vendor/" + vendor + "/tr104" + if os.path.isdir(vendor_dir): + cd_dir(vendor_dir) + + for _root, _dirs, files in os.walk("."): + for filename in files: + if filename.endswith('.c') is False: + continue + + generate_datamodel_tree(filename) + + cd_dir(BBF_DMTREE_PATH) + + ############## Download && Generate Plugins Data Models ############## + if plugins is not None and isinstance(plugins, list) and plugins: + print("Generating datamodels from defined plugins...") + + cd_dir(CURRENT_PATH) + if isinstance(plugins, list): + for plugin in plugins: + repo = get_option_value(plugin, "repo") + version = get_option_value(plugin, "version") + + remove_folder(".repo") + try: + subprocess.run(["git", "clone", repo, ".repo"], + stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL, check = True) + except (OSError, subprocess.SubprocessError) as _e: + print("Failed to clone %s" % repo) + + if version is not None: + try: + subprocess.run(["git", "-C", ".repo", "checkout", version], + stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL, check=True) + except (OSError, subprocess.SubprocessError) as _e: + print("Failed to checkout git version %s" % version) + + if os.path.isdir(".repo"): + if version is None: + print('├── Processing ' + repo) + else: + print('├── Processing ' + repo + '^' + version) + + dm_files = get_option_value(plugin, "dm_files") + if dm_files is not None and isinstance(dm_files, list): + for dm_file in dm_files: + generate_dynamic_datamodel_tree(".repo/" + dm_file) + generate_datamodel_tree(".repo/" + dm_file) + generate_dynamic_json_datamodel_tree(".repo/" + dm_file) + else: + files = os.popen('find .repo/ -name datamodel.c').read() + for file in files.split('\n'): + if os.path.isfile(file): + generate_dynamic_datamodel_tree(file) + generate_datamodel_tree(file) + + files = os.popen('find .repo/ -name "*.json"').read() + for file in files.split('\n'): + if os.path.isfile(file): + generate_dynamic_json_datamodel_tree(file) + + remove_folder(".repo") + print('└── Processing of plugins done') + + ############## Remove Duplicated Element from List ############## + global LIST_SUPPORTED_DM + LIST_SUPPORTED_DM = list(set(LIST_SUPPORTED_DM)) + + ############## Sort all elements in List ############## + LIST_SUPPORTED_DM.sort(reverse=False) + + ############## Back to the current directory ############## + cd_dir(CURRENT_PATH) + + ############### COPY SUPPORTED DATA MODEL TO FILE ############### + remove_file(DATA_MODEL_FILE) + fill_data_model_file() diff --git a/tools/convert_dm_json_to_c.py b/tools/convert_dm_json_to_c.py new file mode 100755 index 00000000..a12a6a25 --- /dev/null +++ b/tools/convert_dm_json_to_c.py @@ -0,0 +1,1102 @@ +#!/usr/bin/python3 + +# Copyright (C) 2021 iopsys Software Solutions AB +# Author: Amin Ben Ramdhane + +from __future__ import print_function + +import os +import sys +import json +from collections import OrderedDict +import bbf_common as bbf + +DMC_DIR = "datamodel" + + +def getlastname(name): + return name.replace(".{i}", "").split('.')[-2] + + +def getname(objname): + OBJSname = objname + if (objname.count('.') > 1 and (objname.count('.') != 2 or objname.count('{i}') != 1)): + OBJSname = objname.replace("Device", "", 1) + OBJSname = OBJSname.replace("{i}", "").replace(".", "") + if objname.count('.') == 1: + return OBJSname + if (objname.count('.') == 2 and objname.count('{i}') == 1): + OBJSname = "Services" + OBJSname + return OBJSname + return OBJSname + + +def getarrayoptionparam(value, option): + if isinstance(value, dict): + for obj, val in value.items(): + if obj == option and isinstance(val, list): + return val + return None + + +def getprotocolsparam(value, option): + if isinstance(value, dict): + for obj, val in value.items(): + if obj == option and isinstance(val, list): + if len(val) == 2: + return "BBFDM_BOTH" + elif val[0] == "usp": + return "BBFDM_USP" + else: + return "BBFDM_CWMP" + return "BBFDM_BOTH" + + +def getuniquekeys(value, option): + if isinstance(value, dict): + for obj, val in value.items(): + if obj == option and isinstance(val, list): + buf = "LIST_KEY{" + for key in val: + buf = buf + "\"%s\"" % key + ", " + buf = buf + "NULL" + "}" + return buf + return None + + +def getargsparam(value): + if isinstance(value, dict): + for obj, val in value.items(): + return obj, val + return None, None + + +def get_mapping_param(mappingobj): + dm_type = bbf.get_option_value(mappingobj, "type") + if dm_type == "uci": + uciobj = bbf.get_option_value(mappingobj, "uci") + file = bbf.get_option_value(uciobj, "file") + sectionobj = bbf.get_option_value(uciobj, "section") + sectiontype = bbf.get_option_value(sectionobj, "type") + sectionname = bbf.get_option_value(sectionobj, "name") + sectionindex = bbf.get_option_value(sectionobj, "index") + optionobj = bbf.get_option_value(uciobj, "option") + optionname = bbf.get_option_value(optionobj, "name") + path = bbf.get_option_value(uciobj, "path") + ref = bbf.get_option_value(uciobj, "ref") + return dm_type, file, sectiontype, sectionname, sectionindex, optionname, path, ref + elif dm_type == "ubus": + ubusobj = bbf.get_option_value(mappingobj, "ubus") + dm_object = bbf.get_option_value(ubusobj, "object") + method = bbf.get_option_value(ubusobj, "method") + argsobj = bbf.get_option_value(ubusobj, "args") + arg1, arg2 = getargsparam(argsobj) + key = bbf.get_option_value(ubusobj, "key") + return dm_type, dm_object, method, arg1, arg2, key, None, None + elif dm_type == "procfs" or dm_type == "sysfs": + file = bbf.get_option_value(mappingobj, "file") + return dm_type, file, None, None, None, None, None, None + else: + cliobj = bbf.get_option_value(mappingobj, "cli") + command = bbf.get_option_value(cliobj, "command") + argsobj = bbf.get_option_value(cliobj, "args") + i = 0 + value = "" + list_length = len(argsobj) + while i < list_length: + if value == "": + value = "\"" + argsobj[i] + "\", " + elif i == list_length-1: + value = value + "\"" + argsobj[i] + "\"" + else: + value = value + "\"" + argsobj[i] + "\", " + i += 1 + return dm_type, command, list_length, value, None, None, None, None + + +def printGlobalstrCommon(str_exp): + fp = open(DMC_DIR + "/common.c", 'a') + print("%s" % str_exp, file=fp) + fp.close() + + +def get_mapping_obj(mappingobj): + dm_type = bbf.get_option_value(mappingobj, "type") + if dm_type == "uci": + uciobj = bbf.get_option_value(mappingobj, "uci") + file = bbf.get_option_value(uciobj, "file") + sectionobj = bbf.get_option_value(uciobj, "section") + sectiontype = bbf.get_option_value(sectionobj, "type") + dmmapfile = bbf.get_option_value(uciobj, "dmmapfile") + return dm_type, file, sectiontype, dmmapfile, None, None + elif dm_type == "ubus": + ubusobj = bbf.get_option_value(mappingobj, "ubus") + dm_object = bbf.get_option_value(ubusobj, "object") + method = bbf.get_option_value(ubusobj, "method") + argsobj = bbf.get_option_value(ubusobj, "args") + arg1, arg2 = getargsparam(argsobj) + key = bbf.get_option_value(ubusobj, "key") + return dm_type, dm_object, method, arg1, arg2, key + else: + return dm_type, None, None, None, None, None + + +def generate_validate_value(dmparam, value): + validate_value = "" + maxsizeparam = "-1" + itemminparam = "-1" + itemmaxparam = "-1" + rangeminparam = "NULL" + rangemaxparam = "NULL" + + listparam = bbf.get_option_value(value, "list") + if listparam is not None: + datatypeparam = bbf.get_option_value(listparam, "datatype") + maxsizeparam = bbf.get_option_value(listparam, "maxsize") + if maxsizeparam is None: + maxsizeparam = "-1" + itemparam = bbf.get_option_value(listparam, "item") + if itemparam is not None: + itemminparam = bbf.get_option_value(itemparam, "min") + if itemminparam is None: + itemminparam = "-1" + itemmaxparam = bbf.get_option_value(itemparam, "max") + if itemmaxparam is None: + itemmaxparam = "-1" + + rangeparam = getarrayoptionparam(listparam, "range") + if rangeparam is not None: + range_length = len(rangeparam) + rangeargs = "RANGE_ARGS{" + for i in range(range_length - 1): + rangeminparam = bbf.get_option_value(rangeparam[i], "min") + if rangeminparam is None: + rangeminparam = "NULL" + rangemaxparam = bbf.get_option_value(rangeparam[i], "max") + if rangemaxparam is None: + rangemaxparam = "NULL" + rangeargs += "{\"%s\",\"%s\"}," % ( + rangeminparam, rangemaxparam) + rangeminparam = bbf.get_option_value( + rangeparam[range_length - 1], "min") + if rangeminparam is None: + rangeminparam = "NULL" + rangemaxparam = bbf.get_option_value( + rangeparam[range_length - 1], "max") + if rangemaxparam is None: + rangemaxparam = "NULL" + rangeargs += "{\"%s\",\"%s\"}}, %s" % ( + rangeminparam, rangemaxparam, range_length) + else: + rangeargs = "RANGE_ARGS{{NULL,NULL}}, 1" + + enumarationsparam = getarrayoptionparam(listparam, "enumerations") + if enumarationsparam is not None: + list_enumarationsparam = enumarationsparam + enum_length = len(list_enumarationsparam) + enumarationsparam = dmparam if datatypeparam == "string" else datatypeparam + str_enum = "char *%s[] = {" % enumarationsparam + for i in range(enum_length): + str_enum += "\"%s\", " % list_enumarationsparam[i] + str_enum += "NULL};" + printGlobalstrCommon(str_enum) + else: + enumarationsparam = "NULL" + + patternparam = getarrayoptionparam(listparam, "pattern") + if patternparam is not None: + list_patternparam = patternparam + pattern_length = len(list_patternparam) + patternparam = dmparam if datatypeparam == "string" else datatypeparam + str_pattern = "char *%s[] = {" % patternparam + for i in range(pattern_length): + str_pattern += "\"^%s$\", " % list_patternparam[i] + str_pattern += "NULL};" + printGlobalstrCommon(str_pattern) + elif datatypeparam == "IPAddress": + patternparam = "IPAddress" + elif datatypeparam == "IPv6Address": + patternparam = "IPv6Address" + elif datatypeparam == "IPPrefix": + patternparam = "IPPrefix" + elif datatypeparam == "IPv6Prefix": + patternparam = "IPv6Prefix" + else: + patternparam = "NULL" + + if datatypeparam == "unsignedInt": + validate_value += " if (dm_validate_unsignedInt_list(value, %s, %s, %s, %s))\n" % ( + itemminparam, itemmaxparam, maxsizeparam, rangeargs) + else: + if rangeminparam == "NULL": + rangeminparam = "-1" + if rangemaxparam == "NULL": + rangemaxparam = "-1" + validate_value += " if (dm_validate_string_list(value, %s, %s, %s, %s, %s, %s, %s))\n" % ( + itemminparam, itemmaxparam, maxsizeparam, rangeminparam, rangemaxparam, enumarationsparam, patternparam) + else: + datatypeparam = bbf.get_option_value(value, "datatype") + rangeparam = getarrayoptionparam(value, "range") + if rangeparam is not None: + range_length = len(rangeparam) + rangeargs = "RANGE_ARGS{" + for i in range(range_length - 1): + rangeminparam = bbf.get_option_value(rangeparam[i], "min") + if rangeminparam is None: + rangeminparam = "NULL" + rangemaxparam = bbf.get_option_value(rangeparam[i], "max") + if rangemaxparam is None: + rangemaxparam = "NULL" + rangeargs += "{\"%s\",\"%s\"}," % ( + rangeminparam, rangemaxparam) + rangeminparam = bbf.get_option_value( + rangeparam[range_length - 1], "min") + if rangeminparam is None: + rangeminparam = "NULL" + rangemaxparam = bbf.get_option_value( + rangeparam[range_length - 1], "max") + if rangemaxparam is None: + rangemaxparam = "NULL" + rangeargs += "{\"%s\",\"%s\"}}, %s" % ( + rangeminparam, rangemaxparam, range_length) + else: + rangeargs = "RANGE_ARGS{{NULL,NULL}}, 1" + + enumarationsparam = getarrayoptionparam(value, "enumerations") + if enumarationsparam is not None: + list_enumarationsparam = enumarationsparam + enum_length = len(list_enumarationsparam) + enumarationsparam = dmparam if datatypeparam == "string" else datatypeparam + str_enum = "char *%s[] = {" % enumarationsparam + for i in range(enum_length): + str_enum += "\"%s\", " % list_enumarationsparam[i] + str_enum += "NULL};" + printGlobalstrCommon(str_enum) + else: + enumarationsparam = "NULL" + + patternparam = getarrayoptionparam(value, "pattern") + if patternparam is not None: + list_patternparam = patternparam + pattern_length = len(list_patternparam) + patternparam = dmparam if datatypeparam == "string" else datatypeparam + str_pattern = "char *%s[] = {" % patternparam + for i in range(pattern_length): + str_pattern += "\"^%s$\", " % list_patternparam[i] + str_pattern += "NULL};" + printGlobalstrCommon(str_pattern) + elif datatypeparam == "IPAddress": + patternparam = "IPAddress" + elif datatypeparam == "IPv6Address": + patternparam = "IPv6Address" + elif datatypeparam == "IPPrefix": + patternparam = "IPPrefix" + elif datatypeparam == "IPv6Prefix": + patternparam = "IPv6Prefix" + else: + patternparam = "NULL" + + if datatypeparam == "boolean": + validate_value += " if (dm_validate_boolean(value))\n" + elif datatypeparam == "unsignedInt": + validate_value += " if (dm_validate_unsignedInt(value, %s))\n" % rangeargs + elif datatypeparam == "int": + validate_value += " if (dm_validate_int(value, %s))\n" % rangeargs + elif datatypeparam == "unsignedLong": + validate_value += " if (dm_validate_unsignedLong(value, %s))\n" % rangeargs + elif datatypeparam == "long": + validate_value += " if (dm_validate_long(value, %s))\n" % rangeargs + elif datatypeparam == "dateTime": + validate_value += " if (dm_validate_dateTime(value))\n" + elif datatypeparam == "hexBinary": + if rangeminparam == "NULL": + rangeminparam = "-1" + if rangemaxparam == "NULL": + rangemaxparam = "-1" + validate_value += " if (dm_validate_hexBinary(value, %s))\n" % rangeargs + else: + if rangeminparam == "NULL": + rangeminparam = "-1" + if rangemaxparam == "NULL": + rangemaxparam = "-1" + validate_value += " if (dm_validate_string(value, %s, %s, %s, %s))\n" % ( + rangeminparam, rangemaxparam, enumarationsparam, patternparam) + validate_value += " return FAULT_9007;" + validate_value = validate_value.replace("\"NULL\"", "NULL") + return validate_value + + +def printheaderObjCommon(objname): + fp = open('./.objparamarray.c', 'a') + print("/* *** %s *** */" % objname, file=fp) + fp.close() + + +def cprintheaderOBJS(objname): + fp = open('./.objparamarray.c', 'a') + print("DMOBJ %s[] = {" % ("t" + getname(objname) + "Obj"), file=fp) + print("/* OBJ, permission, addobj, delobj, checkdep, browseinstobj, nextdynamicobj, dynamicleaf, nextobj, leaf, linker, bbfdm_type, uniqueKeys*/", file=fp) + fp.close() + + +def hprintheaderOBJS(objname): + fp = open('./.objparamarray.h', 'a') + print("extern DMOBJ %s[];" % ("t" + getname(objname) + "Obj"), file=fp) + fp.close() + + +def cprinttopfile(fp, filename): + print("/*", file=fp) + print(" * Copyright (C) 2020 iopsys Software Solutions AB", file=fp) + print(" *", file=fp) + print(" * This program is free software; you can redistribute it and/or modify", file=fp) + print(" * it under the terms of the GNU Lesser General Public License version 2.1", file=fp) + print(" * as published by the Free Software Foundation", file=fp) + print(" *", file=fp) + print(" * Author: ", file=fp) + print(" */", file=fp) + print("", file=fp) + print("#include \"%s.h\"" % filename.lower(), file=fp) + print("", file=fp) + + +def hprinttopfile(fp, filename): + print("/*", file=fp) + print(" * Copyright (C) 2020 iopsys Software Solutions AB", file=fp) + print(" *", file=fp) + print(" * This program is free software; you can redistribute it and/or modify", file=fp) + print(" * it under the terms of the GNU Lesser General Public License version 2.1", file=fp) + print(" * as published by the Free Software Foundation", file=fp) + print(" *", file=fp) + print(" * Author: ", file=fp) + print(" */", file=fp) + print("", file=fp) + print("#ifndef __%s_H" % filename.upper(), file=fp) + print("#define __%s_H" % filename.upper(), file=fp) + print("", file=fp) + print("#include ", file=fp) + print("", file=fp) + + +def hprintfootfile(fp, filename): + print("", file=fp) + print("#endif //__%s_H" % filename.upper(), file=fp) + print("", file=fp) + + +def cprintAddDelObj(faddobj, fdelobj, name, mappingobj, _dmobject): + fp = open('./.objadddel.c', 'a') + print("static int %s(char *refparam, struct dmctx *ctx, void *data, char **instance)" % + faddobj, file=fp) + print("{", file=fp) + if mappingobj is not None: + dm_type, file, sectiontype, dmmapfile, _path, _ref = get_mapping_obj( + mappingobj) + if dm_type == "uci": + print(" struct uci_section *dmmap = NULL, *s = NULL;", file=fp) + print("", file=fp) + print(" char *inst = get_last_instance_bbfdm(\"%s\", \"%s\", \"%s\");" % + (dmmapfile, sectiontype, name+"instance"), file=fp) + print(" dmuci_add_section(\"%s\", \"%s\", &s);" % + (file, sectiontype), file=fp) + print(" //dmuci_set_value_by_section(s, \"option\", \"value\");", file=fp) + print("", file=fp) + print(" dmuci_add_section_bbfdm(\"%s\", \"%s\", &dmmap);" % + (dmmapfile, sectiontype), file=fp) + print( + " dmuci_set_value_by_section(dmmap, \"section_name\", section_name(s));", file=fp) + print(" *instance = update_instance(inst, 2, dmmap, \"%s\");" % + (name+"instance"), file=fp) + else: + print(" //TODO", file=fp) + print(" return 0;", file=fp) + print("}", file=fp) + print("", file=fp) + print("static int %s(char *refparam, struct dmctx *ctx, void *data, char *instance, unsigned char del_action)" % fdelobj, file=fp) + print("{", file=fp) + if mappingobj is not None: + if dm_type == "uci": + print( + " struct uci_section *s = NULL, *ss = NULL, *dmmap_section = NULL;", file=fp) + print(" int found = 0;", file=fp) + print("", file=fp) + print(" switch (del_action) {", file=fp) + if mappingobj is not None: + if dm_type == "uci": + print(" case DEL_INST:", file=fp) + print(" get_dmmap_section_of_config_section(\"%s\", \"%s\", section_name((struct uci_section *)data), &dmmap_section);" % + (dmmapfile, sectiontype), file=fp) + print(" if (dmmap_section != NULL)", file=fp) + print(" dmuci_delete_by_section(dmmap_section, NULL, NULL);", file=fp) + print( + " dmuci_delete_by_section((struct uci_section *)data, NULL, NULL);", file=fp) + print(" break;", file=fp) + print(" case DEL_ALL:", file=fp) + print(" uci_foreach_sections(\"%s\", \"%s\", s) {" % ( + file, sectiontype), file=fp) + print(" if (found != 0) {", file=fp) + print(" get_dmmap_section_of_config_section(\"%s\", \"%s\", section_name(ss), &dmmap_section);" % ( + dmmapfile, sectiontype), file=fp) + print(" if (dmmap_section != NULL)", file=fp) + print(" dmuci_delete_by_section(dmmap_section, NULL, NULL);", file=fp) + print(" dmuci_delete_by_section(ss, NULL, NULL);", file=fp) + print(" }", file=fp) + print(" ss = s;", file=fp) + print(" found++;", file=fp) + print(" }", file=fp) + print(" if (ss != NULL) {", file=fp) + print(" get_dmmap_section_of_config_section(\"%s\", \"%s\", section_name(ss), &dmmap_section);" % ( + dmmapfile, sectiontype), file=fp) + print(" if (dmmap_section != NULL)", file=fp) + print(" dmuci_delete_by_section(dmmap_section, NULL, NULL);", file=fp) + print(" dmuci_delete_by_section(ss, NULL, NULL);", file=fp) + print(" }", file=fp) + print(" break;", file=fp) + else: + print(" case DEL_INST:", file=fp) + print(" //TODO", file=fp) + print(" break;", file=fp) + print(" case DEL_ALL:", file=fp) + print(" //TODO", file=fp) + print(" break;", file=fp) + print(" }", file=fp) + print(" return 0;", file=fp) + print("}", file=fp) + print("", file=fp) + fp.close() + + +def cprintBrowseObj(fbrowse, name, mappingobj, dmobject): + # Open file + fp = open('./.objbrowse.c', 'a') + + # Mapping Parameter + if mappingobj is not None: + dm_type, res1, res2, res3, res4, res5 = get_mapping_obj(mappingobj) + if dm_type == "uci": + print("/*#%s!%s:%s/%s/%s*/" % + (dmobject, dm_type.upper(), res1, res2, res3), file=fp) + elif dm_type == "ubus": + print("/*#%s!%s:%s/%s/%s,%s/%s*/" % + (dmobject, dm_type.upper(), res1, res2, res3, res4, res5), file=fp) + + print("static int %s(struct dmctx *dmctx, DMNODE *parent_node, void *prev_data, char *prev_instance)" % fbrowse, file=fp) + print("{", file=fp) + + # Mapping exist + if mappingobj is not None: + + ############################## UCI ######################################## + if dm_type == "uci": + print(" char *inst = NULL, *max_inst = NULL;", file=fp) + print(" struct dmmap_dup *p = NULL;", file=fp) + print(" LIST_HEAD(dup_list);", file=fp) + print("", file=fp) + print(" synchronize_specific_config_sections_with_dmmap(\"%s\", \"%s\", \"%s\", &dup_list);" % ( + res1, res2, res3), file=fp) + print(" list_for_each_entry(p, &dup_list, list) {", file=fp) + print("", file=fp) + print( + " inst = handle_update_instance(1, dmctx, &max_inst, update_instance_alias, 3,", file=fp) + print(" p->dmmap_section, \"%s\", \"%s\");" % + (name+"instance", name+"alias"), file=fp) + print("", file=fp) + print(" if (DM_LINK_INST_OBJ(dmctx, parent_node, (void *)p->config_section, inst) == DM_STOP)", file=fp) + print(" break;", file=fp) + print(" }", file=fp) + print(" free_dmmap_config_dup_list(&dup_list);", file=fp) + + ############################## UBUS ######################################## + elif dm_type == "ubus": + print(" json_object *res = NULL, *obj = NULL, *arrobj = NULL;", file=fp) + print(" char *inst = NULL, *max_inst = NULL;", file=fp) + print(" int id = 0, i = 0;", file=fp) + print("", file=fp) + if res3 is None and res4 is None: + print(" dmubus_call(\"%s\", \"%s\", UBUS_ARGS{}, 0, &res);" % + (res1, res2), file=fp) + else: + print(" dmubus_call(\"%s\", \"%s\", UBUS_ARGS{{\"%s\", \"%s\", String}}, 1, &res);" % ( + res1, res2, res3, res4), file=fp) + print(" if (res) {", file=fp) + print( + " dmjson_foreach_obj_in_array(res, arrobj, obj, i, 1, \"%s\") {" % res5, file=fp) + print("", file=fp) + print(" inst = handle_update_instance(1, dmctx, &max_inst, update_instance_without_section, 1, ++id);", file=fp) + print("", file=fp) + print( + " if (DM_LINK_INST_OBJ(dmctx, parent_node, (void *)obj, inst) == DM_STOP)", file=fp) + print(" break;", file=fp) + print(" }", file=fp) + print(" }", file=fp) + + # Mapping doesn't exist + else: + print(" //TODO", file=fp) + print(" return 0;", file=fp) + print("}", file=fp) + print("", file=fp) + + # Close file + fp.close() + + +def cprintGetSetValue(getvalue, setvalue, mappingparam, instance, typeparam, parentname, dmparam, value): + # Open file + fp = open('./.getstevalue.c', 'a') + + # Generate Validate value + validate_value = "" + if setvalue != "NULL": + validate_value = generate_validate_value(dmparam, value) + + # Mapping exist + if mappingparam is not None: + count = len(mappingparam) + i = 0 + mapping = "" + tmpgetvalue = "" + tmpsetvalue = "" + set_value = "" + for element in mappingparam: + dm_type, res1, res2, res3, res4, res5, res6, res7 = get_mapping_param( + element) + get_value = "" + i += 1 + + ############################## UCI ######################################## + if dm_type == "uci": + # Mapping Parameter + if res3 is not None: + mapping = "%s:%s/%s,%s/%s" % (dm_type.upper(), + res1, res2, res3, res5) + else: + mapping = "%s:%s/%s,%s/%s" % (dm_type.upper(), + res1, res2, res4, res5) + + # GET VALUE Parameter + if "NumberOfEntries" in dmparam: + get_value += " struct uci_section *s = NULL;\n" + get_value += " int cnt = 0;\n" + get_value += "\n" + get_value += " uci_foreach_sections(\"%s\", \"%s\", s) {\n" % ( + res1, res2) + get_value += " cnt++;\n" + get_value += " }\n" + get_value += " dmasprintf(value, \"%d\", cnt);" + elif "Alias" in dmparam: + get_value += " struct uci_section *dmmap_section = NULL;\n" + get_value += "\n" + get_value += " get_dmmap_section_of_config_section(\"%s\", \"%s\", section_name((struct uci_section *)data), &dmmap_section);\n" % ( + res1, res2) + get_value += " dmuci_get_value_by_section_string(dmmap_section, \"%s\", value);\n" % res5 + get_value += " if ((*value)[0] == '\\0')\n" + get_value += " dmasprintf(value, \"cpe-%s\", instance);" + elif instance == "TRUE" and res6 is not None: + get_value += " char uci_type[32] = {0};\n" + get_value += "\n" + get_value += " snprintf(uci_type, sizeof(uci_type), \"@%s[%s]\", instance ? atoi(instance)-1 : 0);\n" % ( + res2, "%d") + get_value += " *value = bbf_uci_get_value(\"%s\", \"%s\", uci_type, \"%s\");" % ( + res6, res1, res5) + elif instance == "TRUE" and res7 is not None: + get_value += " char *linker = dmstrdup(*value);\n" + get_value += " adm_entry_get_linker_param(ctx, \"%s\", linker, value);\n" % res7 + get_value += " dmfree(linker);\n" + get_value += " if (*value == NULL)\n" + get_value += " *value = \"\";" + elif res6 is not None: + get_value += " *value = bbf_uci_get_value(\"%s\", \"%s\", \"%s\", \"%s\");" % ( + res6, res1, res3, res5) + elif instance == "TRUE": + get_value += " dmuci_get_value_by_section_string((struct uci_section *)data, \"%s\", value);" % res5 + else: + get_value += " dmuci_get_option_value_string(\"%s\", \"%s\", \"%s\", value);" % ( + res1, res3, res5) + + # SET VALUE Parameter + set_value += " switch (action) {\n" + set_value += " case VALUECHECK:\n" + set_value += "%s\n" % validate_value + set_value += " break;\n" + set_value += " case VALUESET:\n" + if typeparam == "boolean": + set_value += " string_to_bool(value, &b);\n" + if instance == "TRUE": + set_value += " dmuci_set_value_by_section((struct uci_section *)data, \"%s\", b ? \"1\" : \"0\");" % res5 + else: + set_value += " dmuci_set_value(\"%s\", \"%s\", \"%s\", b ? \"1\" : \"0\");" % ( + res1, res3, res5) + elif instance == "TRUE": + set_value += " dmuci_set_value_by_section((struct uci_section *)data, \"%s\", value);" % res5 + else: + set_value += " dmuci_set_value(\"%s\", \"%s\", \"%s\", value);" % ( + res1, res3, res5) + + ############################## UBUS ######################################## + elif dm_type == "ubus": + # Mapping Parameter + if res3 is not None and res4 is not None: + mapping = "%s:%s/%s/%s,%s/%s" % ( + dm_type.upper(), res1, res2, res3, res4, res5) + else: + mapping = "%s:%s/%s//%s" % (dm_type.upper(), res1, res2, res5) + + # GET VALUE Parameter + if instance == "TRUE": + options = res5.split(".") + if len(options) == 3: + get_value += " *value = dmjson_get_value((json_object *)data, 2, \"%s\", \"%s\");\n" % ( + options[1], options[2]) + elif len(options) == 2: + get_value += " *value = dmjson_get_value((json_object *)data, 1, \"%s\");\n" % options[ + 1] + else: + get_value += " json_object *res;\n" + if res3 is None and res4 is None: + get_value += " dmubus_call(\"%s\", \"%s\", UBUS_ARGS{}, 0, &res);\n" % ( + res1, res2) + else: + if i == 2 and res4 == "prev_value": + get_value += " dmubus_call(\"%s\", \"%s\", UBUS_ARGS{{\"%s\", *value, String}}, 1, &res);\n" % ( + res1, res2, res3) + + elif i == 2 and res4 == "@Name": + get_value += " if (*value[0] == '\\0')\n" + get_value += " {\n" + get_value += " dmubus_call(\"%s\", \"%s\", UBUS_ARGS{{\"%s\", section_name((struct uci_section *)data), String}}, 1, &res);\n" % ( + res1, res2, res3) + elif res4 == "@Name": + get_value += " dmubus_call(\"%s\", \"%s\", UBUS_ARGS{{\"%s\", section_name((struct uci_section *)data), String}}, 1, &res);\n" % ( + res1, res2, res3) + else: + get_value += " dmubus_call(\"%s\", \"%s\", UBUS_ARGS{{\"%s\", \"%s\", String}}, 1, &res);\n" % ( + res1, res2, res3, res4) + + get_value += " DM_ASSERT(res, *value = \"\");\n" + option = res5.split(".") + if "." in res5: + if option[0] == "@Name": + get_value += " *value = dmjson_get_value(res, 2, section_name((struct uci_section *)data), \"%s\");" % ( + option[1]) + else: + get_value += " *value = dmjson_get_value(res, 2, \"%s\", \"%s\");" % ( + option[0], option[1]) + else: + get_value += " *value = dmjson_get_value(res, 1, \"%s\");" % option[0] + if i == 2 and res4 == "@Name": + get_value += "\n }" + + # SET VALUE Parameter + set_value += " switch (action) {\n" + set_value += " case VALUECHECK:\n" + set_value += "%s\n" % validate_value + set_value += " break;\n" + set_value += " case VALUESET:\n" + set_value += " //TODO" + + ############################## SYSFS ######################################## + elif dm_type == "sysfs": + # Mapping Parameter + mapping = "%s:%s" % (dm_type.upper(), res1) + + # GET VALUE Parameter + if res1[:15] == "/sys/class/net/" and res1[15:20] == "@Name": + get_value += " get_net_device_sysfs(section_name((struct uci_section *)data), \"%s\", value);" % res1[ + 21:] + else: + get_value += " char val[64];\n" + get_value += "\n" + get_value += " dm_read_sysfs_file(\"%s\", val, sizeof(val));\n" % res1 + get_value += " *value = dmstrdup(val);" + + ############################## PROCFS ######################################## + elif dm_type == "procfs": + # Mapping Parameter + mapping = "%s:%s" % (dm_type.upper(), res1) + + # GET VALUE Parameter + get_value += " char val[64];\n" + get_value += "\n" + get_value += " dm_read_sysfs_file(\"%s\", val, sizeof(val));\n" % res1 + get_value += " *value = dmstrdup(val);" + + ############################## CLI ######################################## + elif dm_type == "cli": + # GET VALUE Parameter + get_value += " dmcmd(\"%s\", %s, %s);" % (res1, res2, res3) + + if count == 2 and i == 1: + tmpmapping = mapping + tmpgetvalue = get_value + tmpsetvalue = set_value + elif count == 2 and i == 2: + print("/*#%s!%s&%s*/" % + (parentname+dmparam, tmpmapping, mapping), file=fp) + print( + "static int %s(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value)" % getvalue, file=fp) + print("{", file=fp) + print("%s" % tmpgetvalue, file=fp) + print("%s" % get_value, file=fp) + print(" return 0;", file=fp) + print("}", file=fp) + print("", file=fp) + if setvalue != "NULL": + print( + "static int %s(char *refparam, struct dmctx *ctx, void *data, char *instance, char *value, int action)" % setvalue, file=fp) + print("{", file=fp) + print("%s" % tmpsetvalue, file=fp) + print(" break;", file=fp) + print(" }", file=fp) + print(" return 0;", file=fp) + print("}", file=fp) + print("", file=fp) + else: + print("/*#%s!%s*/" % (parentname+dmparam, mapping), file=fp) + print( + "static int %s(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value)" % getvalue, file=fp) + print("{", file=fp) + print("%s" % get_value, file=fp) + print(" return 0;", file=fp) + print("}", file=fp) + print("", file=fp) + if setvalue != "NULL": + print( + "static int %s(char *refparam, struct dmctx *ctx, void *data, char *instance, char *value, int action)" % setvalue, file=fp) + print("{", file=fp) + print("%s" % set_value, file=fp) + print(" break;", file=fp) + print(" }", file=fp) + print(" return 0;", file=fp) + print("}", file=fp) + print("", file=fp) + + # Mapping doesn't exist + else: + print("static int %s(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value)" % getvalue, file=fp) + print("{", file=fp) + print(" //TODO", file=fp) + print(" return 0;", file=fp) + print("}", file=fp) + print("", file=fp) + if setvalue != "NULL": + print("static int %s(char *refparam, struct dmctx *ctx, void *data, char *instance, char *value, int action)" % setvalue, file=fp) + print("{", file=fp) + print(" switch (action) {", file=fp) + print(" case VALUECHECK:", file=fp) + print("%s" % validate_value, file=fp) + print(" break;", file=fp) + print(" case VALUESET:", file=fp) + print(" //TODO", file=fp) + print(" break;", file=fp) + print(" }", file=fp) + print(" return 0;", file=fp) + print("}", file=fp) + print("", file=fp) + + # Close file + fp.close() + + +def cprintheaderPARAMS(objname): + fp = open('./.objparamarray.c', 'a') + print("DMLEAF %s[] = {" % ("t" + getname(objname) + "Params"), file=fp) + print("/* PARAM, permission, type, getvalue, setvalue, bbfdm_type*/", file=fp) + fp.close() + + +def hprintheaderPARAMS(objname): + fp = open('./.objparamarray.h', 'a') + print("extern DMLEAF %s[];" % ("t" + getname(objname) + "Params"), file=fp) + fp.close() + + +def printPARAMline(parentname, dmparam, value): + commonname = getname(parentname) + "_" + dmparam + ptype = bbf.get_param_type(value) + getvalue = "get_" + commonname + mappingparam = bbf.get_option_value(value, "mapping") + typeparam = bbf.get_option_value(value, "type") + bbfdm = getprotocolsparam(value, "protocols") + accessparam = bbf.get_option_value(value, "write") + + if accessparam: + access = "&DMWRITE" + setvalue = "set_" + commonname + else: + access = "&DMREAD" + setvalue = "NULL" + + if parentname.endswith(".{i}."): + instance = "TRUE" + else: + instance = "FALSE" + + cprintGetSetValue(getvalue, setvalue, mappingparam, + instance, typeparam, parentname, dmparam, value) + + fp = open('./.objparamarray.c', 'a') + print("{\"%s\", %s, %s, %s, %s, %s}," % + (dmparam, access, ptype, getvalue, setvalue, bbfdm), file=fp) + fp.close() + + +def printtailArray(): + fp = open('./.objparamarray.c', 'a') + print("{0}", file=fp) + print("};", file=fp) + print("", file=fp) + fp.close() + + +def printOBJline(dmobject, value): + commonname = getname(dmobject) + hasobj = bbf.obj_has_child(value) + hasparam = bbf.obj_has_param(value) + accessobj = bbf.get_option_value(value, "access") + mappingobj = bbf.get_option_value(value, "mapping") + bbfdm = getprotocolsparam(value, "protocols") + uniquekeys = getuniquekeys(value, "uniqueKeys") + + if accessobj: + access = "&DMWRITE" + faddobj = "addObj" + commonname + fdelobj = "delObj" + commonname + cprintAddDelObj(faddobj, fdelobj, (getlastname( + dmobject)).lower(), mappingobj, dmobject) + else: + access = "&DMREAD" + faddobj = "NULL" + fdelobj = "NULL" + + if dmobject.endswith(".{i}."): + fbrowse = "browse" + commonname + "Inst" + cprintBrowseObj(fbrowse, (getlastname(dmobject) + ).lower(), mappingobj, dmobject) + else: + fbrowse = "NULL" + + if hasobj: + objchildarray = "t" + commonname + "Obj" + else: + objchildarray = "NULL" + + if hasparam: + paramarray = "t" + commonname + "Params" + else: + paramarray = "NULL" + + fp = open('./.objparamarray.c', 'a') + if uniquekeys: + print("{\"%s\", %s, %s, %s, NULL, %s, NULL, NULL, %s, %s, NULL, %s, %s}," % (getlastname( + dmobject), access, faddobj, fdelobj, fbrowse, objchildarray, paramarray, bbfdm, uniquekeys), file=fp) + else: + print("{\"%s\", %s, %s, %s, NULL, %s, NULL, NULL, %s, %s, NULL, %s}," % (getlastname( + dmobject), access, faddobj, fdelobj, fbrowse, objchildarray, paramarray, bbfdm), file=fp) + fp.close() + + +def print_dmc_usage(): + print("Usage: " + sys.argv[0] + " " + " [Object path]") + print("data model name: The data model(s) to be used, for ex: tr181 or tr181,tr104") + print("Examples:") + print(" - " + sys.argv[0] + " tr181") + print(" ==> Generate the C code of tr181 data model in datamodel/ folder") + print(" - " + sys.argv[0] + " tr104") + print(" ==> Generate the C code of tr104 data model in datamodel/ folder") + print(" - " + sys.argv[0] + " tr181,tr104") + print(" ==> Generate the C code of tr181 and tr104 data model in datamodel/ folder") + print(" - " + sys.argv[0] + " tr181" + " Device.DeviceInfo.") + print(" ==> Generate the C code of Device.DeviceInfo object in datamodel/ folder") + print(" - " + sys.argv[0] + " tr104" + + " Device.Services.VoiceService.{i}.Capabilities.") + print( + " ==> Generate the C code of Device.Services.VoiceService.{i}.Capabilities. object in datamodel/ folder") + + +def object_parse_childs(dmobject, value, nextlevel): + hasobj = bbf.obj_has_child(value) + hasparam = bbf.obj_has_param(value) + + if hasobj or hasparam: + printheaderObjCommon(dmobject) + + if hasobj: + cprintheaderOBJS(dmobject) + hprintheaderOBJS(dmobject) + + if isinstance(value, dict): + for k, v in value.items(): + if isinstance(v, dict): + for k1, v1 in v.items(): + if k1 == "type" and v1 == "object": + printOBJline(k, v) + break + printtailArray() + + if hasparam: + cprintheaderPARAMS(dmobject) + hprintheaderPARAMS(dmobject) + if isinstance(value, dict): + for k, v in value.items(): + if k == "mapping": + continue + if isinstance(v, dict): + for k1, v1 in v.items(): + if k1 == "type" and v1 != "object" and "()" not in k: + printPARAMline(dmobject, k, v) + break + printtailArray() + + if hasobj and nextlevel == 0: + if isinstance(value, dict): + for k, v in value.items(): + if isinstance(v, dict): + for k1, v1 in v.items(): + if k1 == "type" and v1 == "object": + object_parse_childs(k, v, 0) + + +def generatecfromobj(pobj, pvalue, pdir, nextlevel): + bbf.create_folder(pdir) + removetmpfiles() + object_parse_childs(pobj, pvalue, nextlevel) + + dmfpc = open(pdir + "/" + getname(pobj).lower() + ".c", "w") + dmfph = open(pdir + "/" + getname(pobj).lower() + ".h", "w") + cprinttopfile(dmfpc, getname(pobj).lower()) + hprinttopfile(dmfph, getname(pobj).lower()) + + try: + exists = os.path.isfile("./.objbrowse.c") + if exists: + print( + "/*************************************************************", file=dmfpc) + print("* ENTRY METHOD", file=dmfpc) + print( + "**************************************************************/", file=dmfpc) + tmpf = open("./.objbrowse.c", "r") + tmpd = tmpf.read() + tmpf.close() + dmfpc.write(tmpd) + except IOError: + pass + + try: + exists = os.path.isfile("./.objadddel.c") + if exists: + print( + "/*************************************************************", file=dmfpc) + print("* ADD & DEL OBJ", file=dmfpc) + print( + "**************************************************************/", file=dmfpc) + tmpf = open("./.objadddel.c", "r") + tmpd = tmpf.read() + tmpf.close() + dmfpc.write(tmpd) + except IOError: + pass + + try: + exists = os.path.isfile("./.getstevalue.c") + if exists: + print( + "/*************************************************************", file=dmfpc) + print("* GET & SET PARAM", file=dmfpc) + print( + "**************************************************************/", file=dmfpc) + tmpf = open("./.getstevalue.c", "r") + tmpd = tmpf.read() + tmpf.close() + dmfpc.write(tmpd) + except IOError: + pass + + try: + print("/**********************************************************************************************************************************", file=dmfpc) + print("* OBJ & PARAM DEFINITION", file=dmfpc) + print("***********************************************************************************************************************************/", file=dmfpc) + tmpf = open("./.objparamarray.c", "r") + tmpd = tmpf.read() + tmpf.close() + dmfpc.write(tmpd) + except IOError: + pass + + try: + tmpf = open("./.objparamarray.h", "r") + tmpd = tmpf.read() + tmpf.close() + dmfph.write(tmpd) + print("", file=dmfph) + except IOError: + pass + + hprintfootfile(dmfph, getname(pobj).lower()) + removetmpfiles() + + +def removetmpfiles(): + bbf.remove_file("./.objparamarray.c") + bbf.remove_file("./.objparamarray.h") + bbf.remove_file("./.objadddel.c") + bbf.remove_file("./.objbrowse.c") + bbf.remove_file("./.getstevalue.c") + + +### main ### +if len(sys.argv) < 2: + print_dmc_usage() + exit(1) + +if (sys.argv[1]).lower() == "-h" or (sys.argv[1]).lower() == "--help": + print_dmc_usage() + exit(1) + +bbf.remove_folder(DMC_DIR) +dm_name = sys.argv[1].split(",") +for index in range(sys.argv[1].count(',') + 1): + + JSON_FILE = bbf.ARRAY_JSON_FILES.get(dm_name[index], None) + + if JSON_FILE is not None: + j_file = open(JSON_FILE, "r") + data = json.loads(j_file.read(), object_pairs_hook=OrderedDict) + + for dm_obj, dm_value in data.items(): + if dm_obj is None: + print("Wrong JSON Data model format!") + continue + + # Generate the object file if it is defined by "sys.argv[2]" argument + if len(sys.argv) > 2: + if sys.argv[2] != dm_obj: + if isinstance(dm_value, dict): + for obj1, value1 in dm_value.items(): + if obj1 == sys.argv[2]: + if isinstance(value1, dict): + for obj2, value2 in value1.items(): + if obj2 == "type" and value2 == "object": + generatecfromobj( + obj1, value1, DMC_DIR, 0) + break + break + break + + # Generate the root object tree file if amin does not exist + generatecfromobj(dm_obj, dm_value, DMC_DIR, 1) + + # Generate the sub object tree file if amin does not exist + if isinstance(dm_value, dict): + for obj1, value1 in dm_value.items(): + if isinstance(value1, dict): + for obj2, value2 in value1.items(): + if obj2 == "type" and value2 == "object": + generatecfromobj(obj1, value1, DMC_DIR, 0) + else: + print("!!!! %s : Data Model doesn't exist" % dm_name[index]) + +if os.path.isdir(DMC_DIR): + print("Source code generated under \"%s\" folder" % DMC_DIR) +else: + print("No source code generated!") diff --git a/tools/convert_dm_xml_to_json.py b/tools/convert_dm_xml_to_json.py new file mode 100755 index 00000000..7e7ccedb --- /dev/null +++ b/tools/convert_dm_xml_to_json.py @@ -0,0 +1,929 @@ +#!/usr/bin/python3 + +# Copyright (C) 2020 iopsys Software Solutions AB +# Author: Amin Ben Ramdhane + +import os +import sys +import time +import re +import json +import xml.etree.ElementTree as xml +from collections import OrderedDict +from shutil import copyfile +import bbf_common as bbf + +listTypes = ["string", + "unsignedInt", + "unsignedLong", + "int", + "long", + "boolean", + "dateTime", + "hexBinary", + "base64"] + +listdataTypes = ["string", + "unsignedInt", + "unsignedLong", + "int", + "long", + "boolean", + "dateTime", + "hexBinary", + "base64", + "IPAddress", + "IPv4Address", + "IPv6Address", + "IPPrefix", + "IPv4Prefix", + "IPv6Prefix", + "MACAddress", + "decimal", + "IoTDeviceType", + "IoTLevelType", + "IoTUnitType", + "IoTEnumSensorType", + "IoTEnumControlType"] + + +def getname(objname): + global model_root_name + OBJSname = objname + if (objname.count('.') > 1 and (objname.count('.') != 2 or objname.count('{i}') != 1)): + OBJSname = objname.replace(dmroot1.get('name'), "", 1) + OBJSname = OBJSname.replace("{i}", "") + OBJSname = OBJSname.replace(".", "") + if objname.count('.') == 1: + model_root_name = OBJSname + OBJSname = "Root" + OBJSname + return OBJSname + if (objname.count('.') == 2 and objname.count('{i}') == 1): + model_root_name = OBJSname + OBJSname = "Services" + OBJSname + return OBJSname + return OBJSname + + +def getparamtype(dmparam): + ptype = None + for s in dmparam: + if s.tag == "syntax": + for c in s: + if c.tag == "list": + ptype = "string" + break + if c.tag == "dataType": + reftype = c.get("ref") + if "StatsCounter" in reftype: + ptype = "unsignedInt" + break + ptype = "string" + break + ptype = c.tag + break + break + if ptype is None: + ptype = "__NA__" + return ptype + + +def getMinMaxEnumerationUnitPatternparam(paramtype, c): + paramvalrange = None + paramenum = None + paramunit = None + parampattern = None + if paramtype == "string" or paramtype == "hexBinary" or paramtype == "base64": + for cc in c: + if cc.tag == "size": + if paramvalrange is None: + paramvalrange = "%s,%s" % ( + cc.get("minLength"), cc.get("maxLength")) + else: + paramvalrange = "%s;%s,%s" % ( + paramvalrange, cc.get("minLength"), cc.get("maxLength")) + if cc.tag == "enumeration": + if paramenum is None: + paramenum = "\"%s\"" % cc.get('value') + else: + paramenum = "%s, \"%s\"" % (paramenum, cc.get('value')) + if cc.tag == "pattern": + if parampattern is None: + parampattern = "\"%s\"" % cc.get('value') + elif cc.get('value') != "": + parampattern = "%s,\"%s\"" % ( + parampattern, cc.get('value')) + + elif paramtype == "unsignedInt" or paramtype == "int" or paramtype == "unsignedLong" or paramtype == "long": + for cc in c: + if cc.tag == "range": + if paramvalrange is None: + paramvalrange = "%s,%s" % ( + cc.get("minInclusive"), cc.get("maxInclusive")) + else: + paramvalrange = "%s;%s,%s" % (paramvalrange, cc.get( + "minInclusive"), cc.get("maxInclusive")) + if cc.tag == "units": + paramunit = cc.get("value") + + return paramvalrange, paramenum, paramunit, parampattern + + +def getparamdatatyperef(datatyperef): + paramvalrange = None + paramenum = None + paramunit = None + parampattern = None + for d in xmlroot1: + if d.tag == "dataType" and d.get("name") == datatyperef: + if d.get("base") != "" and d.get("base") is not None and d.get("name") == "Alias": + paramvalrange, paramenum, paramunit, parampattern = getparamdatatyperef( + d.get("base")) + else: + for dd in d: + if dd.tag in listTypes: + paramvalrange, paramenum, paramunit, parampattern = getMinMaxEnumerationUnitPatternparam( + dd.tag, dd) + break + if dd.tag == "size": + if paramvalrange is None: + paramvalrange = "%s,%s" % ( + dd.get("minLength"), dd.get("maxLength")) + else: + paramvalrange = "%s;%s,%s" % ( + paramvalrange, dd.get("minLength"), dd.get("maxLength")) + if dd.tag == "enumeration": + if paramenum is None: + paramenum = "\"%s\"" % dd.get('value') + else: + paramenum = "%s, \"%s\"" % ( + paramenum, dd.get('value')) + if dd.tag == "pattern": + if parampattern is None: + parampattern = "\"%s\"" % dd.get('value') + elif dd.get('value') != "": + parampattern = "%s,\"%s\"" % ( + parampattern, dd.get('value')) + break + + return paramvalrange, paramenum, paramunit, parampattern + + +def getparamlist(dmparam): + minItem = None + maxItem = None + maxsize = None + minItem = dmparam.get("minItems") + maxItem = dmparam.get("maxItems") + for cc in dmparam: + if cc.tag == "size": + maxsize = cc.get("maxLength") + + return minItem, maxItem, maxsize + + +def getparamoption(dmparam): + datatype = None + paramvalrange = None + paramenum = None + paramunit = None + parampattern = None + listminItem = None + listmaxItem = None + listmaxsize = None + islist = 0 + for s in dmparam: + if s.tag == "syntax": + for c in s: + if c.tag == "list": + islist = 1 + listminItem, listmaxItem, listmaxsize = getparamlist(c) + for c1 in s: + datatype = c1.tag if c1.tag in listdataTypes else None + if datatype is not None: + paramvalrange, paramenum, paramunit, parampattern = getMinMaxEnumerationUnitPatternparam( + datatype, c1) + break + if c1.tag == "dataType": + datatype = c1.get("ref") + paramvalrange, paramenum, paramunit, parampattern = getparamdatatyperef( + c1.get("ref")) + break + + if islist == 0: + datatype = c.tag if c.tag in listdataTypes else None + if datatype is not None: + paramvalrange, paramenum, paramunit, parampattern = getMinMaxEnumerationUnitPatternparam( + datatype, c) + break + if c.tag == "dataType": + datatype = c.get("ref") + paramvalrange, paramenum, paramunit, parampattern = getparamdatatyperef( + datatype) + break + break + + return islist, datatype, paramvalrange, paramenum, paramunit, parampattern, listminItem, listmaxItem, listmaxsize + + +listmapping = [] + + +def generatelistfromfile(dmobject): + obj = dmobject.get('name').split(".") + if "tr-104" in sys.argv[1]: + pathfilename = "../dmtree/tr104/" + obj[1].lower() + ".c" + pathiopsyswrtfilename = "../dmtree/tr104/" + \ + obj[1].lower() + "-iopsyswrt.c" + else: + pathfilename = "../dmtree/tr181/" + obj[1].lower() + ".c" + pathiopsyswrtfilename = "../dmtree/tr181/" + \ + obj[1].lower() + "-iopsyswrt.c" + + for x in range(0, 2): + pathfile = pathfilename if x == 0 else pathiopsyswrtfilename + exists = os.path.isfile(pathfile) + if exists: + filec = open(pathfile, "r") + for linec in filec: + if "/*#" in linec: + listmapping.append(linec) + else: + pass + + +def getparammapping(dmobject, dmparam): + hasmapping = 0 + mapping = "" + if "tr-104" in sys.argv[1]: + param = "Device.Services." + dmobject.get('name') + dmparam.get('name') + else: + param = dmobject.get('name') + dmparam.get('name') + for value in listmapping: + if param in value: + hasmapping = 1 + config_type = value.split("!") + mapping = config_type[1] + mapping = mapping.replace("*/\n", "") + break + + return hasmapping, mapping + + +def getobjmapping(dmobject): + hasmapping = 0 + mapping = "" + if "tr-104" in sys.argv[1]: + obj = "Device.Services." + dmobject.get('name') + else: + obj = dmobject.get('name') + for value in listmapping: + config_type = value.split("!") + mapping = config_type[0] + mapping = mapping.replace("/*#", "") + if obj == mapping: + hasmapping = 1 + mapping = config_type[1] + mapping = mapping.replace("*/\n", "") + break + + return hasmapping, mapping + + +def objhaschild(parentname, level, check_obj): + hasobj = 0 + model = model2 if check_obj == 0 else model1 + for c in model: + objname = c.get('name') + if c.tag == "object" and parentname in objname and (objname.count('.') - objname.count('{i}')) == level: + hasobj = 1 + break + + return hasobj + + +def objhasparam(dmobject): + hasparam = 0 + for c in dmobject: + if c.tag == "parameter": + hasparam = 1 + break + + return hasparam + + +def getuniquekeys(dmobject): + uniquekeys = None + for c in dmobject: + if c.tag == "uniqueKey": + for s in c: + if s.tag == "parameter": + if uniquekeys is None: + uniquekeys = "\"%s\"" % s.get('ref') + else: + uniquekeys = uniquekeys + "," + "\"%s\"" % s.get('ref') + return uniquekeys + + +def printopenobject(obj): + fp = open('./.json_tmp', 'a') + if "tr-104" in sys.argv[1] or "tr-135" in sys.argv[1]: + print("\"Device.Services.%s\" : {" % obj.get( + 'name').replace(" ", ""), file=fp) + else: + print("\"%s\" : {" % obj.get('name').replace(" ", ""), file=fp) + fp.close() + + +def printopenfile(): + fp = open('./.json_tmp', 'a') + print("{", file=fp) + fp.close() + + +def printclosefile(): + fp = open('./.json_tmp', 'a') + print("}", file=fp) + fp.close() + + +def printOBJMaPPING(mapping): + fp = open('./.json_tmp', 'a') + config_type = mapping.split(":") + config = config_type[1].split("/") + print("\"mapping\": {", file=fp) + print("\"type\": \"%s\"," % config_type[0].lower(), file=fp) + print("\"%s\": {" % config_type[0].lower(), file=fp) + + # UCI + if config_type[0] == "UCI": + print("\"file\": \"%s\"," % config[0], file=fp) + print("\"section\": {", file=fp) + print("\"type\": \"%s\"" % config[1], file=fp) + print("},", file=fp) + print("\"dmmapfile\": \"%s\"" % config[2], file=fp) + + # UBUS + elif config_type[0] == "UBUS": + print("\"object\": \"%s\"," % config[0], file=fp) + print("\"method\": \"%s\"," % config[1], file=fp) + print("\"args\": {", file=fp) + if config[2] != "": + args = config[2].split(",") + print("\"%s\": \"%s\"" % (args[0], args[1]), file=fp) + print("}", file=fp) + print("\"key\": \"%s\"" % config[3], file=fp) + + print("}\n}", file=fp) + fp.close() + + +def printPARAMMaPPING(mapping): + fp = open('./.json_tmp', 'a') + lst = mapping.split("&") + print("\"mapping\": [", file=fp) + for i in range(len(lst)): + config_type = lst[i].split(":") + config = config_type[1].split("/") + + print("{", file=fp) + print("\"type\": \"%s\"," % config_type[0].lower(), file=fp) + + # SYSFS || PROCFS + if config_type[0] == "SYSFS" or config_type[0] == "PROCFS": + print("\"file\": \"%s\"" % config_type[1], file=fp) + + # UCI, UBUS, CLI + else: + # Only for UCI, UBUS, CLI + print("\"%s\": {" % config_type[0].lower(), file=fp) + + # UCI + if config_type[0] == "UCI": + print("\"file\": \"%s\"," % config[0], file=fp) + print("\"section\": {", file=fp) + var = config[1].split(",") + if len(var) == 1: + print("\"type\": \"%s\"" % var[0], file=fp) + elif len(var) > 1 and "@i" in var[1]: + print("\"type\": \"%s\"," % var[0], file=fp) + print("\"index\": \"%s\"" % var[1], file=fp) + elif len(var) > 1: + print("\"type\": \"%s\"," % var[0], file=fp) + print("\"name\": \"%s\"" % var[1], file=fp) + print("}", file=fp) + if len(var) > 1: + print("\"option\": {", file=fp) + print("\"name\": \"%s\"" % config[2], file=fp) + print("}", file=fp) + + # UBUS + elif config_type[0] == "UBUS": + print("\"object\": \"%s\"," % config[0], file=fp) + print("\"method\": \"%s\"," % config[1], file=fp) + print("\"args\": {", file=fp) + if config[2] != "": + args = config[2].split(",") + print("\"%s\": \"%s\"" % (args[0], args[1]), file=fp) + print("}", file=fp) + print("\"key\": \"%s\"" % config[3], file=fp) + + # CLI + elif config_type[0] == "CLI": + print("\"command\": \"%s\"," % config[0], file=fp) + print("\"args\": \"%s\"" % config[1], file=fp) + + print("}", file=fp) + + print("}", file=fp) + print("]\n}", file=fp) + fp.close() + + +def removelastline(): + file = open("./.json_tmp") + lines = file.readlines() + lines = lines[:-1] + file.close() + w = open("./.json_tmp", 'w') + w.writelines(lines) + w.close() + printclosefile() + + +def replace_data_in_file(data_in, data_out): + file_r = open("./.json_tmp", "rt") + file_w = open("./.json_tmp_1", "wt") + text = ''.join(file_r).replace(data_in, data_out) + file_w.write(text) + file_r.close() + file_w.close() + copyfile("./.json_tmp_1", "./.json_tmp") + bbf.remove_file("./.json_tmp_1") + + +def updatejsontmpfile(): + replace_data_in_file("}\n", "},\n") + replace_data_in_file("},\n},", "}\n},") + replace_data_in_file("}\n},\n},", "}\n}\n},") + replace_data_in_file("}\n},\n}\n},", "}\n}\n}\n},") + replace_data_in_file("}\n},\n}\n}\n},", "}\n}\n}\n}\n},") + replace_data_in_file("}\n}\n}\n},\n}\n},", "}\n}\n}\n}\n}\n},") + replace_data_in_file("}\n}\n}\n}\n}\n}\n},", "}\n}\n}\n}\n}\n}\n},") + replace_data_in_file("}\n}\n}\n},\n}\n}\n}\n},", "}\n}\n}\n}\n}\n}\n}\n},") + replace_data_in_file("},\n]", "}\n]") + + +def removetmpfiles(): + bbf.remove_file("./.json_tmp") + bbf.remove_file("./.json_tmp_1") + + +def printOBJ(dmobject, hasobj, hasparam, bbfdm_type): + uniquekeys = getuniquekeys(dmobject) + hasmapping, mapping = getobjmapping(dmobject) + if (dmobject.get('name')).endswith(".{i}."): + fbrowse = "true" + else: + fbrowse = "false" + + fp = open('./.json_tmp', 'a') + print("\"type\" : \"object\",", file=fp) + print("\"version\" : \"%s\"," % dmobject.get('version'), file=fp) + print("\"protocols\" : [%s]," % bbfdm_type, file=fp) + if uniquekeys is not None: + print("\"uniqueKeys\" : [%s]," % uniquekeys, file=fp) + if dmobject.get('access') == "readOnly": + print("\"access\" : false,", file=fp) + else: + print("\"access\" : true,", file=fp) + if hasparam or hasobj: + print("\"array\" : %s," % fbrowse, file=fp) + else: + print("\"array\" : %s" % fbrowse, file=fp) + fp.close() + if hasmapping: + printOBJMaPPING(mapping) + + +def printPARAM(dmparam, dmobject, bbfdm_type): + hasmapping, mapping = getparammapping(dmobject, dmparam) + islist, datatype, paramvalrange, paramenum, paramunit, parampattern, listminItem, listmaxItem, listmaxsize = getparamoption( + dmparam) + + fp = open('./.json_tmp', 'a') + print("\"%s\" : {" % dmparam.get('name').replace(" ", ""), file=fp) + print("\"type\" : \"%s\"," % getparamtype(dmparam), file=fp) + print("\"read\" : true,", file=fp) + print("\"write\" : %s," % ("false" if dmparam.get( + 'access') == "readOnly" else "true"), file=fp) + print("\"version\" : \"%s\"," % dmparam.get('version'), file=fp) + print("\"protocols\" : [%s]," % bbfdm_type, file=fp) + + # create list + if islist == 1: + print("\"list\" : {", file=fp) + + # add datatype + print(("\"datatype\" : \"%s\"," % datatype) if (listmaxsize is not None or listminItem is not None or listmaxItem is not None or paramvalrange is not None or paramunit is not + None or paramenum is not None or parampattern is not None or (hasmapping and islist == 0)) else ("\"datatype\" : \"%s\"" % datatype), file=fp) + + if islist == 1: + # add maximum size of list + if listmaxsize is not None: + print(("\"maxsize\" : %s," % listmaxsize) if (listminItem is not None or listmaxItem is not None or paramvalrange is not None + or paramunit is not None or paramenum is not None or parampattern is not None) else ("\"maxsize\" : %s" % listmaxsize), file=fp) + + # add minimun and maximum item values + if listminItem is not None and listmaxItem is not None: + print("\"item\" : {", file=fp) + print("\"min\" : %s," % listminItem, file=fp) + print("\"max\" : %s" % listmaxItem, file=fp) + print(("},") if (paramvalrange is not None or paramunit is not None + or paramenum is not None or parampattern is not None) else ("}"), file=fp) + elif listminItem is not None and listmaxItem is None: + print("\"item\" : {", file=fp) + print("\"min\" : %s" % listminItem, file=fp) + print(("},") if (paramvalrange is not None or paramunit is not None + or paramenum is not None or parampattern is not None) else ("}"), file=fp) + elif listminItem is None and listmaxItem is not None: + print("\"item\" : {", file=fp) + print("\"max\" : %s" % listmaxItem, file=fp) + print(("},") if (paramvalrange is not None or paramunit is not None + or paramenum is not None or parampattern is not None) else ("}"), file=fp) + + # add minimun and maximum values + if paramvalrange is not None: + valranges = paramvalrange.split(";") + print("\"range\" : [", file=fp) + for eachvalrange in valranges: + valrange = eachvalrange.split(",") + if valrange[0] != "None" and valrange[1] != "None": + print("{", file=fp) + print("\"min\" : %s," % valrange[0], file=fp) + print("\"max\" : %s" % valrange[1], file=fp) + print(("},") if (eachvalrange == + valranges[len(valranges)-1]) else ("}"), file=fp) + elif valrange[0] != "None" and valrange[1] == "None": + print("{", file=fp) + print("\"min\" : %s" % valrange[0], file=fp) + print(("},") if (eachvalrange == + valranges[len(valranges)-1]) else ("}"), file=fp) + elif valrange[0] == "None" and valrange[1] != "None": + print("{", file=fp) + print("\"max\" : %s" % valrange[1], file=fp) + print(("},") if (eachvalrange == + valranges[len(valranges)-1]) else ("}"), file=fp) + print(("],") if (paramunit is not None or paramenum is not None or parampattern is not None + or (hasmapping and islist == 0)) else ("]"), file=fp) + + # add unit + if paramunit is not None: + print(("\"unit\" : \"%s\"," % paramunit) if (paramenum is not None or parampattern is not None or ( + hasmapping and islist == 0)) else ("\"unit\" : \"%s\"" % paramunit), file=fp) + + # add enumaration + if paramenum is not None: + print(("\"enumerations\" : [%s]," % paramenum) if (parampattern is not None or ( + hasmapping and islist == 0)) else ("\"enumerations\" : [%s]" % paramenum), file=fp) + + # add pattern + if parampattern is not None: + print(("\"pattern\" : [%s]," % parampattern.replace("\\", "\\\\")) if ( + hasmapping and islist == 0) else ("\"pattern\" : [%s]" % parampattern.replace("\\", "\\\\")), file=fp) + + # close list + if islist == 1: + print(("},") if hasmapping else ("}"), file=fp) + + # add mapping + if hasmapping: + fp.close() + printPARAMMaPPING(mapping) + else: + print("}", file=fp) + fp.close() + + +def printCOMMAND(dmparam, dmobject, _bbfdm_type): + fp = open('./.json_tmp', 'a') + print("\"%s\" : {" % dmparam.get('name'), file=fp) + print("\"type\" : \"command\",", file=fp) + print("\"async\" : %s," % + ("true" if dmparam.get('async') is not None else "false"), file=fp) + print("\"version\" : \"%s\"," % dmparam.get('version'), file=fp) + inputfound = 0 + outputfound = 0 + for c in dmparam: + if c.tag == "input": + inputfound = 1 + elif c.tag == "output": + outputfound = 1 + + print(("\"protocols\" : [\"usp\"],") if (inputfound or outputfound) else ( + "\"protocols\" : [\"usp\"]"), file=fp) + + for c in dmparam: + if c.tag == "input": + print("\"input\" : {", file=fp) + for param in c: + if param.tag == "parameter": + fp.close() + printPARAM(param, dmobject, "\"usp\"") + fp = open('./.json_tmp', 'a') + print("}" if outputfound else "},", file=fp) + + if c.tag == "output": + print("\"output\" : {", file=fp) + for param in c: + if param.tag == "parameter": + fp.close() + printPARAM(param, dmobject, "\"usp\"") + fp = open('./.json_tmp', 'a') + print("}", file=fp) + + print("}", file=fp) + fp.close() + + +def printusage(): + print("Usage: " + + sys.argv[0] + " [Object path]") + print("Examples:") + print(" - " + sys.argv[0] + + " tr-181-2-14-1-cwmp-full.xml tr-181-2-14-1-usp-full.xml Device.") + print(" ==> Generate the json file of the sub tree Device. in tr181.json") + print(" - " + sys.argv[0] + + " tr-104-2-0-2-cwmp-full.xml tr-104-2-0-2-usp-full.xml Device.Services.VoiceService.") + print(" ==> Generate the json file of the sub tree Device.Services.VoiceService. in tr104.json") + print(" - " + sys.argv[0] + " tr-106-1-2-0-full.xml Device.") + print(" ==> Generate the json file of the sub tree Device. in tr106.json") + print("") + print("Example of xml data model file: https://www.broadband-forum.org/cwmp/tr-181-2-14-1-cwmp-full.xml") + exit(1) + + +def getobjectpointer(objname): + obj = None + for c in model1: + if c.tag == "object" and (c.get('name') == objname or c.get('name') == (objname + "{i}.")): + obj = c + break + return obj + + +def chech_each_obj_with_other_obj(m1, m2): + for c in m2: + if c.tag == "object": + found = 0 + for obj in m1: + if obj.tag == "object" and (obj.get('name') == c.get('name')): + found = 1 + break + if found == 0: + if c.get('name').count(".") - (c.get('name')).count("{i}.") != 2: + continue + dmlevel = (c.get('name')).count(".") - \ + (c.get('name')).count("{i}.") + 1 + printopenobject(c) + object_parse_childs(c, dmlevel, 0, 0) + printclosefile() + + +def check_if_obj_exist_in_other_xml_file(objname): + obj = None + found = 0 + for c in model2: + if c.tag == "object" and (c.get('name') == objname.get('name')): + obj = c + found = 1 + break + return obj, found + + +def chech_current_param_exist_in_other_obj(obj, c): + bbfdm_type = "" + for param in obj: + if param.tag == "parameter" and param.get('name') == c.get('name'): + bbfdm_type = "\"cwmp\", \"usp\"" + break + if bbfdm_type == "" and "cwmp" in sys.argv[1]: + bbfdm_type = "\"cwmp\"" + elif bbfdm_type == "" and "usp" in sys.argv[1]: + bbfdm_type = "\"usp\"" + return bbfdm_type + + +def chech_obj_with_other_obj(obj, dmobject): + for c in obj: + exist = 0 + if c.tag == "parameter": + for param in dmobject: + if param.tag == "parameter" and c.get('name') == param.get('name'): + exist = 1 + break + if exist == 0 and "cwmp" in sys.argv[1]: + printPARAM(c, obj, "\"usp\"") + elif exist == 0 and "usp" in sys.argv[1]: + printPARAM(c, obj, "\"cwmp\"") + if c.tag == "command": + printCOMMAND(c, obj, "\"usp\"") + + +def object_parse_childs(dmobject, level, generatelist, check_obj): + if generatelist == 0 and (dmobject.get('name')).count(".") == 2: + generatelistfromfile(dmobject) + if check_obj == 1 and ("tr-181" in sys.argv[1] or "tr-104" in sys.argv[1]): + obj, exist = check_if_obj_exist_in_other_xml_file(dmobject) + + hasobj = objhaschild(dmobject.get('name'), level, check_obj) + hasparam = objhasparam(dmobject) + + if check_obj == 1 and "tr-181" in sys.argv[1] and exist == 0: + printOBJ(dmobject, hasobj, hasparam, "\"cwmp\"") + elif check_obj == 0 and "tr-181" in sys.argv[1]: + printOBJ(dmobject, hasobj, hasparam, "\"usp\"") + else: + printOBJ(dmobject, hasobj, hasparam, "\"cwmp\", \"usp\"") + + if hasparam: + for c in dmobject: + if c.tag == "parameter": + if check_obj == 1 and "tr-181" in sys.argv[1] and exist == 1: + bbfdm_type = chech_current_param_exist_in_other_obj(obj, c) + elif check_obj == 1 and "tr-181" in sys.argv[1] and exist == 0: + bbfdm_type = "\"cwmp\"" + elif check_obj == 0: + bbfdm_type = "\"usp\"" + else: + bbfdm_type = "\"cwmp\", \"usp\"" + printPARAM(c, dmobject, bbfdm_type) + if c.tag == "command": + printCOMMAND(c, dmobject, "\"usp\"") + + if check_obj == 1 and "tr-181" in sys.argv[1] and exist == 1: + chech_obj_with_other_obj(obj, dmobject) + + if hasobj and check_obj: + for c in model1: + objname = c.get('name') + if c.tag == "object" and dmobject.get('name') in objname and (objname.count('.') - objname.count('{i}')) == level: + printopenobject(c) + object_parse_childs(c, level+1, 0, 1) + printclosefile() + + if hasobj and check_obj == 0: + for c in model2: + objname = c.get('name') + if c.tag == "object" and dmobject.get('name') in objname and (objname.count('.') - objname.count('{i}')) == level: + printopenobject(c) + object_parse_childs(c, level+1, 0, 0) + printclosefile() + + return + + +def generatejsonfromobj(pobj, pdir): + generatelist = 0 + bbf.create_folder(pdir) + removetmpfiles() + dmlevel = (pobj.get('name')).count(".") - \ + (pobj.get('name')).count("{i}.") + 1 + if (pobj.get('name')).count(".") == 1: + generatelist = 0 + else: + generatelistfromfile(pobj) + generatelist = 1 + printopenfile() + printopenobject(pobj) + object_parse_childs(pobj, dmlevel, generatelist, 1) + if "tr-181" in sys.argv[1] and Root.count(".") == 1: + chech_each_obj_with_other_obj(model1, model2) + + if "tr-181" in sys.argv[1] and pobj.get("name").count(".") == 1: + dmfp = open(pdir + "/tr181.json", "a") + elif "tr-104" in sys.argv[1] and pobj.get("name").count(".") == 2: + dmfp = open(pdir + "/tr104.json", "a") + elif "tr-135" in sys.argv[1] and pobj.get("name").count(".") == 2: + dmfp = open(pdir + "/tr135.json", "a") + elif "tr-106" in sys.argv[1] and pobj.get("name").count(".") == 1: + dmfp = open(pdir + "/tr106.json", "a") + else: + dmfp = open(pdir + "/" + (getname(pobj.get('name')) + ).lower() + ".json", "a") + + printclosefile() + printclosefile() + updatejsontmpfile() + removelastline() + + f = open("./.json_tmp", "r") + obj = json.load(f, object_pairs_hook=OrderedDict) + dump = json.dumps(obj, indent=4) + tabs = re.sub('\n +', lambda match: '\n' + '\t' * + int(len(match.group().strip('\n')) / 4), dump) + + try: + print("%s" % tabs, file=dmfp) + dmfp.close() + except IOError: + pass + + removetmpfiles() + return dmfp.name + + +### main ### +if len(sys.argv) < 4: + printusage() + +if (sys.argv[1]).lower() == "-h" or (sys.argv[1]).lower() == "--help": + printusage() + +is_service_model = 0 +model_root_name = "Root" + +tree1 = xml.parse(sys.argv[1]) +xmlroot1 = tree1.getroot() +model1 = xmlroot1 + +for child in model1: + if child.tag == "model": + model1 = child + +if model1.tag != "model": + print("Wrong %s XML Data model format!" % sys.argv[1]) + exit(1) + +dmroot1 = None +for dr in model1: + if dr.tag == "object" and dr.get("name").count(".") == 1: + dmroot1 = dr + break + +# If it is service data model +if dmroot1 is None: + is_service_model = 1 + for dr in model1: + if dr.tag == "object" and dr.get("name").count(".") == 2: + dmroot1 = dr + break + +if dmroot1 is None: + print("Wrong %s XML Data model format!" % sys.argv[1]) + exit(1) + +if "tr-181" in sys.argv[1] or "tr-104" in sys.argv[1]: + tree2 = xml.parse(sys.argv[2]) + xmlroot2 = tree2.getroot() + model2 = xmlroot2 + + for child in model2: + if child.tag == "model": + model2 = child + + if model2.tag != "model": + print("Wrong %s XML Data model format!" % sys.argv[2]) + exit(1) + + dmroot2 = None + for dr in model2: + if dr.tag == "object" and dr.get("name").count(".") == 1: + dmroot2 = dr + break + + # If it is service data model + if dmroot2 is None: + for dr in model2: + if dr.tag == "object" and dr.get("name").count(".") == 2: + dmroot2 = dr + break + + if dmroot2 is None: + print("Wrong %s XML Data model format!" % sys.argv[2]) + exit(1) + +Root = sys.argv[3] + +if "tr-181" in sys.argv[1]: + gendir = "tr181_" + time.strftime("%Y-%m-%d_%H-%M-%S") +elif "tr-104" in sys.argv[1]: + gendir = "tr104_" + time.strftime("%Y-%m-%d_%H-%M-%S") + Root = (sys.argv[3])[len("Device.Services."):] +elif "tr-135" in sys.argv[1]: + gendir = "tr135_" + time.strftime("%Y-%m-%d_%H-%M-%S") + Root = (sys.argv[3])[len("Device.Services."):] +elif "tr-106" in sys.argv[1]: + gendir = "tr106_" + time.strftime("%Y-%m-%d_%H-%M-%S") +else: + gendir = "source_" + time.strftime("%Y-%m-%d_%H-%M-%S") + +objstart = getobjectpointer(Root) + +if objstart is None: + print("Wrong Object Name! %s" % Root) + exit(1) + +filename = generatejsonfromobj(objstart, gendir) + +print(filename) diff --git a/tools/generate_dm.py b/tools/generate_dm.py new file mode 100755 index 00000000..47cc9aef --- /dev/null +++ b/tools/generate_dm.py @@ -0,0 +1,119 @@ +#!/usr/bin/python3 + +# Copyright (C) 2021 iopsys Software Solutions AB +# Author: Amin Ben Ramdhane + +import sys +import json +import bbf_common as bbf +import generate_dm_xml as bbf_xml +import generate_dm_excel as bbf_excel + + +def print_dm_usage(): + print("Usage: " + sys.argv[0] + " ") + print("Examples:") + print(" - " + sys.argv[0] + " tools_input.json") + print(" ==> Generate all required files defined in tools_input.json file") + print("") + exit(1) + + +def get_vendor_list(val): + vendor_list = "" + if isinstance(val, list): + for vendor in val: + vendor_list = vendor if not vendor_list else ( + vendor_list + "," + vendor) + return vendor_list + + +### main ### +if len(sys.argv) < 2: + print_dm_usage() + +VENDOR_PREFIX = None +VENDOR_LIST = None +PLUGINS = None +OUTPUT = None + +json_file = open(sys.argv[1], "r") +json_data = json.loads(json_file.read()) + +for option, value in json_data.items(): + if option is None: + print("!!!! %s : Wrong JSON format!" % sys.argv[1]) + exit(1) + + if option == "manufacturer": + bbf_xml.MANUFACTURER = value + continue + + if option == "protocol": + bbf_xml.DEVICE_PROTOCOL = value + continue + + if option == "manufacturer_oui": + bbf_xml.MANUFACTURER_OUI = value + continue + + if option == "product_class": + bbf_xml.PRODUCT_CLASS = value + continue + + if option == "model_name": + bbf_xml.MODEL_NAME = value + continue + + if option == "software_version": + bbf_xml.SOFTWARE_VERSION = value + continue + + if option == "vendor_prefix": + VENDOR_PREFIX = value + continue + + if option == "vendor_list": + VENDOR_LIST = value + continue + + if option == "plugins": + PLUGINS = value + continue + + if option == "output": + OUTPUT = value + continue + +bbf.generate_supported_dm(VENDOR_PREFIX, VENDOR_LIST, PLUGINS) + +file_format = bbf.get_option_value(OUTPUT, "file_format", ['xml']) +output_file_prefix = bbf.get_option_value(OUTPUT, "output_file_prefix", "datamodel") +output_dir = bbf.get_option_value(OUTPUT, "output_dir", "./out") + +bbf.create_folder(output_dir) + +if isinstance(file_format, list): + for _format in file_format: + + if _format == "xml": + acs = bbf.get_option_value(OUTPUT, "acs", ['default']) + if isinstance(acs, list): + for acs_format in acs: + + bbf.clean_supported_dm_list() + output_file_name = output_dir + '/' + output_file_prefix + '_' + acs_format + '.xml' + if acs_format == "hdm": + bbf_xml.generate_xml('HDM', output_file_name) + + if acs_format == "default": + bbf_xml.generate_xml('default', output_file_name) + + + if _format == "xls": + bbf.clean_supported_dm_list() + output_file_name = output_dir + '/' + output_file_prefix + '.xls' + bbf_excel.generate_excel(['tr181', 'tr104'], output_file_name) + +bbf.remove_file(bbf.DATA_MODEL_FILE) +print("Datamodel generation completed, aritifacts shall be available in out directory or as per input json configuration") diff --git a/tools/generate_dm_c.py b/tools/generate_dm_c.py deleted file mode 100755 index b57e07e9..00000000 --- a/tools/generate_dm_c.py +++ /dev/null @@ -1,1004 +0,0 @@ -#!/usr/bin/python3 - -# Copyright (C) 2021 iopsys Software Solutions AB -# Author: Amin Ben Ramdhane - -from __future__ import print_function - -import os -import sys -import json -from collections import OrderedDict -import bbf_common as bbf - -DMC_DIR = "datamodel" -arrTypes = { "string": "DMT_STRING", - "unsignedInt": "DMT_UNINT", - "unsignedLong": "DMT_UNLONG", - "int": "DMT_INT", - "long": "DMT_LONG", - "boolean": "DMT_BOOL", - "dateTime": "DMT_TIME", - "hexBinary": "DMT_HEXBIN", - "base64": "DMT_BASE64"} - -def getlastname( name ): - return name.replace(".{i}", "").split('.')[-2]; - -def getname( objname ): - OBJSname = objname - if (objname.count('.') > 1 and (objname.count('.') != 2 or objname.count('{i}') != 1) ): - OBJSname = objname.replace("Device", "", 1) - OBJSname = OBJSname.replace("{i}", "").replace(".", "") - if (objname.count('.') == 1): - return OBJSname - if (objname.count('.') == 2 and objname.count('{i}') == 1): - OBJSname = "Services" + OBJSname - return OBJSname - return OBJSname; - -def getoptionparam( value, option ): - if isinstance(value, dict): - for obj, val in value.items(): - if obj == option: - return val - return None - -def getarrayoptionparam( value, option ): - if isinstance(value, dict): - for obj, val in value.items(): - if obj == option and isinstance(val, list): - return val - return None - -def getprotocolsparam( value, option ): - if isinstance(value, dict): - for obj, val in value.items(): - if obj == option and isinstance(val, list): - if len(val) == 2: - return "BBFDM_BOTH" - elif val[0] == "usp": - return "BBFDM_USP" - else: - return "BBFDM_CWMP" - return "BBFDM_BOTH" - -def getuniquekeys( value, option ): - if isinstance(value, dict): - for obj, val in value.items(): - if obj == option and isinstance(val, list): - buf = "LIST_KEY{" - for key in val: - buf = buf + "\"%s\"" % key + ", " - buf = buf + "NULL" + "}" - return buf - return None - -def getargsparam( value ): - if isinstance(value, dict): - for obj, val in value.items(): - return obj, val - return None, None - -def getparamtype( value ): - paramtype = getoptionparam(value, "type") - return arrTypes.get(paramtype, None) - -def get_mapping_param( mappingobj ): - type = getoptionparam(mappingobj, "type") - if type == "uci": - uciobj = getoptionparam(mappingobj, "uci") - file = getoptionparam(uciobj, "file") - sectionobj = getoptionparam(uciobj, "section") - sectiontype = getoptionparam(sectionobj, "type") - sectionname = getoptionparam(sectionobj, "name") - sectionindex = getoptionparam(sectionobj, "index") - optionobj = getoptionparam(uciobj, "option") - optionname = getoptionparam(optionobj, "name") - path = getoptionparam(uciobj, "path") - ref = getoptionparam(uciobj, "ref") - return type, file, sectiontype, sectionname, sectionindex, optionname, path, ref - elif type == "ubus": - ubusobj = getoptionparam(mappingobj, "ubus") - object = getoptionparam(ubusobj, "object") - method = getoptionparam(ubusobj, "method") - argsobj = getoptionparam(ubusobj, "args") - arg1, arg2 = getargsparam(argsobj) - key = getoptionparam(ubusobj, "key") - return type, object, method, arg1, arg2, key, None, None - elif type == "procfs" or type == "sysfs": - file = getoptionparam(mappingobj, "file") - return type, file, None, None, None, None, None, None - else: - cliobj = getoptionparam(mappingobj, "cli") - command = getoptionparam(cliobj, "command") - argsobj = getoptionparam(cliobj, "args") - i = 0 - value = "" - list_length = len(argsobj) - while i < list_length: - if value == "": - value = "\"" + argsobj[i] + "\", " - elif i == list_length-1: - value = value + "\"" + argsobj[i] + "\"" - else: - value = value + "\"" + argsobj[i] + "\", " - i += 1 - return type, command, list_length, value, None, None, None, None - -def printGlobalstrCommon( str_exp ): - fp = open(DMC_DIR + "/common.c", 'a') - print("%s" % str_exp, file=fp) - fp.close() - -def get_mapping_obj( mappingobj ): - type = getoptionparam(mappingobj, "type") - if type == "uci": - uciobj = getoptionparam(mappingobj, "uci") - file = getoptionparam(uciobj, "file") - sectionobj = getoptionparam(uciobj, "section") - sectiontype = getoptionparam(sectionobj, "type") - dmmapfile = getoptionparam(uciobj, "dmmapfile") - return type, file, sectiontype, dmmapfile, None, None - elif type == "ubus": - ubusobj = getoptionparam(mappingobj, "ubus") - object = getoptionparam(ubusobj, "object") - method = getoptionparam(ubusobj, "method") - argsobj = getoptionparam(ubusobj, "args") - arg1, arg2 = getargsparam(argsobj) - key = getoptionparam(ubusobj, "key") - return type, object, method, arg1, arg2, key - else: - return type, None, None, None, None, None - -def generate_validate_value(dmparam, value): - validate_value = "" - maxsizeparam = "-1" - itemminparam = "-1" - itemmaxparam = "-1" - rangeminparam = "NULL" - rangemaxparam = "NULL" - - listparam = getoptionparam(value, "list") - if listparam != None: - datatypeparam = getoptionparam(listparam, "datatype") - maxsizeparam = getoptionparam(listparam, "maxsize") - if maxsizeparam == None: maxsizeparam = "-1" - itemparam = getoptionparam(listparam, "item") - if itemparam != None: - itemminparam = getoptionparam(itemparam, "min") - if itemminparam == None: itemminparam = "-1" - itemmaxparam = getoptionparam(itemparam, "max") - if itemmaxparam == None: itemmaxparam = "-1" - - rangeparam = getarrayoptionparam(listparam, "range") - if rangeparam != None: - range_length = len(rangeparam) - rangeargs = "RANGE_ARGS{" - for i in range(range_length - 1): - rangeminparam = getoptionparam(rangeparam[i], "min") - if rangeminparam == None: rangeminparam = "NULL" - rangemaxparam = getoptionparam(rangeparam[i], "max") - if rangemaxparam == None: rangemaxparam = "NULL" - rangeargs += "{\"%s\",\"%s\"}," % (rangeminparam, rangemaxparam) - rangeminparam = getoptionparam(rangeparam[range_length - 1], "min") - if rangeminparam == None: rangeminparam = "NULL" - rangemaxparam = getoptionparam(rangeparam[range_length - 1], "max") - if rangemaxparam == None: rangemaxparam = "NULL" - rangeargs += "{\"%s\",\"%s\"}}, %s" % (rangeminparam, rangemaxparam, range_length) - else: - rangeargs = "RANGE_ARGS{{NULL,NULL}}, 1" - - enumarationsparam = getarrayoptionparam(listparam, "enumerations") - if enumarationsparam != None: - list_enumarationsparam = enumarationsparam - enum_length = len(list_enumarationsparam) - enumarationsparam = dmparam if datatypeparam == "string" else datatypeparam - str_enum = "char *%s[] = {" % enumarationsparam - for i in range(enum_length): - str_enum += "\"%s\", " % list_enumarationsparam[i] - str_enum += "NULL};" - printGlobalstrCommon(str_enum) - else: - enumarationsparam = "NULL" - - patternparam = getarrayoptionparam(listparam, "pattern") - if patternparam != None: - list_patternparam = patternparam - pattern_length = len(list_patternparam) - patternparam = dmparam if datatypeparam == "string" else datatypeparam - str_pattern = "char *%s[] = {" % patternparam - for i in range(pattern_length): - str_pattern += "\"^%s$\", " % list_patternparam[i] - str_pattern += "NULL};" - printGlobalstrCommon(str_pattern) - elif datatypeparam == "IPAddress": - patternparam = "IPAddress" - elif datatypeparam == "IPv6Address": - patternparam = "IPv6Address" - elif datatypeparam == "IPPrefix": - patternparam = "IPPrefix" - elif datatypeparam == "IPv6Prefix": - patternparam = "IPv6Prefix" - else: - patternparam = "NULL" - - if datatypeparam == "unsignedInt": - validate_value += " if (dm_validate_unsignedInt_list(value, %s, %s, %s, %s))\n" % (itemminparam, itemmaxparam, maxsizeparam, rangeargs) - else: - if rangeminparam == "NULL": rangeminparam = "-1" - if rangemaxparam == "NULL": rangemaxparam = "-1" - validate_value += " if (dm_validate_string_list(value, %s, %s, %s, %s, %s, %s, %s))\n" % (itemminparam, itemmaxparam, maxsizeparam, rangeminparam, rangemaxparam, enumarationsparam, patternparam) - else: - datatypeparam = getoptionparam(value, "datatype") - rangeparam = getarrayoptionparam(value, "range") - if rangeparam != None: - range_length = len(rangeparam) - rangeargs = "RANGE_ARGS{" - for i in range(range_length - 1): - rangeminparam = getoptionparam(rangeparam[i], "min") - if rangeminparam == None: rangeminparam = "NULL" - rangemaxparam = getoptionparam(rangeparam[i], "max") - if rangemaxparam == None: rangemaxparam = "NULL" - rangeargs += "{\"%s\",\"%s\"}," % (rangeminparam, rangemaxparam) - rangeminparam = getoptionparam(rangeparam[range_length - 1], "min") - if rangeminparam == None: rangeminparam = "NULL" - rangemaxparam = getoptionparam(rangeparam[range_length - 1], "max") - if rangemaxparam == None: rangemaxparam = "NULL" - rangeargs += "{\"%s\",\"%s\"}}, %s" % (rangeminparam, rangemaxparam, range_length) - else: - rangeargs = "RANGE_ARGS{{NULL,NULL}}, 1" - - enumarationsparam = getarrayoptionparam(value, "enumerations") - if enumarationsparam != None: - list_enumarationsparam = enumarationsparam - enum_length = len(list_enumarationsparam) - enumarationsparam = dmparam if datatypeparam == "string" else datatypeparam - str_enum = "char *%s[] = {" % enumarationsparam - for i in range(enum_length): - str_enum += "\"%s\", " % list_enumarationsparam[i] - str_enum += "NULL};" - printGlobalstrCommon(str_enum) - else: - enumarationsparam = "NULL" - - patternparam = getarrayoptionparam(value, "pattern") - if patternparam != None: - list_patternparam = patternparam - pattern_length = len(list_patternparam) - patternparam = dmparam if datatypeparam == "string" else datatypeparam - str_pattern = "char *%s[] = {" % patternparam - for i in range(pattern_length): - str_pattern += "\"^%s$\", " % list_patternparam[i] - str_pattern += "NULL};" - printGlobalstrCommon(str_pattern) - elif datatypeparam == "IPAddress": - patternparam = "IPAddress" - elif datatypeparam == "IPv6Address": - patternparam = "IPv6Address" - elif datatypeparam == "IPPrefix": - patternparam = "IPPrefix" - elif datatypeparam == "IPv6Prefix": - patternparam = "IPv6Prefix" - else: - patternparam = "NULL" - - if datatypeparam == "boolean": - validate_value += " if (dm_validate_boolean(value))\n" - elif datatypeparam == "unsignedInt": - validate_value += " if (dm_validate_unsignedInt(value, %s))\n" % rangeargs - elif datatypeparam == "int": - validate_value += " if (dm_validate_int(value, %s))\n" % rangeargs - elif datatypeparam == "unsignedLong": - validate_value += " if (dm_validate_unsignedLong(value, %s))\n" % rangeargs - elif datatypeparam == "long": - validate_value += " if (dm_validate_long(value, %s))\n" % rangeargs - elif datatypeparam == "dateTime": - validate_value += " if (dm_validate_dateTime(value))\n" - elif datatypeparam == "hexBinary": - if rangeminparam == "NULL": rangeminparam = "-1" - if rangemaxparam == "NULL": rangemaxparam = "-1" - validate_value += " if (dm_validate_hexBinary(value, %s))\n" % rangeargs - else: - if rangeminparam == "NULL": rangeminparam = "-1" - if rangemaxparam == "NULL": rangemaxparam = "-1" - validate_value += " if (dm_validate_string(value, %s, %s, %s, %s))\n" % (rangeminparam, rangemaxparam, enumarationsparam, patternparam) - validate_value += " return FAULT_9007;" - validate_value = validate_value.replace("\"NULL\"", "NULL") - return validate_value - -def printheaderObjCommon( objname ): - fp = open('./.objparamarray.c', 'a') - print("/* *** %s *** */" % objname, file=fp) - fp.close() - -def cprintheaderOBJS( objname ): - fp = open('./.objparamarray.c', 'a') - print("DMOBJ %s[] = {" % ("t" + getname(objname) + "Obj"), file=fp) - print("/* OBJ, permission, addobj, delobj, checkdep, browseinstobj, nextdynamicobj, dynamicleaf, nextobj, leaf, linker, bbfdm_type, uniqueKeys*/", file=fp) - fp.close() - -def hprintheaderOBJS( objname ): - fp = open('./.objparamarray.h', 'a') - print("extern DMOBJ %s[];" % ("t" + getname(objname) + "Obj"), file=fp) - fp.close() - -def cprinttopfile (fp, filename): - print("/*", file=fp) - print(" * Copyright (C) 2020 iopsys Software Solutions AB", file=fp) - print(" *", file=fp) - print(" * This program is free software; you can redistribute it and/or modify", file=fp) - print(" * it under the terms of the GNU Lesser General Public License version 2.1", file=fp) - print(" * as published by the Free Software Foundation", file=fp) - print(" *", file=fp) - print(" * Author: ", file=fp) - print(" */", file=fp) - print("", file=fp) - print("#include \"%s.h\"" % filename.lower(), file=fp) - print("", file=fp) - -def hprinttopfile (fp, filename): - print("/*", file=fp) - print(" * Copyright (C) 2020 iopsys Software Solutions AB", file=fp) - print(" *", file=fp) - print(" * This program is free software; you can redistribute it and/or modify", file=fp) - print(" * it under the terms of the GNU Lesser General Public License version 2.1", file=fp) - print(" * as published by the Free Software Foundation", file=fp) - print(" *", file=fp) - print(" * Author: ", file=fp) - print(" */", file=fp) - print("", file=fp) - print("#ifndef __%s_H" % filename.upper(), file=fp) - print("#define __%s_H" % filename.upper(), file=fp) - print("", file=fp) - print("#include ", file=fp) - print("", file=fp) - -def hprintfootfile (fp, filename): - print("", file=fp) - print("#endif //__%s_H" % filename.upper(), file=fp) - print("", file=fp) - -def cprintAddDelObj( faddobj, fdelobj, name, mappingobj, dmobject ): - fp = open('./.objadddel.c', 'a') - print("static int %s(char *refparam, struct dmctx *ctx, void *data, char **instance)" % faddobj, file=fp) - print("{", file=fp) - if mappingobj != None: - type, file, sectiontype, dmmapfile, path, ref = get_mapping_obj(mappingobj) - if type == "uci": - print(" struct uci_section *dmmap = NULL, *s = NULL;", file=fp) - print("", file=fp) - print(" char *inst = get_last_instance_bbfdm(\"%s\", \"%s\", \"%s\");" % (dmmapfile, sectiontype, name+"instance"), file=fp) - print(" dmuci_add_section(\"%s\", \"%s\", &s);" % (file, sectiontype), file=fp) - print(" //dmuci_set_value_by_section(s, \"option\", \"value\");", file=fp) - print("", file=fp) - print(" dmuci_add_section_bbfdm(\"%s\", \"%s\", &dmmap);" % (dmmapfile, sectiontype), file=fp) - print(" dmuci_set_value_by_section(dmmap, \"section_name\", section_name(s));", file=fp) - print(" *instance = update_instance(inst, 2, dmmap, \"%s\");" % (name+"instance"), file=fp) - else: - print(" //TODO", file=fp) - print(" return 0;", file=fp) - print("}", file=fp) - print("", file=fp) - print("static int %s(char *refparam, struct dmctx *ctx, void *data, char *instance, unsigned char del_action)" % fdelobj, file=fp) - print("{", file=fp) - if mappingobj != None: - if type == "uci": - print(" struct uci_section *s = NULL, *ss = NULL, *dmmap_section = NULL;", file=fp) - print(" int found = 0;", file=fp) - print("", file=fp) - print(" switch (del_action) {", file=fp) - if mappingobj != None: - if type == "uci": - print(" case DEL_INST:", file=fp) - print(" get_dmmap_section_of_config_section(\"%s\", \"%s\", section_name((struct uci_section *)data), &dmmap_section);" % (dmmapfile, sectiontype), file=fp) - print(" if (dmmap_section != NULL)", file=fp) - print(" dmuci_delete_by_section(dmmap_section, NULL, NULL);", file=fp) - print(" dmuci_delete_by_section((struct uci_section *)data, NULL, NULL);", file=fp) - print(" break;", file=fp) - print(" case DEL_ALL:", file=fp) - print(" uci_foreach_sections(\"%s\", \"%s\", s) {" % (file, sectiontype), file=fp) - print(" if (found != 0) {", file=fp) - print(" get_dmmap_section_of_config_section(\"%s\", \"%s\", section_name(ss), &dmmap_section);" % (dmmapfile, sectiontype), file=fp) - print(" if (dmmap_section != NULL)", file=fp) - print(" dmuci_delete_by_section(dmmap_section, NULL, NULL);", file=fp) - print(" dmuci_delete_by_section(ss, NULL, NULL);", file=fp) - print(" }", file=fp) - print(" ss = s;", file=fp) - print(" found++;", file=fp) - print(" }", file=fp) - print(" if (ss != NULL) {", file=fp) - print(" get_dmmap_section_of_config_section(\"%s\", \"%s\", section_name(ss), &dmmap_section);" % (dmmapfile, sectiontype), file=fp) - print(" if (dmmap_section != NULL)", file=fp) - print(" dmuci_delete_by_section(dmmap_section, NULL, NULL);", file=fp) - print(" dmuci_delete_by_section(ss, NULL, NULL);", file=fp) - print(" }", file=fp) - print(" break;", file=fp) - else: - print(" case DEL_INST:", file=fp) - print(" //TODO", file=fp) - print(" break;", file=fp) - print(" case DEL_ALL:", file=fp) - print(" //TODO", file=fp) - print(" break;", file=fp) - print(" }", file=fp) - print(" return 0;", file=fp) - print("}", file=fp) - print("", file=fp) - fp.close() - -def cprintBrowseObj( fbrowse, name, mappingobj, dmobject ): - # Open file - fp = open('./.objbrowse.c', 'a') - - ### Mapping Parameter - if mappingobj != None: - type, res1, res2, res3, res4, res5 = get_mapping_obj(mappingobj) - if type == "uci" : - print("/*#%s!%s:%s/%s/%s*/" % (dmobject, type.upper(), res1, res2, res3), file=fp) - elif type == "ubus" : - print("/*#%s!%s:%s/%s/%s,%s/%s*/" % (dmobject, type.upper(), res1, res2, res3, res4, res5), file=fp) - - print("static int %s(struct dmctx *dmctx, DMNODE *parent_node, void *prev_data, char *prev_instance)" % fbrowse, file=fp) - print("{", file=fp) - - # Mapping exist - if mappingobj != None: - - ############################## UCI ######################################## - if type == "uci" : - print(" char *inst = NULL, *max_inst = NULL;", file=fp) - print(" struct dmmap_dup *p = NULL;", file=fp) - print(" LIST_HEAD(dup_list);", file=fp) - print("", file=fp) - print(" synchronize_specific_config_sections_with_dmmap(\"%s\", \"%s\", \"%s\", &dup_list);" % (res1, res2, res3), file=fp) - print(" list_for_each_entry(p, &dup_list, list) {", file=fp) - print("", file=fp) - print(" inst = handle_update_instance(1, dmctx, &max_inst, update_instance_alias, 3,", file=fp) - print(" p->dmmap_section, \"%s\", \"%s\");" % (name+"instance", name+"alias"), file=fp) - print("", file=fp) - print(" if (DM_LINK_INST_OBJ(dmctx, parent_node, (void *)p->config_section, inst) == DM_STOP)", file=fp) - print(" break;", file=fp) - print(" }", file=fp) - print(" free_dmmap_config_dup_list(&dup_list);", file=fp) - - - ############################## UBUS ######################################## - elif type == "ubus" : - print(" json_object *res = NULL, *obj = NULL, *arrobj = NULL;", file=fp) - print(" char *inst = NULL, *max_inst = NULL;", file=fp) - print(" int id = 0, i = 0;", file=fp) - print("", file=fp) - if res3 == None and res4 == None: - print(" dmubus_call(\"%s\", \"%s\", UBUS_ARGS{}, 0, &res);" % (res1, res2), file=fp) - else: - print(" dmubus_call(\"%s\", \"%s\", UBUS_ARGS{{\"%s\", \"%s\", String}}, 1, &res);" % (res1, res2, res3, res4), file=fp) - print(" if (res) {", file=fp) - print(" dmjson_foreach_obj_in_array(res, arrobj, obj, i, 1, \"%s\") {" % res5, file=fp) - print("", file=fp) - print(" inst = handle_update_instance(1, dmctx, &max_inst, update_instance_without_section, 1, ++id);", file=fp) - print("", file=fp) - print(" if (DM_LINK_INST_OBJ(dmctx, parent_node, (void *)obj, inst) == DM_STOP)", file=fp) - print(" break;", file=fp) - print(" }", file=fp) - print(" }", file=fp) - - # Mapping doesn't exist - else: - print(" //TODO", file=fp) - print(" return 0;", file=fp) - print("}", file=fp) - print("", file=fp) - - # Close file - fp.close() - -def cprintGetSetValue(getvalue, setvalue, mappingparam, instance, typeparam, parentname, dmparam, value): - # Open file - fp = open('./.getstevalue.c', 'a') - - # Generate Validate value - validate_value = "" - if setvalue != "NULL": - validate_value = generate_validate_value(dmparam, value) - - # Mapping exist - if mappingparam != None: - count = len(mappingparam) - i = 0 - mapping = "" - tmpgetvalue = "" - tmpsetvalue = "" - set_value = "" - for element in mappingparam: - type, res1, res2, res3, res4, res5, res6, res7 = get_mapping_param(element) - get_value = "" - i += 1 - - ############################## UCI ######################################## - if type == "uci": - ### Mapping Parameter - if res3 != None: - mapping = "%s:%s/%s,%s/%s" % (type.upper(), res1, res2, res3, res5) - else: - mapping = "%s:%s/%s,%s/%s" % (type.upper(), res1, res2, res4, res5) - - ### GET VALUE Parameter - if "NumberOfEntries" in dmparam: - get_value += " struct uci_section *s = NULL;\n" - get_value += " int cnt = 0;\n" - get_value += "\n" - get_value += " uci_foreach_sections(\"%s\", \"%s\", s) {\n" % (res1, res2) - get_value += " cnt++;\n" - get_value += " }\n" - get_value += " dmasprintf(value, \"%d\", cnt);" - elif "Alias" in dmparam: - get_value += " struct uci_section *dmmap_section = NULL;\n" - get_value += "\n" - get_value += " get_dmmap_section_of_config_section(\"%s\", \"%s\", section_name((struct uci_section *)data), &dmmap_section);\n" % (res1, res2) - get_value += " dmuci_get_value_by_section_string(dmmap_section, \"%s\", value);\n" % res5 - get_value += " if ((*value)[0] == '\\0')\n" - get_value += " dmasprintf(value, \"cpe-%s\", instance);" - elif instance == "TRUE" and res6 != None: - get_value += " char uci_type[32] = {0};\n" - get_value += "\n" - get_value += " snprintf(uci_type, sizeof(uci_type), \"@%s[%s]\", instance ? atoi(instance)-1 : 0);\n" % (res2, "%d") - get_value += " *value = bbf_uci_get_value(\"%s\", \"%s\", uci_type, \"%s\");" % (res6, res1, res5) - elif instance == "TRUE" and res7 != None: - get_value += " char *linker = dmstrdup(*value);\n" - get_value += " adm_entry_get_linker_param(ctx, \"%s\", linker, value);\n" % res7 - get_value += " dmfree(linker);\n" - get_value += " if (*value == NULL)\n" - get_value += " *value = \"\";" - elif res6 != None: - get_value += " *value = bbf_uci_get_value(\"%s\", \"%s\", \"%s\", \"%s\");" % (res6, res1, res3, res5) - elif instance == "TRUE": - get_value += " dmuci_get_value_by_section_string((struct uci_section *)data, \"%s\", value);" % res5 - else: - get_value += " dmuci_get_option_value_string(\"%s\", \"%s\", \"%s\", value);" % (res1, res3, res5) - - ### SET VALUE Parameter - set_value += " switch (action) {\n" - set_value += " case VALUECHECK:\n" - set_value += "%s\n" % validate_value - set_value += " break;\n" - set_value += " case VALUESET:\n" - if typeparam == "boolean": - set_value += " string_to_bool(value, &b);\n" - if instance == "TRUE": - set_value += " dmuci_set_value_by_section((struct uci_section *)data, \"%s\", b ? \"1\" : \"0\");" % res5 - else: - set_value += " dmuci_set_value(\"%s\", \"%s\", \"%s\", b ? \"1\" : \"0\");" % (res1, res3, res5) - elif instance == "TRUE": - set_value += " dmuci_set_value_by_section((struct uci_section *)data, \"%s\", value);" % res5 - else: - set_value += " dmuci_set_value(\"%s\", \"%s\", \"%s\", value);" % (res1, res3, res5) - - - ############################## UBUS ######################################## - elif type == "ubus": - ### Mapping Parameter - if res3 != None and res4 != None: - mapping = "%s:%s/%s/%s,%s/%s" % (type.upper(), res1, res2, res3, res4, res5) - else: - mapping = "%s:%s/%s//%s" % (type.upper(), res1, res2, res5) - - ### GET VALUE Parameter - if instance == "TRUE": - options = res5.split(".") - if len(options) == 3: - get_value += " *value = dmjson_get_value((json_object *)data, 2, \"%s\", \"%s\");\n" % (options[1], options[2]) - elif len(options) == 2: - get_value += " *value = dmjson_get_value((json_object *)data, 1, \"%s\");\n" % options[1] - else: - get_value += " json_object *res;\n" - if res3 == None and res4 == None: - get_value += " dmubus_call(\"%s\", \"%s\", UBUS_ARGS{}, 0, &res);\n" % (res1, res2) - else: - if i == 2 and res4 == "prev_value": - get_value += " dmubus_call(\"%s\", \"%s\", UBUS_ARGS{{\"%s\", *value, String}}, 1, &res);\n" % (res1, res2, res3) - - elif i == 2 and res4 == "@Name": - get_value += " if (*value[0] == '\\0')\n" - get_value += " {\n" - get_value += " dmubus_call(\"%s\", \"%s\", UBUS_ARGS{{\"%s\", section_name((struct uci_section *)data), String}}, 1, &res);\n" % (res1, res2, res3) - elif res4 == "@Name": - get_value += " dmubus_call(\"%s\", \"%s\", UBUS_ARGS{{\"%s\", section_name((struct uci_section *)data), String}}, 1, &res);\n" % (res1, res2, res3) - else: - get_value += " dmubus_call(\"%s\", \"%s\", UBUS_ARGS{{\"%s\", \"%s\", String}}, 1, &res);\n" % (res1, res2, res3, res4) - - get_value += " DM_ASSERT(res, *value = \"\");\n" - option = res5.split(".") - if "." in res5: - if option[0] == "@Name": - get_value += " *value = dmjson_get_value(res, 2, section_name((struct uci_section *)data), \"%s\");" % (option[1]) - else: - get_value += " *value = dmjson_get_value(res, 2, \"%s\", \"%s\");" % (option[0], option[1]) - else: - get_value += " *value = dmjson_get_value(res, 1, \"%s\");" % option[0] - if i == 2 and res4 == "@Name": - get_value += "\n }" - - ### SET VALUE Parameter - set_value += " switch (action) {\n" - set_value += " case VALUECHECK:\n" - set_value += "%s\n" % validate_value - set_value += " break;\n" - set_value += " case VALUESET:\n" - set_value += " //TODO" - - - ############################## SYSFS ######################################## - elif type == "sysfs": - ### Mapping Parameter - mapping = "%s:%s" % (type.upper(), res1) - - ### GET VALUE Parameter - if res1[:15] == "/sys/class/net/" and res1[15:20] == "@Name": - get_value += " get_net_device_sysfs(section_name((struct uci_section *)data), \"%s\", value);" % res1[21:] - else: - get_value += " char val[64];\n" - get_value += "\n" - get_value += " dm_read_sysfs_file(\"%s\", val, sizeof(val));\n" % res1 - get_value += " *value = dmstrdup(val);" - - - ############################## PROCFS ######################################## - elif type == "procfs": - ### Mapping Parameter - mapping = "%s:%s" % (type.upper(), res1) - - ### GET VALUE Parameter - get_value += " char val[64];\n" - get_value += "\n" - get_value += " dm_read_sysfs_file(\"%s\", val, sizeof(val));\n" % res1 - get_value += " *value = dmstrdup(val);" - - - ############################## CLI ######################################## - elif type == "cli": - ### GET VALUE Parameter - get_value += " dmcmd(\"%s\", %s, %s);" % (res1, res2, res3) - - if count == 2 and i == 1: - tmpmapping = mapping - tmpgetvalue = get_value - tmpsetvalue = set_value - elif count == 2 and i == 2: - print("/*#%s!%s&%s*/" % (parentname+dmparam, tmpmapping, mapping), file=fp) - print("static int %s(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value)" % getvalue, file=fp) - print("{", file=fp) - print("%s" % tmpgetvalue, file=fp) - print("%s" % get_value, file=fp) - print(" return 0;", file=fp) - print("}", file=fp) - print("", file=fp) - if setvalue != "NULL": - print("static int %s(char *refparam, struct dmctx *ctx, void *data, char *instance, char *value, int action)" % setvalue, file=fp) - print("{", file=fp) - print("%s" % tmpsetvalue, file=fp) - print(" break;", file=fp) - print(" }", file=fp) - print(" return 0;", file=fp) - print("}", file=fp) - print("", file=fp) - else: - print("/*#%s!%s*/" % (parentname+dmparam, mapping), file=fp) - print("static int %s(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value)" % getvalue, file=fp) - print("{", file=fp) - print("%s" % get_value, file=fp) - print(" return 0;", file=fp) - print("}", file=fp) - print("", file=fp) - if setvalue != "NULL": - print("static int %s(char *refparam, struct dmctx *ctx, void *data, char *instance, char *value, int action)" % setvalue, file=fp) - print("{", file=fp) - print("%s" % set_value, file=fp) - print(" break;", file=fp) - print(" }", file=fp) - print(" return 0;", file=fp) - print("}", file=fp) - print("", file=fp) - - - # Mapping doesn't exist - else: - print("static int %s(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value)" % getvalue, file=fp) - print("{", file=fp) - print(" //TODO", file=fp) - print(" return 0;", file=fp) - print("}", file=fp) - print("", file=fp) - if setvalue != "NULL": - print("static int %s(char *refparam, struct dmctx *ctx, void *data, char *instance, char *value, int action)" % setvalue, file=fp) - print("{", file=fp) - print(" switch (action) {", file=fp) - print(" case VALUECHECK:", file=fp) - print("%s" % validate_value, file=fp) - print(" break;", file=fp) - print(" case VALUESET:", file=fp) - print(" //TODO", file=fp) - print(" break;", file=fp) - print(" }", file=fp) - print(" return 0;", file=fp) - print("}", file=fp) - print("", file=fp) - - # Close file - fp.close() - -def cprintheaderPARAMS( objname ): - fp = open('./.objparamarray.c', 'a') - print("DMLEAF %s[] = {" % ("t" + getname(objname) + "Params"), file=fp) - print("/* PARAM, permission, type, getvalue, setvalue, bbfdm_type*/", file=fp) - fp.close() - -def hprintheaderPARAMS( objname ): - fp = open('./.objparamarray.h', 'a') - print("extern DMLEAF %s[];" % ("t" + getname(objname) + "Params"), file=fp) - fp.close() - -def printPARAMline( parentname, dmparam, value ): - commonname = getname(parentname) + "_" + dmparam - ptype = getparamtype(value) - getvalue = "get_" + commonname - mappingparam = getoptionparam(value, "mapping") - typeparam = getoptionparam(value, "type") - bbfdm = getprotocolsparam(value, "protocols") - accessparam = getoptionparam(value, "write") - - if accessparam: - access = "&DMWRITE" - setvalue = "set_" + commonname - else: - access = "&DMREAD" - setvalue = "NULL" - - if parentname.endswith(".{i}."): - instance = "TRUE" - else: - instance = "FALSE" - - cprintGetSetValue(getvalue, setvalue, mappingparam, instance, typeparam, parentname, dmparam, value) - - fp = open('./.objparamarray.c', 'a') - print("{\"%s\", %s, %s, %s, %s, %s}," % (dmparam, access, ptype, getvalue, setvalue, bbfdm), file=fp) - fp.close() - -def printtailArray( ): - fp = open('./.objparamarray.c', 'a') - print("{0}", file=fp) - print("};", file=fp) - print("", file=fp) - fp.close() - -def printOBJline( dmobject, value ): - commonname = getname(dmobject) - hasobj = bbf.obj_has_child(value) - hasparam = bbf.obj_has_param(value) - accessobj = getoptionparam(value, "access") - mappingobj = getoptionparam(value, "mapping") - bbfdm = getprotocolsparam(value, "protocols") - uniquekeys = getuniquekeys(value, "uniqueKeys") - - if accessobj: - access = "&DMWRITE" - faddobj = "addObj" + commonname - fdelobj = "delObj" + commonname - cprintAddDelObj(faddobj, fdelobj, (getlastname(dmobject)).lower(), mappingobj, dmobject) - else: - access = "&DMREAD" - faddobj = "NULL" - fdelobj = "NULL" - - if dmobject.endswith(".{i}."): - fbrowse = "browse" + commonname + "Inst" - cprintBrowseObj(fbrowse, (getlastname(dmobject)).lower(), mappingobj, dmobject) - else: - fbrowse = "NULL" - - if hasobj: - objchildarray = "t" + commonname + "Obj" - else: - objchildarray = "NULL" - - if hasparam: - paramarray = "t" + commonname + "Params" - else: - paramarray = "NULL" - - fp = open('./.objparamarray.c', 'a') - if uniquekeys: - print("{\"%s\", %s, %s, %s, NULL, %s, NULL, NULL, %s, %s, NULL, %s, %s}," % (getlastname(dmobject), access, faddobj, fdelobj, fbrowse, objchildarray, paramarray, bbfdm, uniquekeys), file=fp) - else: - print("{\"%s\", %s, %s, %s, NULL, %s, NULL, NULL, %s, %s, NULL, %s}," % (getlastname(dmobject), access, faddobj, fdelobj, fbrowse, objchildarray, paramarray, bbfdm), file=fp) - fp.close() - -def print_dmc_usage(): - print("Usage: " + sys.argv[0] + " " + " [Object path]") - print("data model name: The data model(s) to be used, for ex: tr181 or tr181,tr104") - print("Examples:") - print(" - " + sys.argv[0] + " tr181") - print(" ==> Generate the C code of tr181 data model in datamodel/ folder") - print(" - " + sys.argv[0] + " tr104") - print(" ==> Generate the C code of tr104 data model in datamodel/ folder") - print(" - " + sys.argv[0] + " tr181,tr104") - print(" ==> Generate the C code of tr181 and tr104 data model in datamodel/ folder") - print(" - " + sys.argv[0] + " tr181" + " Device.DeviceInfo.") - print(" ==> Generate the C code of Device.DeviceInfo object in datamodel/ folder") - print(" - " + sys.argv[0] + " tr104" + " Device.Services.VoiceService.{i}.Capabilities.") - print(" ==> Generate the C code of Device.Services.VoiceService.{i}.Capabilities. object in datamodel/ folder") - -def object_parse_childs( dmobject , value, nextlevel ): - hasobj = bbf.obj_has_child(value) - hasparam = bbf.obj_has_param(value) - - if hasobj or hasparam: - printheaderObjCommon(dmobject) - - if hasobj: - cprintheaderOBJS(dmobject) - hprintheaderOBJS(dmobject) - - if isinstance(value,dict): - for k,v in value.items(): - if isinstance(v,dict): - for k1,v1 in v.items(): - if k1 == "type" and v1 == "object": - printOBJline(k, v) - break - printtailArray() - - if hasparam: - cprintheaderPARAMS(dmobject) - hprintheaderPARAMS(dmobject) - if isinstance(value,dict): - for k,v in value.items(): - if k == "mapping": - continue - if isinstance(v,dict): - for k1,v1 in v.items(): - if k1 == "type" and v1 != "object" and "()" not in k: - printPARAMline(dmobject, k, v) - break - printtailArray() - - if hasobj and nextlevel == 0: - if isinstance(value,dict): - for k,v in value.items(): - if isinstance(v,dict): - for k1,v1 in v.items(): - if k1 == "type" and v1 == "object": - object_parse_childs(k , v, 0) - -def generatecfromobj( pobj, pvalue, pdir, nextlevel ): - bbf.create_folder(pdir) - removetmpfiles() - object_parse_childs(pobj, pvalue, nextlevel) - - dmfpc = open(pdir + "/" + getname(pobj).lower() + ".c", "w") - dmfph = open(pdir + "/" + getname(pobj).lower() + ".h", "w") - cprinttopfile(dmfpc, getname(pobj).lower()) - hprinttopfile(dmfph, getname(pobj).lower()) - - try: - exists = os.path.isfile("./.objbrowse.c") - if exists: - print("/*************************************************************", file=dmfpc) - print("* ENTRY METHOD", file=dmfpc) - print("**************************************************************/", file=dmfpc) - tmpf = open("./.objbrowse.c", "r") - tmpd = tmpf.read() - tmpf.close() - dmfpc.write(tmpd) - except: - pass - try: - exists = os.path.isfile("./.objadddel.c") - if exists: - print("/*************************************************************", file=dmfpc) - print("* ADD & DEL OBJ", file=dmfpc) - print("**************************************************************/", file=dmfpc) - tmpf = open("./.objadddel.c", "r") - tmpd = tmpf.read() - tmpf.close() - dmfpc.write(tmpd) - except: - pass - try: - exists = os.path.isfile("./.getstevalue.c") - if exists: - print("/*************************************************************", file=dmfpc) - print("* GET & SET PARAM", file=dmfpc) - print("**************************************************************/", file=dmfpc) - tmpf = open("./.getstevalue.c", "r") - tmpd = tmpf.read() - tmpf.close() - dmfpc.write(tmpd) - except: - pass - try: - print("/**********************************************************************************************************************************", file=dmfpc) - print("* OBJ & PARAM DEFINITION", file=dmfpc) - print("***********************************************************************************************************************************/", file=dmfpc) - tmpf = open("./.objparamarray.c", "r") - tmpd = tmpf.read() - tmpf.close() - dmfpc.write(tmpd) - except: - pass - try: - tmpf = open("./.objparamarray.h", "r") - tmpd = tmpf.read() - tmpf.close() - dmfph.write(tmpd) - print >> dmfph, "" - except: - pass - - hprintfootfile (dmfph, getname(pobj).lower()) - removetmpfiles() - - -def removetmpfiles(): - bbf.remove_file("./.objparamarray.c") - bbf.remove_file("./.objparamarray.h") - bbf.remove_file("./.objadddel.c") - bbf.remove_file("./.objbrowse.c") - bbf.remove_file("./.getstevalue.c") - -### main ### -if len(sys.argv) < 2: - print_dmc_usage() - exit(1) - -if (sys.argv[1]).lower() == "-h" or (sys.argv[1]).lower() == "--help": - print_dmc_usage() - exit(1) - -bbf.remove_folder(DMC_DIR) -dm_name = sys.argv[1].split(",") -for i in range(sys.argv[1].count(',') + 1): - - JSON_FILE = bbf.ARRAY_JSON_FILES.get(dm_name[i], None) - - if JSON_FILE != None: - file = open(JSON_FILE, "r") - data = json.loads(file.read(), object_pairs_hook=OrderedDict) - - for obj, value in data.items(): - if obj == None: - print("Wrong JSON Data model format!") - continue - - # Generate the object file if it is defined by "sys.argv[2]" argument - if (len(sys.argv) > 2): - if sys.argv[2] != obj: - if isinstance(value, dict): - for obj1, value1 in value.items(): - if obj1 == sys.argv[2]: - if isinstance(value1, dict): - for obj2, value2 in value1.items(): - if obj2 == "type" and value2 == "object": - generatecfromobj(obj1, value1, DMC_DIR, 0) - break - break - break - - # Generate the root object tree file if amin does not exist - generatecfromobj(obj, value, DMC_DIR, 1) - - # Generate the sub object tree file if amin does not exist - if isinstance(value, dict): - for obj1, value1 in value.items(): - if isinstance(value1, dict): - for obj2, value2 in value1.items(): - if obj2 == "type" and value2 == "object": - generatecfromobj(obj1, value1, DMC_DIR, 0) - else: - print("!!!! %s : Data Model doesn't exist" % dm_name[i]) - -if (os.path.isdir(DMC_DIR)): - print("Source code generated under \"%s\" folder" % DMC_DIR) -else: - print("No source code generated!") diff --git a/tools/generate_dm_excel.py b/tools/generate_dm_excel.py index c2efcb19..b7825568 100755 --- a/tools/generate_dm_excel.py +++ b/tools/generate_dm_excel.py @@ -3,228 +3,264 @@ # Copyright (C) 2021 iopsys Software Solutions AB # Author: Amin Ben Ramdhane -import os -import sys -import getopt -import json -import xlwt -from xlwt import Workbook from collections import OrderedDict + +import os +import json +import argparse +import xlwt import bbf_common as bbf -BBF_REMOTE_DM = None -BBF_VENDOR_LIST = None -EXCEL_FILE = "datamodel.xls" + LIST_DM = [] -def print_dmexcel_usage(): - print("Usage: " + sys.argv[0] + " [options...] ") - print("data model name: The data model(s) to be used, for ex: tr181 or tr181,tr104") - print("Options: ") - print(" -r, --remote-dm Check OBJ/PARAM under these repositories if it is not found under bbf repo") - print(" -v, --vendor-list Generate data model tree with vendor extension OBJ/PARAM") - print(" -p, --vendor-prefix Generate data model tree using this vendor prefix. Default vendor prefix: %s" % bbf.BBF_VENDOR_PREFIX) - print(" -h, --help This help text") - print("Urls: ") - print(" url^(branch,hash,tag) The url with branch, hash or tag to be used") - print("") - print("Examples: ") - print(" - python " + sys.argv[0] + " tr181") - print(" ==> Generate excel file in %s" % EXCEL_FILE) - print(" - python " + sys.argv[0] + " tr104") - print(" ==> Generate excel file in %s" % EXCEL_FILE) - print(" - python " + sys.argv[0] + " tr181,tr104 -r https://dev.iopsys.eu/feed/iopsys.git^release-5.3,https://dev.iopsys.eu/iopsys/mydatamodel.git^5c8e7cb740dc5e425adf53ea574fb529d2823f88") - print(" ==> Generate excel file in %s" % EXCEL_FILE) - print(" - python " + sys.argv[0] + " tr181,tr104 -v iopsys,openwrt,test -r https://dev.iopsys.eu/feed/iopsys.git^6.0.0ALPHA1 -p X_TEST_COM_") - print(" ==> Generate excel file in %s" % EXCEL_FILE) +def getprotocols(value): + if isinstance(value, dict): + for obj, val in value.items(): + if obj == "protocols" and isinstance(val, list): + if len(val) == 2: + return "CWMP+USP" + elif val[0] == "usp": + return "USP" + else: + return "CWMP" + return "CWMP+USP" -def getprotocols( value ): - if isinstance(value, dict): - for obj, val in value.items(): - if obj == "protocols" and isinstance(val, list): - if len(val) == 2: - return "CWMP+USP" - elif val[0] == "usp": - return "USP" - else: - return "CWMP" - return "CWMP+USP" -def check_param_obj( dmobject ): - for value in bbf.LIST_SUPPORTED_DM: - obj = value.split(",") - if obj[0] == dmobject: - bbf.LIST_SUPPORTED_DM.remove(value) - return "Yes" - return "No" +def check_param_obj(dmobject): + for value in bbf.LIST_SUPPORTED_DM: + obj = value.split(",") + if obj[0] == dmobject: + bbf.LIST_SUPPORTED_DM.remove(value) + return "Yes" + return "No" -def check_commands( param ): - cmd = 'awk \'/static const struct op_cmd operate_helper/,/^};$/\' ../dmoperate.c' - param = param.replace(".{i}.", ".*.").replace("()", "") - res = os.popen(cmd).read() - string = "\n\t{\n\t\t\"%s\"," % param +def check_commands(param): + cmd = 'awk \'/static const struct op_cmd operate_helper/,/^};$/\' ../dmoperate.c' + param = param.replace(".{i}.", ".*.").replace("()", "") - return "Yes" if string in res else "No" + res = os.popen(cmd).read() + string = "\n\t{\n\t\t\"%s\"," % param -def add_data_to_list_dm( obj, supported, protocols, types ): - LIST_DM.append(obj + "," + protocols + "," + supported + "," + types) + return "Yes" if string in res else "No" -def parse_standard_object( dmobject , value ): - hasobj = bbf.obj_has_child(value) - hasparam = bbf.obj_has_param(value) - supported = check_param_obj(dmobject) - add_data_to_list_dm(dmobject, supported, getprotocols(value), "object") +def add_data_to_list_dm(obj, supported, protocols, types): + LIST_DM.append(obj + "," + protocols + "," + supported + "," + types) - if hasparam: - if isinstance(value,dict): - for k,v in value.items(): - if k == "mapping": - continue - if isinstance(v,dict): - for k1,v1 in v.items(): - if k1 == "type" and v1 != "object": - if "()" in k: - supported = check_commands(dmobject + k) - add_data_to_list_dm(dmobject + k, supported, getprotocols(v), "operate") - else: - supported = check_param_obj(dmobject + k) - add_data_to_list_dm(dmobject + k, supported, getprotocols(v), "parameter") - break - if hasobj: - if isinstance(value,dict): - for k,v in value.items(): - if isinstance(v,dict): - for k1,v1 in v.items(): - if k1 == "type" and v1 == "object": - parse_standard_object(k , v) +def parse_standard_object(dmobject, value): + hasobj = bbf.obj_has_child(value) + hasparam = bbf.obj_has_param(value) -def parse_dynamic_object(): - for value in bbf.LIST_SUPPORTED_DM: - obj = value.split(",") + supported = check_param_obj(dmobject) + add_data_to_list_dm(dmobject, supported, getprotocols(value), "object") - dm_name = sys.argv[1].split(",") - for i in range(sys.argv[1].count(',') + 1): + if hasparam: + if isinstance(value, dict): + for k, v in value.items(): + if k == "mapping": + continue + if isinstance(v, dict): + for k1, v1 in v.items(): + if k1 == "type" and v1 != "object": + if "()" in k: + supported = check_commands(dmobject + k) + add_data_to_list_dm( + dmobject + k, supported, getprotocols(v), "operate") + else: + supported = check_param_obj(dmobject + k) + add_data_to_list_dm( + dmobject + k, supported, getprotocols(v), "parameter") + break - JSON_FILE = bbf.ARRAY_JSON_FILES.get(dm_name[i], None) + if hasobj: + if isinstance(value, dict): + for k, v in value.items(): + if isinstance(v, dict): + for k1, v1 in v.items(): + if k1 == "type" and v1 == "object": + parse_standard_object(k, v) - if JSON_FILE == None: - continue - if "tr181" == dm_name[i] and ".Services." in obj[0]: - continue +def parse_dynamic_object(dm_name_list): + if isinstance(dm_name_list, list) is False: + return None - if "tr104" == dm_name[i] and ".Services." not in obj[0]: - continue + for value in bbf.LIST_SUPPORTED_DM: + obj = value.split(",") - type = "object" if obj[2] == "DMT_OBJ" else "parameter" - add_data_to_list_dm(obj[0], "Yes", "CWMP+USP", type) + for dm in dm_name_list: -def parse_object_tree(): - print("Start Generation of BBF Data Models Excel...") - print("Please wait...") + JSON_FILE = bbf.ARRAY_JSON_FILES.get(dm, None) - dm_name = sys.argv[1].split(",") - for i in range(sys.argv[1].count(',') + 1): + if JSON_FILE is None: + continue - JSON_FILE = bbf.ARRAY_JSON_FILES.get(dm_name[i], None) + if dm == "tr181" and ".Services." in obj[0]: + continue - if JSON_FILE != None: - file = open(JSON_FILE, "r") - data = json.loads(file.read(), object_pairs_hook=OrderedDict) + if dm == "tr104" and ".Services." not in obj[0]: + continue - for obj, value in data.items(): - if obj == None: - print("!!!! %s : Wrong JSON Data model format!" % dm_name[i]) - continue + if dm == "tr135" and ".Services." not in obj[0]: + continue - parse_standard_object(obj, value) - else: - print("!!!! %s : Data Model doesn't exist" % dm_name[i]) - - parse_dynamic_object() + dmType = "object" if obj[2] == "DMT_OBJ" else "parameter" + add_data_to_list_dm(obj[0], "Yes", "CWMP+USP", dmType) -def generate_excel_file(): - bbf.remove_file(EXCEL_FILE) - LIST_DM.sort(reverse=False) +def parse_object_tree(dm_name_list): + if isinstance(dm_name_list, list) is False: + return None - wb = Workbook(style_compression=2) - sheet = wb.add_sheet('CWMP-USP') + for dm in dm_name_list: - xlwt.add_palette_colour("custom_colour_yellow", 0x10) - xlwt.add_palette_colour("custom_colour_green", 0x20) - xlwt.add_palette_colour("custom_colour_grey", 0x30) + JSON_FILE = bbf.ARRAY_JSON_FILES.get(dm, None) - wb.set_colour_RGB(0x10, 255, 255, 153) - wb.set_colour_RGB(0x20, 102, 205, 170) - wb.set_colour_RGB(0x30, 153, 153, 153) + if JSON_FILE is not None: + file = open(JSON_FILE, "r") + data = json.loads(file.read(), object_pairs_hook=OrderedDict) - style_title = xlwt.easyxf('pattern: pattern solid, fore_colour custom_colour_grey;''font: bold 1, color black;''alignment: horizontal center;') - sheet.write(0, 0, 'OBJ/PARAM/OPERATE', style_title) - sheet.write(0, 1, 'Protocols', style_title) - sheet.write(0, 2, 'Supported', style_title) + for obj, value in data.items(): + if obj is None: + print("!!!! %s : Wrong JSON Data model format!" % dm) + continue - i = 0 - for value in LIST_DM: - param = value.split(",") - i += 1 + parse_standard_object(obj, value) + else: + print("!!!! %s : Data Model doesn't exist" % dm) - if param[3] == "object": - style_name = xlwt.easyxf('pattern: pattern solid, fore_colour custom_colour_yellow') - style = xlwt.easyxf('pattern: pattern solid, fore_colour custom_colour_yellow;''alignment: horizontal center;') - elif param[3] == "operate": - style_name = xlwt.easyxf('pattern: pattern solid, fore_colour custom_colour_green') - style = xlwt.easyxf('pattern: pattern solid, fore_colour custom_colour_green;''alignment: horizontal center;') - else: - style_name = None - style = xlwt.easyxf('alignment: horizontal center;') + parse_dynamic_object(dm_name_list) - if style_name != None: - sheet.write(i, 0, param[0], style_name) - else: - sheet.write(i, 0, param[0]) - sheet.write(i, 1, param[1], style) - sheet.write(i, 2, param[2], style) +def generate_excel_file(output_file): + bbf.remove_file(output_file) - sheet.col(0).width = 1300*20 - sheet.col(1).width = 175*20 - sheet.col(2).width = 175*20 + LIST_DM.sort(reverse=False) + + wb = xlwt.Workbook(style_compression=2) + sheet = wb.add_sheet('CWMP-USP') + + xlwt.add_palette_colour("custom_colour_yellow", 0x10) + xlwt.add_palette_colour("custom_colour_green", 0x20) + xlwt.add_palette_colour("custom_colour_grey", 0x30) + + wb.set_colour_RGB(0x10, 255, 255, 153) + wb.set_colour_RGB(0x20, 102, 205, 170) + wb.set_colour_RGB(0x30, 153, 153, 153) + + style_title = xlwt.easyxf( + 'pattern: pattern solid, fore_colour custom_colour_grey;''font: bold 1, color black;''alignment: horizontal center;') + sheet.write(0, 0, 'OBJ/PARAM/OPERATE', style_title) + sheet.write(0, 1, 'Protocols', style_title) + sheet.write(0, 2, 'Supported', style_title) + + i = 0 + for value in LIST_DM: + param = value.split(",") + i += 1 + + if param[3] == "object": + style_name = xlwt.easyxf( + 'pattern: pattern solid, fore_colour custom_colour_yellow') + style = xlwt.easyxf( + 'pattern: pattern solid, fore_colour custom_colour_yellow;''alignment: horizontal center;') + elif param[3] == "operate": + style_name = xlwt.easyxf( + 'pattern: pattern solid, fore_colour custom_colour_green') + style = xlwt.easyxf( + 'pattern: pattern solid, fore_colour custom_colour_green;''alignment: horizontal center;') + else: + style_name = None + style = xlwt.easyxf('alignment: horizontal center;') + + if style_name is not None: + sheet.write(i, 0, param[0], style_name) + else: + sheet.write(i, 0, param[0]) + + sheet.write(i, 1, param[1], style) + sheet.write(i, 2, param[2], style) + + sheet.col(0).width = 1300*20 + sheet.col(1).width = 175*20 + sheet.col(2).width = 175*20 + + wb.save(output_file) + + +def generate_excel(dm_name_list, output_file="datamodel.xml"): + print("Generating BBF Data Models in Excel format...") + + bbf.fill_list_supported_dm() + parse_object_tree(dm_name_list) + generate_excel_file(output_file) + + if os.path.isfile(output_file): + print("└── Excel file generated: %s" % output_file) + else: + print("└── Error in excel file generation %s" % output_file) - wb.save(EXCEL_FILE) ### main ### -if len(sys.argv) < 2: - print_dmexcel_usage() - exit(1) +if __name__ == '__main__': + parser = argparse.ArgumentParser( + description='Script to generate list of supported and non-supported parameter in xls format', + epilog='Part of BBF-tools, refer Readme for more examples' + ) -try: - opts, args = getopt.getopt(sys.argv[2:], "hr:v:p:", ["remote-dm=", "vendor-list=", "vendor-prefix="]) -except getopt.GetoptError: - print_dmexcel_usage() - exit(1) + parser.add_argument( + '-d', '--datamodel', + action = 'append', + metavar='tr181', + choices= ['tr181', 'tr104'], + required= True, + ) -for opt, arg in opts: - if opt in ("-h", "--help"): - print_dmexcel_usage() - exit(1) - elif opt in ("-r", "--remote-dm"): - BBF_REMOTE_DM = arg - elif opt in ("-v", "--vendor-list"): - BBF_VENDOR_LIST = arg - elif opt in ("-p", "--vendor-prefix"): - bbf.BBF_VENDOR_PREFIX = arg + parser.add_argument( + '-r', '--remote-dm', + action='append', + metavar = 'https://dev.iopsys.eu/iopsys/stunc.git^devel', + help= 'Includes OBJ/PARAM defined under remote repositories defined as bbf plugin' + ) -bbf.generate_supported_dm(BBF_REMOTE_DM, BBF_VENDOR_LIST) + parser.add_argument( + '-v', '--vendor-list', + metavar='iopsys', + action = 'append', + help='Generate data model tree with vendor extension OBJ/PARAM' + ) -parse_object_tree() + parser.add_argument( + '-p', '--vendor-prefix', + default = 'iopsys', + metavar = 'X_IOPSYS_EU_', + help = 'Generate data model tree using provided vendor prefix for vendor defined objects' + ) -generate_excel_file() + parser.add_argument( + '-o', '--output', + default = "datamodel.xls", + metavar = "supported_datamodel.xls", + help = 'Generate the output file with given name' + ) -if (os.path.isfile(EXCEL_FILE)): - print("Excel file generated: %s" % EXCEL_FILE) -else: - print("No Excel file generated!") + args = parser.parse_args() + plugins = [] + + if isinstance(args.remote_dm, list) is True: + for f in args.remote_dm: + x = f.split('^') + r = {} + r["repo"] = x[0] + if len(x) == 2: + r["version"] = x[1] + + plugins.append(r) + + bbf.generate_supported_dm(args.vendor_prefix, args.vendor_list, plugins) + bbf.clean_supported_dm_list() + generate_excel(args.datamodel, args.output) + print("Datamodel generation completed, aritifacts available in %s" %args.output) diff --git a/tools/generate_dm_json.py b/tools/generate_dm_json.py deleted file mode 100755 index d3f78cc5..00000000 --- a/tools/generate_dm_json.py +++ /dev/null @@ -1,847 +0,0 @@ -#!/usr/bin/python3 - -# Copyright (C) 2020 iopsys Software Solutions AB -# Author: Amin Ben Ramdhane - -import os, sys, time, re, json -import xml.etree.ElementTree as xml -from collections import OrderedDict -from shutil import copyfile -import bbf_common as bbf - -listTypes = ["string", - "unsignedInt", - "unsignedLong", - "int", - "long", - "boolean", - "dateTime", - "hexBinary", - "base64"] - -listdataTypes = ["string", - "unsignedInt", - "unsignedLong", - "int", - "long", - "boolean", - "dateTime", - "hexBinary", - "base64", - "IPAddress", - "IPv4Address", - "IPv6Address", - "IPPrefix", - "IPv4Prefix", - "IPv6Prefix", - "MACAddress", - "decimal", - "IoTDeviceType", - "IoTLevelType", - "IoTUnitType", - "IoTEnumSensorType", - "IoTEnumControlType"] - -def getname( objname ): - global model_root_name - OBJSname = objname - if (objname.count('.') > 1 and (objname.count('.') != 2 or objname.count('{i}') != 1) ): - OBJSname = objname.replace(dmroot1.get('name'), "", 1) - OBJSname = OBJSname.replace("{i}", "") - OBJSname = OBJSname.replace(".", "") - if (objname.count('.') == 1): - model_root_name = OBJSname - OBJSname = "Root" + OBJSname - return OBJSname - if (objname.count('.') == 2 and objname.count('{i}') == 1): - model_root_name = OBJSname - OBJSname = "Services" + OBJSname - return OBJSname - return OBJSname - -def getparamtype( dmparam ): - ptype = None - for s in dmparam: - if s.tag == "syntax": - for c in s: - if c.tag == "list": - ptype = "string" - break - if c.tag == "dataType": - reftype = c.get("ref") - if "StatsCounter" in reftype: - ptype = "unsignedInt" - break - ptype = "string" - break - ptype = c.tag - break - break - if ptype == None: - ptype = "__NA__" - return ptype - -def getMinMaxEnumerationUnitPatternparam(paramtype, c): - paramvalrange = None - paramenum = None - paramunit = None - parampattern = None - if paramtype == "string" or paramtype == "hexBinary" or paramtype == "base64": - for cc in c: - if cc.tag == "size": - if paramvalrange == None: - paramvalrange = "%s,%s" % (cc.get("minLength"), cc.get("maxLength")) - else: - paramvalrange = "%s;%s,%s" % (paramvalrange, cc.get("minLength"), cc.get("maxLength")) - if cc.tag == "enumeration": - if paramenum == None: - paramenum = "\"%s\"" % cc.get('value') - else: - paramenum = "%s, \"%s\"" % (paramenum, cc.get('value')) - if cc.tag == "pattern": - if parampattern == None: - parampattern = "\"%s\"" % cc.get('value') - elif cc.get('value') != "": - parampattern = "%s,\"%s\"" % (parampattern, cc.get('value')) - - elif paramtype == "unsignedInt" or paramtype == "int" or paramtype == "unsignedLong" or paramtype == "long": - for cc in c: - if cc.tag == "range": - if paramvalrange == None: - paramvalrange = "%s,%s" % (cc.get("minInclusive"), cc.get("maxInclusive")) - else: - paramvalrange = "%s;%s,%s" % (paramvalrange, cc.get("minInclusive"), cc.get("maxInclusive")) - if cc.tag == "units": - paramunit = cc.get("value") - - return paramvalrange, paramenum, paramunit, parampattern - - -def getparamdatatyperef( datatyperef ): - paramvalrange = None - paramenum = None - paramunit = None - parampattern = None - for d in xmlroot1: - if d.tag == "dataType" and d.get("name") == datatyperef: - if d.get("base") != "" and d.get("base") != None and d.get("name") == "Alias": - paramvalrange, paramenum, paramunit, parampattern = getparamdatatyperef(d.get("base")) - else: - for dd in d: - if dd.tag in listTypes: - paramvalrange, paramenum, paramunit, parampattern = getMinMaxEnumerationUnitPatternparam(dd.tag, dd) - break - if dd.tag == "size": - if paramvalrange == None: - paramvalrange = "%s,%s" % (dd.get("minLength"), dd.get("maxLength")) - else: - paramvalrange = "%s;%s,%s" % (paramvalrange, dd.get("minLength"), dd.get("maxLength")) - if dd.tag == "enumeration": - if paramenum == None: - paramenum = "\"%s\"" % dd.get('value') - else: - paramenum = "%s, \"%s\"" % (paramenum, dd.get('value')) - if dd.tag == "pattern": - if parampattern == None: - parampattern = "\"%s\"" % dd.get('value') - elif dd.get('value') != "": - parampattern = "%s,\"%s\"" % (parampattern, dd.get('value')) - break - - return paramvalrange, paramenum, paramunit, parampattern - -def getparamlist( dmparam ): - minItem = None - maxItem = None - maxsize = None - minItem = dmparam.get("minItems") - maxItem = dmparam.get("maxItems") - for cc in dmparam: - if cc.tag == "size": - maxsize = cc.get("maxLength") - - return minItem, maxItem, maxsize - -def getparamoption( dmparam ): - datatype = None - paramvalrange = None - paramenum = None - paramunit = None - parampattern = None - listminItem = None - listmaxItem = None - listmaxsize = None - islist = 0 - for s in dmparam: - if s.tag == "syntax": - for c in s: - if c.tag == "list": - islist = 1 - listminItem, listmaxItem, listmaxsize = getparamlist(c) - for c in s: - datatype = c.tag if c.tag in listdataTypes else None - if datatype != None: - paramvalrange, paramenum, paramunit, parampattern = getMinMaxEnumerationUnitPatternparam(datatype, c) - break - if c.tag == "dataType": - datatype = c.get("ref") - paramvalrange, paramenum, paramunit, parampattern = getparamdatatyperef(c.get("ref")) - break - - if islist == 0: - datatype = c.tag if c.tag in listdataTypes else None - if datatype != None: - paramvalrange, paramenum, paramunit, parampattern = getMinMaxEnumerationUnitPatternparam(datatype, c) - break - if c.tag == "dataType": - datatype = c.get("ref") - paramvalrange, paramenum, paramunit, parampattern = getparamdatatyperef(datatype) - break - break - - return islist, datatype, paramvalrange, paramenum, paramunit, parampattern, listminItem, listmaxItem, listmaxsize - -listmapping = [] -def generatelistfromfile(dmobject): - obj = dmobject.get('name').split(".") - if "tr-104" in sys.argv[1]: - pathfilename = "../dmtree/tr104/" + obj[1].lower() + ".c" - pathiopsyswrtfilename = "../dmtree/tr104/" + obj[1].lower() + "-iopsyswrt.c" - else: - pathfilename = "../dmtree/tr181/" + obj[1].lower() + ".c" - pathiopsyswrtfilename = "../dmtree/tr181/" + obj[1].lower() + "-iopsyswrt.c" - - for x in range(0, 2): - pathfile = pathfilename if x == 0 else pathiopsyswrtfilename - exists = os.path.isfile(pathfile) - if exists: - filec = open(pathfile, "r") - for linec in filec: - if "/*#" in linec: - listmapping.append(linec) - else: - pass - -def getparammapping(dmobject, dmparam): - hasmapping = 0 - mapping = "" - if "tr-104" in sys.argv[1]: - param = "Device.Services." + dmobject.get('name') + dmparam.get('name') - else: - param = dmobject.get('name') + dmparam.get('name') - for value in listmapping: - if param in value: - hasmapping = 1 - config_type = value.split("!") - mapping = config_type[1] - mapping = mapping.replace("*/\n", "") - break - - return hasmapping, mapping - -def getobjmapping(dmobject): - hasmapping = 0 - mapping = "" - if "tr-104" in sys.argv[1]: - obj = "Device.Services." + dmobject.get('name') - else: - obj = dmobject.get('name') - for value in listmapping: - config_type = value.split("!") - mapping = config_type[0] - mapping = mapping.replace("/*#", "") - if obj == mapping: - hasmapping = 1 - mapping = config_type[1] - mapping = mapping.replace("*/\n", "") - break - - return hasmapping, mapping - -def objhaschild (parentname, level, check_obj): - hasobj = 0 - model = model2 if check_obj == 0 else model1 - for c in model: - objname = c.get('name') - if c.tag == "object" and parentname in objname and (objname.count('.') - objname.count('{i}')) == level: - hasobj = 1 - break - - return hasobj - -def objhasparam (dmobject): - hasparam = 0 - for c in dmobject: - if c.tag == "parameter": - hasparam = 1 - break - - return hasparam - -def getuniquekeys (dmobject): - uniquekeys = None - for c in dmobject: - if c.tag == "uniqueKey": - for s in c: - if s.tag == "parameter": - if uniquekeys == None: - uniquekeys = "\"%s\"" % s.get('ref') - else: - uniquekeys = uniquekeys + "," + "\"%s\"" % s.get('ref') - return uniquekeys - -def printopenobject (obj): - fp = open('./.json_tmp', 'a') - if "tr-104" in sys.argv[1] or "tr-135" in sys.argv[1]: - print("\"Device.Services.%s\" : {" % obj.get('name').replace(" ", ""), file=fp) - else: - print("\"%s\" : {" % obj.get('name').replace(" ", ""), file=fp) - fp.close() - -def printopenfile (): - fp = open('./.json_tmp', 'a') - print("{", file=fp) - fp.close() - -def printclosefile (): - fp = open('./.json_tmp', 'a') - print("}", file=fp) - fp.close() - -def printOBJMaPPING (mapping): - fp = open('./.json_tmp', 'a') - config_type = mapping.split(":") - config = config_type[1].split("/") - print("\"mapping\": {", file=fp) - print("\"type\": \"%s\"," % config_type[0].lower(), file=fp) - print("\"%s\": {" % config_type[0].lower(), file=fp) - - # UCI - if config_type[0] == "UCI": - print("\"file\": \"%s\"," % config[0], file=fp) - print("\"section\": {", file=fp) - print("\"type\": \"%s\"" % config[1], file=fp) - print("},", file=fp) - print("\"dmmapfile\": \"%s\"" % config[2], file=fp) - - # UBUS - elif config_type[0] == "UBUS": - print("\"object\": \"%s\"," % config[0], file=fp) - print("\"method\": \"%s\"," % config[1], file=fp) - print("\"args\": {", file=fp) - if config[2] != "": - args = config[2].split(",") - print("\"%s\": \"%s\"" % (args[0], args[1]), file=fp) - print("}", file=fp) - print("\"key\": \"%s\"" % config[3], file=fp) - - print("}\n}", file=fp) - fp.close() - -def printPARAMMaPPING (mapping): - fp = open('./.json_tmp', 'a') - lst = mapping.split("&") - print("\"mapping\": [", file=fp) - for i in range(len(lst)): - config_type = lst[i].split(":") - config = config_type[1].split("/") - - print("{", file=fp) - print("\"type\": \"%s\"," % config_type[0].lower(), file=fp) - - # SYSFS || PROCFS - if config_type[0] == "SYSFS" or config_type[0] == "PROCFS": - print("\"file\": \"%s\"" % config_type[1], file=fp) - - # UCI, UBUS, CLI - else: - # Only for UCI, UBUS, CLI - print("\"%s\": {" % config_type[0].lower(), file=fp) - - # UCI - if config_type[0] == "UCI": - print("\"file\": \"%s\"," % config[0], file=fp) - print("\"section\": {", file=fp) - var = config[1].split(",") - if len(var) == 1: - print("\"type\": \"%s\"" % var[0], file=fp) - elif len(var) > 1 and "@i" in var[1]: - print("\"type\": \"%s\"," % var[0], file=fp) - print("\"index\": \"%s\"" % var[1], file=fp) - elif len(var) > 1: - print("\"type\": \"%s\"," % var[0], file=fp) - print("\"name\": \"%s\"" % var[1], file=fp) - print("}", file=fp) - if len(var) > 1: - print("\"option\": {", file=fp) - print("\"name\": \"%s\"" % config[2], file=fp) - print("}", file=fp) - - # UBUS - elif config_type[0] == "UBUS": - print("\"object\": \"%s\"," % config[0], file=fp) - print("\"method\": \"%s\"," % config[1], file=fp) - print("\"args\": {", file=fp) - if config[2] != "": - args = config[2].split(",") - print("\"%s\": \"%s\"" % (args[0], args[1]), file=fp) - print("}", file=fp) - print("\"key\": \"%s\"" % config[3], file=fp) - - # CLI - elif config_type[0] == "CLI": - print("\"command\": \"%s\"," % config[0], file=fp) - print("\"args\": \"%s\"" % config[1], file=fp) - - print("}", file=fp) - - print("}", file=fp) - print("]\n}", file=fp) - fp.close() - -def removelastline (): - file = open("./.json_tmp") - lines = file.readlines() - lines = lines[:-1] - file.close() - w = open("./.json_tmp",'w') - w.writelines(lines) - w.close() - printclosefile () - -def replace_data_in_file( data_in, data_out ): - file_r = open("./.json_tmp", "rt") - file_w = open("./.json_tmp_1", "wt") - text = ''.join(file_r).replace(data_in, data_out) - file_w.write(text) - file_r.close() - file_w.close() - copyfile("./.json_tmp_1", "./.json_tmp") - bbf.remove_file("./.json_tmp_1") - -def updatejsontmpfile (): - replace_data_in_file ("}\n", "},\n") - replace_data_in_file ("},\n},", "}\n},") - replace_data_in_file ("}\n},\n},", "}\n}\n},") - replace_data_in_file ("}\n},\n}\n},", "}\n}\n}\n},") - replace_data_in_file ("}\n},\n}\n}\n},", "}\n}\n}\n}\n},") - replace_data_in_file ("}\n}\n}\n},\n}\n},", "}\n}\n}\n}\n}\n},") - replace_data_in_file ("}\n}\n}\n}\n}\n}\n},", "}\n}\n}\n}\n}\n}\n},") - replace_data_in_file ("}\n}\n}\n},\n}\n}\n}\n},", "}\n}\n}\n}\n}\n}\n}\n},") - replace_data_in_file ("},\n]", "}\n]") - -def removetmpfiles(): - bbf.remove_file("./.json_tmp") - bbf.remove_file("./.json_tmp_1") - -def printOBJ( dmobject, hasobj, hasparam, bbfdm_type ): - uniquekeys = getuniquekeys(dmobject) - hasmapping, mapping = getobjmapping(dmobject) - if (dmobject.get('name')).endswith(".{i}."): - fbrowse = "true" - else: - fbrowse = "false" - - fp = open('./.json_tmp', 'a') - print("\"type\" : \"object\",", file=fp) - print("\"protocols\" : [%s]," % bbfdm_type, file=fp) - if uniquekeys != None: - print("\"uniqueKeys\" : [%s]," % uniquekeys, file=fp) - if (dmobject.get('access') == "readOnly"): - print("\"access\" : false,", file=fp) - else: - print("\"access\" : true,", file=fp) - if hasparam or hasobj: - print("\"array\" : %s," % fbrowse, file=fp) - else: - print("\"array\" : %s" % fbrowse, file=fp) - fp.close() - if hasmapping: - printOBJMaPPING (mapping) - -def printPARAM( dmparam, dmobject, bbfdm_type ): - hasmapping, mapping = getparammapping(dmobject, dmparam) - islist, datatype, paramvalrange, paramenum, paramunit, parampattern, listminItem, listmaxItem, listmaxsize = getparamoption(dmparam) - - fp = open('./.json_tmp', 'a') - print("\"%s\" : {" % dmparam.get('name').replace(" ", ""), file=fp) - print("\"type\" : \"%s\"," % getparamtype(dmparam), file=fp) - print("\"read\" : true,", file=fp) - print("\"write\" : %s," % ("false" if dmparam.get('access') == "readOnly" else "true"), file=fp) - print("\"protocols\" : [%s]," % bbfdm_type, file=fp) - - # create list - if islist == 1: - print("\"list\" : {", file=fp) - - # add datatype - print(("\"datatype\" : \"%s\"," % datatype) if (listmaxsize != None or listminItem != None or listmaxItem != None or paramvalrange != None or paramunit != None or paramenum != None or parampattern != None or (hasmapping and islist == 0)) else ("\"datatype\" : \"%s\"" % datatype), file=fp) - - if islist == 1: - # add maximum size of list - if listmaxsize != None: - print(("\"maxsize\" : %s," % listmaxsize) if (listminItem != None or listmaxItem != None or paramvalrange != None or paramunit != None or paramenum != None or parampattern != None) else ("\"maxsize\" : %s" % listmaxsize), file=fp) - - # add minimun and maximum item values - if listminItem != None and listmaxItem != None: - print("\"item\" : {", file=fp) - print("\"min\" : %s," % listminItem, file=fp) - print("\"max\" : %s" % listmaxItem, file=fp) - print(("},") if (paramvalrange != None or paramunit != None or paramenum != None or parampattern != None) else ("}"), file=fp) - elif listminItem != None and listmaxItem == None: - print("\"item\" : {", file=fp) - print("\"min\" : %s" % listminItem, file=fp) - print(("},") if (paramvalrange != None or paramunit != None or paramenum != None or parampattern != None) else ("}"), file=fp) - elif listminItem == None and listmaxItem != None: - print("\"item\" : {", file=fp) - print("\"max\" : %s" % listmaxItem, file=fp) - print(("},") if (paramvalrange != None or paramunit != None or paramenum != None or parampattern != None) else ("}"), file=fp) - - # add minimun and maximum values - if paramvalrange != None: - valranges = paramvalrange.split(";") - print("\"range\" : [", file=fp) - for eachvalrange in valranges: - valrange = eachvalrange.split(",") - if valrange[0] != "None" and valrange[1] != "None": - print("{", file=fp) - print("\"min\" : %s," % valrange[0], file=fp) - print("\"max\" : %s" % valrange[1], file=fp) - print(("},") if (eachvalrange == valranges[len(valranges)-1]) else ("}"), file=fp) - elif valrange[0] != "None" and valrange[1] == "None": - print("{", file=fp) - print("\"min\" : %s" % valrange[0], file=fp) - print(("},") if (eachvalrange == valranges[len(valranges)-1]) else ("}"), file=fp) - elif valrange[0] == "None" and valrange[1] != "None": - print("{", file=fp) - print("\"max\" : %s" % valrange[1], file=fp) - print(("},") if (eachvalrange == valranges[len(valranges)-1]) else ("}"), file=fp) - print(("],") if (paramunit != None or paramenum != None or parampattern != None or (hasmapping and islist == 0)) else ("]"), file=fp) - - # add unit - if paramunit != None: - print(("\"unit\" : \"%s\"," % paramunit) if (paramenum != None or parampattern != None or (hasmapping and islist == 0)) else ("\"unit\" : \"%s\"" % paramunit), file=fp) - - # add enumaration - if paramenum != None: - print(("\"enumerations\" : [%s]," % paramenum) if (parampattern != None or (hasmapping and islist == 0)) else ("\"enumerations\" : [%s]" % paramenum), file=fp) - - # add pattern - if parampattern != None: - print(("\"pattern\" : [%s]," % parampattern.replace("\\", "\\\\")) if (hasmapping and islist == 0) else ("\"pattern\" : [%s]" % parampattern.replace("\\", "\\\\")), file=fp) - - # close list - if islist == 1: - print(("},") if hasmapping else ("}"), file=fp) - - # add mapping - if hasmapping: - fp.close() - printPARAMMaPPING(mapping) - else: - print("}", file=fp) - fp.close() - -def printCOMMAND( dmparam, dmobject, bbfdm_type ): - fp = open('./.json_tmp', 'a') - print("\"%s\" : {" % dmparam.get('name'), file=fp) - print("\"type\" : \"command\",", file=fp) - inputfound = 0 - outputfound = 0 - for c in dmparam: - if c.tag == "input": - inputfound = 1 - elif c.tag == "output": - outputfound = 1 - - print(("\"protocols\" : [\"usp\"],") if (inputfound or outputfound) else ("\"protocols\" : [\"usp\"]"), file=fp) - - for c in dmparam: - if c.tag == "input": - print("\"input\" : {", file=fp) - for param in c: - if param.tag == "parameter": - fp.close() - printPARAM(param, dmobject, "\"usp\"") - fp = open('./.json_tmp', 'a') - print("}" if outputfound else "},", file=fp) - - if c.tag == "output": - print("\"output\" : {", file=fp) - for param in c: - if param.tag == "parameter": - fp.close() - printPARAM(param, dmobject, "\"usp\"") - fp = open('./.json_tmp', 'a') - print("}", file=fp) - - print("}", file=fp) - fp.close() - -def printusage(): - print("Usage: " + sys.argv[0] + " [Object path]") - print("Examples:") - print(" - " + sys.argv[0] + " tr-181-2-14-1-cwmp-full.xml tr-181-2-14-1-usp-full.xml Device.") - print(" ==> Generate the json file of the sub tree Device. in tr181.json") - print(" - " + sys.argv[0] + " tr-104-2-0-2-cwmp-full.xml tr-104-2-0-2-usp-full.xml Device.Services.VoiceService.") - print(" ==> Generate the json file of the sub tree Device.Services.VoiceService. in tr104.json") - print(" - " + sys.argv[0] + " tr-106-1-2-0-full.xml Device.") - print(" ==> Generate the json file of the sub tree Device. in tr106.json") - print("") - print("Example of xml data model file: https://www.broadband-forum.org/cwmp/tr-181-2-14-1-cwmp-full.xml") - exit(1) - -def getobjectpointer( objname ): - obj = None - for c in model1: - if c.tag == "object" and (c.get('name') == objname or c.get('name') == (objname + "{i}.")): - obj = c - break - return obj - -def chech_each_obj_with_other_obj(model1, model2): - for c in model2: - if c.tag == "object": - found = 0 - for obj in model1: - if obj.tag == "object" and (obj.get('name') == c.get('name')): - found = 1 - break - if found == 0: - if c.get('name').count(".") - (c.get('name')).count("{i}.") != 2: - continue - dmlevel = (c.get('name')).count(".") - (c.get('name')).count("{i}.") + 1 - printopenobject(c) - object_parse_childs(c, dmlevel, 0, 0) - printclosefile () - -def check_if_obj_exist_in_other_xml_file( objname ): - obj = None - found = 0 - for c in model2: - if c.tag == "object" and (c.get('name') == objname.get('name')): - obj = c - found = 1 - break - return obj, found - -def chech_current_param_exist_in_other_obj(obj, c): - bbfdm_type = "" - for param in obj: - if param.tag == "parameter" and param.get('name') == c.get('name'): - bbfdm_type = "\"cwmp\", \"usp\"" - break - if bbfdm_type == "" and "cwmp" in sys.argv[1]: - bbfdm_type = "\"cwmp\"" - elif bbfdm_type == "" and "usp" in sys.argv[1]: - bbfdm_type = "\"usp\"" - return bbfdm_type - -def chech_obj_with_other_obj(obj, dmobject): - for c in obj: - exist = 0 - if c.tag == "parameter": - for param in dmobject: - if param.tag == "parameter" and c.get('name') == param.get('name'): - exist = 1 - break - if exist == 0 and "cwmp" in sys.argv[1]: - printPARAM(c, obj, "\"usp\"") - elif exist == 0 and "usp" in sys.argv[1]: - printPARAM(c, obj, "\"cwmp\"") - if c.tag == "command": - printCOMMAND(c, obj, "\"usp\"") - -def object_parse_childs(dmobject, level, generatelist, check_obj): - if generatelist == 0 and (dmobject.get('name')).count(".") == 2: - generatelistfromfile(dmobject) - if check_obj == 1 and ("tr-181" in sys.argv[1] or "tr-104" in sys.argv[1]): - obj, exist = check_if_obj_exist_in_other_xml_file(dmobject) - - hasobj = objhaschild(dmobject.get('name'), level, check_obj) - hasparam = objhasparam(dmobject) - - if check_obj == 1 and "tr-181" in sys.argv[1] and exist == 0: - printOBJ(dmobject, hasobj, hasparam, "\"cwmp\"") - elif check_obj == 0 and "tr-181" in sys.argv[1]: - printOBJ(dmobject, hasobj, hasparam, "\"usp\"") - else: - printOBJ(dmobject, hasobj, hasparam, "\"cwmp\", \"usp\"") - - if hasparam: - for c in dmobject: - if c.tag == "parameter": - if check_obj == 1 and "tr-181" in sys.argv[1] and exist == 1: - bbfdm_type = chech_current_param_exist_in_other_obj(obj, c) - elif check_obj == 1 and "tr-181" in sys.argv[1] and exist == 0: - bbfdm_type = "\"cwmp\"" - elif check_obj == 0: - bbfdm_type = "\"usp\"" - else: - bbfdm_type = "\"cwmp\", \"usp\"" - printPARAM(c, dmobject, bbfdm_type) - if c.tag == "command": - printCOMMAND(c, dmobject, "\"usp\"") - - if check_obj == 1 and "tr-181" in sys.argv[1] and exist == 1: - chech_obj_with_other_obj(obj, dmobject) - - if hasobj and check_obj: - for c in model1: - objname = c.get('name') - if c.tag == "object" and dmobject.get('name') in objname and (objname.count('.') - objname.count('{i}')) == level: - printopenobject(c) - object_parse_childs(c, level+1, 0, 1) - printclosefile () - - if hasobj and check_obj == 0: - for c in model2: - objname = c.get('name') - if c.tag == "object" and dmobject.get('name') in objname and (objname.count('.') - objname.count('{i}')) == level: - printopenobject(c) - object_parse_childs(c, level+1, 0, 0) - printclosefile () - - return - -def generatejsonfromobj(pobj, pdir): - generatelist = 0 - bbf.create_folder(pdir) - removetmpfiles() - dmlevel = (pobj.get('name')).count(".") - (pobj.get('name')).count("{i}.") + 1 - if (pobj.get('name')).count(".") == 1: - generatelist = 0 - else: - generatelistfromfile(pobj) - generatelist = 1 - printopenfile () - printopenobject(pobj) - object_parse_childs(pobj, dmlevel, generatelist, 1) - if "tr-181" in sys.argv[1] and Root.count(".") == 1: - chech_each_obj_with_other_obj(model1, model2) - - if "tr-181" in sys.argv[1] and pobj.get("name").count(".") == 1: - dmfp = open(pdir + "/tr181.json", "a") - elif "tr-104" in sys.argv[1] and pobj.get("name").count(".") == 2: - dmfp = open(pdir + "/tr104.json", "a") - elif "tr-135" in sys.argv[1] and pobj.get("name").count(".") == 2: - dmfp = open(pdir + "/tr135.json", "a") - elif "tr-106" in sys.argv[1] and pobj.get("name").count(".") == 1: - dmfp = open(pdir + "/tr106.json", "a") - else: - dmfp = open(pdir + "/" + (getname(pobj.get('name'))).lower() + ".json", "a") - - printclosefile () - printclosefile () - updatejsontmpfile () - removelastline () - - f = open("./.json_tmp", "r") - obj = json.load(f, object_pairs_hook=OrderedDict) - dump = json.dumps(obj, indent=4) - tabs = re.sub('\n +', lambda match: '\n' + '\t' * int(len(match.group().strip('\n')) / 4), dump) - - try: - print("%s" % tabs, file=dmfp) - dmfp.close() - except: - pass - - removetmpfiles() - return dmfp.name - - -### main ### -if len(sys.argv) < 4: - printusage() - -if (sys.argv[1]).lower() == "-h" or (sys.argv[1]).lower() == "--help": - printusage() - -is_service_model = 0 -model_root_name = "Root" - -tree1 = xml.parse(sys.argv[1]) -xmlroot1 = tree1.getroot() -model1 = xmlroot1 - -for child in model1: - if child.tag == "model": - model1 = child - -if model1.tag != "model": - print("Wrong %s XML Data model format!" % sys.argv[1]) - exit(1) - -dmroot1 = None -for c in model1: - if c.tag == "object" and c.get("name").count(".") == 1: - dmroot1 = c - break - -#If it is service data model -if dmroot1 == None: - is_service_model = 1 - for c in model1: - if c.tag == "object" and c.get("name").count(".") == 2: - dmroot1 = c - break - -if dmroot1 == None: - print("Wrong %s XML Data model format!" % sys.argv[1]) - exit(1) - -if "tr-181" in sys.argv[1] or "tr-104" in sys.argv[1]: - tree2 = xml.parse(sys.argv[2]) - xmlroot2 = tree2.getroot() - model2 = xmlroot2 - - for child in model2: - if child.tag == "model": - model2 = child - - if model2.tag != "model": - print("Wrong %s XML Data model format!" % sys.argv[2]) - exit(1) - - dmroot2 = None - for c in model2: - if c.tag == "object" and c.get("name").count(".") == 1: - dmroot2 = c - break - - #If it is service data model - if dmroot2 == None: - for c in model2: - if c.tag == "object" and c.get("name").count(".") == 2: - dmroot2 = c - break - - if dmroot2 == None: - print("Wrong %s XML Data model format!" % sys.argv[2]) - exit(1) - -Root = sys.argv[3] - -if "tr-181" in sys.argv[1]: - gendir = "tr181_" + time.strftime("%Y-%m-%d_%H-%M-%S") -elif "tr-104" in sys.argv[1]: - gendir = "tr104_" + time.strftime("%Y-%m-%d_%H-%M-%S") - Root = (sys.argv[3])[len("Device.Services."):] -elif "tr-135" in sys.argv[1]: - gendir = "tr135_" + time.strftime("%Y-%m-%d_%H-%M-%S") - Root = (sys.argv[3])[len("Device.Services."):] -elif "tr-106" in sys.argv[1]: - gendir = "tr106_" + time.strftime("%Y-%m-%d_%H-%M-%S") -else: - gendir = "source_" + time.strftime("%Y-%m-%d_%H-%M-%S") - -objstart = getobjectpointer(Root) - -if objstart == None: - print("Wrong Object Name! %s" % Root) - exit(1) - -filename = generatejsonfromobj(objstart, gendir) - -print(filename) diff --git a/tools/generate_dm_xml.py b/tools/generate_dm_xml.py index f8cf4f43..c1b78844 100755 --- a/tools/generate_dm_xml.py +++ b/tools/generate_dm_xml.py @@ -4,15 +4,11 @@ # Author: Amin Ben Ramdhane import os -import sys -import getopt -import bbf_common as bbf +import argparse import xml.etree.ElementTree as ET import xml.dom.minidom as MD -import numpy as np +import bbf_common as bbf -BBF_REMOTE_DM = None -BBF_VENDOR_LIST = None DM_OBJ_COUNT = 0 DM_PARAM_COUNT = 0 DEVICE_PROTOCOL = "DEVICE_PROTOCOL_DSLFTR069v1" @@ -21,233 +17,288 @@ MANUFACTURER_OUI = "002207" PRODUCT_CLASS = "DG400PRIME" MODEL_NAME = "DG400PRIME-A" SOFTWARE_VERSION = "1.2.3.4" -XML_FORMAT = "BBF" -XML_FILE = "datamodel.xml" -ARRAY_TYPES = { "DMT_STRING" : "string", - "DMT_UNINT" : "unsignedInt", - "DMT_UNLONG" : "unsignedLong", - "DMT_INT" : "int", - "DMT_LONG" : "long", - "DMT_BOOL" : "boolean", - "DMT_TIME" : "dateTime", - "DMT_HEXBIN" : "hexBinary", - "DMT_BASE64" : "base64"} +ARRAY_TYPES = {"DMT_STRING": "string", + "DMT_UNINT": "unsignedInt", + "DMT_UNLONG": "unsignedLong", + "DMT_INT": "int", + "DMT_LONG": "long", + "DMT_BOOL": "boolean", + "DMT_TIME": "dateTime", + "DMT_HEXBIN": "hexBinary", + "DMT_BASE64": "base64"} -def print_dmxml_usage(): - print("Usage: " + sys.argv[0] + " [options...] ") - print("Options: ") - print(" -r, --remote-dm Check OBJ/PARAM under these repositories if it is not found under bbf repo") - print(" -v, --vendor-list Generate data model tree with vendor extension OBJ/PARAM") - print(" -p, --vendor-prefix Generate data model tree using this vendor prefix. Default vendor prefix: %s" % bbf.BBF_VENDOR_PREFIX) - print(" -f, --format Generate data model tree with HDM format. Default format: %s" % XML_FORMAT) - print(" -d, --device-protocol Generate data model tree using this device protocol. Default device protocol: %s" % DEVICE_PROTOCOL) - print(" -m, --manufacturer Generate data model tree using this manufacturer. Default manufacturer: %s" % MANUFACTURER) - print(" -o, --manufacturer-oui Generate data model tree using this manufacturer oui. Default manufacturer oui: %s" % MANUFACTURER_OUI) - print(" -c, --product-class Generate data model tree using this product class. Default product class: %s" % PRODUCT_CLASS) - print(" -n, --model-name Generate data model tree using this model name. Default model name: %s" % MODEL_NAME) - print(" -s, --software-version Generate data model tree using this software version. Default software version: %s" % SOFTWARE_VERSION) - - - print(" -h, --help This help text") - print("Urls: ") - print(" url^(branch,hash,tag) The url with branch, hash or tag to be used") - print("") - print("Examples: ") - print(" - python " + sys.argv[0]) - print(" ==> Generate xml file in %s" % XML_FILE) - print(" - python " + sys.argv[0] + " -f HDM") - print(" ==> Generate xml file with HDM format in %s" % XML_FILE) - print(" - python " + sys.argv[0] + " -v iopsys") - print(" ==> Generate xml file using iopsys extension in %s" % XML_FILE) - print(" - python " + sys.argv[0] + " -r https://dev.iopsys.eu/feed/iopsys.git^devel,https://dev.iopsys.eu/iopsys/mydatamodel.git^5c8e7cb740dc5e425adf53ea574fb529d2823f88") - print(" ==> Generate xml file in %s" % XML_FILE) - print(" - python " + sys.argv[0] + " -v iopsys,openwrt,test -r https://dev.iopsys.eu/feed/iopsys.git^6.0.0ALPHA1 -p X_TEST_COM_") - print(" ==> Generate xml file in %s" % XML_FILE) -def pretty_format( elem ): - elem_string = ET.tostring(elem, 'UTF-8') - reparsed = MD.parseString(elem_string) - return reparsed.toprettyxml(indent=" ") +def pretty_format(elem): + elem_string = ET.tostring(elem, 'UTF-8') + reparsed = MD.parseString(elem_string) + return reparsed.toprettyxml(indent=" ") -def generate_bbf_xml_file(): - global DM_OBJ_COUNT - global DM_PARAM_COUNT - bbf.remove_file(XML_FILE) - root = ET.Element("dm:document") - root.set("xmlns:dm", "urn:broadband-forum-org:cwmp:datamodel-1-8") - root.set("xmlns:dmr", "urn:broadband-forum-org:cwmp:datamodel-report-0-1") - root.set("xmlns:xsi", "http://www.w3.org/2001/XMLSchema-instance") - root.set("xsi:schemaLocation", "urn:broadband-forum-org:cwmp:datamodel-1-8 https://www.broadband-forum.org/cwmp/cwmp-datamodel-1-8.xsd urn:broadband-forum-org:cwmp:datamodel-report-0-1 https://www.broadband-forum.org/cwmp/cwmp-datamodel-report.xsd") - root.set("spec", "urn:broadband-forum-org:tr-181-2-14-1-cwmp") - root.set("file", "tr-181-2-14-1-cwmp-full.xml") +def generate_bbf_xml_file(output_file): + global DM_OBJ_COUNT + global DM_PARAM_COUNT - model = ET.SubElement(root, "model") - model.set("name", "Device:2.14") + bbf.remove_file(output_file) + root = ET.Element("dm:document") + root.set("xmlns:dm", "urn:broadband-forum-org:cwmp:datamodel-1-8") + root.set("xmlns:dmr", "urn:broadband-forum-org:cwmp:datamodel-report-0-1") + root.set("xmlns:xsi", "http://www.w3.org/2001/XMLSchema-instance") + root.set("xsi:schemaLocation", "urn:broadband-forum-org:cwmp:datamodel-1-8 https://www.broadband-forum.org/cwmp/cwmp-datamodel-1-8.xsd urn:broadband-forum-org:cwmp:datamodel-report-0-1 https://www.broadband-forum.org/cwmp/cwmp-datamodel-report.xsd") + root.set("spec", "urn:broadband-forum-org:tr-181-2-14-1-cwmp") + root.set("file", "tr-181-2-14-1-cwmp-full.xml") - for value in bbf.LIST_SUPPORTED_DM: + model = ET.SubElement(root, "model") + model.set("name", "Device:2.14") - obj = value.split(",") - access = "readOnly" if obj[1] == "DMREAD" else "readWrite" + for value in bbf.LIST_SUPPORTED_DM: - if obj[2] == "DMT_OBJ": - ## Object - objec = ET.SubElement(model, "object") - objec.set("name", obj[0]) - objec.set("access", access) - objec.set("minEntries", "0") - objec.set("maxEntries", "20") - DM_OBJ_COUNT += 1 - else: - ## Parameter - parameter = ET.SubElement(objec, "parameter") - parameter.set("name", obj[0][obj[0].rindex('.')+1:]) - parameter.set("access", access) - description = ET.SubElement(parameter, "description") - description.text = str("parameter " + obj[0][obj[0].rindex('.')+1:]) - syntax = ET.SubElement(parameter, "syntax") - ET.SubElement(syntax, ARRAY_TYPES.get(obj[2], None)) - DM_PARAM_COUNT += 1 - - xml_file = open(XML_FILE, "w") - xml_file.write(pretty_format(root)) - xml_file.close() + obj = value.strip().split(",") + access = "readOnly" if obj[1] == "DMREAD" else "readWrite" -def generate_hdm_xml_file(): - global DM_OBJ_COUNT - global DM_PARAM_COUNT + if obj[2] == "DMT_OBJ": + # Object + objec = ET.SubElement(model, "object") + objec.set("name", obj[0]) + objec.set("access", access) + objec.set("minEntries", "0") + objec.set("maxEntries", "20") + DM_OBJ_COUNT += 1 + else: + # Parameter + parameter = ET.SubElement(objec, "parameter") + parameter.set("name", obj[0][obj[0].rindex('.')+1:]) + parameter.set("access", access) + description = ET.SubElement(parameter, "description") + description.text = str( + "parameter " + obj[0][obj[0].rindex('.')+1:]) + syntax = ET.SubElement(parameter, "syntax") + ET.SubElement(syntax, ARRAY_TYPES.get(obj[2], None)) + DM_PARAM_COUNT += 1 - bbf.remove_file(XML_FILE) - root = ET.Element("deviceType") - root.set("xmlns", "urn:dslforum-org:hdm-0-0") - root.set("xmlns:xsi", "http://www.w3.org/2001/XMLSchema-instance") - root.set("xsi:schemaLocation", "urn:dslforum-org:hdm-0-0 deviceType.xsd") + xml_file = open(output_file, "w") + xml_file.write(pretty_format(root)) + xml_file.close() - protocol = ET.SubElement(root, "protocol") - protocol.text = str(DEVICE_PROTOCOL) - manufacturer = ET.SubElement(root, "manufacturer") - manufacturer.text = str(MANUFACTURER) - manufacturerOUI = ET.SubElement(root, "manufacturerOUI") - manufacturerOUI.text = str(MANUFACTURER_OUI) - productClass = ET.SubElement(root, "productClass") - productClass.text = str(PRODUCT_CLASS) - modelName = ET.SubElement(root, "modelName") - modelName.text = str(MODEL_NAME) - softwareVersion = ET.SubElement(root, "softwareVersion") - softwareVersion.text = str(SOFTWARE_VERSION) - type = ET.SubElement(root, "type") - type.text = str("Device:2") - dataModel = ET.SubElement(root, "dataModel") - attributes = ET.SubElement(dataModel, "attributes") - parameters = ET.SubElement(dataModel, "parameters") - - attribute_notification = ET.SubElement(attributes, "attribute") - attributeName = ET.SubElement(attribute_notification, "attributeName") - attributeName.text = str("notification") - attributeType = ET.SubElement(attribute_notification, "attributeType") - attributeType.text = str("int") - minValue = ET.SubElement(attribute_notification, "minValue") - minValue.text = str("0") - maxValue = ET.SubElement(attribute_notification, "maxValue") - maxValue.text = str("2") - - attribute_access_list = ET.SubElement(attributes, "attribute") - attributeName = ET.SubElement(attribute_access_list, "attributeName") - attributeName.text = str("accessList") - attributeType = ET.SubElement(attribute_access_list, "attributeType") - attributeType.text = str("string") - array = ET.SubElement(attribute_access_list, "array") - array.text = str("true") - attributeLength = ET.SubElement(attribute_access_list, "attributeLength") - attributeLength.text = str("64") - - attribute_visibility = ET.SubElement(attributes, "attribute") - attributeName = ET.SubElement(attribute_visibility, "attributeName") - attributeName.text = str("visibility") - attributeType = ET.SubElement(attribute_visibility, "attributeType") - attributeType.text = str("string") - array = ET.SubElement(attribute_visibility, "array") - array.text = str("true") - attributeLength = ET.SubElement(attribute_visibility, "attributeLength") - attributeLength.text = str("64") +def generate_hdm_xml_file(output_file): + global DM_OBJ_COUNT + global DM_PARAM_COUNT - param_array = np.empty(15, dtype=ET.Element) - param_array[0] = parameters + bbf.remove_file(output_file) + root = ET.Element("deviceType") + root.set("xmlns", "urn:dslforum-org:hdm-0-0") + root.set("xmlns:xsi", "http://www.w3.org/2001/XMLSchema-instance") + root.set("xsi:schemaLocation", "urn:dslforum-org:hdm-0-0 deviceType.xsd") - for value in bbf.LIST_SUPPORTED_DM: + protocol = ET.SubElement(root, "protocol") + protocol.text = str(DEVICE_PROTOCOL) + manufacturer = ET.SubElement(root, "manufacturer") + manufacturer.text = str(MANUFACTURER) + manufacturerOUI = ET.SubElement(root, "manufacturerOUI") + manufacturerOUI.text = str(MANUFACTURER_OUI) + productClass = ET.SubElement(root, "productClass") + productClass.text = str(PRODUCT_CLASS) + modelName = ET.SubElement(root, "modelName") + modelName.text = str(MODEL_NAME) + softwareVersion = ET.SubElement(root, "softwareVersion") + softwareVersion.text = str(SOFTWARE_VERSION) + dm_type = ET.SubElement(root, "type") + dm_type.text = str("Device:2") - obj = value.split(",") + dataModel = ET.SubElement(root, "dataModel") + attributes = ET.SubElement(dataModel, "attributes") + parameters = ET.SubElement(dataModel, "parameters") - if obj[2] == "DMT_OBJ": - ## Object - obj_tag = ET.SubElement(param_array[obj[0].replace(".{i}", "").count('.')-1], "parameter") - obj_name = ET.SubElement(obj_tag, "parameterName") - obj_name.text = str(obj[0].replace(".{i}", "").split('.')[-2]) - obj_type = ET.SubElement(obj_tag, "parameterType") - obj_type.text = str("object") - obj_array = ET.SubElement(obj_tag, "array") - obj_array.text = str("true" if obj[0].endswith(".{i}.") else "false") - parameters = ET.SubElement(obj_tag, "parameters") - param_array[obj[0].replace(".{i}", "").count('.')] = parameters - DM_OBJ_COUNT += 1 - else: - ## Parameter - param_tag = ET.SubElement(param_array[obj[0].replace(".{i}", "").count('.')], "parameter") - param_name = ET.SubElement(param_tag, "parameterName") - param_name.text = str(obj[0][obj[0].rindex('.')+1:]) - param_type = ET.SubElement(param_tag, "parameterType") - param_type.text = str(ARRAY_TYPES.get(obj[2], None)) - DM_PARAM_COUNT += 1 + attribute_notification = ET.SubElement(attributes, "attribute") + attributeName = ET.SubElement(attribute_notification, "attributeName") + attributeName.text = str("notification") + attributeType = ET.SubElement(attribute_notification, "attributeType") + attributeType.text = str("int") + minValue = ET.SubElement(attribute_notification, "minValue") + minValue.text = str("0") + maxValue = ET.SubElement(attribute_notification, "maxValue") + maxValue.text = str("2") - xml_file = open(XML_FILE, "w") - xml_file.write(pretty_format(root)) - xml_file.close() + attribute_access_list = ET.SubElement(attributes, "attribute") + attributeName = ET.SubElement(attribute_access_list, "attributeName") + attributeName.text = str("accessList") + attributeType = ET.SubElement(attribute_access_list, "attributeType") + attributeType.text = str("string") + array = ET.SubElement(attribute_access_list, "array") + array.text = str("true") + attributeLength = ET.SubElement(attribute_access_list, "attributeLength") + attributeLength.text = str("64") -try: - opts, args = getopt.getopt(sys.argv[1:], "hr:v:p:d:m:o:c:n:s:f:", ["remote-dm=", "vendor-list=", "vendor-prefix=", "device-protocol=", "manufacturer=", "manufacturer-oui=", "product-class=", "model-name=", "software-version=", "format="]) -except getopt.GetoptError: - print_dmxml_usage() - exit(1) + attribute_visibility = ET.SubElement(attributes, "attribute") + attributeName = ET.SubElement(attribute_visibility, "attributeName") + attributeName.text = str("visibility") + attributeType = ET.SubElement(attribute_visibility, "attributeType") + attributeType.text = str("string") + array = ET.SubElement(attribute_visibility, "array") + array.text = str("true") + attributeLength = ET.SubElement(attribute_visibility, "attributeLength") + attributeLength.text = str("64") -for opt, arg in opts: - if opt in ("-h", "--help"): - print_dmxml_usage() - exit(1) - elif opt in ("-r", "--remote-dm"): - BBF_REMOTE_DM = arg - elif opt in ("-v", "--vendor-list"): - BBF_VENDOR_LIST = arg - elif opt in ("-p", "--vendor-prefix"): - bbf.BBF_VENDOR_PREFIX = arg - elif opt in ("-d", "--device-protocol"): - DEVICE_PROTOCOL = arg - elif opt in ("-m", "--manufacturer"): - MANUFACTURER = arg - elif opt in ("-o", "--manufacturer-oui"): - MANUFACTURER_OUI = arg - elif opt in ("-c", "--product-class"): - PRODUCT_CLASS = arg - elif opt in ("-n", "--model-name"): - MODEL_NAME = arg - elif opt in ("-s", "--software-version"): - SOFTWARE_VERSION = arg - elif opt in ("-f", "--format"): - XML_FORMAT = arg + #param_array = np.empty(15, dtype=ET.Element) + param_array = [ET.Element] * 15 + param_array[0] = parameters -bbf.generate_supported_dm(BBF_REMOTE_DM, BBF_VENDOR_LIST) + for value in bbf.LIST_SUPPORTED_DM: -if XML_FORMAT == "HDM": - generate_hdm_xml_file() -else: - generate_bbf_xml_file() + obj = value.strip().split(",") -print("Number of BBF Data Models objects is %d" % DM_OBJ_COUNT) -print("Number of BBF Data Models parameters is %d" % DM_PARAM_COUNT) -print("End of BBF Data Models Generation") + if obj[2] == "DMT_OBJ": + # Object + obj_tag = ET.SubElement( + param_array[obj[0].replace(".{i}", "").count('.')-1], "parameter") + obj_name = ET.SubElement(obj_tag, "parameterName") + obj_name.text = str(obj[0].replace(".{i}", "").split('.')[-2]) + obj_type = ET.SubElement(obj_tag, "parameterType") + obj_type.text = str("object") + obj_array = ET.SubElement(obj_tag, "array") + obj_array.text = str( + "true" if obj[0].endswith(".{i}.") else "false") + parameters = ET.SubElement(obj_tag, "parameters") + param_array[obj[0].replace(".{i}", "").count('.')] = parameters + DM_OBJ_COUNT += 1 + else: + # Parameter + param_tag = ET.SubElement( + param_array[obj[0].replace(".{i}", "").count('.')], "parameter") + param_name = ET.SubElement(param_tag, "parameterName") + param_name.text = str(obj[0][obj[0].rindex('.')+1:]) + param_type = ET.SubElement(param_tag, "parameterType") + param_type.text = str(ARRAY_TYPES.get(obj[2], None)) + DM_PARAM_COUNT += 1 -if (os.path.isfile(XML_FILE)): - print("XML file generated: %s" % XML_FILE) -else: - print("No XML file generated!") \ No newline at end of file + xml_file = open(output_file, "w") + xml_file.write(pretty_format(root)) + xml_file.close() + +def generate_xml(acs = 'default', output_file="datamodel.xml"): + print("Generating BBF Data Models in xml format for %s acs..." % acs) + bbf.fill_list_supported_dm() + + if acs == "HDM": + generate_hdm_xml_file(output_file) + else: + generate_bbf_xml_file(output_file) + + if os.path.isfile(output_file): + print("├── XML file generated: %s" % output_file) + else: + print("├── Error in generating xml file") + + print("├── Number of BBF Data Models objects is %d" % DM_OBJ_COUNT) + print("└── Number of BBF Data Models parameters is %d" % DM_PARAM_COUNT) + +### main ### +if __name__ == '__main__': + parser = argparse.ArgumentParser( + description='Script to generate list of supported and non-supported parameter in xml format', + epilog='Part of BBF-tools, refer Readme for more examples' + ) + + parser.add_argument( + '-r', '--remote-dm', + action='append', + metavar = 'https://dev.iopsys.eu/iopsys/stunc.git^devel', + help= 'Includes OBJ/PARAM defined under remote repositories defined as bbf plugin' + ) + + parser.add_argument( + '-v', '--vendor-list', + metavar='iopsys', + action = 'append', + help='Generate data model tree with vendor extension OBJ/PARAM.' + ) + + parser.add_argument( + '-p', '--vendor-prefix', + default = 'iopsys', + metavar = 'X_IOPSYS_EU_', + help = 'Generate data model tree using provided vendor prefix for vendor defined objects.' + ) + + parser.add_argument( + '-d', '--device-protocol', + default = 'DEVICE_PROTOCOL_DSLFTR069v1', + metavar = 'DEVICE_PROTOCOL_DSLFTR069v1', + help = 'Generate data model tree using this device protocol.' + ) + + parser.add_argument( + "-m", "--manufacturer", + default = 'iopsys', + metavar = 'iopsys', + help = 'Generate data model tree using this manufacturer.' + ) + + parser.add_argument( + "-u", "--manufacturer-oui", + default = '002207', + metavar = '002207', + help = 'Generate data model tree using this manufacturer oui.' + ) + + parser.add_argument( + "-c", "--product-class", + default = 'DG400PRIME', + metavar = 'DG400PRIME', + help = 'Generate data model tree using this product class.' + ) + + parser.add_argument( + "-n", "--model-name", + default = 'DG400PRIME-A', + metavar = 'DG400PRIME-A', + help = 'Generate data model tree using this model name.' + ) + + parser.add_argument( + "-s", "--software-version", + default = '1.2.3.4', + metavar = '1.2.3.4', + help = 'Generate data model tree using this software version.' + ) + + parser.add_argument( + "-f", "--format", + metavar = 'BBF', + default = 'BBF', + choices=['HDM', 'BBF', 'default'], + help = 'Generate data model tree with HDM format.' + ) + + parser.add_argument( + '-o', '--output', + default = "datamodel.xml", + metavar = "datamodel.xml", + help = 'Generate the output file with given name' + ) + + args = parser.parse_args() + MANUFACTURER = args.manufacturer + DEVICE_PROTOCOL = args.device_protocol + MANUFACTURER_OUI = args.manufacturer_oui + PRODUCT_CLASS = args.product_class + MODEL_NAME = args.model_name + SOFTWARE_VERSION = args.software_version + + plugins = [] + + if isinstance(args.remote_dm, list): + for f in args.remote_dm: + x = f.split('^') + r = {} + r["repo"] = x[0] + if len(x) == 2: + r["version"] = x[1] + + plugins.append(r) + + bbf.generate_supported_dm(args.vendor_prefix, args.vendor_list, plugins) + bbf.clean_supported_dm_list() + generate_xml(args.format, args.output) + print("Datamodel generation completed, aritifacts available in %s" %args.output) diff --git a/tools/tools_input.json b/tools/tools_input.json new file mode 100644 index 00000000..4fc1ad67 --- /dev/null +++ b/tools/tools_input.json @@ -0,0 +1,64 @@ +{ + "manufacturer": "iopsys", + "protocol": "DEVICE_PROTOCOL_DSLFTR069v1", + "manufacturer_oui": "002207", + "product_class": "DG400PRIME", + "model_name": "DG400PRIME-A", + "software_version": "1.2.3.4", + "vendor_list": [ + "iopsys", + "openwrt" + ], + "vendor_prefix": "X_IOPSYS_EU_", + "plugins": [ + { + "repo": "https://dev.iopsys.eu/iopsys/bulkdata.git", + "dm_files": [ + "datamodel.c" + ] + }, + { + "repo": "https://dev.iopsys.eu/iopsys/xmppc.git" + }, + { + "repo": "https://dev.iopsys.eu/iopsys/stunc.git", + "version": "devel", + "dm_files": [ + "datamodel.c" + ] + }, + { + "repo": "https://dev.iopsys.eu/iopsys/udpechoserver.git", + "version": "master", + "dm_files": [ + "datamodel.c" + ] + }, + { + "repo": "https://dev.iopsys.eu/iopsys/twamp.git", + "version": "master", + "dm_files": [ + "datamodel.c" + ] + }, + { + "repo": "https://dev.iopsys.eu/iopsys/periodicstats.git", + "version": "devel", + "dm_files": [ + "bbf_plugin/bbf_plugin.c" + ] + } + ], + "output": { + "acs": [ + "default", + "hdm" + ], + "file_format": [ + "xls", + "xml" + ], + "output_dir": "./out", + "output_file_prefix": "datamodel" + } +}