diff --git a/cmts_api_env/lib/python3.12/site-packages/psycopg2/__init__.py b/cmts_api_env/lib/python3.12/site-packages/psycopg2/__init__.py new file mode 100644 index 0000000..59a8938 --- /dev/null +++ b/cmts_api_env/lib/python3.12/site-packages/psycopg2/__init__.py @@ -0,0 +1,126 @@ +"""A Python driver for PostgreSQL + +psycopg is a PostgreSQL_ database adapter for the Python_ programming +language. This is version 2, a complete rewrite of the original code to +provide new-style classes for connection and cursor objects and other sweet +candies. Like the original, psycopg 2 was written with the aim of being very +small and fast, and stable as a rock. + +Homepage: https://psycopg.org/ + +.. _PostgreSQL: https://www.postgresql.org/ +.. _Python: https://www.python.org/ + +:Groups: + * `Connections creation`: connect + * `Value objects constructors`: Binary, Date, DateFromTicks, Time, + TimeFromTicks, Timestamp, TimestampFromTicks +""" +# psycopg/__init__.py - initialization of the psycopg module +# +# Copyright (C) 2003-2019 Federico Di Gregorio +# Copyright (C) 2020-2021 The Psycopg Team +# +# psycopg2 is free software: you can redistribute it and/or modify it +# under the terms of the GNU Lesser General Public License as published +# by the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# In addition, as a special exception, the copyright holders give +# permission to link this program with the OpenSSL library (or with +# modified versions of OpenSSL that use the same license as OpenSSL), +# and distribute linked combinations including the two. +# +# You must obey the GNU Lesser General Public License in all respects for +# all of the code used other than OpenSSL. +# +# psycopg2 is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public +# License for more details. + +# Import modules needed by _psycopg to allow tools like py2exe to do +# their work without bothering about the module dependencies. + +# Note: the first internal import should be _psycopg, otherwise the real cause +# of a failed loading of the C module may get hidden, see +# https://archives.postgresql.org/psycopg/2011-02/msg00044.php + +# Import the DBAPI-2.0 stuff into top-level module. + +from psycopg2._psycopg import ( # noqa + BINARY, NUMBER, STRING, DATETIME, ROWID, + + Binary, Date, Time, Timestamp, + DateFromTicks, TimeFromTicks, TimestampFromTicks, + + Error, Warning, DataError, DatabaseError, ProgrammingError, IntegrityError, + InterfaceError, InternalError, NotSupportedError, OperationalError, + + _connect, apilevel, threadsafety, paramstyle, + __version__, __libpq_version__, +) + + +# Register default adapters. + +from psycopg2 import extensions as _ext +_ext.register_adapter(tuple, _ext.SQL_IN) +_ext.register_adapter(type(None), _ext.NoneAdapter) + +# Register the Decimal adapter here instead of in the C layer. +# This way a new class is registered for each sub-interpreter. +# See ticket #52 +from decimal import Decimal # noqa +from psycopg2._psycopg import Decimal as Adapter # noqa +_ext.register_adapter(Decimal, Adapter) +del Decimal, Adapter + + +def connect(dsn=None, connection_factory=None, cursor_factory=None, **kwargs): + """ + Create a new database connection. + + The connection parameters can be specified as a string: + + conn = psycopg2.connect("dbname=test user=postgres password=secret") + + or using a set of keyword arguments: + + conn = psycopg2.connect(database="test", user="postgres", password="secret") + + Or as a mix of both. The basic connection parameters are: + + - *dbname*: the database name + - *database*: the database name (only as keyword argument) + - *user*: user name used to authenticate + - *password*: password used to authenticate + - *host*: database host address (defaults to UNIX socket if not provided) + - *port*: connection port number (defaults to 5432 if not provided) + + Using the *connection_factory* parameter a different class or connections + factory can be specified. It should be a callable object taking a dsn + argument. + + Using the *cursor_factory* parameter, a new default cursor factory will be + used by cursor(). + + Using *async*=True an asynchronous connection will be created. *async_* is + a valid alias (for Python versions where ``async`` is a keyword). + + Any other keyword parameter will be passed to the underlying client + library: the list of supported parameters depends on the library version. + + """ + kwasync = {} + if 'async' in kwargs: + kwasync['async'] = kwargs.pop('async') + if 'async_' in kwargs: + kwasync['async_'] = kwargs.pop('async_') + + dsn = _ext.make_dsn(dsn, **kwargs) + conn = _connect(dsn, connection_factory=connection_factory, **kwasync) + if cursor_factory is not None: + conn.cursor_factory = cursor_factory + + return conn diff --git a/cmts_api_env/lib/python3.12/site-packages/psycopg2/_ipaddress.py b/cmts_api_env/lib/python3.12/site-packages/psycopg2/_ipaddress.py new file mode 100644 index 0000000..d38566c --- /dev/null +++ b/cmts_api_env/lib/python3.12/site-packages/psycopg2/_ipaddress.py @@ -0,0 +1,90 @@ +"""Implementation of the ipaddres-based network types adaptation +""" + +# psycopg/_ipaddress.py - Ipaddres-based network types adaptation +# +# Copyright (C) 2016-2019 Daniele Varrazzo +# Copyright (C) 2020-2021 The Psycopg Team +# +# psycopg2 is free software: you can redistribute it and/or modify it +# under the terms of the GNU Lesser General Public License as published +# by the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# In addition, as a special exception, the copyright holders give +# permission to link this program with the OpenSSL library (or with +# modified versions of OpenSSL that use the same license as OpenSSL), +# and distribute linked combinations including the two. +# +# You must obey the GNU Lesser General Public License in all respects for +# all of the code used other than OpenSSL. +# +# psycopg2 is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public +# License for more details. + +from psycopg2.extensions import ( + new_type, new_array_type, register_type, register_adapter, QuotedString) + +# The module is imported on register_ipaddress +ipaddress = None + +# The typecasters are created only once +_casters = None + + +def register_ipaddress(conn_or_curs=None): + """ + Register conversion support between `ipaddress` objects and `network types`__. + + :param conn_or_curs: the scope where to register the type casters. + If `!None` register them globally. + + After the function is called, PostgreSQL :sql:`inet` values will be + converted into `~ipaddress.IPv4Interface` or `~ipaddress.IPv6Interface` + objects, :sql:`cidr` values into into `~ipaddress.IPv4Network` or + `~ipaddress.IPv6Network`. + + .. __: https://www.postgresql.org/docs/current/static/datatype-net-types.html + """ + global ipaddress + import ipaddress + + global _casters + if _casters is None: + _casters = _make_casters() + + for c in _casters: + register_type(c, conn_or_curs) + + for t in [ipaddress.IPv4Interface, ipaddress.IPv6Interface, + ipaddress.IPv4Network, ipaddress.IPv6Network]: + register_adapter(t, adapt_ipaddress) + + +def _make_casters(): + inet = new_type((869,), 'INET', cast_interface) + ainet = new_array_type((1041,), 'INET[]', inet) + + cidr = new_type((650,), 'CIDR', cast_network) + acidr = new_array_type((651,), 'CIDR[]', cidr) + + return [inet, ainet, cidr, acidr] + + +def cast_interface(s, cur=None): + if s is None: + return None + # Py2 version force the use of unicode. meh. + return ipaddress.ip_interface(str(s)) + + +def cast_network(s, cur=None): + if s is None: + return None + return ipaddress.ip_network(str(s)) + + +def adapt_ipaddress(obj): + return QuotedString(str(obj)) diff --git a/cmts_api_env/lib/python3.12/site-packages/psycopg2/_json.py b/cmts_api_env/lib/python3.12/site-packages/psycopg2/_json.py new file mode 100644 index 0000000..9502422 --- /dev/null +++ b/cmts_api_env/lib/python3.12/site-packages/psycopg2/_json.py @@ -0,0 +1,199 @@ +"""Implementation of the JSON adaptation objects + +This module exists to avoid a circular import problem: pyscopg2.extras depends +on psycopg2.extension, so I can't create the default JSON typecasters in +extensions importing register_json from extras. +""" + +# psycopg/_json.py - Implementation of the JSON adaptation objects +# +# Copyright (C) 2012-2019 Daniele Varrazzo +# Copyright (C) 2020-2021 The Psycopg Team +# +# psycopg2 is free software: you can redistribute it and/or modify it +# under the terms of the GNU Lesser General Public License as published +# by the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# In addition, as a special exception, the copyright holders give +# permission to link this program with the OpenSSL library (or with +# modified versions of OpenSSL that use the same license as OpenSSL), +# and distribute linked combinations including the two. +# +# You must obey the GNU Lesser General Public License in all respects for +# all of the code used other than OpenSSL. +# +# psycopg2 is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public +# License for more details. + +import json + +from psycopg2._psycopg import ISQLQuote, QuotedString +from psycopg2._psycopg import new_type, new_array_type, register_type + + +# oids from PostgreSQL 9.2 +JSON_OID = 114 +JSONARRAY_OID = 199 + +# oids from PostgreSQL 9.4 +JSONB_OID = 3802 +JSONBARRAY_OID = 3807 + + +class Json: + """ + An `~psycopg2.extensions.ISQLQuote` wrapper to adapt a Python object to + :sql:`json` data type. + + `!Json` can be used to wrap any object supported by the provided *dumps* + function. If none is provided, the standard :py:func:`json.dumps()` is + used. + + """ + def __init__(self, adapted, dumps=None): + self.adapted = adapted + self._conn = None + self._dumps = dumps or json.dumps + + def __conform__(self, proto): + if proto is ISQLQuote: + return self + + def dumps(self, obj): + """Serialize *obj* in JSON format. + + The default is to call `!json.dumps()` or the *dumps* function + provided in the constructor. You can override this method to create a + customized JSON wrapper. + """ + return self._dumps(obj) + + def prepare(self, conn): + self._conn = conn + + def getquoted(self): + s = self.dumps(self.adapted) + qs = QuotedString(s) + if self._conn is not None: + qs.prepare(self._conn) + return qs.getquoted() + + def __str__(self): + # getquoted is binary + return self.getquoted().decode('ascii', 'replace') + + +def register_json(conn_or_curs=None, globally=False, loads=None, + oid=None, array_oid=None, name='json'): + """Create and register typecasters converting :sql:`json` type to Python objects. + + :param conn_or_curs: a connection or cursor used to find the :sql:`json` + and :sql:`json[]` oids; the typecasters are registered in a scope + limited to this object, unless *globally* is set to `!True`. It can be + `!None` if the oids are provided + :param globally: if `!False` register the typecasters only on + *conn_or_curs*, otherwise register them globally + :param loads: the function used to parse the data into a Python object. If + `!None` use `!json.loads()`, where `!json` is the module chosen + according to the Python version (see above) + :param oid: the OID of the :sql:`json` type if known; If not, it will be + queried on *conn_or_curs* + :param array_oid: the OID of the :sql:`json[]` array type if known; + if not, it will be queried on *conn_or_curs* + :param name: the name of the data type to look for in *conn_or_curs* + + The connection or cursor passed to the function will be used to query the + database and look for the OID of the :sql:`json` type (or an alternative + type if *name* if provided). No query is performed if *oid* and *array_oid* + are provided. Raise `~psycopg2.ProgrammingError` if the type is not found. + + """ + if oid is None: + oid, array_oid = _get_json_oids(conn_or_curs, name) + + JSON, JSONARRAY = _create_json_typecasters( + oid, array_oid, loads=loads, name=name.upper()) + + register_type(JSON, not globally and conn_or_curs or None) + + if JSONARRAY is not None: + register_type(JSONARRAY, not globally and conn_or_curs or None) + + return JSON, JSONARRAY + + +def register_default_json(conn_or_curs=None, globally=False, loads=None): + """ + Create and register :sql:`json` typecasters for PostgreSQL 9.2 and following. + + Since PostgreSQL 9.2 :sql:`json` is a builtin type, hence its oid is known + and fixed. This function allows specifying a customized *loads* function + for the default :sql:`json` type without querying the database. + All the parameters have the same meaning of `register_json()`. + """ + return register_json(conn_or_curs=conn_or_curs, globally=globally, + loads=loads, oid=JSON_OID, array_oid=JSONARRAY_OID) + + +def register_default_jsonb(conn_or_curs=None, globally=False, loads=None): + """ + Create and register :sql:`jsonb` typecasters for PostgreSQL 9.4 and following. + + As in `register_default_json()`, the function allows to register a + customized *loads* function for the :sql:`jsonb` type at its known oid for + PostgreSQL 9.4 and following versions. All the parameters have the same + meaning of `register_json()`. + """ + return register_json(conn_or_curs=conn_or_curs, globally=globally, + loads=loads, oid=JSONB_OID, array_oid=JSONBARRAY_OID, name='jsonb') + + +def _create_json_typecasters(oid, array_oid, loads=None, name='JSON'): + """Create typecasters for json data type.""" + if loads is None: + loads = json.loads + + def typecast_json(s, cur): + if s is None: + return None + return loads(s) + + JSON = new_type((oid, ), name, typecast_json) + if array_oid is not None: + JSONARRAY = new_array_type((array_oid, ), f"{name}ARRAY", JSON) + else: + JSONARRAY = None + + return JSON, JSONARRAY + + +def _get_json_oids(conn_or_curs, name='json'): + # lazy imports + from psycopg2.extensions import STATUS_IN_TRANSACTION + from psycopg2.extras import _solve_conn_curs + + conn, curs = _solve_conn_curs(conn_or_curs) + + # Store the transaction status of the connection to revert it after use + conn_status = conn.status + + # column typarray not available before PG 8.3 + typarray = conn.info.server_version >= 80300 and "typarray" or "NULL" + + # get the oid for the hstore + curs.execute( + "SELECT t.oid, %s FROM pg_type t WHERE t.typname = %%s;" + % typarray, (name,)) + r = curs.fetchone() + + # revert the status of the connection as before the command + if conn_status != STATUS_IN_TRANSACTION and not conn.autocommit: + conn.rollback() + + if not r: + raise conn.ProgrammingError(f"{name} data type not found") + + return r diff --git a/cmts_api_env/lib/python3.12/site-packages/psycopg2/_psycopg.cpython-312-x86_64-linux-gnu.so b/cmts_api_env/lib/python3.12/site-packages/psycopg2/_psycopg.cpython-312-x86_64-linux-gnu.so new file mode 100644 index 0000000..5b8a901 Binary files /dev/null and b/cmts_api_env/lib/python3.12/site-packages/psycopg2/_psycopg.cpython-312-x86_64-linux-gnu.so differ diff --git a/cmts_api_env/lib/python3.12/site-packages/psycopg2/_range.py b/cmts_api_env/lib/python3.12/site-packages/psycopg2/_range.py new file mode 100644 index 0000000..64bae07 --- /dev/null +++ b/cmts_api_env/lib/python3.12/site-packages/psycopg2/_range.py @@ -0,0 +1,554 @@ +"""Implementation of the Range type and adaptation + +""" + +# psycopg/_range.py - Implementation of the Range type and adaptation +# +# Copyright (C) 2012-2019 Daniele Varrazzo +# Copyright (C) 2020-2021 The Psycopg Team +# +# psycopg2 is free software: you can redistribute it and/or modify it +# under the terms of the GNU Lesser General Public License as published +# by the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# In addition, as a special exception, the copyright holders give +# permission to link this program with the OpenSSL library (or with +# modified versions of OpenSSL that use the same license as OpenSSL), +# and distribute linked combinations including the two. +# +# You must obey the GNU Lesser General Public License in all respects for +# all of the code used other than OpenSSL. +# +# psycopg2 is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public +# License for more details. + +import re + +from psycopg2._psycopg import ProgrammingError, InterfaceError +from psycopg2.extensions import ISQLQuote, adapt, register_adapter +from psycopg2.extensions import new_type, new_array_type, register_type + + +class Range: + """Python representation for a PostgreSQL |range|_ type. + + :param lower: lower bound for the range. `!None` means unbound + :param upper: upper bound for the range. `!None` means unbound + :param bounds: one of the literal strings ``()``, ``[)``, ``(]``, ``[]``, + representing whether the lower or upper bounds are included + :param empty: if `!True`, the range is empty + + """ + __slots__ = ('_lower', '_upper', '_bounds') + + def __init__(self, lower=None, upper=None, bounds='[)', empty=False): + if not empty: + if bounds not in ('[)', '(]', '()', '[]'): + raise ValueError(f"bound flags not valid: {bounds!r}") + + self._lower = lower + self._upper = upper + self._bounds = bounds + else: + self._lower = self._upper = self._bounds = None + + def __repr__(self): + if self._bounds is None: + return f"{self.__class__.__name__}(empty=True)" + else: + return "{}({!r}, {!r}, {!r})".format(self.__class__.__name__, + self._lower, self._upper, self._bounds) + + def __str__(self): + if self._bounds is None: + return 'empty' + + items = [ + self._bounds[0], + str(self._lower), + ', ', + str(self._upper), + self._bounds[1] + ] + return ''.join(items) + + @property + def lower(self): + """The lower bound of the range. `!None` if empty or unbound.""" + return self._lower + + @property + def upper(self): + """The upper bound of the range. `!None` if empty or unbound.""" + return self._upper + + @property + def isempty(self): + """`!True` if the range is empty.""" + return self._bounds is None + + @property + def lower_inf(self): + """`!True` if the range doesn't have a lower bound.""" + if self._bounds is None: + return False + return self._lower is None + + @property + def upper_inf(self): + """`!True` if the range doesn't have an upper bound.""" + if self._bounds is None: + return False + return self._upper is None + + @property + def lower_inc(self): + """`!True` if the lower bound is included in the range.""" + if self._bounds is None or self._lower is None: + return False + return self._bounds[0] == '[' + + @property + def upper_inc(self): + """`!True` if the upper bound is included in the range.""" + if self._bounds is None or self._upper is None: + return False + return self._bounds[1] == ']' + + def __contains__(self, x): + if self._bounds is None: + return False + + if self._lower is not None: + if self._bounds[0] == '[': + if x < self._lower: + return False + else: + if x <= self._lower: + return False + + if self._upper is not None: + if self._bounds[1] == ']': + if x > self._upper: + return False + else: + if x >= self._upper: + return False + + return True + + def __bool__(self): + return self._bounds is not None + + def __eq__(self, other): + if not isinstance(other, Range): + return False + return (self._lower == other._lower + and self._upper == other._upper + and self._bounds == other._bounds) + + def __ne__(self, other): + return not self.__eq__(other) + + def __hash__(self): + return hash((self._lower, self._upper, self._bounds)) + + # as the postgres docs describe for the server-side stuff, + # ordering is rather arbitrary, but will remain stable + # and consistent. + + def __lt__(self, other): + if not isinstance(other, Range): + return NotImplemented + for attr in ('_lower', '_upper', '_bounds'): + self_value = getattr(self, attr) + other_value = getattr(other, attr) + if self_value == other_value: + pass + elif self_value is None: + return True + elif other_value is None: + return False + else: + return self_value < other_value + return False + + def __le__(self, other): + if self == other: + return True + else: + return self.__lt__(other) + + def __gt__(self, other): + if isinstance(other, Range): + return other.__lt__(self) + else: + return NotImplemented + + def __ge__(self, other): + if self == other: + return True + else: + return self.__gt__(other) + + def __getstate__(self): + return {slot: getattr(self, slot) + for slot in self.__slots__ if hasattr(self, slot)} + + def __setstate__(self, state): + for slot, value in state.items(): + setattr(self, slot, value) + + +def register_range(pgrange, pyrange, conn_or_curs, globally=False): + """Create and register an adapter and the typecasters to convert between + a PostgreSQL |range|_ type and a PostgreSQL `Range` subclass. + + :param pgrange: the name of the PostgreSQL |range| type. Can be + schema-qualified + :param pyrange: a `Range` strict subclass, or just a name to give to a new + class + :param conn_or_curs: a connection or cursor used to find the oid of the + range and its subtype; the typecaster is registered in a scope limited + to this object, unless *globally* is set to `!True` + :param globally: if `!False` (default) register the typecaster only on + *conn_or_curs*, otherwise register it globally + :return: `RangeCaster` instance responsible for the conversion + + If a string is passed to *pyrange*, a new `Range` subclass is created + with such name and will be available as the `~RangeCaster.range` attribute + of the returned `RangeCaster` object. + + The function queries the database on *conn_or_curs* to inspect the + *pgrange* type and raises `~psycopg2.ProgrammingError` if the type is not + found. If querying the database is not advisable, use directly the + `RangeCaster` class and register the adapter and typecasters using the + provided functions. + + """ + caster = RangeCaster._from_db(pgrange, pyrange, conn_or_curs) + caster._register(not globally and conn_or_curs or None) + return caster + + +class RangeAdapter: + """`ISQLQuote` adapter for `Range` subclasses. + + This is an abstract class: concrete classes must set a `name` class + attribute or override `getquoted()`. + """ + name = None + + def __init__(self, adapted): + self.adapted = adapted + + def __conform__(self, proto): + if self._proto is ISQLQuote: + return self + + def prepare(self, conn): + self._conn = conn + + def getquoted(self): + if self.name is None: + raise NotImplementedError( + 'RangeAdapter must be subclassed overriding its name ' + 'or the getquoted() method') + + r = self.adapted + if r.isempty: + return b"'empty'::" + self.name.encode('utf8') + + if r.lower is not None: + a = adapt(r.lower) + if hasattr(a, 'prepare'): + a.prepare(self._conn) + lower = a.getquoted() + else: + lower = b'NULL' + + if r.upper is not None: + a = adapt(r.upper) + if hasattr(a, 'prepare'): + a.prepare(self._conn) + upper = a.getquoted() + else: + upper = b'NULL' + + return self.name.encode('utf8') + b'(' + lower + b', ' + upper \ + + b", '" + r._bounds.encode('utf8') + b"')" + + +class RangeCaster: + """Helper class to convert between `Range` and PostgreSQL range types. + + Objects of this class are usually created by `register_range()`. Manual + creation could be useful if querying the database is not advisable: in + this case the oids must be provided. + """ + def __init__(self, pgrange, pyrange, oid, subtype_oid, array_oid=None): + self.subtype_oid = subtype_oid + self._create_ranges(pgrange, pyrange) + + name = self.adapter.name or self.adapter.__class__.__name__ + + self.typecaster = new_type((oid,), name, self.parse) + + if array_oid is not None: + self.array_typecaster = new_array_type( + (array_oid,), name + "ARRAY", self.typecaster) + else: + self.array_typecaster = None + + def _create_ranges(self, pgrange, pyrange): + """Create Range and RangeAdapter classes if needed.""" + # if got a string create a new RangeAdapter concrete type (with a name) + # else take it as an adapter. Passing an adapter should be considered + # an implementation detail and is not documented. It is currently used + # for the numeric ranges. + self.adapter = None + if isinstance(pgrange, str): + self.adapter = type(pgrange, (RangeAdapter,), {}) + self.adapter.name = pgrange + else: + try: + if issubclass(pgrange, RangeAdapter) \ + and pgrange is not RangeAdapter: + self.adapter = pgrange + except TypeError: + pass + + if self.adapter is None: + raise TypeError( + 'pgrange must be a string or a RangeAdapter strict subclass') + + self.range = None + try: + if isinstance(pyrange, str): + self.range = type(pyrange, (Range,), {}) + if issubclass(pyrange, Range) and pyrange is not Range: + self.range = pyrange + except TypeError: + pass + + if self.range is None: + raise TypeError( + 'pyrange must be a type or a Range strict subclass') + + @classmethod + def _from_db(self, name, pyrange, conn_or_curs): + """Return a `RangeCaster` instance for the type *pgrange*. + + Raise `ProgrammingError` if the type is not found. + """ + from psycopg2.extensions import STATUS_IN_TRANSACTION + from psycopg2.extras import _solve_conn_curs + conn, curs = _solve_conn_curs(conn_or_curs) + + if conn.info.server_version < 90200: + raise ProgrammingError("range types not available in version %s" + % conn.info.server_version) + + # Store the transaction status of the connection to revert it after use + conn_status = conn.status + + # Use the correct schema + if '.' in name: + schema, tname = name.split('.', 1) + else: + tname = name + schema = 'public' + + # get the type oid and attributes + curs.execute("""\ +select rngtypid, rngsubtype, typarray +from pg_range r +join pg_type t on t.oid = rngtypid +join pg_namespace ns on ns.oid = typnamespace +where typname = %s and ns.nspname = %s; +""", (tname, schema)) + rec = curs.fetchone() + + if not rec: + # The above algorithm doesn't work for customized seach_path + # (#1487) The implementation below works better, but, to guarantee + # backwards compatibility, use it only if the original one failed. + try: + savepoint = False + # Because we executed statements earlier, we are either INTRANS + # or we are IDLE only if the transaction is autocommit, in + # which case we don't need the savepoint anyway. + if conn.status == STATUS_IN_TRANSACTION: + curs.execute("SAVEPOINT register_type") + savepoint = True + + curs.execute("""\ +SELECT rngtypid, rngsubtype, typarray, typname, nspname +from pg_range r +join pg_type t on t.oid = rngtypid +join pg_namespace ns on ns.oid = typnamespace +WHERE t.oid = %s::regtype +""", (name, )) + except ProgrammingError: + pass + else: + rec = curs.fetchone() + if rec: + tname, schema = rec[3:] + finally: + if savepoint: + curs.execute("ROLLBACK TO SAVEPOINT register_type") + + # revert the status of the connection as before the command + if conn_status != STATUS_IN_TRANSACTION and not conn.autocommit: + conn.rollback() + + if not rec: + raise ProgrammingError( + f"PostgreSQL range '{name}' not found") + + type, subtype, array = rec[:3] + + return RangeCaster(name, pyrange, + oid=type, subtype_oid=subtype, array_oid=array) + + _re_range = re.compile(r""" + ( \(|\[ ) # lower bound flag + (?: # lower bound: + " ( (?: [^"] | "")* ) " # - a quoted string + | ( [^",]+ ) # - or an unquoted string + )? # - or empty (not catched) + , + (?: # upper bound: + " ( (?: [^"] | "")* ) " # - a quoted string + | ( [^"\)\]]+ ) # - or an unquoted string + )? # - or empty (not catched) + ( \)|\] ) # upper bound flag + """, re.VERBOSE) + + _re_undouble = re.compile(r'(["\\])\1') + + def parse(self, s, cur=None): + if s is None: + return None + + if s == 'empty': + return self.range(empty=True) + + m = self._re_range.match(s) + if m is None: + raise InterfaceError(f"failed to parse range: '{s}'") + + lower = m.group(3) + if lower is None: + lower = m.group(2) + if lower is not None: + lower = self._re_undouble.sub(r"\1", lower) + + upper = m.group(5) + if upper is None: + upper = m.group(4) + if upper is not None: + upper = self._re_undouble.sub(r"\1", upper) + + if cur is not None: + lower = cur.cast(self.subtype_oid, lower) + upper = cur.cast(self.subtype_oid, upper) + + bounds = m.group(1) + m.group(6) + + return self.range(lower, upper, bounds) + + def _register(self, scope=None): + register_type(self.typecaster, scope) + if self.array_typecaster is not None: + register_type(self.array_typecaster, scope) + + register_adapter(self.range, self.adapter) + + +class NumericRange(Range): + """A `Range` suitable to pass Python numeric types to a PostgreSQL range. + + PostgreSQL types :sql:`int4range`, :sql:`int8range`, :sql:`numrange` are + casted into `!NumericRange` instances. + """ + pass + + +class DateRange(Range): + """Represents :sql:`daterange` values.""" + pass + + +class DateTimeRange(Range): + """Represents :sql:`tsrange` values.""" + pass + + +class DateTimeTZRange(Range): + """Represents :sql:`tstzrange` values.""" + pass + + +# Special adaptation for NumericRange. Allows to pass number range regardless +# of whether they are ints, floats and what size of ints are, which are +# pointless in Python world. On the way back, no numeric range is casted to +# NumericRange, but only to their subclasses + +class NumberRangeAdapter(RangeAdapter): + """Adapt a range if the subtype doesn't need quotes.""" + def getquoted(self): + r = self.adapted + if r.isempty: + return b"'empty'" + + if not r.lower_inf: + # not exactly: we are relying that none of these object is really + # quoted (they are numbers). Also, I'm lazy and not preparing the + # adapter because I assume encoding doesn't matter for these + # objects. + lower = adapt(r.lower).getquoted().decode('ascii') + else: + lower = '' + + if not r.upper_inf: + upper = adapt(r.upper).getquoted().decode('ascii') + else: + upper = '' + + return (f"'{r._bounds[0]}{lower},{upper}{r._bounds[1]}'").encode('ascii') + + +# TODO: probably won't work with infs, nans and other tricky cases. +register_adapter(NumericRange, NumberRangeAdapter) + +# Register globally typecasters and adapters for builtin range types. + +# note: the adapter is registered more than once, but this is harmless. +int4range_caster = RangeCaster(NumberRangeAdapter, NumericRange, + oid=3904, subtype_oid=23, array_oid=3905) +int4range_caster._register() + +int8range_caster = RangeCaster(NumberRangeAdapter, NumericRange, + oid=3926, subtype_oid=20, array_oid=3927) +int8range_caster._register() + +numrange_caster = RangeCaster(NumberRangeAdapter, NumericRange, + oid=3906, subtype_oid=1700, array_oid=3907) +numrange_caster._register() + +daterange_caster = RangeCaster('daterange', DateRange, + oid=3912, subtype_oid=1082, array_oid=3913) +daterange_caster._register() + +tsrange_caster = RangeCaster('tsrange', DateTimeRange, + oid=3908, subtype_oid=1114, array_oid=3909) +tsrange_caster._register() + +tstzrange_caster = RangeCaster('tstzrange', DateTimeTZRange, + oid=3910, subtype_oid=1184, array_oid=3911) +tstzrange_caster._register() diff --git a/cmts_api_env/lib/python3.12/site-packages/psycopg2/errorcodes.py b/cmts_api_env/lib/python3.12/site-packages/psycopg2/errorcodes.py new file mode 100644 index 0000000..c8898a4 --- /dev/null +++ b/cmts_api_env/lib/python3.12/site-packages/psycopg2/errorcodes.py @@ -0,0 +1,455 @@ +"""Error codes for PostgreSQL + +This module contains symbolic names for all PostgreSQL error codes. +""" +# psycopg2/errorcodes.py - PostgreSQL error codes +# +# Copyright (C) 2006-2019 Johan Dahlin +# Copyright (C) 2020-2021 The Psycopg Team +# +# psycopg2 is free software: you can redistribute it and/or modify it +# under the terms of the GNU Lesser General Public License as published +# by the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# In addition, as a special exception, the copyright holders give +# permission to link this program with the OpenSSL library (or with +# modified versions of OpenSSL that use the same license as OpenSSL), +# and distribute linked combinations including the two. +# +# You must obey the GNU Lesser General Public License in all respects for +# all of the code used other than OpenSSL. +# +# psycopg2 is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public +# License for more details. +# +# Based on: +# +# https://www.postgresql.org/docs/current/static/errcodes-appendix.html +# + + +def lookup(code, _cache={}): + """Lookup an error code or class code and return its symbolic name. + + Raise `KeyError` if the code is not found. + """ + if _cache: + return _cache[code] + + # Generate the lookup map at first usage. + tmp = {} + for k, v in globals().items(): + if isinstance(v, str) and len(v) in (2, 5): + # Strip trailing underscore used to disambiguate duplicate values + tmp[v] = k.rstrip("_") + + assert tmp + + # Atomic update, to avoid race condition on import (bug #382) + _cache.update(tmp) + + return _cache[code] + + +# autogenerated data: do not edit below this point. + +# Error classes +CLASS_SUCCESSFUL_COMPLETION = '00' +CLASS_WARNING = '01' +CLASS_NO_DATA = '02' +CLASS_SQL_STATEMENT_NOT_YET_COMPLETE = '03' +CLASS_CONNECTION_EXCEPTION = '08' +CLASS_TRIGGERED_ACTION_EXCEPTION = '09' +CLASS_FEATURE_NOT_SUPPORTED = '0A' +CLASS_INVALID_TRANSACTION_INITIATION = '0B' +CLASS_LOCATOR_EXCEPTION = '0F' +CLASS_INVALID_GRANTOR = '0L' +CLASS_INVALID_ROLE_SPECIFICATION = '0P' +CLASS_DIAGNOSTICS_EXCEPTION = '0Z' +CLASS_XQUERY_ERROR = '10' +CLASS_CASE_NOT_FOUND = '20' +CLASS_CARDINALITY_VIOLATION = '21' +CLASS_DATA_EXCEPTION = '22' +CLASS_INTEGRITY_CONSTRAINT_VIOLATION = '23' +CLASS_INVALID_CURSOR_STATE = '24' +CLASS_INVALID_TRANSACTION_STATE = '25' +CLASS_INVALID_SQL_STATEMENT_NAME = '26' +CLASS_TRIGGERED_DATA_CHANGE_VIOLATION = '27' +CLASS_INVALID_AUTHORIZATION_SPECIFICATION = '28' +CLASS_DEPENDENT_PRIVILEGE_DESCRIPTORS_STILL_EXIST = '2B' +CLASS_INVALID_TRANSACTION_TERMINATION = '2D' +CLASS_SQL_ROUTINE_EXCEPTION = '2F' +CLASS_INVALID_CURSOR_NAME = '34' +CLASS_EXTERNAL_ROUTINE_EXCEPTION = '38' +CLASS_EXTERNAL_ROUTINE_INVOCATION_EXCEPTION = '39' +CLASS_SAVEPOINT_EXCEPTION = '3B' +CLASS_INVALID_CATALOG_NAME = '3D' +CLASS_INVALID_SCHEMA_NAME = '3F' +CLASS_TRANSACTION_ROLLBACK = '40' +CLASS_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION = '42' +CLASS_WITH_CHECK_OPTION_VIOLATION = '44' +CLASS_INSUFFICIENT_RESOURCES = '53' +CLASS_PROGRAM_LIMIT_EXCEEDED = '54' +CLASS_OBJECT_NOT_IN_PREREQUISITE_STATE = '55' +CLASS_OPERATOR_INTERVENTION = '57' +CLASS_SYSTEM_ERROR = '58' +CLASS_SNAPSHOT_FAILURE = '72' +CLASS_CONFIGURATION_FILE_ERROR = 'F0' +CLASS_FOREIGN_DATA_WRAPPER_ERROR = 'HV' +CLASS_PL_PGSQL_ERROR = 'P0' +CLASS_INTERNAL_ERROR = 'XX' + +# Class 00 - Successful Completion +SUCCESSFUL_COMPLETION = '00000' + +# Class 01 - Warning +WARNING = '01000' +NULL_VALUE_ELIMINATED_IN_SET_FUNCTION = '01003' +STRING_DATA_RIGHT_TRUNCATION_ = '01004' +PRIVILEGE_NOT_REVOKED = '01006' +PRIVILEGE_NOT_GRANTED = '01007' +IMPLICIT_ZERO_BIT_PADDING = '01008' +DYNAMIC_RESULT_SETS_RETURNED = '0100C' +DEPRECATED_FEATURE = '01P01' + +# Class 02 - No Data (this is also a warning class per the SQL standard) +NO_DATA = '02000' +NO_ADDITIONAL_DYNAMIC_RESULT_SETS_RETURNED = '02001' + +# Class 03 - SQL Statement Not Yet Complete +SQL_STATEMENT_NOT_YET_COMPLETE = '03000' + +# Class 08 - Connection Exception +CONNECTION_EXCEPTION = '08000' +SQLCLIENT_UNABLE_TO_ESTABLISH_SQLCONNECTION = '08001' +CONNECTION_DOES_NOT_EXIST = '08003' +SQLSERVER_REJECTED_ESTABLISHMENT_OF_SQLCONNECTION = '08004' +CONNECTION_FAILURE = '08006' +TRANSACTION_RESOLUTION_UNKNOWN = '08007' +PROTOCOL_VIOLATION = '08P01' + +# Class 09 - Triggered Action Exception +TRIGGERED_ACTION_EXCEPTION = '09000' + +# Class 0A - Feature Not Supported +FEATURE_NOT_SUPPORTED = '0A000' + +# Class 0B - Invalid Transaction Initiation +INVALID_TRANSACTION_INITIATION = '0B000' + +# Class 0F - Locator Exception +LOCATOR_EXCEPTION = '0F000' +INVALID_LOCATOR_SPECIFICATION = '0F001' + +# Class 0L - Invalid Grantor +INVALID_GRANTOR = '0L000' +INVALID_GRANT_OPERATION = '0LP01' + +# Class 0P - Invalid Role Specification +INVALID_ROLE_SPECIFICATION = '0P000' + +# Class 0Z - Diagnostics Exception +DIAGNOSTICS_EXCEPTION = '0Z000' +STACKED_DIAGNOSTICS_ACCESSED_WITHOUT_ACTIVE_HANDLER = '0Z002' + +# Class 10 - XQuery Error +INVALID_ARGUMENT_FOR_XQUERY = '10608' + +# Class 20 - Case Not Found +CASE_NOT_FOUND = '20000' + +# Class 21 - Cardinality Violation +CARDINALITY_VIOLATION = '21000' + +# Class 22 - Data Exception +DATA_EXCEPTION = '22000' +STRING_DATA_RIGHT_TRUNCATION = '22001' +NULL_VALUE_NO_INDICATOR_PARAMETER = '22002' +NUMERIC_VALUE_OUT_OF_RANGE = '22003' +NULL_VALUE_NOT_ALLOWED_ = '22004' +ERROR_IN_ASSIGNMENT = '22005' +INVALID_DATETIME_FORMAT = '22007' +DATETIME_FIELD_OVERFLOW = '22008' +INVALID_TIME_ZONE_DISPLACEMENT_VALUE = '22009' +ESCAPE_CHARACTER_CONFLICT = '2200B' +INVALID_USE_OF_ESCAPE_CHARACTER = '2200C' +INVALID_ESCAPE_OCTET = '2200D' +ZERO_LENGTH_CHARACTER_STRING = '2200F' +MOST_SPECIFIC_TYPE_MISMATCH = '2200G' +SEQUENCE_GENERATOR_LIMIT_EXCEEDED = '2200H' +NOT_AN_XML_DOCUMENT = '2200L' +INVALID_XML_DOCUMENT = '2200M' +INVALID_XML_CONTENT = '2200N' +INVALID_XML_COMMENT = '2200S' +INVALID_XML_PROCESSING_INSTRUCTION = '2200T' +INVALID_INDICATOR_PARAMETER_VALUE = '22010' +SUBSTRING_ERROR = '22011' +DIVISION_BY_ZERO = '22012' +INVALID_PRECEDING_OR_FOLLOWING_SIZE = '22013' +INVALID_ARGUMENT_FOR_NTILE_FUNCTION = '22014' +INTERVAL_FIELD_OVERFLOW = '22015' +INVALID_ARGUMENT_FOR_NTH_VALUE_FUNCTION = '22016' +INVALID_CHARACTER_VALUE_FOR_CAST = '22018' +INVALID_ESCAPE_CHARACTER = '22019' +INVALID_REGULAR_EXPRESSION = '2201B' +INVALID_ARGUMENT_FOR_LOGARITHM = '2201E' +INVALID_ARGUMENT_FOR_POWER_FUNCTION = '2201F' +INVALID_ARGUMENT_FOR_WIDTH_BUCKET_FUNCTION = '2201G' +INVALID_ROW_COUNT_IN_LIMIT_CLAUSE = '2201W' +INVALID_ROW_COUNT_IN_RESULT_OFFSET_CLAUSE = '2201X' +INVALID_LIMIT_VALUE = '22020' +CHARACTER_NOT_IN_REPERTOIRE = '22021' +INDICATOR_OVERFLOW = '22022' +INVALID_PARAMETER_VALUE = '22023' +UNTERMINATED_C_STRING = '22024' +INVALID_ESCAPE_SEQUENCE = '22025' +STRING_DATA_LENGTH_MISMATCH = '22026' +TRIM_ERROR = '22027' +ARRAY_SUBSCRIPT_ERROR = '2202E' +INVALID_TABLESAMPLE_REPEAT = '2202G' +INVALID_TABLESAMPLE_ARGUMENT = '2202H' +DUPLICATE_JSON_OBJECT_KEY_VALUE = '22030' +INVALID_ARGUMENT_FOR_SQL_JSON_DATETIME_FUNCTION = '22031' +INVALID_JSON_TEXT = '22032' +INVALID_SQL_JSON_SUBSCRIPT = '22033' +MORE_THAN_ONE_SQL_JSON_ITEM = '22034' +NO_SQL_JSON_ITEM = '22035' +NON_NUMERIC_SQL_JSON_ITEM = '22036' +NON_UNIQUE_KEYS_IN_A_JSON_OBJECT = '22037' +SINGLETON_SQL_JSON_ITEM_REQUIRED = '22038' +SQL_JSON_ARRAY_NOT_FOUND = '22039' +SQL_JSON_MEMBER_NOT_FOUND = '2203A' +SQL_JSON_NUMBER_NOT_FOUND = '2203B' +SQL_JSON_OBJECT_NOT_FOUND = '2203C' +TOO_MANY_JSON_ARRAY_ELEMENTS = '2203D' +TOO_MANY_JSON_OBJECT_MEMBERS = '2203E' +SQL_JSON_SCALAR_REQUIRED = '2203F' +SQL_JSON_ITEM_CANNOT_BE_CAST_TO_TARGET_TYPE = '2203G' +FLOATING_POINT_EXCEPTION = '22P01' +INVALID_TEXT_REPRESENTATION = '22P02' +INVALID_BINARY_REPRESENTATION = '22P03' +BAD_COPY_FILE_FORMAT = '22P04' +UNTRANSLATABLE_CHARACTER = '22P05' +NONSTANDARD_USE_OF_ESCAPE_CHARACTER = '22P06' + +# Class 23 - Integrity Constraint Violation +INTEGRITY_CONSTRAINT_VIOLATION = '23000' +RESTRICT_VIOLATION = '23001' +NOT_NULL_VIOLATION = '23502' +FOREIGN_KEY_VIOLATION = '23503' +UNIQUE_VIOLATION = '23505' +CHECK_VIOLATION = '23514' +EXCLUSION_VIOLATION = '23P01' + +# Class 24 - Invalid Cursor State +INVALID_CURSOR_STATE = '24000' + +# Class 25 - Invalid Transaction State +INVALID_TRANSACTION_STATE = '25000' +ACTIVE_SQL_TRANSACTION = '25001' +BRANCH_TRANSACTION_ALREADY_ACTIVE = '25002' +INAPPROPRIATE_ACCESS_MODE_FOR_BRANCH_TRANSACTION = '25003' +INAPPROPRIATE_ISOLATION_LEVEL_FOR_BRANCH_TRANSACTION = '25004' +NO_ACTIVE_SQL_TRANSACTION_FOR_BRANCH_TRANSACTION = '25005' +READ_ONLY_SQL_TRANSACTION = '25006' +SCHEMA_AND_DATA_STATEMENT_MIXING_NOT_SUPPORTED = '25007' +HELD_CURSOR_REQUIRES_SAME_ISOLATION_LEVEL = '25008' +NO_ACTIVE_SQL_TRANSACTION = '25P01' +IN_FAILED_SQL_TRANSACTION = '25P02' +IDLE_IN_TRANSACTION_SESSION_TIMEOUT = '25P03' +TRANSACTION_TIMEOUT = '25P04' + +# Class 26 - Invalid SQL Statement Name +INVALID_SQL_STATEMENT_NAME = '26000' + +# Class 27 - Triggered Data Change Violation +TRIGGERED_DATA_CHANGE_VIOLATION = '27000' + +# Class 28 - Invalid Authorization Specification +INVALID_AUTHORIZATION_SPECIFICATION = '28000' +INVALID_PASSWORD = '28P01' + +# Class 2B - Dependent Privilege Descriptors Still Exist +DEPENDENT_PRIVILEGE_DESCRIPTORS_STILL_EXIST = '2B000' +DEPENDENT_OBJECTS_STILL_EXIST = '2BP01' + +# Class 2D - Invalid Transaction Termination +INVALID_TRANSACTION_TERMINATION = '2D000' + +# Class 2F - SQL Routine Exception +SQL_ROUTINE_EXCEPTION = '2F000' +MODIFYING_SQL_DATA_NOT_PERMITTED_ = '2F002' +PROHIBITED_SQL_STATEMENT_ATTEMPTED_ = '2F003' +READING_SQL_DATA_NOT_PERMITTED_ = '2F004' +FUNCTION_EXECUTED_NO_RETURN_STATEMENT = '2F005' + +# Class 34 - Invalid Cursor Name +INVALID_CURSOR_NAME = '34000' + +# Class 38 - External Routine Exception +EXTERNAL_ROUTINE_EXCEPTION = '38000' +CONTAINING_SQL_NOT_PERMITTED = '38001' +MODIFYING_SQL_DATA_NOT_PERMITTED = '38002' +PROHIBITED_SQL_STATEMENT_ATTEMPTED = '38003' +READING_SQL_DATA_NOT_PERMITTED = '38004' + +# Class 39 - External Routine Invocation Exception +EXTERNAL_ROUTINE_INVOCATION_EXCEPTION = '39000' +INVALID_SQLSTATE_RETURNED = '39001' +NULL_VALUE_NOT_ALLOWED = '39004' +TRIGGER_PROTOCOL_VIOLATED = '39P01' +SRF_PROTOCOL_VIOLATED = '39P02' +EVENT_TRIGGER_PROTOCOL_VIOLATED = '39P03' + +# Class 3B - Savepoint Exception +SAVEPOINT_EXCEPTION = '3B000' +INVALID_SAVEPOINT_SPECIFICATION = '3B001' + +# Class 3D - Invalid Catalog Name +INVALID_CATALOG_NAME = '3D000' + +# Class 3F - Invalid Schema Name +INVALID_SCHEMA_NAME = '3F000' + +# Class 40 - Transaction Rollback +TRANSACTION_ROLLBACK = '40000' +SERIALIZATION_FAILURE = '40001' +TRANSACTION_INTEGRITY_CONSTRAINT_VIOLATION = '40002' +STATEMENT_COMPLETION_UNKNOWN = '40003' +DEADLOCK_DETECTED = '40P01' + +# Class 42 - Syntax Error or Access Rule Violation +SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION = '42000' +INSUFFICIENT_PRIVILEGE = '42501' +SYNTAX_ERROR = '42601' +INVALID_NAME = '42602' +INVALID_COLUMN_DEFINITION = '42611' +NAME_TOO_LONG = '42622' +DUPLICATE_COLUMN = '42701' +AMBIGUOUS_COLUMN = '42702' +UNDEFINED_COLUMN = '42703' +UNDEFINED_OBJECT = '42704' +DUPLICATE_OBJECT = '42710' +DUPLICATE_ALIAS = '42712' +DUPLICATE_FUNCTION = '42723' +AMBIGUOUS_FUNCTION = '42725' +GROUPING_ERROR = '42803' +DATATYPE_MISMATCH = '42804' +WRONG_OBJECT_TYPE = '42809' +INVALID_FOREIGN_KEY = '42830' +CANNOT_COERCE = '42846' +UNDEFINED_FUNCTION = '42883' +GENERATED_ALWAYS = '428C9' +RESERVED_NAME = '42939' +UNDEFINED_TABLE = '42P01' +UNDEFINED_PARAMETER = '42P02' +DUPLICATE_CURSOR = '42P03' +DUPLICATE_DATABASE = '42P04' +DUPLICATE_PREPARED_STATEMENT = '42P05' +DUPLICATE_SCHEMA = '42P06' +DUPLICATE_TABLE = '42P07' +AMBIGUOUS_PARAMETER = '42P08' +AMBIGUOUS_ALIAS = '42P09' +INVALID_COLUMN_REFERENCE = '42P10' +INVALID_CURSOR_DEFINITION = '42P11' +INVALID_DATABASE_DEFINITION = '42P12' +INVALID_FUNCTION_DEFINITION = '42P13' +INVALID_PREPARED_STATEMENT_DEFINITION = '42P14' +INVALID_SCHEMA_DEFINITION = '42P15' +INVALID_TABLE_DEFINITION = '42P16' +INVALID_OBJECT_DEFINITION = '42P17' +INDETERMINATE_DATATYPE = '42P18' +INVALID_RECURSION = '42P19' +WINDOWING_ERROR = '42P20' +COLLATION_MISMATCH = '42P21' +INDETERMINATE_COLLATION = '42P22' + +# Class 44 - WITH CHECK OPTION Violation +WITH_CHECK_OPTION_VIOLATION = '44000' + +# Class 53 - Insufficient Resources +INSUFFICIENT_RESOURCES = '53000' +DISK_FULL = '53100' +OUT_OF_MEMORY = '53200' +TOO_MANY_CONNECTIONS = '53300' +CONFIGURATION_LIMIT_EXCEEDED = '53400' + +# Class 54 - Program Limit Exceeded +PROGRAM_LIMIT_EXCEEDED = '54000' +STATEMENT_TOO_COMPLEX = '54001' +TOO_MANY_COLUMNS = '54011' +TOO_MANY_ARGUMENTS = '54023' + +# Class 55 - Object Not In Prerequisite State +OBJECT_NOT_IN_PREREQUISITE_STATE = '55000' +OBJECT_IN_USE = '55006' +CANT_CHANGE_RUNTIME_PARAM = '55P02' +LOCK_NOT_AVAILABLE = '55P03' +UNSAFE_NEW_ENUM_VALUE_USAGE = '55P04' + +# Class 57 - Operator Intervention +OPERATOR_INTERVENTION = '57000' +QUERY_CANCELED = '57014' +ADMIN_SHUTDOWN = '57P01' +CRASH_SHUTDOWN = '57P02' +CANNOT_CONNECT_NOW = '57P03' +DATABASE_DROPPED = '57P04' +IDLE_SESSION_TIMEOUT = '57P05' + +# Class 58 - System Error (errors external to PostgreSQL itself) +SYSTEM_ERROR = '58000' +IO_ERROR = '58030' +UNDEFINED_FILE = '58P01' +DUPLICATE_FILE = '58P02' +FILE_NAME_TOO_LONG = '58P03' + +# Class 72 - Snapshot Failure +SNAPSHOT_TOO_OLD = '72000' + +# Class F0 - Configuration File Error +CONFIG_FILE_ERROR = 'F0000' +LOCK_FILE_EXISTS = 'F0001' + +# Class HV - Foreign Data Wrapper Error (SQL/MED) +FDW_ERROR = 'HV000' +FDW_OUT_OF_MEMORY = 'HV001' +FDW_DYNAMIC_PARAMETER_VALUE_NEEDED = 'HV002' +FDW_INVALID_DATA_TYPE = 'HV004' +FDW_COLUMN_NAME_NOT_FOUND = 'HV005' +FDW_INVALID_DATA_TYPE_DESCRIPTORS = 'HV006' +FDW_INVALID_COLUMN_NAME = 'HV007' +FDW_INVALID_COLUMN_NUMBER = 'HV008' +FDW_INVALID_USE_OF_NULL_POINTER = 'HV009' +FDW_INVALID_STRING_FORMAT = 'HV00A' +FDW_INVALID_HANDLE = 'HV00B' +FDW_INVALID_OPTION_INDEX = 'HV00C' +FDW_INVALID_OPTION_NAME = 'HV00D' +FDW_OPTION_NAME_NOT_FOUND = 'HV00J' +FDW_REPLY_HANDLE = 'HV00K' +FDW_UNABLE_TO_CREATE_EXECUTION = 'HV00L' +FDW_UNABLE_TO_CREATE_REPLY = 'HV00M' +FDW_UNABLE_TO_ESTABLISH_CONNECTION = 'HV00N' +FDW_NO_SCHEMAS = 'HV00P' +FDW_SCHEMA_NOT_FOUND = 'HV00Q' +FDW_TABLE_NOT_FOUND = 'HV00R' +FDW_FUNCTION_SEQUENCE_ERROR = 'HV010' +FDW_TOO_MANY_HANDLES = 'HV014' +FDW_INCONSISTENT_DESCRIPTOR_INFORMATION = 'HV021' +FDW_INVALID_ATTRIBUTE_VALUE = 'HV024' +FDW_INVALID_STRING_LENGTH_OR_BUFFER_LENGTH = 'HV090' +FDW_INVALID_DESCRIPTOR_FIELD_IDENTIFIER = 'HV091' + +# Class P0 - PL/pgSQL Error +PLPGSQL_ERROR = 'P0000' +RAISE_EXCEPTION = 'P0001' +NO_DATA_FOUND = 'P0002' +TOO_MANY_ROWS = 'P0003' +ASSERT_FAILURE = 'P0004' + +# Class XX - Internal Error +INTERNAL_ERROR = 'XX000' +DATA_CORRUPTED = 'XX001' +INDEX_CORRUPTED = 'XX002' diff --git a/cmts_api_env/lib/python3.12/site-packages/psycopg2/errors.py b/cmts_api_env/lib/python3.12/site-packages/psycopg2/errors.py new file mode 100644 index 0000000..e4e47f5 --- /dev/null +++ b/cmts_api_env/lib/python3.12/site-packages/psycopg2/errors.py @@ -0,0 +1,38 @@ +"""Error classes for PostgreSQL error codes +""" + +# psycopg/errors.py - SQLSTATE and DB-API exceptions +# +# Copyright (C) 2018-2019 Daniele Varrazzo +# Copyright (C) 2020-2021 The Psycopg Team +# +# psycopg2 is free software: you can redistribute it and/or modify it +# under the terms of the GNU Lesser General Public License as published +# by the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# In addition, as a special exception, the copyright holders give +# permission to link this program with the OpenSSL library (or with +# modified versions of OpenSSL that use the same license as OpenSSL), +# and distribute linked combinations including the two. +# +# You must obey the GNU Lesser General Public License in all respects for +# all of the code used other than OpenSSL. +# +# psycopg2 is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public +# License for more details. + +# +# NOTE: the exceptions are injected into this module by the C extention. +# + + +def lookup(code): + """Lookup an error code and return its exception class. + + Raise `!KeyError` if the code is not found. + """ + from psycopg2._psycopg import sqlstate_errors # avoid circular import + return sqlstate_errors[code] diff --git a/cmts_api_env/lib/python3.12/site-packages/psycopg2/extensions.py b/cmts_api_env/lib/python3.12/site-packages/psycopg2/extensions.py new file mode 100644 index 0000000..b938d0c --- /dev/null +++ b/cmts_api_env/lib/python3.12/site-packages/psycopg2/extensions.py @@ -0,0 +1,213 @@ +"""psycopg extensions to the DBAPI-2.0 + +This module holds all the extensions to the DBAPI-2.0 provided by psycopg. + +- `connection` -- the new-type inheritable connection class +- `cursor` -- the new-type inheritable cursor class +- `lobject` -- the new-type inheritable large object class +- `adapt()` -- exposes the PEP-246_ compatible adapting mechanism used + by psycopg to adapt Python types to PostgreSQL ones + +.. _PEP-246: https://www.python.org/dev/peps/pep-0246/ +""" +# psycopg/extensions.py - DBAPI-2.0 extensions specific to psycopg +# +# Copyright (C) 2003-2019 Federico Di Gregorio +# Copyright (C) 2020-2021 The Psycopg Team +# +# psycopg2 is free software: you can redistribute it and/or modify it +# under the terms of the GNU Lesser General Public License as published +# by the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# In addition, as a special exception, the copyright holders give +# permission to link this program with the OpenSSL library (or with +# modified versions of OpenSSL that use the same license as OpenSSL), +# and distribute linked combinations including the two. +# +# You must obey the GNU Lesser General Public License in all respects for +# all of the code used other than OpenSSL. +# +# psycopg2 is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public +# License for more details. + +import re as _re + +from psycopg2._psycopg import ( # noqa + BINARYARRAY, BOOLEAN, BOOLEANARRAY, BYTES, BYTESARRAY, DATE, DATEARRAY, + DATETIMEARRAY, DECIMAL, DECIMALARRAY, FLOAT, FLOATARRAY, INTEGER, + INTEGERARRAY, INTERVAL, INTERVALARRAY, LONGINTEGER, LONGINTEGERARRAY, + ROWIDARRAY, STRINGARRAY, TIME, TIMEARRAY, UNICODE, UNICODEARRAY, + AsIs, Binary, Boolean, Float, Int, QuotedString, ) + +from psycopg2._psycopg import ( # noqa + PYDATE, PYDATETIME, PYDATETIMETZ, PYINTERVAL, PYTIME, PYDATEARRAY, + PYDATETIMEARRAY, PYDATETIMETZARRAY, PYINTERVALARRAY, PYTIMEARRAY, + DateFromPy, TimeFromPy, TimestampFromPy, IntervalFromPy, ) + +from psycopg2._psycopg import ( # noqa + adapt, adapters, encodings, connection, cursor, + lobject, Xid, libpq_version, parse_dsn, quote_ident, + string_types, binary_types, new_type, new_array_type, register_type, + ISQLQuote, Notify, Diagnostics, Column, ConnectionInfo, + QueryCanceledError, TransactionRollbackError, + set_wait_callback, get_wait_callback, encrypt_password, ) + + +"""Isolation level values.""" +ISOLATION_LEVEL_AUTOCOMMIT = 0 +ISOLATION_LEVEL_READ_UNCOMMITTED = 4 +ISOLATION_LEVEL_READ_COMMITTED = 1 +ISOLATION_LEVEL_REPEATABLE_READ = 2 +ISOLATION_LEVEL_SERIALIZABLE = 3 +ISOLATION_LEVEL_DEFAULT = None + + +"""psycopg connection status values.""" +STATUS_SETUP = 0 +STATUS_READY = 1 +STATUS_BEGIN = 2 +STATUS_SYNC = 3 # currently unused +STATUS_ASYNC = 4 # currently unused +STATUS_PREPARED = 5 + +# This is a useful mnemonic to check if the connection is in a transaction +STATUS_IN_TRANSACTION = STATUS_BEGIN + + +"""psycopg asynchronous connection polling values""" +POLL_OK = 0 +POLL_READ = 1 +POLL_WRITE = 2 +POLL_ERROR = 3 + + +"""Backend transaction status values.""" +TRANSACTION_STATUS_IDLE = 0 +TRANSACTION_STATUS_ACTIVE = 1 +TRANSACTION_STATUS_INTRANS = 2 +TRANSACTION_STATUS_INERROR = 3 +TRANSACTION_STATUS_UNKNOWN = 4 + + +def register_adapter(typ, callable): + """Register 'callable' as an ISQLQuote adapter for type 'typ'.""" + adapters[(typ, ISQLQuote)] = callable + + +# The SQL_IN class is the official adapter for tuples starting from 2.0.6. +class SQL_IN: + """Adapt any iterable to an SQL quotable object.""" + def __init__(self, seq): + self._seq = seq + self._conn = None + + def prepare(self, conn): + self._conn = conn + + def getquoted(self): + # this is the important line: note how every object in the + # list is adapted and then how getquoted() is called on it + pobjs = [adapt(o) for o in self._seq] + if self._conn is not None: + for obj in pobjs: + if hasattr(obj, 'prepare'): + obj.prepare(self._conn) + qobjs = [o.getquoted() for o in pobjs] + return b'(' + b', '.join(qobjs) + b')' + + def __str__(self): + return str(self.getquoted()) + + +class NoneAdapter: + """Adapt None to NULL. + + This adapter is not used normally as a fast path in mogrify uses NULL, + but it makes easier to adapt composite types. + """ + def __init__(self, obj): + pass + + def getquoted(self, _null=b"NULL"): + return _null + + +def make_dsn(dsn=None, **kwargs): + """Convert a set of keywords into a connection strings.""" + if dsn is None and not kwargs: + return '' + + # If no kwarg is specified don't mung the dsn, but verify it + if not kwargs: + parse_dsn(dsn) + return dsn + + # Override the dsn with the parameters + if 'database' in kwargs: + if 'dbname' in kwargs: + raise TypeError( + "you can't specify both 'database' and 'dbname' arguments") + kwargs['dbname'] = kwargs.pop('database') + + # Drop the None arguments + kwargs = {k: v for (k, v) in kwargs.items() if v is not None} + + if dsn is not None: + tmp = parse_dsn(dsn) + tmp.update(kwargs) + kwargs = tmp + + dsn = " ".join(["{}={}".format(k, _param_escape(str(v))) + for (k, v) in kwargs.items()]) + + # verify that the returned dsn is valid + parse_dsn(dsn) + + return dsn + + +def _param_escape(s, + re_escape=_re.compile(r"([\\'])"), + re_space=_re.compile(r'\s')): + """ + Apply the escaping rule required by PQconnectdb + """ + if not s: + return "''" + + s = re_escape.sub(r'\\\1', s) + if re_space.search(s): + s = "'" + s + "'" + + return s + + +# Create default json typecasters for PostgreSQL 9.2 oids +from psycopg2._json import register_default_json, register_default_jsonb # noqa + +try: + JSON, JSONARRAY = register_default_json() + JSONB, JSONBARRAY = register_default_jsonb() +except ImportError: + pass + +del register_default_json, register_default_jsonb + + +# Create default Range typecasters +from psycopg2. _range import Range # noqa +del Range + + +# Add the "cleaned" version of the encodings to the key. +# When the encoding is set its name is cleaned up from - and _ and turned +# uppercase, so an encoding not respecting these rules wouldn't be found in the +# encodings keys and would raise an exception with the unicode typecaster +for k, v in list(encodings.items()): + k = k.replace('_', '').replace('-', '').upper() + encodings[k] = v + +del k, v diff --git a/cmts_api_env/lib/python3.12/site-packages/psycopg2/extras.py b/cmts_api_env/lib/python3.12/site-packages/psycopg2/extras.py new file mode 100644 index 0000000..36e8ef9 --- /dev/null +++ b/cmts_api_env/lib/python3.12/site-packages/psycopg2/extras.py @@ -0,0 +1,1340 @@ +"""Miscellaneous goodies for psycopg2 + +This module is a generic place used to hold little helper functions +and classes until a better place in the distribution is found. +""" +# psycopg/extras.py - miscellaneous extra goodies for psycopg +# +# Copyright (C) 2003-2019 Federico Di Gregorio +# Copyright (C) 2020-2021 The Psycopg Team +# +# psycopg2 is free software: you can redistribute it and/or modify it +# under the terms of the GNU Lesser General Public License as published +# by the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# In addition, as a special exception, the copyright holders give +# permission to link this program with the OpenSSL library (or with +# modified versions of OpenSSL that use the same license as OpenSSL), +# and distribute linked combinations including the two. +# +# You must obey the GNU Lesser General Public License in all respects for +# all of the code used other than OpenSSL. +# +# psycopg2 is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public +# License for more details. + +import os as _os +import time as _time +import re as _re +from collections import namedtuple, OrderedDict + +import logging as _logging + +import psycopg2 +from psycopg2 import extensions as _ext +from .extensions import cursor as _cursor +from .extensions import connection as _connection +from .extensions import adapt as _A, quote_ident +from functools import lru_cache + +from psycopg2._psycopg import ( # noqa + REPLICATION_PHYSICAL, REPLICATION_LOGICAL, + ReplicationConnection as _replicationConnection, + ReplicationCursor as _replicationCursor, + ReplicationMessage) + + +# expose the json adaptation stuff into the module +from psycopg2._json import ( # noqa + json, Json, register_json, register_default_json, register_default_jsonb) + + +# Expose range-related objects +from psycopg2._range import ( # noqa + Range, NumericRange, DateRange, DateTimeRange, DateTimeTZRange, + register_range, RangeAdapter, RangeCaster) + + +# Expose ipaddress-related objects +from psycopg2._ipaddress import register_ipaddress # noqa + + +class DictCursorBase(_cursor): + """Base class for all dict-like cursors.""" + + def __init__(self, *args, **kwargs): + if 'row_factory' in kwargs: + row_factory = kwargs['row_factory'] + del kwargs['row_factory'] + else: + raise NotImplementedError( + "DictCursorBase can't be instantiated without a row factory.") + super().__init__(*args, **kwargs) + self._query_executed = False + self._prefetch = False + self.row_factory = row_factory + + def fetchone(self): + if self._prefetch: + res = super().fetchone() + if self._query_executed: + self._build_index() + if not self._prefetch: + res = super().fetchone() + return res + + def fetchmany(self, size=None): + if self._prefetch: + res = super().fetchmany(size) + if self._query_executed: + self._build_index() + if not self._prefetch: + res = super().fetchmany(size) + return res + + def fetchall(self): + if self._prefetch: + res = super().fetchall() + if self._query_executed: + self._build_index() + if not self._prefetch: + res = super().fetchall() + return res + + def __iter__(self): + try: + if self._prefetch: + res = super().__iter__() + first = next(res) + if self._query_executed: + self._build_index() + if not self._prefetch: + res = super().__iter__() + first = next(res) + + yield first + while True: + yield next(res) + except StopIteration: + return + + +class DictConnection(_connection): + """A connection that uses `DictCursor` automatically.""" + def cursor(self, *args, **kwargs): + kwargs.setdefault('cursor_factory', self.cursor_factory or DictCursor) + return super().cursor(*args, **kwargs) + + +class DictCursor(DictCursorBase): + """A cursor that keeps a list of column name -> index mappings__. + + .. __: https://docs.python.org/glossary.html#term-mapping + """ + + def __init__(self, *args, **kwargs): + kwargs['row_factory'] = DictRow + super().__init__(*args, **kwargs) + self._prefetch = True + + def execute(self, query, vars=None): + self.index = OrderedDict() + self._query_executed = True + return super().execute(query, vars) + + def callproc(self, procname, vars=None): + self.index = OrderedDict() + self._query_executed = True + return super().callproc(procname, vars) + + def _build_index(self): + if self._query_executed and self.description: + for i in range(len(self.description)): + self.index[self.description[i][0]] = i + self._query_executed = False + + +class DictRow(list): + """A row object that allow by-column-name access to data.""" + + __slots__ = ('_index',) + + def __init__(self, cursor): + self._index = cursor.index + self[:] = [None] * len(cursor.description) + + def __getitem__(self, x): + if not isinstance(x, (int, slice)): + x = self._index[x] + return super().__getitem__(x) + + def __setitem__(self, x, v): + if not isinstance(x, (int, slice)): + x = self._index[x] + super().__setitem__(x, v) + + def items(self): + g = super().__getitem__ + return ((n, g(self._index[n])) for n in self._index) + + def keys(self): + return iter(self._index) + + def values(self): + g = super().__getitem__ + return (g(self._index[n]) for n in self._index) + + def get(self, x, default=None): + try: + return self[x] + except Exception: + return default + + def copy(self): + return OrderedDict(self.items()) + + def __contains__(self, x): + return x in self._index + + def __reduce__(self): + # this is apparently useless, but it fixes #1073 + return super().__reduce__() + + def __getstate__(self): + return self[:], self._index.copy() + + def __setstate__(self, data): + self[:] = data[0] + self._index = data[1] + + +class RealDictConnection(_connection): + """A connection that uses `RealDictCursor` automatically.""" + def cursor(self, *args, **kwargs): + kwargs.setdefault('cursor_factory', self.cursor_factory or RealDictCursor) + return super().cursor(*args, **kwargs) + + +class RealDictCursor(DictCursorBase): + """A cursor that uses a real dict as the base type for rows. + + Note that this cursor is extremely specialized and does not allow + the normal access (using integer indices) to fetched data. If you need + to access database rows both as a dictionary and a list, then use + the generic `DictCursor` instead of `!RealDictCursor`. + """ + def __init__(self, *args, **kwargs): + kwargs['row_factory'] = RealDictRow + super().__init__(*args, **kwargs) + + def execute(self, query, vars=None): + self.column_mapping = [] + self._query_executed = True + return super().execute(query, vars) + + def callproc(self, procname, vars=None): + self.column_mapping = [] + self._query_executed = True + return super().callproc(procname, vars) + + def _build_index(self): + if self._query_executed and self.description: + self.column_mapping = [d[0] for d in self.description] + self._query_executed = False + + +class RealDictRow(OrderedDict): + """A `!dict` subclass representing a data record.""" + + def __init__(self, *args, **kwargs): + if args and isinstance(args[0], _cursor): + cursor = args[0] + args = args[1:] + else: + cursor = None + + super().__init__(*args, **kwargs) + + if cursor is not None: + # Required for named cursors + if cursor.description and not cursor.column_mapping: + cursor._build_index() + + # Store the cols mapping in the dict itself until the row is fully + # populated, so we don't need to add attributes to the class + # (hence keeping its maintenance, special pickle support, etc.) + self[RealDictRow] = cursor.column_mapping + + def __setitem__(self, key, value): + if RealDictRow in self: + # We are in the row building phase + mapping = self[RealDictRow] + super().__setitem__(mapping[key], value) + if key == len(mapping) - 1: + # Row building finished + del self[RealDictRow] + return + + super().__setitem__(key, value) + + +class NamedTupleConnection(_connection): + """A connection that uses `NamedTupleCursor` automatically.""" + def cursor(self, *args, **kwargs): + kwargs.setdefault('cursor_factory', self.cursor_factory or NamedTupleCursor) + return super().cursor(*args, **kwargs) + + +class NamedTupleCursor(_cursor): + """A cursor that generates results as `~collections.namedtuple`. + + `!fetch*()` methods will return named tuples instead of regular tuples, so + their elements can be accessed both as regular numeric items as well as + attributes. + + >>> nt_cur = conn.cursor(cursor_factory=psycopg2.extras.NamedTupleCursor) + >>> rec = nt_cur.fetchone() + >>> rec + Record(id=1, num=100, data="abc'def") + >>> rec[1] + 100 + >>> rec.data + "abc'def" + """ + Record = None + MAX_CACHE = 1024 + + def execute(self, query, vars=None): + self.Record = None + return super().execute(query, vars) + + def executemany(self, query, vars): + self.Record = None + return super().executemany(query, vars) + + def callproc(self, procname, vars=None): + self.Record = None + return super().callproc(procname, vars) + + def fetchone(self): + t = super().fetchone() + if t is not None: + nt = self.Record + if nt is None: + nt = self.Record = self._make_nt() + return nt._make(t) + + def fetchmany(self, size=None): + ts = super().fetchmany(size) + nt = self.Record + if nt is None: + nt = self.Record = self._make_nt() + return list(map(nt._make, ts)) + + def fetchall(self): + ts = super().fetchall() + nt = self.Record + if nt is None: + nt = self.Record = self._make_nt() + return list(map(nt._make, ts)) + + def __iter__(self): + try: + it = super().__iter__() + t = next(it) + + nt = self.Record + if nt is None: + nt = self.Record = self._make_nt() + + yield nt._make(t) + + while True: + yield nt._make(next(it)) + except StopIteration: + return + + def _make_nt(self): + key = tuple(d[0] for d in self.description) if self.description else () + return self._cached_make_nt(key) + + @classmethod + def _do_make_nt(cls, key): + fields = [] + for s in key: + s = _re_clean.sub('_', s) + # Python identifier cannot start with numbers, namedtuple fields + # cannot start with underscore. So... + if s[0] == '_' or '0' <= s[0] <= '9': + s = 'f' + s + fields.append(s) + + nt = namedtuple("Record", fields) + return nt + + +@lru_cache(512) +def _cached_make_nt(cls, key): + return cls._do_make_nt(key) + + +# Exposed for testability, and if someone wants to monkeypatch to tweak +# the cache size. +NamedTupleCursor._cached_make_nt = classmethod(_cached_make_nt) + + +class LoggingConnection(_connection): + """A connection that logs all queries to a file or logger__ object. + + .. __: https://docs.python.org/library/logging.html + """ + + def initialize(self, logobj): + """Initialize the connection to log to `!logobj`. + + The `!logobj` parameter can be an open file object or a Logger/LoggerAdapter + instance from the standard logging module. + """ + self._logobj = logobj + if _logging and isinstance( + logobj, (_logging.Logger, _logging.LoggerAdapter)): + self.log = self._logtologger + else: + self.log = self._logtofile + + def filter(self, msg, curs): + """Filter the query before logging it. + + This is the method to overwrite to filter unwanted queries out of the + log or to add some extra data to the output. The default implementation + just does nothing. + """ + return msg + + def _logtofile(self, msg, curs): + msg = self.filter(msg, curs) + if msg: + if isinstance(msg, bytes): + msg = msg.decode(_ext.encodings[self.encoding], 'replace') + self._logobj.write(msg + _os.linesep) + + def _logtologger(self, msg, curs): + msg = self.filter(msg, curs) + if msg: + self._logobj.debug(msg) + + def _check(self): + if not hasattr(self, '_logobj'): + raise self.ProgrammingError( + "LoggingConnection object has not been initialize()d") + + def cursor(self, *args, **kwargs): + self._check() + kwargs.setdefault('cursor_factory', self.cursor_factory or LoggingCursor) + return super().cursor(*args, **kwargs) + + +class LoggingCursor(_cursor): + """A cursor that logs queries using its connection logging facilities.""" + + def execute(self, query, vars=None): + try: + return super().execute(query, vars) + finally: + self.connection.log(self.query, self) + + def callproc(self, procname, vars=None): + try: + return super().callproc(procname, vars) + finally: + self.connection.log(self.query, self) + + +class MinTimeLoggingConnection(LoggingConnection): + """A connection that logs queries based on execution time. + + This is just an example of how to sub-class `LoggingConnection` to + provide some extra filtering for the logged queries. Both the + `initialize()` and `filter()` methods are overwritten to make sure + that only queries executing for more than ``mintime`` ms are logged. + + Note that this connection uses the specialized cursor + `MinTimeLoggingCursor`. + """ + def initialize(self, logobj, mintime=0): + LoggingConnection.initialize(self, logobj) + self._mintime = mintime + + def filter(self, msg, curs): + t = (_time.time() - curs.timestamp) * 1000 + if t > self._mintime: + if isinstance(msg, bytes): + msg = msg.decode(_ext.encodings[self.encoding], 'replace') + return f"{msg}{_os.linesep} (execution time: {t} ms)" + + def cursor(self, *args, **kwargs): + kwargs.setdefault('cursor_factory', + self.cursor_factory or MinTimeLoggingCursor) + return LoggingConnection.cursor(self, *args, **kwargs) + + +class MinTimeLoggingCursor(LoggingCursor): + """The cursor sub-class companion to `MinTimeLoggingConnection`.""" + + def execute(self, query, vars=None): + self.timestamp = _time.time() + return LoggingCursor.execute(self, query, vars) + + def callproc(self, procname, vars=None): + self.timestamp = _time.time() + return LoggingCursor.callproc(self, procname, vars) + + +class LogicalReplicationConnection(_replicationConnection): + + def __init__(self, *args, **kwargs): + kwargs['replication_type'] = REPLICATION_LOGICAL + super().__init__(*args, **kwargs) + + +class PhysicalReplicationConnection(_replicationConnection): + + def __init__(self, *args, **kwargs): + kwargs['replication_type'] = REPLICATION_PHYSICAL + super().__init__(*args, **kwargs) + + +class StopReplication(Exception): + """ + Exception used to break out of the endless loop in + `~ReplicationCursor.consume_stream()`. + + Subclass of `~exceptions.Exception`. Intentionally *not* inherited from + `~psycopg2.Error` as occurrence of this exception does not indicate an + error. + """ + pass + + +class ReplicationCursor(_replicationCursor): + """A cursor used for communication on replication connections.""" + + def create_replication_slot(self, slot_name, slot_type=None, output_plugin=None): + """Create streaming replication slot.""" + + command = f"CREATE_REPLICATION_SLOT {quote_ident(slot_name, self)} " + + if slot_type is None: + slot_type = self.connection.replication_type + + if slot_type == REPLICATION_LOGICAL: + if output_plugin is None: + raise psycopg2.ProgrammingError( + "output plugin name is required to create " + "logical replication slot") + + command += f"LOGICAL {quote_ident(output_plugin, self)}" + + elif slot_type == REPLICATION_PHYSICAL: + if output_plugin is not None: + raise psycopg2.ProgrammingError( + "cannot specify output plugin name when creating " + "physical replication slot") + + command += "PHYSICAL" + + else: + raise psycopg2.ProgrammingError( + f"unrecognized replication type: {repr(slot_type)}") + + self.execute(command) + + def drop_replication_slot(self, slot_name): + """Drop streaming replication slot.""" + + command = f"DROP_REPLICATION_SLOT {quote_ident(slot_name, self)}" + self.execute(command) + + def start_replication( + self, slot_name=None, slot_type=None, start_lsn=0, + timeline=0, options=None, decode=False, status_interval=10): + """Start replication stream.""" + + command = "START_REPLICATION " + + if slot_type is None: + slot_type = self.connection.replication_type + + if slot_type == REPLICATION_LOGICAL: + if slot_name: + command += f"SLOT {quote_ident(slot_name, self)} " + else: + raise psycopg2.ProgrammingError( + "slot name is required for logical replication") + + command += "LOGICAL " + + elif slot_type == REPLICATION_PHYSICAL: + if slot_name: + command += f"SLOT {quote_ident(slot_name, self)} " + # don't add "PHYSICAL", before 9.4 it was just START_REPLICATION XXX/XXX + + else: + raise psycopg2.ProgrammingError( + f"unrecognized replication type: {repr(slot_type)}") + + if type(start_lsn) is str: + lsn = start_lsn.split('/') + lsn = f"{int(lsn[0], 16):X}/{int(lsn[1], 16):08X}" + else: + lsn = f"{start_lsn >> 32 & 4294967295:X}/{start_lsn & 4294967295:08X}" + + command += lsn + + if timeline != 0: + if slot_type == REPLICATION_LOGICAL: + raise psycopg2.ProgrammingError( + "cannot specify timeline for logical replication") + + command += f" TIMELINE {timeline}" + + if options: + if slot_type == REPLICATION_PHYSICAL: + raise psycopg2.ProgrammingError( + "cannot specify output plugin options for physical replication") + + command += " (" + for k, v in options.items(): + if not command.endswith('('): + command += ", " + command += f"{quote_ident(k, self)} {_A(str(v))}" + command += ")" + + self.start_replication_expert( + command, decode=decode, status_interval=status_interval) + + # allows replication cursors to be used in select.select() directly + def fileno(self): + return self.connection.fileno() + + +# a dbtype and adapter for Python UUID type + +class UUID_adapter: + """Adapt Python's uuid.UUID__ type to PostgreSQL's uuid__. + + .. __: https://docs.python.org/library/uuid.html + .. __: https://www.postgresql.org/docs/current/static/datatype-uuid.html + """ + + def __init__(self, uuid): + self._uuid = uuid + + def __conform__(self, proto): + if proto is _ext.ISQLQuote: + return self + + def getquoted(self): + return (f"'{self._uuid}'::uuid").encode('utf8') + + def __str__(self): + return f"'{self._uuid}'::uuid" + + +def register_uuid(oids=None, conn_or_curs=None): + """Create the UUID type and an uuid.UUID adapter. + + :param oids: oid for the PostgreSQL :sql:`uuid` type, or 2-items sequence + with oids of the type and the array. If not specified, use PostgreSQL + standard oids. + :param conn_or_curs: where to register the typecaster. If not specified, + register it globally. + """ + + import uuid + + if not oids: + oid1 = 2950 + oid2 = 2951 + elif isinstance(oids, (list, tuple)): + oid1, oid2 = oids + else: + oid1 = oids + oid2 = 2951 + + _ext.UUID = _ext.new_type((oid1, ), "UUID", + lambda data, cursor: data and uuid.UUID(data) or None) + _ext.UUIDARRAY = _ext.new_array_type((oid2,), "UUID[]", _ext.UUID) + + _ext.register_type(_ext.UUID, conn_or_curs) + _ext.register_type(_ext.UUIDARRAY, conn_or_curs) + _ext.register_adapter(uuid.UUID, UUID_adapter) + + return _ext.UUID + + +# a type, dbtype and adapter for PostgreSQL inet type + +class Inet: + """Wrap a string to allow for correct SQL-quoting of inet values. + + Note that this adapter does NOT check the passed value to make + sure it really is an inet-compatible address but DOES call adapt() + on it to make sure it is impossible to execute an SQL-injection + by passing an evil value to the initializer. + """ + def __init__(self, addr): + self.addr = addr + + def __repr__(self): + return f"{self.__class__.__name__}({self.addr!r})" + + def prepare(self, conn): + self._conn = conn + + def getquoted(self): + obj = _A(self.addr) + if hasattr(obj, 'prepare'): + obj.prepare(self._conn) + return obj.getquoted() + b"::inet" + + def __conform__(self, proto): + if proto is _ext.ISQLQuote: + return self + + def __str__(self): + return str(self.addr) + + +def register_inet(oid=None, conn_or_curs=None): + """Create the INET type and an Inet adapter. + + :param oid: oid for the PostgreSQL :sql:`inet` type, or 2-items sequence + with oids of the type and the array. If not specified, use PostgreSQL + standard oids. + :param conn_or_curs: where to register the typecaster. If not specified, + register it globally. + """ + import warnings + warnings.warn( + "the inet adapter is deprecated, it's not very useful", + DeprecationWarning) + + if not oid: + oid1 = 869 + oid2 = 1041 + elif isinstance(oid, (list, tuple)): + oid1, oid2 = oid + else: + oid1 = oid + oid2 = 1041 + + _ext.INET = _ext.new_type((oid1, ), "INET", + lambda data, cursor: data and Inet(data) or None) + _ext.INETARRAY = _ext.new_array_type((oid2, ), "INETARRAY", _ext.INET) + + _ext.register_type(_ext.INET, conn_or_curs) + _ext.register_type(_ext.INETARRAY, conn_or_curs) + + return _ext.INET + + +def wait_select(conn): + """Wait until a connection or cursor has data available. + + The function is an example of a wait callback to be registered with + `~psycopg2.extensions.set_wait_callback()`. This function uses + :py:func:`~select.select()` to wait for data to become available, and + therefore is able to handle/receive SIGINT/KeyboardInterrupt. + """ + import select + from psycopg2.extensions import POLL_OK, POLL_READ, POLL_WRITE + + while True: + try: + state = conn.poll() + if state == POLL_OK: + break + elif state == POLL_READ: + select.select([conn.fileno()], [], []) + elif state == POLL_WRITE: + select.select([], [conn.fileno()], []) + else: + raise conn.OperationalError(f"bad state from poll: {state}") + except KeyboardInterrupt: + conn.cancel() + # the loop will be broken by a server error + continue + + +def _solve_conn_curs(conn_or_curs): + """Return the connection and a DBAPI cursor from a connection or cursor.""" + if conn_or_curs is None: + raise psycopg2.ProgrammingError("no connection or cursor provided") + + if hasattr(conn_or_curs, 'execute'): + conn = conn_or_curs.connection + curs = conn.cursor(cursor_factory=_cursor) + else: + conn = conn_or_curs + curs = conn.cursor(cursor_factory=_cursor) + + return conn, curs + + +class HstoreAdapter: + """Adapt a Python dict to the hstore syntax.""" + def __init__(self, wrapped): + self.wrapped = wrapped + + def prepare(self, conn): + self.conn = conn + + # use an old-style getquoted implementation if required + if conn.info.server_version < 90000: + self.getquoted = self._getquoted_8 + + def _getquoted_8(self): + """Use the operators available in PG pre-9.0.""" + if not self.wrapped: + return b"''::hstore" + + adapt = _ext.adapt + rv = [] + for k, v in self.wrapped.items(): + k = adapt(k) + k.prepare(self.conn) + k = k.getquoted() + + if v is not None: + v = adapt(v) + v.prepare(self.conn) + v = v.getquoted() + else: + v = b'NULL' + + # XXX this b'ing is painfully inefficient! + rv.append(b"(" + k + b" => " + v + b")") + + return b"(" + b'||'.join(rv) + b")" + + def _getquoted_9(self): + """Use the hstore(text[], text[]) function.""" + if not self.wrapped: + return b"''::hstore" + + k = _ext.adapt(list(self.wrapped.keys())) + k.prepare(self.conn) + v = _ext.adapt(list(self.wrapped.values())) + v.prepare(self.conn) + return b"hstore(" + k.getquoted() + b", " + v.getquoted() + b")" + + getquoted = _getquoted_9 + + _re_hstore = _re.compile(r""" + # hstore key: + # a string of normal or escaped chars + "((?: [^"\\] | \\. )*)" + \s*=>\s* # hstore value + (?: + NULL # the value can be null - not catched + # or a quoted string like the key + | "((?: [^"\\] | \\. )*)" + ) + (?:\s*,\s*|$) # pairs separated by comma or end of string. + """, _re.VERBOSE) + + @classmethod + def parse(self, s, cur, _bsdec=_re.compile(r"\\(.)")): + """Parse an hstore representation in a Python string. + + The hstore is represented as something like:: + + "a"=>"1", "b"=>"2" + + with backslash-escaped strings. + """ + if s is None: + return None + + rv = {} + start = 0 + for m in self._re_hstore.finditer(s): + if m is None or m.start() != start: + raise psycopg2.InterfaceError( + f"error parsing hstore pair at char {start}") + k = _bsdec.sub(r'\1', m.group(1)) + v = m.group(2) + if v is not None: + v = _bsdec.sub(r'\1', v) + + rv[k] = v + start = m.end() + + if start < len(s): + raise psycopg2.InterfaceError( + f"error parsing hstore: unparsed data after char {start}") + + return rv + + @classmethod + def parse_unicode(self, s, cur): + """Parse an hstore returning unicode keys and values.""" + if s is None: + return None + + s = s.decode(_ext.encodings[cur.connection.encoding]) + return self.parse(s, cur) + + @classmethod + def get_oids(self, conn_or_curs): + """Return the lists of OID of the hstore and hstore[] types. + """ + conn, curs = _solve_conn_curs(conn_or_curs) + + # Store the transaction status of the connection to revert it after use + conn_status = conn.status + + # column typarray not available before PG 8.3 + typarray = conn.info.server_version >= 80300 and "typarray" or "NULL" + + rv0, rv1 = [], [] + + # get the oid for the hstore + curs.execute(f"""SELECT t.oid, {typarray} +FROM pg_type t JOIN pg_namespace ns + ON typnamespace = ns.oid +WHERE typname = 'hstore'; +""") + for oids in curs: + rv0.append(oids[0]) + rv1.append(oids[1]) + + # revert the status of the connection as before the command + if (conn_status != _ext.STATUS_IN_TRANSACTION + and not conn.autocommit): + conn.rollback() + + return tuple(rv0), tuple(rv1) + + +def register_hstore(conn_or_curs, globally=False, unicode=False, + oid=None, array_oid=None): + r"""Register adapter and typecaster for `!dict`\-\ |hstore| conversions. + + :param conn_or_curs: a connection or cursor: the typecaster will be + registered only on this object unless *globally* is set to `!True` + :param globally: register the adapter globally, not only on *conn_or_curs* + :param unicode: if `!True`, keys and values returned from the database + will be `!unicode` instead of `!str`. The option is not available on + Python 3 + :param oid: the OID of the |hstore| type if known. If not, it will be + queried on *conn_or_curs*. + :param array_oid: the OID of the |hstore| array type if known. If not, it + will be queried on *conn_or_curs*. + + The connection or cursor passed to the function will be used to query the + database and look for the OID of the |hstore| type (which may be different + across databases). If querying is not desirable (e.g. with + :ref:`asynchronous connections `) you may specify it in the + *oid* parameter, which can be found using a query such as :sql:`SELECT + 'hstore'::regtype::oid`. Analogously you can obtain a value for *array_oid* + using a query such as :sql:`SELECT 'hstore[]'::regtype::oid`. + + Note that, when passing a dictionary from Python to the database, both + strings and unicode keys and values are supported. Dictionaries returned + from the database have keys/values according to the *unicode* parameter. + + The |hstore| contrib module must be already installed in the database + (executing the ``hstore.sql`` script in your ``contrib`` directory). + Raise `~psycopg2.ProgrammingError` if the type is not found. + """ + if oid is None: + oid = HstoreAdapter.get_oids(conn_or_curs) + if oid is None or not oid[0]: + raise psycopg2.ProgrammingError( + "hstore type not found in the database. " + "please install it from your 'contrib/hstore.sql' file") + else: + array_oid = oid[1] + oid = oid[0] + + if isinstance(oid, int): + oid = (oid,) + + if array_oid is not None: + if isinstance(array_oid, int): + array_oid = (array_oid,) + else: + array_oid = tuple([x for x in array_oid if x]) + + # create and register the typecaster + HSTORE = _ext.new_type(oid, "HSTORE", HstoreAdapter.parse) + _ext.register_type(HSTORE, not globally and conn_or_curs or None) + _ext.register_adapter(dict, HstoreAdapter) + + if array_oid: + HSTOREARRAY = _ext.new_array_type(array_oid, "HSTOREARRAY", HSTORE) + _ext.register_type(HSTOREARRAY, not globally and conn_or_curs or None) + + +class CompositeCaster: + """Helps conversion of a PostgreSQL composite type into a Python object. + + The class is usually created by the `register_composite()` function. + You may want to create and register manually instances of the class if + querying the database at registration time is not desirable (such as when + using an :ref:`asynchronous connections `). + + """ + def __init__(self, name, oid, attrs, array_oid=None, schema=None): + self.name = name + self.schema = schema + self.oid = oid + self.array_oid = array_oid + + self.attnames = [a[0] for a in attrs] + self.atttypes = [a[1] for a in attrs] + self._create_type(name, self.attnames) + self.typecaster = _ext.new_type((oid,), name, self.parse) + if array_oid: + self.array_typecaster = _ext.new_array_type( + (array_oid,), f"{name}ARRAY", self.typecaster) + else: + self.array_typecaster = None + + def parse(self, s, curs): + if s is None: + return None + + tokens = self.tokenize(s) + if len(tokens) != len(self.atttypes): + raise psycopg2.DataError( + "expecting %d components for the type %s, %d found instead" % + (len(self.atttypes), self.name, len(tokens))) + + values = [curs.cast(oid, token) + for oid, token in zip(self.atttypes, tokens)] + + return self.make(values) + + def make(self, values): + """Return a new Python object representing the data being casted. + + *values* is the list of attributes, already casted into their Python + representation. + + You can subclass this method to :ref:`customize the composite cast + `. + """ + + return self._ctor(values) + + _re_tokenize = _re.compile(r""" + \(? ([,)]) # an empty token, representing NULL +| \(? " ((?: [^"] | "")*) " [,)] # or a quoted string +| \(? ([^",)]+) [,)] # or an unquoted string + """, _re.VERBOSE) + + _re_undouble = _re.compile(r'(["\\])\1') + + @classmethod + def tokenize(self, s): + rv = [] + for m in self._re_tokenize.finditer(s): + if m is None: + raise psycopg2.InterfaceError(f"can't parse type: {s!r}") + if m.group(1) is not None: + rv.append(None) + elif m.group(2) is not None: + rv.append(self._re_undouble.sub(r"\1", m.group(2))) + else: + rv.append(m.group(3)) + + return rv + + def _create_type(self, name, attnames): + name = _re_clean.sub('_', name) + self.type = namedtuple(name, attnames) + self._ctor = self.type._make + + @classmethod + def _from_db(self, name, conn_or_curs): + """Return a `CompositeCaster` instance for the type *name*. + + Raise `ProgrammingError` if the type is not found. + """ + conn, curs = _solve_conn_curs(conn_or_curs) + + # Store the transaction status of the connection to revert it after use + conn_status = conn.status + + # Use the correct schema + if '.' in name: + schema, tname = name.split('.', 1) + else: + tname = name + schema = 'public' + + # column typarray not available before PG 8.3 + typarray = conn.info.server_version >= 80300 and "typarray" or "NULL" + + # get the type oid and attributes + curs.execute("""\ +SELECT t.oid, %s, attname, atttypid +FROM pg_type t +JOIN pg_namespace ns ON typnamespace = ns.oid +JOIN pg_attribute a ON attrelid = typrelid +WHERE typname = %%s AND nspname = %%s + AND attnum > 0 AND NOT attisdropped +ORDER BY attnum; +""" % typarray, (tname, schema)) + + recs = curs.fetchall() + + if not recs: + # The above algorithm doesn't work for customized seach_path + # (#1487) The implementation below works better, but, to guarantee + # backwards compatibility, use it only if the original one failed. + try: + savepoint = False + # Because we executed statements earlier, we are either INTRANS + # or we are IDLE only if the transaction is autocommit, in + # which case we don't need the savepoint anyway. + if conn.status == _ext.STATUS_IN_TRANSACTION: + curs.execute("SAVEPOINT register_type") + savepoint = True + + curs.execute("""\ +SELECT t.oid, %s, attname, atttypid, typname, nspname +FROM pg_type t +JOIN pg_namespace ns ON typnamespace = ns.oid +JOIN pg_attribute a ON attrelid = typrelid +WHERE t.oid = %%s::regtype + AND attnum > 0 AND NOT attisdropped +ORDER BY attnum; +""" % typarray, (name, )) + except psycopg2.ProgrammingError: + pass + else: + recs = curs.fetchall() + if recs: + tname = recs[0][4] + schema = recs[0][5] + finally: + if savepoint: + curs.execute("ROLLBACK TO SAVEPOINT register_type") + + # revert the status of the connection as before the command + if conn_status != _ext.STATUS_IN_TRANSACTION and not conn.autocommit: + conn.rollback() + + if not recs: + raise psycopg2.ProgrammingError( + f"PostgreSQL type '{name}' not found") + + type_oid = recs[0][0] + array_oid = recs[0][1] + type_attrs = [(r[2], r[3]) for r in recs] + + return self(tname, type_oid, type_attrs, + array_oid=array_oid, schema=schema) + + +def register_composite(name, conn_or_curs, globally=False, factory=None): + """Register a typecaster to convert a composite type into a tuple. + + :param name: the name of a PostgreSQL composite type, e.g. created using + the |CREATE TYPE|_ command + :param conn_or_curs: a connection or cursor used to find the type oid and + components; the typecaster is registered in a scope limited to this + object, unless *globally* is set to `!True` + :param globally: if `!False` (default) register the typecaster only on + *conn_or_curs*, otherwise register it globally + :param factory: if specified it should be a `CompositeCaster` subclass: use + it to :ref:`customize how to cast composite types ` + :return: the registered `CompositeCaster` or *factory* instance + responsible for the conversion + """ + if factory is None: + factory = CompositeCaster + + caster = factory._from_db(name, conn_or_curs) + _ext.register_type(caster.typecaster, not globally and conn_or_curs or None) + + if caster.array_typecaster is not None: + _ext.register_type( + caster.array_typecaster, not globally and conn_or_curs or None) + + return caster + + +def _paginate(seq, page_size): + """Consume an iterable and return it in chunks. + + Every chunk is at most `page_size`. Never return an empty chunk. + """ + page = [] + it = iter(seq) + while True: + try: + for i in range(page_size): + page.append(next(it)) + yield page + page = [] + except StopIteration: + if page: + yield page + return + + +def execute_batch(cur, sql, argslist, page_size=100): + r"""Execute groups of statements in fewer server roundtrips. + + Execute *sql* several times, against all parameters set (sequences or + mappings) found in *argslist*. + + The function is semantically similar to + + .. parsed-literal:: + + *cur*\.\ `~cursor.executemany`\ (\ *sql*\ , *argslist*\ ) + + but has a different implementation: Psycopg will join the statements into + fewer multi-statement commands, each one containing at most *page_size* + statements, resulting in a reduced number of server roundtrips. + + After the execution of the function the `cursor.rowcount` property will + **not** contain a total result. + + """ + for page in _paginate(argslist, page_size=page_size): + sqls = [cur.mogrify(sql, args) for args in page] + cur.execute(b";".join(sqls)) + + +def execute_values(cur, sql, argslist, template=None, page_size=100, fetch=False): + '''Execute a statement using :sql:`VALUES` with a sequence of parameters. + + :param cur: the cursor to use to execute the query. + + :param sql: the query to execute. It must contain a single ``%s`` + placeholder, which will be replaced by a `VALUES list`__. + Example: ``"INSERT INTO mytable (id, f1, f2) VALUES %s"``. + + :param argslist: sequence of sequences or dictionaries with the arguments + to send to the query. The type and content must be consistent with + *template*. + + :param template: the snippet to merge to every item in *argslist* to + compose the query. + + - If the *argslist* items are sequences it should contain positional + placeholders (e.g. ``"(%s, %s, %s)"``, or ``"(%s, %s, 42)``" if there + are constants value...). + + - If the *argslist* items are mappings it should contain named + placeholders (e.g. ``"(%(id)s, %(f1)s, 42)"``). + + If not specified, assume the arguments are sequence and use a simple + positional template (i.e. ``(%s, %s, ...)``), with the number of + placeholders sniffed by the first element in *argslist*. + + :param page_size: maximum number of *argslist* items to include in every + statement. If there are more items the function will execute more than + one statement. + + :param fetch: if `!True` return the query results into a list (like in a + `~cursor.fetchall()`). Useful for queries with :sql:`RETURNING` + clause. + + .. __: https://www.postgresql.org/docs/current/static/queries-values.html + + After the execution of the function the `cursor.rowcount` property will + **not** contain a total result. + + While :sql:`INSERT` is an obvious candidate for this function it is + possible to use it with other statements, for example:: + + >>> cur.execute( + ... "create table test (id int primary key, v1 int, v2 int)") + + >>> execute_values(cur, + ... "INSERT INTO test (id, v1, v2) VALUES %s", + ... [(1, 2, 3), (4, 5, 6), (7, 8, 9)]) + + >>> execute_values(cur, + ... """UPDATE test SET v1 = data.v1 FROM (VALUES %s) AS data (id, v1) + ... WHERE test.id = data.id""", + ... [(1, 20), (4, 50)]) + + >>> cur.execute("select * from test order by id") + >>> cur.fetchall() + [(1, 20, 3), (4, 50, 6), (7, 8, 9)]) + + ''' + from psycopg2.sql import Composable + if isinstance(sql, Composable): + sql = sql.as_string(cur) + + # we can't just use sql % vals because vals is bytes: if sql is bytes + # there will be some decoding error because of stupid codec used, and Py3 + # doesn't implement % on bytes. + if not isinstance(sql, bytes): + sql = sql.encode(_ext.encodings[cur.connection.encoding]) + pre, post = _split_sql(sql) + + result = [] if fetch else None + for page in _paginate(argslist, page_size=page_size): + if template is None: + template = b'(' + b','.join([b'%s'] * len(page[0])) + b')' + parts = pre[:] + for args in page: + parts.append(cur.mogrify(template, args)) + parts.append(b',') + parts[-1:] = post + cur.execute(b''.join(parts)) + if fetch: + result.extend(cur.fetchall()) + + return result + + +def _split_sql(sql): + """Split *sql* on a single ``%s`` placeholder. + + Split on the %s, perform %% replacement and return pre, post lists of + snippets. + """ + curr = pre = [] + post = [] + tokens = _re.split(br'(%.)', sql) + for token in tokens: + if len(token) != 2 or token[:1] != b'%': + curr.append(token) + continue + + if token[1:] == b's': + if curr is pre: + curr = post + else: + raise ValueError( + "the query contains more than one '%s' placeholder") + elif token[1:] == b'%': + curr.append(b'%') + else: + raise ValueError("unsupported format character: '%s'" + % token[1:].decode('ascii', 'replace')) + + if curr is pre: + raise ValueError("the query doesn't contain any '%s' placeholder") + + return pre, post + + +# ascii except alnum and underscore +_re_clean = _re.compile( + '[' + _re.escape(' !"#$%&\'()*+,-./:;<=>?@[\\]^`{|}~') + ']') diff --git a/cmts_api_env/lib/python3.12/site-packages/psycopg2/pool.py b/cmts_api_env/lib/python3.12/site-packages/psycopg2/pool.py new file mode 100644 index 0000000..9d67d68 --- /dev/null +++ b/cmts_api_env/lib/python3.12/site-packages/psycopg2/pool.py @@ -0,0 +1,187 @@ +"""Connection pooling for psycopg2 + +This module implements thread-safe (and not) connection pools. +""" +# psycopg/pool.py - pooling code for psycopg +# +# Copyright (C) 2003-2019 Federico Di Gregorio +# Copyright (C) 2020-2021 The Psycopg Team +# +# psycopg2 is free software: you can redistribute it and/or modify it +# under the terms of the GNU Lesser General Public License as published +# by the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# In addition, as a special exception, the copyright holders give +# permission to link this program with the OpenSSL library (or with +# modified versions of OpenSSL that use the same license as OpenSSL), +# and distribute linked combinations including the two. +# +# You must obey the GNU Lesser General Public License in all respects for +# all of the code used other than OpenSSL. +# +# psycopg2 is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public +# License for more details. + +import psycopg2 +from psycopg2 import extensions as _ext + + +class PoolError(psycopg2.Error): + pass + + +class AbstractConnectionPool: + """Generic key-based pooling code.""" + + def __init__(self, minconn, maxconn, *args, **kwargs): + """Initialize the connection pool. + + New 'minconn' connections are created immediately calling 'connfunc' + with given parameters. The connection pool will support a maximum of + about 'maxconn' connections. + """ + self.minconn = int(minconn) + self.maxconn = int(maxconn) + self.closed = False + + self._args = args + self._kwargs = kwargs + + self._pool = [] + self._used = {} + self._rused = {} # id(conn) -> key map + self._keys = 0 + + for i in range(self.minconn): + self._connect() + + def _connect(self, key=None): + """Create a new connection and assign it to 'key' if not None.""" + conn = psycopg2.connect(*self._args, **self._kwargs) + if key is not None: + self._used[key] = conn + self._rused[id(conn)] = key + else: + self._pool.append(conn) + return conn + + def _getkey(self): + """Return a new unique key.""" + self._keys += 1 + return self._keys + + def _getconn(self, key=None): + """Get a free connection and assign it to 'key' if not None.""" + if self.closed: + raise PoolError("connection pool is closed") + if key is None: + key = self._getkey() + + if key in self._used: + return self._used[key] + + if self._pool: + self._used[key] = conn = self._pool.pop() + self._rused[id(conn)] = key + return conn + else: + if len(self._used) == self.maxconn: + raise PoolError("connection pool exhausted") + return self._connect(key) + + def _putconn(self, conn, key=None, close=False): + """Put away a connection.""" + if self.closed: + raise PoolError("connection pool is closed") + + if key is None: + key = self._rused.get(id(conn)) + if key is None: + raise PoolError("trying to put unkeyed connection") + + if len(self._pool) < self.minconn and not close: + # Return the connection into a consistent state before putting + # it back into the pool + if not conn.closed: + status = conn.info.transaction_status + if status == _ext.TRANSACTION_STATUS_UNKNOWN: + # server connection lost + conn.close() + elif status != _ext.TRANSACTION_STATUS_IDLE: + # connection in error or in transaction + conn.rollback() + self._pool.append(conn) + else: + # regular idle connection + self._pool.append(conn) + # If the connection is closed, we just discard it. + else: + conn.close() + + # here we check for the presence of key because it can happen that a + # thread tries to put back a connection after a call to close + if not self.closed or key in self._used: + del self._used[key] + del self._rused[id(conn)] + + def _closeall(self): + """Close all connections. + + Note that this can lead to some code fail badly when trying to use + an already closed connection. If you call .closeall() make sure + your code can deal with it. + """ + if self.closed: + raise PoolError("connection pool is closed") + for conn in self._pool + list(self._used.values()): + try: + conn.close() + except Exception: + pass + self.closed = True + + +class SimpleConnectionPool(AbstractConnectionPool): + """A connection pool that can't be shared across different threads.""" + + getconn = AbstractConnectionPool._getconn + putconn = AbstractConnectionPool._putconn + closeall = AbstractConnectionPool._closeall + + +class ThreadedConnectionPool(AbstractConnectionPool): + """A connection pool that works with the threading module.""" + + def __init__(self, minconn, maxconn, *args, **kwargs): + """Initialize the threading lock.""" + import threading + AbstractConnectionPool.__init__( + self, minconn, maxconn, *args, **kwargs) + self._lock = threading.Lock() + + def getconn(self, key=None): + """Get a free connection and assign it to 'key' if not None.""" + self._lock.acquire() + try: + return self._getconn(key) + finally: + self._lock.release() + + def putconn(self, conn=None, key=None, close=False): + """Put away an unused connection.""" + self._lock.acquire() + try: + self._putconn(conn, key, close) + finally: + self._lock.release() + + def closeall(self): + """Close all connections (even the one currently in use.)""" + self._lock.acquire() + try: + self._closeall() + finally: + self._lock.release() diff --git a/cmts_api_env/lib/python3.12/site-packages/psycopg2/sql.py b/cmts_api_env/lib/python3.12/site-packages/psycopg2/sql.py new file mode 100644 index 0000000..69b352b --- /dev/null +++ b/cmts_api_env/lib/python3.12/site-packages/psycopg2/sql.py @@ -0,0 +1,455 @@ +"""SQL composition utility module +""" + +# psycopg/sql.py - SQL composition utility module +# +# Copyright (C) 2016-2019 Daniele Varrazzo +# Copyright (C) 2020-2021 The Psycopg Team +# +# psycopg2 is free software: you can redistribute it and/or modify it +# under the terms of the GNU Lesser General Public License as published +# by the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# In addition, as a special exception, the copyright holders give +# permission to link this program with the OpenSSL library (or with +# modified versions of OpenSSL that use the same license as OpenSSL), +# and distribute linked combinations including the two. +# +# You must obey the GNU Lesser General Public License in all respects for +# all of the code used other than OpenSSL. +# +# psycopg2 is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public +# License for more details. + +import string + +from psycopg2 import extensions as ext + + +_formatter = string.Formatter() + + +class Composable: + """ + Abstract base class for objects that can be used to compose an SQL string. + + `!Composable` objects can be passed directly to `~cursor.execute()`, + `~cursor.executemany()`, `~cursor.copy_expert()` in place of the query + string. + + `!Composable` objects can be joined using the ``+`` operator: the result + will be a `Composed` instance containing the objects joined. The operator + ``*`` is also supported with an integer argument: the result is a + `!Composed` instance containing the left argument repeated as many times as + requested. + """ + def __init__(self, wrapped): + self._wrapped = wrapped + + def __repr__(self): + return f"{self.__class__.__name__}({self._wrapped!r})" + + def as_string(self, context): + """ + Return the string value of the object. + + :param context: the context to evaluate the string into. + :type context: `connection` or `cursor` + + The method is automatically invoked by `~cursor.execute()`, + `~cursor.executemany()`, `~cursor.copy_expert()` if a `!Composable` is + passed instead of the query string. + """ + raise NotImplementedError + + def __add__(self, other): + if isinstance(other, Composed): + return Composed([self]) + other + if isinstance(other, Composable): + return Composed([self]) + Composed([other]) + else: + return NotImplemented + + def __mul__(self, n): + return Composed([self] * n) + + def __eq__(self, other): + return type(self) is type(other) and self._wrapped == other._wrapped + + def __ne__(self, other): + return not self.__eq__(other) + + +class Composed(Composable): + """ + A `Composable` object made of a sequence of `!Composable`. + + The object is usually created using `!Composable` operators and methods. + However it is possible to create a `!Composed` directly specifying a + sequence of `!Composable` as arguments. + + Example:: + + >>> comp = sql.Composed( + ... [sql.SQL("insert into "), sql.Identifier("table")]) + >>> print(comp.as_string(conn)) + insert into "table" + + `!Composed` objects are iterable (so they can be used in `SQL.join` for + instance). + """ + def __init__(self, seq): + wrapped = [] + for i in seq: + if not isinstance(i, Composable): + raise TypeError( + f"Composed elements must be Composable, got {i!r} instead") + wrapped.append(i) + + super().__init__(wrapped) + + @property + def seq(self): + """The list of the content of the `!Composed`.""" + return list(self._wrapped) + + def as_string(self, context): + rv = [] + for i in self._wrapped: + rv.append(i.as_string(context)) + return ''.join(rv) + + def __iter__(self): + return iter(self._wrapped) + + def __add__(self, other): + if isinstance(other, Composed): + return Composed(self._wrapped + other._wrapped) + if isinstance(other, Composable): + return Composed(self._wrapped + [other]) + else: + return NotImplemented + + def join(self, joiner): + """ + Return a new `!Composed` interposing the *joiner* with the `!Composed` items. + + The *joiner* must be a `SQL` or a string which will be interpreted as + an `SQL`. + + Example:: + + >>> fields = sql.Identifier('foo') + sql.Identifier('bar') # a Composed + >>> print(fields.join(', ').as_string(conn)) + "foo", "bar" + + """ + if isinstance(joiner, str): + joiner = SQL(joiner) + elif not isinstance(joiner, SQL): + raise TypeError( + "Composed.join() argument must be a string or an SQL") + + return joiner.join(self) + + +class SQL(Composable): + """ + A `Composable` representing a snippet of SQL statement. + + `!SQL` exposes `join()` and `format()` methods useful to create a template + where to merge variable parts of a query (for instance field or table + names). + + The *string* doesn't undergo any form of escaping, so it is not suitable to + represent variable identifiers or values: you should only use it to pass + constant strings representing templates or snippets of SQL statements; use + other objects such as `Identifier` or `Literal` to represent variable + parts. + + Example:: + + >>> query = sql.SQL("select {0} from {1}").format( + ... sql.SQL(', ').join([sql.Identifier('foo'), sql.Identifier('bar')]), + ... sql.Identifier('table')) + >>> print(query.as_string(conn)) + select "foo", "bar" from "table" + """ + def __init__(self, string): + if not isinstance(string, str): + raise TypeError("SQL values must be strings") + super().__init__(string) + + @property + def string(self): + """The string wrapped by the `!SQL` object.""" + return self._wrapped + + def as_string(self, context): + return self._wrapped + + def format(self, *args, **kwargs): + """ + Merge `Composable` objects into a template. + + :param `Composable` args: parameters to replace to numbered + (``{0}``, ``{1}``) or auto-numbered (``{}``) placeholders + :param `Composable` kwargs: parameters to replace to named (``{name}``) + placeholders + :return: the union of the `!SQL` string with placeholders replaced + :rtype: `Composed` + + The method is similar to the Python `str.format()` method: the string + template supports auto-numbered (``{}``), numbered (``{0}``, + ``{1}``...), and named placeholders (``{name}``), with positional + arguments replacing the numbered placeholders and keywords replacing + the named ones. However placeholder modifiers (``{0!r}``, ``{0:<10}``) + are not supported. Only `!Composable` objects can be passed to the + template. + + Example:: + + >>> print(sql.SQL("select * from {} where {} = %s") + ... .format(sql.Identifier('people'), sql.Identifier('id')) + ... .as_string(conn)) + select * from "people" where "id" = %s + + >>> print(sql.SQL("select * from {tbl} where {pkey} = %s") + ... .format(tbl=sql.Identifier('people'), pkey=sql.Identifier('id')) + ... .as_string(conn)) + select * from "people" where "id" = %s + + """ + rv = [] + autonum = 0 + for pre, name, spec, conv in _formatter.parse(self._wrapped): + if spec: + raise ValueError("no format specification supported by SQL") + if conv: + raise ValueError("no format conversion supported by SQL") + if pre: + rv.append(SQL(pre)) + + if name is None: + continue + + if name.isdigit(): + if autonum: + raise ValueError( + "cannot switch from automatic field numbering to manual") + rv.append(args[int(name)]) + autonum = None + + elif not name: + if autonum is None: + raise ValueError( + "cannot switch from manual field numbering to automatic") + rv.append(args[autonum]) + autonum += 1 + + else: + rv.append(kwargs[name]) + + return Composed(rv) + + def join(self, seq): + """ + Join a sequence of `Composable`. + + :param seq: the elements to join. + :type seq: iterable of `!Composable` + + Use the `!SQL` object's *string* to separate the elements in *seq*. + Note that `Composed` objects are iterable too, so they can be used as + argument for this method. + + Example:: + + >>> snip = sql.SQL(', ').join( + ... sql.Identifier(n) for n in ['foo', 'bar', 'baz']) + >>> print(snip.as_string(conn)) + "foo", "bar", "baz" + """ + rv = [] + it = iter(seq) + try: + rv.append(next(it)) + except StopIteration: + pass + else: + for i in it: + rv.append(self) + rv.append(i) + + return Composed(rv) + + +class Identifier(Composable): + """ + A `Composable` representing an SQL identifier or a dot-separated sequence. + + Identifiers usually represent names of database objects, such as tables or + fields. PostgreSQL identifiers follow `different rules`__ than SQL string + literals for escaping (e.g. they use double quotes instead of single). + + .. __: https://www.postgresql.org/docs/current/static/sql-syntax-lexical.html# \ + SQL-SYNTAX-IDENTIFIERS + + Example:: + + >>> t1 = sql.Identifier("foo") + >>> t2 = sql.Identifier("ba'r") + >>> t3 = sql.Identifier('ba"z') + >>> print(sql.SQL(', ').join([t1, t2, t3]).as_string(conn)) + "foo", "ba'r", "ba""z" + + Multiple strings can be passed to the object to represent a qualified name, + i.e. a dot-separated sequence of identifiers. + + Example:: + + >>> query = sql.SQL("select {} from {}").format( + ... sql.Identifier("table", "field"), + ... sql.Identifier("schema", "table")) + >>> print(query.as_string(conn)) + select "table"."field" from "schema"."table" + + """ + def __init__(self, *strings): + if not strings: + raise TypeError("Identifier cannot be empty") + + for s in strings: + if not isinstance(s, str): + raise TypeError("SQL identifier parts must be strings") + + super().__init__(strings) + + @property + def strings(self): + """A tuple with the strings wrapped by the `Identifier`.""" + return self._wrapped + + @property + def string(self): + """The string wrapped by the `Identifier`. + """ + if len(self._wrapped) == 1: + return self._wrapped[0] + else: + raise AttributeError( + "the Identifier wraps more than one than one string") + + def __repr__(self): + return f"{self.__class__.__name__}({', '.join(map(repr, self._wrapped))})" + + def as_string(self, context): + return '.'.join(ext.quote_ident(s, context) for s in self._wrapped) + + +class Literal(Composable): + """ + A `Composable` representing an SQL value to include in a query. + + Usually you will want to include placeholders in the query and pass values + as `~cursor.execute()` arguments. If however you really really need to + include a literal value in the query you can use this object. + + The string returned by `!as_string()` follows the normal :ref:`adaptation + rules ` for Python objects. + + Example:: + + >>> s1 = sql.Literal("foo") + >>> s2 = sql.Literal("ba'r") + >>> s3 = sql.Literal(42) + >>> print(sql.SQL(', ').join([s1, s2, s3]).as_string(conn)) + 'foo', 'ba''r', 42 + + """ + @property + def wrapped(self): + """The object wrapped by the `!Literal`.""" + return self._wrapped + + def as_string(self, context): + # is it a connection or cursor? + if isinstance(context, ext.connection): + conn = context + elif isinstance(context, ext.cursor): + conn = context.connection + else: + raise TypeError("context must be a connection or a cursor") + + a = ext.adapt(self._wrapped) + if hasattr(a, 'prepare'): + a.prepare(conn) + + rv = a.getquoted() + if isinstance(rv, bytes): + rv = rv.decode(ext.encodings[conn.encoding]) + + return rv + + +class Placeholder(Composable): + """A `Composable` representing a placeholder for query parameters. + + If the name is specified, generate a named placeholder (e.g. ``%(name)s``), + otherwise generate a positional placeholder (e.g. ``%s``). + + The object is useful to generate SQL queries with a variable number of + arguments. + + Examples:: + + >>> names = ['foo', 'bar', 'baz'] + + >>> q1 = sql.SQL("insert into table ({}) values ({})").format( + ... sql.SQL(', ').join(map(sql.Identifier, names)), + ... sql.SQL(', ').join(sql.Placeholder() * len(names))) + >>> print(q1.as_string(conn)) + insert into table ("foo", "bar", "baz") values (%s, %s, %s) + + >>> q2 = sql.SQL("insert into table ({}) values ({})").format( + ... sql.SQL(', ').join(map(sql.Identifier, names)), + ... sql.SQL(', ').join(map(sql.Placeholder, names))) + >>> print(q2.as_string(conn)) + insert into table ("foo", "bar", "baz") values (%(foo)s, %(bar)s, %(baz)s) + + """ + + def __init__(self, name=None): + if isinstance(name, str): + if ')' in name: + raise ValueError(f"invalid name: {name!r}") + + elif name is not None: + raise TypeError(f"expected string or None as name, got {name!r}") + + super().__init__(name) + + @property + def name(self): + """The name of the `!Placeholder`.""" + return self._wrapped + + def __repr__(self): + if self._wrapped is None: + return f"{self.__class__.__name__}()" + else: + return f"{self.__class__.__name__}({self._wrapped!r})" + + def as_string(self, context): + if self._wrapped is not None: + return f"%({self._wrapped})s" + else: + return "%s" + + +# Literals +NULL = SQL("NULL") +DEFAULT = SQL("DEFAULT") diff --git a/cmts_api_env/lib/python3.12/site-packages/psycopg2/tz.py b/cmts_api_env/lib/python3.12/site-packages/psycopg2/tz.py new file mode 100644 index 0000000..d88ca37 --- /dev/null +++ b/cmts_api_env/lib/python3.12/site-packages/psycopg2/tz.py @@ -0,0 +1,158 @@ +"""tzinfo implementations for psycopg2 + +This module holds two different tzinfo implementations that can be used as +the 'tzinfo' argument to datetime constructors, directly passed to psycopg +functions or used to set the .tzinfo_factory attribute in cursors. +""" +# psycopg/tz.py - tzinfo implementation +# +# Copyright (C) 2003-2019 Federico Di Gregorio +# Copyright (C) 2020-2021 The Psycopg Team +# +# psycopg2 is free software: you can redistribute it and/or modify it +# under the terms of the GNU Lesser General Public License as published +# by the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# In addition, as a special exception, the copyright holders give +# permission to link this program with the OpenSSL library (or with +# modified versions of OpenSSL that use the same license as OpenSSL), +# and distribute linked combinations including the two. +# +# You must obey the GNU Lesser General Public License in all respects for +# all of the code used other than OpenSSL. +# +# psycopg2 is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public +# License for more details. + +import datetime +import time + +ZERO = datetime.timedelta(0) + + +class FixedOffsetTimezone(datetime.tzinfo): + """Fixed offset in minutes east from UTC. + + This is exactly the implementation__ found in Python 2.3.x documentation, + with a small change to the `!__init__()` method to allow for pickling + and a default name in the form ``sHH:MM`` (``s`` is the sign.). + + The implementation also caches instances. During creation, if a + FixedOffsetTimezone instance has previously been created with the same + offset and name that instance will be returned. This saves memory and + improves comparability. + + .. versionchanged:: 2.9 + + The constructor can take either a timedelta or a number of minutes of + offset. Previously only minutes were supported. + + .. __: https://docs.python.org/library/datetime.html + """ + _name = None + _offset = ZERO + + _cache = {} + + def __init__(self, offset=None, name=None): + if offset is not None: + if not isinstance(offset, datetime.timedelta): + offset = datetime.timedelta(minutes=offset) + self._offset = offset + if name is not None: + self._name = name + + def __new__(cls, offset=None, name=None): + """Return a suitable instance created earlier if it exists + """ + key = (offset, name) + try: + return cls._cache[key] + except KeyError: + tz = super().__new__(cls, offset, name) + cls._cache[key] = tz + return tz + + def __repr__(self): + return "psycopg2.tz.FixedOffsetTimezone(offset=%r, name=%r)" \ + % (self._offset, self._name) + + def __eq__(self, other): + if isinstance(other, FixedOffsetTimezone): + return self._offset == other._offset + else: + return NotImplemented + + def __ne__(self, other): + if isinstance(other, FixedOffsetTimezone): + return self._offset != other._offset + else: + return NotImplemented + + def __getinitargs__(self): + return self._offset, self._name + + def utcoffset(self, dt): + return self._offset + + def tzname(self, dt): + if self._name is not None: + return self._name + + minutes, seconds = divmod(self._offset.total_seconds(), 60) + hours, minutes = divmod(minutes, 60) + rv = "%+03d" % hours + if minutes or seconds: + rv += ":%02d" % minutes + if seconds: + rv += ":%02d" % seconds + + return rv + + def dst(self, dt): + return ZERO + + +STDOFFSET = datetime.timedelta(seconds=-time.timezone) +if time.daylight: + DSTOFFSET = datetime.timedelta(seconds=-time.altzone) +else: + DSTOFFSET = STDOFFSET +DSTDIFF = DSTOFFSET - STDOFFSET + + +class LocalTimezone(datetime.tzinfo): + """Platform idea of local timezone. + + This is the exact implementation from the Python 2.3 documentation. + """ + def utcoffset(self, dt): + if self._isdst(dt): + return DSTOFFSET + else: + return STDOFFSET + + def dst(self, dt): + if self._isdst(dt): + return DSTDIFF + else: + return ZERO + + def tzname(self, dt): + return time.tzname[self._isdst(dt)] + + def _isdst(self, dt): + tt = (dt.year, dt.month, dt.day, + dt.hour, dt.minute, dt.second, + dt.weekday(), 0, -1) + stamp = time.mktime(tt) + tt = time.localtime(stamp) + return tt.tm_isdst > 0 + + +LOCAL = LocalTimezone() + +# TODO: pre-generate some interesting time zones? diff --git a/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary-2.9.12.dist-info/INSTALLER b/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary-2.9.12.dist-info/INSTALLER new file mode 100644 index 0000000..a1b589e --- /dev/null +++ b/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary-2.9.12.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary-2.9.12.dist-info/METADATA b/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary-2.9.12.dist-info/METADATA new file mode 100644 index 0000000..cd04cf1 --- /dev/null +++ b/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary-2.9.12.dist-info/METADATA @@ -0,0 +1,131 @@ +Metadata-Version: 2.4 +Name: psycopg2-binary +Version: 2.9.12 +Summary: psycopg2 - Python-PostgreSQL Database Adapter +Home-page: https://psycopg.org/ +Author: Federico Di Gregorio +Author-email: fog@initd.org +Maintainer: Daniele Varrazzo +Maintainer-email: daniele.varrazzo@gmail.com +License: LGPL with exceptions +Project-URL: Homepage, https://psycopg.org/ +Project-URL: Changes, https://www.psycopg.org/docs/news.html +Project-URL: Documentation, https://www.psycopg.org/docs/ +Project-URL: Code, https://github.com/psycopg/psycopg2 +Project-URL: Issue Tracker, https://github.com/psycopg/psycopg2/issues +Project-URL: Download, https://pypi.org/project/psycopg2/ +Platform: any +Classifier: Development Status :: 5 - Production/Stable +Classifier: Intended Audience :: Developers +Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL) +Classifier: Programming Language :: Python +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3.9 +Classifier: Programming Language :: Python :: 3.10 +Classifier: Programming Language :: Python :: 3.11 +Classifier: Programming Language :: Python :: 3.12 +Classifier: Programming Language :: Python :: 3.13 +Classifier: Programming Language :: Python :: 3.14 +Classifier: Programming Language :: Python :: 3 :: Only +Classifier: Programming Language :: Python :: Implementation :: CPython +Classifier: Programming Language :: C +Classifier: Programming Language :: SQL +Classifier: Topic :: Database +Classifier: Topic :: Database :: Front-Ends +Classifier: Topic :: Software Development +Classifier: Topic :: Software Development :: Libraries :: Python Modules +Classifier: Operating System :: Microsoft :: Windows +Classifier: Operating System :: Unix +Requires-Python: >=3.9 +License-File: LICENSE +Dynamic: author +Dynamic: author-email +Dynamic: classifier +Dynamic: description +Dynamic: home-page +Dynamic: license +Dynamic: license-file +Dynamic: maintainer +Dynamic: maintainer-email +Dynamic: platform +Dynamic: project-url +Dynamic: requires-python +Dynamic: summary + +Psycopg is the most popular PostgreSQL database adapter for the Python +programming language. Its main features are the complete implementation of +the Python DB API 2.0 specification and the thread safety (several threads can +share the same connection). It was designed for heavily multi-threaded +applications that create and destroy lots of cursors and make a large number +of concurrent "INSERT"s or "UPDATE"s. + +Psycopg 2 is mostly implemented in C as a libpq wrapper, resulting in being +both efficient and secure. It features client-side and server-side cursors, +asynchronous communication and notifications, "COPY TO/COPY FROM" support. +Many Python types are supported out-of-the-box and adapted to matching +PostgreSQL data types; adaptation can be extended and customized thanks to a +flexible objects adaptation system. + +Psycopg 2 is both Unicode and Python 3 friendly. + +.. Note:: + + The psycopg2 package is still widely used and actively maintained, but it + is not expected to receive new features. + + `Psycopg 3`__ is the evolution of psycopg2 and is where `new features are + being developed`__: if you are starting a new project you should probably + start from 3! + + .. __: https://pypi.org/project/psycopg/ + .. __: https://www.psycopg.org/psycopg3/docs/index.html + + +Documentation +------------- + +Documentation is included in the ``doc`` directory and is `available online`__. + +.. __: https://www.psycopg.org/docs/ + +For any other resource (source code repository, bug tracker, mailing list) +please check the `project homepage`__. + +.. __: https://psycopg.org/ + + +Installation +------------ + +Building Psycopg requires a few prerequisites (a C compiler, some development +packages): please check the install_ and the faq_ documents in the ``doc`` dir +or online for the details. + +If prerequisites are met, you can install psycopg like any other Python +package, using ``pip`` to download it from PyPI_:: + + $ pip install psycopg2 + +or using ``setup.py`` if you have downloaded the source package locally:: + + $ python setup.py build + $ sudo python setup.py install + +You can also obtain a stand-alone package, not requiring a compiler or +external libraries, by installing the `psycopg2-binary`_ package from PyPI:: + + $ pip install psycopg2-binary + +The binary package is a practical choice for development and testing but in +production it is advised to use the package built from sources. + +.. _PyPI: https://pypi.org/project/psycopg2/ +.. _psycopg2-binary: https://pypi.org/project/psycopg2-binary/ +.. _install: https://www.psycopg.org/docs/install.html#install-from-source +.. _faq: https://www.psycopg.org/docs/faq.html#faq-compile + +:Build status: |gh-actions| + +.. |gh-actions| image:: https://github.com/psycopg/psycopg2/actions/workflows/tests.yml/badge.svg + :target: https://github.com/psycopg/psycopg2/actions/workflows/tests.yml + :alt: Build status diff --git a/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary-2.9.12.dist-info/RECORD b/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary-2.9.12.dist-info/RECORD new file mode 100644 index 0000000..0256562 --- /dev/null +++ b/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary-2.9.12.dist-info/RECORD @@ -0,0 +1,46 @@ +psycopg2/__init__.py,sha256=9mo5Qd0uWHiEBx2CdogGos2kNqtlNNGzbtYlGC0hWS8,4768 +psycopg2/__pycache__/__init__.cpython-312.pyc,, +psycopg2/__pycache__/_ipaddress.cpython-312.pyc,, +psycopg2/__pycache__/_json.cpython-312.pyc,, +psycopg2/__pycache__/_range.cpython-312.pyc,, +psycopg2/__pycache__/errorcodes.cpython-312.pyc,, +psycopg2/__pycache__/errors.cpython-312.pyc,, +psycopg2/__pycache__/extensions.cpython-312.pyc,, +psycopg2/__pycache__/extras.cpython-312.pyc,, +psycopg2/__pycache__/pool.cpython-312.pyc,, +psycopg2/__pycache__/sql.cpython-312.pyc,, +psycopg2/__pycache__/tz.cpython-312.pyc,, +psycopg2/_ipaddress.py,sha256=jkuyhLgqUGRBcLNWDM8QJysV6q1Npc_RYH4_kE7JZPU,2922 +psycopg2/_json.py,sha256=XPn4PnzbTg1Dcqz7n1JMv5dKhB5VFV6834GEtxSawt0,7153 +psycopg2/_psycopg.cpython-312-x86_64-linux-gnu.so,sha256=35PQyvdsHEV_QAsePHPkbD5ERDLImmjyI7GbvZBWIYc,339185 +psycopg2/_range.py,sha256=sXeenGraJEEw2I3mc8RlmNivy2jMg7zWoanDes2Ywp8,18494 +psycopg2/errorcodes.py,sha256=8BE_ZAP7bhsISKyLP0gkrWg_NNj1uj37dR356EDe6yo,14512 +psycopg2/errors.py,sha256=aAS4dJyTg1bsDzJDCRQAMB_s7zv-Q4yB6Yvih26I-0M,1425 +psycopg2/extensions.py,sha256=CG0kG5vL8Ot503UGlDXXJJFdFWLg4HE2_c1-lLOLc8M,6797 +psycopg2/extras.py,sha256=oBfrdvtWn8ITxc3x-h2h6IwHUsWdVqCdf4Gphb0JqY8,44215 +psycopg2/pool.py,sha256=UGEt8IdP3xNc2PGYNlG4sQvg8nhf4aeCnz39hTR0H8I,6316 +psycopg2/sql.py,sha256=OcFEAmpe2aMfrx0MEk4Lx00XvXXJCmvllaOVbJY-yoE,14779 +psycopg2/tz.py,sha256=r95kK7eGSpOYr_luCyYsznHMzjl52sLjsnSPXkXLzRI,4870 +psycopg2_binary-2.9.12.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +psycopg2_binary-2.9.12.dist-info/METADATA,sha256=iGJmJEDbMQgO-BIiGz5RdsG3iHMOXh0TdUkKyHDMVRQ,4936 +psycopg2_binary-2.9.12.dist-info/RECORD,, +psycopg2_binary-2.9.12.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +psycopg2_binary-2.9.12.dist-info/WHEEL,sha256=xZDW7cs1uNrIXupugSX6MuN9g_ZyR5vcfKfhfn3-rY4,151 +psycopg2_binary-2.9.12.dist-info/licenses/LICENSE,sha256=lhS4XfyacsWyyjMUTB1-HtOxwpdFnZ-yimpXYsLo1xs,2238 +psycopg2_binary-2.9.12.dist-info/sboms/auditwheel.cdx.json,sha256=Brfy_dvl_MZ5EvxyoKv41ox3GS3gs1dhBdlY8vdusBM,5207 +psycopg2_binary-2.9.12.dist-info/top_level.txt,sha256=7dHGpLqQ3w-vGmGEVn-7uK90qU9fyrGdWWi7S-gTcnM,9 +psycopg2_binary.libs/libcom_err-2abe824b.so.2.1,sha256=VCbctU3QHJ7t2gXiF58ORxFOi0ilNP_p6UkW55Rxslc,17497 +psycopg2_binary.libs/libcrypt-13f4f5d0.so.1,sha256=p00ehDjSJOD_8U2gAB9eUBKbDWZqEDv5gbl2dwFY0QY,221657 +psycopg2_binary.libs/libcrypto-88208852.so.3,sha256=L9NxVLGTM8C-5G_ySqr6tcOPC5r_S-3BB3U7Z_MWHIA,6498145 +psycopg2_binary.libs/libgssapi_krb5-497db0c6.so.2.2,sha256=KnSwMw7pcygbJvjr5KzvDr-e6ZxraEl8-RUf_2xMNOE,345209 +psycopg2_binary.libs/libk5crypto-b1f99d5c.so.3.1,sha256=mETlAJ5wpq0vsitYcwaBD-Knsbn2uZItqhx4ujRm3ic,219953 +psycopg2_binary.libs/libkeyutils-dfe70bd6.so.1.5,sha256=wp5BsDz0st_7-0lglG4rQvgsDKXVPSMdPw_Fl7onRIg,17913 +psycopg2_binary.libs/libkrb5-fcafa220.so.3.3,sha256=sqq1KP9MqyFE5c4BskasCfV0oHKlP_Y-qB1rspsmuPE,1018953 +psycopg2_binary.libs/libkrb5support-d0bcff84.so.0.1,sha256=anH1fXSP73m05zbVNIh1VF0KIk-okotdYqPPJkf8EJ8,76873 +psycopg2_binary.libs/liblber-314cbfbf.so.2.0.200,sha256=_bpFU48deTqZAnl8X4iLOeel6Le_X-BEfgGrf0h8G8c,60977 +psycopg2_binary.libs/libldap-331dad9d.so.2.0.200,sha256=xWGR3ra3Jr9AhjT0ZSLqToKQh7hbumGa4lBxjW7Z_8Y,447321 +psycopg2_binary.libs/libpcre-9513aab5.so.1.2.0,sha256=Au2oUOBJMWVtivgfUXG_902L7BVT09hcPTLX_F7-iGQ,406817 +psycopg2_binary.libs/libpq-f521cc7d.so.5.17,sha256=wocPdLpZpDVQtRXrcETsNeZtd2dPZcfXhMIkeWbhiT8,387497 +psycopg2_binary.libs/libsasl2-84219a89.so.3.0.0,sha256=rj-JZ9X6GR2sfGrl-RMPZZzy9ctmsvflxaGlpHNp_lo,134753 +psycopg2_binary.libs/libselinux-0922c95c.so.1,sha256=1PqOf7Ot2WCmgyWlnJaUJErqMhP9c5pQgVywZ8SWVlQ,178337 +psycopg2_binary.libs/libssl-fe1b61af.so.3,sha256=Lbg-TzkwZmdMkOv97HNnznBwIJMXVKS6spldKto3fEM,1147337 diff --git a/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary-2.9.12.dist-info/REQUESTED b/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary-2.9.12.dist-info/REQUESTED new file mode 100644 index 0000000..e69de29 diff --git a/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary-2.9.12.dist-info/WHEEL b/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary-2.9.12.dist-info/WHEEL new file mode 100644 index 0000000..0d1031a --- /dev/null +++ b/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary-2.9.12.dist-info/WHEEL @@ -0,0 +1,6 @@ +Wheel-Version: 1.0 +Generator: setuptools (82.0.1) +Root-Is-Purelib: false +Tag: cp312-cp312-manylinux_2_17_x86_64 +Tag: cp312-cp312-manylinux2014_x86_64 + diff --git a/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary-2.9.12.dist-info/licenses/LICENSE b/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary-2.9.12.dist-info/licenses/LICENSE new file mode 100644 index 0000000..9029e70 --- /dev/null +++ b/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary-2.9.12.dist-info/licenses/LICENSE @@ -0,0 +1,49 @@ +psycopg2 and the LGPL +--------------------- + +psycopg2 is free software: you can redistribute it and/or modify it +under the terms of the GNU Lesser General Public License as published +by the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +psycopg2 is distributed in the hope that it will be useful, but WITHOUT +ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public +License for more details. + +In addition, as a special exception, the copyright holders give +permission to link this program with the OpenSSL library (or with +modified versions of OpenSSL that use the same license as OpenSSL), +and distribute linked combinations including the two. + +You must obey the GNU Lesser General Public License in all respects for +all of the code used other than OpenSSL. If you modify file(s) with this +exception, you may extend this exception to your version of the file(s), +but you are not obligated to do so. If you do not wish to do so, delete +this exception statement from your version. If you delete this exception +statement from all source files in the program, then also delete it here. + +You should have received a copy of the GNU Lesser General Public License +along with psycopg2 (see the doc/ directory.) +If not, see . + + +Alternative licenses +-------------------- + +The following BSD-like license applies (at your option) to the files following +the pattern ``psycopg/adapter*.{h,c}`` and ``psycopg/microprotocol*.{h,c}``: + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this + software in a product, an acknowledgment in the product documentation + would be appreciated but is not required. + + 2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + + 3. This notice may not be removed or altered from any source distribution. diff --git a/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary-2.9.12.dist-info/sboms/auditwheel.cdx.json b/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary-2.9.12.dist-info/sboms/auditwheel.cdx.json new file mode 100644 index 0000000..d5d4249 --- /dev/null +++ b/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary-2.9.12.dist-info/sboms/auditwheel.cdx.json @@ -0,0 +1 @@ +{"bomFormat": "CycloneDX", "specVersion": "1.4", "version": 1, "metadata": {"component": {"type": "library", "bom-ref": "pkg:pypi/psycopg2_binary@2.9.12?file_name=psycopg2_binary-2.9.12-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", "name": "psycopg2_binary", "version": "2.9.12", "purl": "pkg:pypi/psycopg2_binary@2.9.12?file_name=psycopg2_binary-2.9.12-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl"}, "tools": [{"name": "auditwheel", "version": "6.6.0"}]}, "components": [{"type": "library", "bom-ref": "pkg:pypi/psycopg2_binary@2.9.12?file_name=psycopg2_binary-2.9.12-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", "name": "psycopg2_binary", "version": "2.9.12", "purl": "pkg:pypi/psycopg2_binary@2.9.12?file_name=psycopg2_binary-2.9.12-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl"}, {"type": "library", "bom-ref": "pkg:rpm/centos/cyrus-sasl-lib@2.1.26-24.el7_9#31c73dc5f009ba5a48504f874a39167409302b93174b17cecb1e4e2033f1b9b2", "name": "cyrus-sasl-lib", "version": "2.1.26-24.el7_9", "purl": "pkg:rpm/centos/cyrus-sasl-lib@2.1.26-24.el7_9"}, {"type": "library", "bom-ref": "pkg:rpm/centos/krb5-libs@1.15.1-55.el7_9#e140566d00db0f579c699b6d9e76106beaf31c2b7fb445a03fa070ecbba23222", "name": "krb5-libs", "version": "1.15.1-55.el7_9", "purl": "pkg:rpm/centos/krb5-libs@1.15.1-55.el7_9"}, {"type": "library", "bom-ref": "pkg:rpm/centos/pcre@8.32-17.el7#13c83851f49804fee35d2a5d04c7c9838574be59111e142a6f19d928b13e7f72", "name": "pcre", "version": "8.32-17.el7", "purl": "pkg:rpm/centos/pcre@8.32-17.el7"}, {"type": "library", "bom-ref": "pkg:rpm/centos/keyutils-libs@1.5.8-3.el7#b0804f4bd8708c97010e5324dbe6e1ed8cd5e622524afc3f44b4cf95c9e6cfd9", "name": "keyutils-libs", "version": "1.5.8-3.el7", "purl": "pkg:rpm/centos/keyutils-libs@1.5.8-3.el7"}, {"type": "library", "bom-ref": "pkg:rpm/centos/krb5-libs@1.15.1-55.el7_9#f48174b591f1b33596ce2a474abd314f36bca16bec53d13690741df18627f518", "name": "krb5-libs", "version": "1.15.1-55.el7_9", "purl": "pkg:rpm/centos/krb5-libs@1.15.1-55.el7_9"}, {"type": "library", "bom-ref": "pkg:rpm/centos/libcom_err@1.42.9-19.el7#acf5d4191003325e79febc61cc2cc17ecbb1c49f03b73edbc4677777f25b75ce", "name": "libcom_err", "version": "1.42.9-19.el7", "purl": "pkg:rpm/centos/libcom_err@1.42.9-19.el7"}, {"type": "library", "bom-ref": "pkg:rpm/centos/krb5-libs@1.15.1-55.el7_9#8cee64e9f2ddb592df8075ecb6489ed5727979b245606ae73dae382890f54ed5", "name": "krb5-libs", "version": "1.15.1-55.el7_9", "purl": "pkg:rpm/centos/krb5-libs@1.15.1-55.el7_9"}, {"type": "library", "bom-ref": "pkg:rpm/centos/libselinux@2.5-15.el7#02193ff4a4eff6fcc27e9c3cf39839797d150f578de0826f36a41de8ede637ed", "name": "libselinux", "version": "2.5-15.el7", "purl": "pkg:rpm/centos/libselinux@2.5-15.el7"}, {"type": "library", "bom-ref": "pkg:rpm/centos/krb5-libs@1.15.1-55.el7_9#5b1da461e2c57feebadb3f96f47736f4b17ad56a83895f95d60a166ced6472b0", "name": "krb5-libs", "version": "1.15.1-55.el7_9", "purl": "pkg:rpm/centos/krb5-libs@1.15.1-55.el7_9"}], "dependencies": [{"ref": "pkg:pypi/psycopg2_binary@2.9.12?file_name=psycopg2_binary-2.9.12-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", "dependsOn": ["pkg:rpm/centos/cyrus-sasl-lib@2.1.26-24.el7_9#31c73dc5f009ba5a48504f874a39167409302b93174b17cecb1e4e2033f1b9b2", "pkg:rpm/centos/krb5-libs@1.15.1-55.el7_9#e140566d00db0f579c699b6d9e76106beaf31c2b7fb445a03fa070ecbba23222", "pkg:rpm/centos/pcre@8.32-17.el7#13c83851f49804fee35d2a5d04c7c9838574be59111e142a6f19d928b13e7f72", "pkg:rpm/centos/keyutils-libs@1.5.8-3.el7#b0804f4bd8708c97010e5324dbe6e1ed8cd5e622524afc3f44b4cf95c9e6cfd9", "pkg:rpm/centos/krb5-libs@1.15.1-55.el7_9#f48174b591f1b33596ce2a474abd314f36bca16bec53d13690741df18627f518", "pkg:rpm/centos/libcom_err@1.42.9-19.el7#acf5d4191003325e79febc61cc2cc17ecbb1c49f03b73edbc4677777f25b75ce", "pkg:rpm/centos/krb5-libs@1.15.1-55.el7_9#8cee64e9f2ddb592df8075ecb6489ed5727979b245606ae73dae382890f54ed5", "pkg:rpm/centos/libselinux@2.5-15.el7#02193ff4a4eff6fcc27e9c3cf39839797d150f578de0826f36a41de8ede637ed", "pkg:rpm/centos/krb5-libs@1.15.1-55.el7_9#5b1da461e2c57feebadb3f96f47736f4b17ad56a83895f95d60a166ced6472b0"]}, {"ref": "pkg:rpm/centos/cyrus-sasl-lib@2.1.26-24.el7_9#31c73dc5f009ba5a48504f874a39167409302b93174b17cecb1e4e2033f1b9b2"}, {"ref": "pkg:rpm/centos/krb5-libs@1.15.1-55.el7_9#e140566d00db0f579c699b6d9e76106beaf31c2b7fb445a03fa070ecbba23222"}, {"ref": "pkg:rpm/centos/pcre@8.32-17.el7#13c83851f49804fee35d2a5d04c7c9838574be59111e142a6f19d928b13e7f72"}, {"ref": "pkg:rpm/centos/keyutils-libs@1.5.8-3.el7#b0804f4bd8708c97010e5324dbe6e1ed8cd5e622524afc3f44b4cf95c9e6cfd9"}, {"ref": "pkg:rpm/centos/krb5-libs@1.15.1-55.el7_9#f48174b591f1b33596ce2a474abd314f36bca16bec53d13690741df18627f518"}, {"ref": "pkg:rpm/centos/libcom_err@1.42.9-19.el7#acf5d4191003325e79febc61cc2cc17ecbb1c49f03b73edbc4677777f25b75ce"}, {"ref": "pkg:rpm/centos/krb5-libs@1.15.1-55.el7_9#8cee64e9f2ddb592df8075ecb6489ed5727979b245606ae73dae382890f54ed5"}, {"ref": "pkg:rpm/centos/libselinux@2.5-15.el7#02193ff4a4eff6fcc27e9c3cf39839797d150f578de0826f36a41de8ede637ed"}, {"ref": "pkg:rpm/centos/krb5-libs@1.15.1-55.el7_9#5b1da461e2c57feebadb3f96f47736f4b17ad56a83895f95d60a166ced6472b0"}]} \ No newline at end of file diff --git a/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary-2.9.12.dist-info/top_level.txt b/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary-2.9.12.dist-info/top_level.txt new file mode 100644 index 0000000..658130b --- /dev/null +++ b/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary-2.9.12.dist-info/top_level.txt @@ -0,0 +1 @@ +psycopg2 diff --git a/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary.libs/libcom_err-2abe824b.so.2.1 b/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary.libs/libcom_err-2abe824b.so.2.1 new file mode 100755 index 0000000..76ea28d Binary files /dev/null and b/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary.libs/libcom_err-2abe824b.so.2.1 differ diff --git a/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary.libs/libcrypt-13f4f5d0.so.1 b/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary.libs/libcrypt-13f4f5d0.so.1 new file mode 100755 index 0000000..b91c24a Binary files /dev/null and b/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary.libs/libcrypt-13f4f5d0.so.1 differ diff --git a/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary.libs/libcrypto-88208852.so.3 b/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary.libs/libcrypto-88208852.so.3 new file mode 100755 index 0000000..dff7544 Binary files /dev/null and b/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary.libs/libcrypto-88208852.so.3 differ diff --git a/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary.libs/libgssapi_krb5-497db0c6.so.2.2 b/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary.libs/libgssapi_krb5-497db0c6.so.2.2 new file mode 100755 index 0000000..8254ea4 Binary files /dev/null and b/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary.libs/libgssapi_krb5-497db0c6.so.2.2 differ diff --git a/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary.libs/libk5crypto-b1f99d5c.so.3.1 b/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary.libs/libk5crypto-b1f99d5c.so.3.1 new file mode 100755 index 0000000..cc95502 Binary files /dev/null and b/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary.libs/libk5crypto-b1f99d5c.so.3.1 differ diff --git a/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary.libs/libkeyutils-dfe70bd6.so.1.5 b/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary.libs/libkeyutils-dfe70bd6.so.1.5 new file mode 100755 index 0000000..2070ec6 Binary files /dev/null and b/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary.libs/libkeyutils-dfe70bd6.so.1.5 differ diff --git a/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary.libs/libkrb5-fcafa220.so.3.3 b/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary.libs/libkrb5-fcafa220.so.3.3 new file mode 100755 index 0000000..8f041a1 Binary files /dev/null and b/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary.libs/libkrb5-fcafa220.so.3.3 differ diff --git a/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary.libs/libkrb5support-d0bcff84.so.0.1 b/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary.libs/libkrb5support-d0bcff84.so.0.1 new file mode 100755 index 0000000..da58cde Binary files /dev/null and b/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary.libs/libkrb5support-d0bcff84.so.0.1 differ diff --git a/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary.libs/liblber-314cbfbf.so.2.0.200 b/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary.libs/liblber-314cbfbf.so.2.0.200 new file mode 100755 index 0000000..3e90b94 Binary files /dev/null and b/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary.libs/liblber-314cbfbf.so.2.0.200 differ diff --git a/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary.libs/libldap-331dad9d.so.2.0.200 b/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary.libs/libldap-331dad9d.so.2.0.200 new file mode 100755 index 0000000..4607f85 Binary files /dev/null and b/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary.libs/libldap-331dad9d.so.2.0.200 differ diff --git a/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary.libs/libpcre-9513aab5.so.1.2.0 b/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary.libs/libpcre-9513aab5.so.1.2.0 new file mode 100755 index 0000000..ffd000a Binary files /dev/null and b/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary.libs/libpcre-9513aab5.so.1.2.0 differ diff --git a/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary.libs/libpq-f521cc7d.so.5.17 b/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary.libs/libpq-f521cc7d.so.5.17 new file mode 100755 index 0000000..b763922 Binary files /dev/null and b/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary.libs/libpq-f521cc7d.so.5.17 differ diff --git a/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary.libs/libsasl2-84219a89.so.3.0.0 b/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary.libs/libsasl2-84219a89.so.3.0.0 new file mode 100755 index 0000000..57344c5 Binary files /dev/null and b/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary.libs/libsasl2-84219a89.so.3.0.0 differ diff --git a/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary.libs/libselinux-0922c95c.so.1 b/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary.libs/libselinux-0922c95c.so.1 new file mode 100755 index 0000000..366e9a8 Binary files /dev/null and b/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary.libs/libselinux-0922c95c.so.1 differ diff --git a/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary.libs/libssl-fe1b61af.so.3 b/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary.libs/libssl-fe1b61af.so.3 new file mode 100755 index 0000000..d5dc660 Binary files /dev/null and b/cmts_api_env/lib/python3.12/site-packages/psycopg2_binary.libs/libssl-fe1b61af.so.3 differ diff --git a/cmts_leaf_options_cache.json b/cmts_leaf_options_cache.json new file mode 100644 index 0000000..4615b32 --- /dev/null +++ b/cmts_leaf_options_cache.json @@ -0,0 +1,67029 @@ +{ + "alias": { + "hint": "Possible completions:\nName of the command alias. ccm dcm dcr dcs scr scs", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778217240 + }, + "clock": { + "hint": "Possible completions:\ntimezone", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778217229 + }, + "cable": { + "hint": "Possible completions:\naqm-global Enable/disable AQM globally\naqm-global-ds Enable/disable DS AQM globally\naqm-global-us Enable/disable US AQM globally\nasf-qos-profile\naux-core The Auxiliary cores\nbpi-enforce\nbundle\ncm-status CM-STATUS Configuration\ncmts-steering\ncore-type Core type configuration sub menue\nds-channel-admission-control-profile Downstream admission control profile configuration\nds-phy-profile\nds-rf-port\ndsg\ndsi Configure dsi sub-configuration\ndynamic-secret\nevent\nfdx-rba-schedule\nfdx-resource\nfiber-node Add or change configuration for a fiber-node\nfilter\nflap-list\n\u001b[7m--More--\u001b[27m\b\b\b\b\b\b\b\b \b\b\b\b\b\b\b\b freq-range\ngcp\nl2vpn\nlawful-intercept\nload-balance\nmac-address\nmac-domain\nmac-domain-address-oui MAC domain OUI, XX:XX:XX\nmcast Configure multicast global configuration\nmd-downstream-qos-profile Downstream QOS profile\nmd-upstream-qos-profile Upstream QOS profile\nmod-prof-ofdma\nmodem\nmodulation-profile\nmtu-enhance\nndf-rf-port\nndr-rf-port\nnit-replace NIT replace profile\nofdm-guard-band\nofdma-ucd-refresh Preserve/Increase OFDMA UCD Config Change Count on UCD refresh\noob-core The OOB Core ID\noob-dest The OOB Destination ID\noudp-leakage Enable OUDP-leakage feature.\n\u001b[7m--More--\u001b[27m\b\b\b\b\b\b\b\b \b\b\b\b\b\b\b\b privacy\nproto-throttle Protocol throttling\nprovisioning\nproxy-arp\nproxy-nd\nptp\nrcp\nrip\nrpd Remote Phy Device\nrpn\nscn-restrict\nservice-class\nservice-flow\nservice-group\nsid-allocation\nsource-verify\nssh-public-key\nsub-bundle\nsubmgmt\nsyslog-rpd-cfg Syslog configuration\ntag The tags for TLV type matching rule are created and configured in this section\ntemplate\nus-channel-admission-control-profile Upstream admission control profile configuration\n\u001b[7m--More--\u001b[27m\b\b\b\b\b\b\b\b \b\b\b\b\b\b\b\b us-ext-port\nus-rf-port\nus-scheduler\nutilization-interval-sec Configuration of the period of utilization calculation (in seconds)", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778217620 + }, + "cable bundle 1 autonomous-system-id": { + "hint": "Description: Autonomous system identificator\nPossible completions:\n[65014]", + "options": [], + "type": "string_or_number", + "current_value": "65014", + "updated_at": 1778217655 + }, + "cable bundle 1 cre-vlan-id": { + "hint": "Description: Top level bundle CM VID\nPossible completions:\n[111]", + "options": [], + "type": "string_or_number", + "current_value": "111", + "updated_at": 1778217655 + }, + "cable bundle 1 cre-bgp-ip-addresses": { + "hint": "Description: IPv4 or IPv6 addresses of CRE's BGP listener for bundle's VLAN\nPossible completions:\nIP address", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778217655 + }, + "cable bundle 1 dhcp-relay": { + "hint": "Description: Internal or external dhcp-relay\nPossible completions:\n[internal] external internal ipv4 ipv6", + "options": [], + "type": "string_or_number", + "current_value": "internal", + "updated_at": 1778217655 + }, + "cable bundle 1 dhcp-options": { + "hint": "Possible completions:\nv4 v6", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778217655 + }, + "cable bundle 1 source-verify": { + "hint": "Possible completions:\ndhcp-server Configure a list of DHCP server ip addresses which will be used for DHCP LQ\nleasequery", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778217655 + }, + "cable bundle 1 dhcpv6-option-18-format": { + "hint": "Description: DHCPv6 option 18 output format\nPossible completions:\n[bin] ascii bin", + "options": [ + "ascii", + "bin" + ], + "type": "list", + "current_value": "bin", + "updated_at": 1778217655 + }, + "cable bundle 1 dhcpv6-option-37-format": { + "hint": "Description: DHCPv6 option 37 output format\nPossible completions:\n[bin] ascii bin", + "options": [ + "ascii", + "bin" + ], + "type": "list", + "current_value": "bin", + "updated_at": 1778217655 + }, + "cable bundle 1 dhcpv6-option-79": { + "hint": "Description: Set DHCPv6 option 79\nPossible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778217655 + }, + "cable bundle 1 nsi": { + "hint": "Possible completions:\ncre-ipv4-address CRE gateway IP address for the bundle nsi subnet\ncre-ipv6-address CRE gateway IPv6 address for the bundle nsi subnet\npool-count Number of IP addresses starting from \"start-ipv4-addr/start-ipv6-addr\" used as nsi\nstart-ipv4-address Starting address within ipv4 subnet on the CRE for the bundle nsi subnet\nstart-ipv6-address Starting address within ipv6 subnet on the CRE for the bundle nsi subnet", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778217655 + }, + "cable bundle 1 dhcpv6-ds-reply-from-linklocal": { + "hint": "Description: Set DHCPv6 Ds reply source addr as CRE LL\nPossible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778217655 + }, + "cable bundle 1 offline-cpe": { + "hint": "Possible completions:\n[enabled] disabled enabled static", + "options": [ + "disabled", + "enabled", + "static" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778217655 + }, + "cable bundle 1 dhcpv4-us-broadcast-to-relay": { + "hint": "Description: Set DHCPv4 US destination addr as broadcast\nPossible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778217655 + }, + "cable bundle 1 dhcpv4-us-relay-renew-bcast-flag": { + "hint": "Description: Set DHCPv4 broadcast flag in upstream messages if destination is equal to known giaddr\nPossible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778217655 + }, + "cable bundle 1 vrf": { + "hint": "Description: VRF ID\nPossible completions:\n[1]", + "options": [], + "type": "string_or_number", + "current_value": "1", + "updated_at": 1778217655 + }, + "cable ds-phy-profile 0 description": { + "hint": "Description: Free text description\nPossible completions:\n[ ]", + "options": [], + "type": "string_or_number", + "current_value": "", + "updated_at": 1778219720 + }, + "cable ds-phy-profile 0 name": { + "hint": "Description: Name for the profile for display purposes\nPossible completions:\n[DocsisQAM]", + "options": [], + "type": "string_or_number", + "current_value": "DocsisQAM", + "updated_at": 1778219824 + }, + "cable ds-phy-profile 0 annex": { + "hint": "Description: Phy Standard Supported by the Channel\nPossible completions:\n[b] a b c", + "options": [ + "a", + "b", + "c" + ], + "type": "list", + "current_value": "b", + "updated_at": 1778219824 + }, + "cable ds-phy-profile 0 modulation": { + "hint": "Description: Modulation type used\nPossible completions:\n[qam256] qam64 qam128 qam256", + "options": [ + "qam64", + "qam128", + "qam256" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778219824 + }, + "cable ds-phy-profile 0 interleaver": { + "hint": "Description: Interleaver depth type\nPossible completions:\n[fecI32J4] fecI8J16 fecI12J17 fecI16J8 fecI32J4 fecI64J2 fecI128J1 fecI128J2 fecI128J3 fecI128J4 fecI128J5 fecI128J6 fecI128J7 fecI128J8 other", + "options": [ + "fecI8J16", + "fecI12J17", + "fecI16J8", + "fecI32J4", + "fecI64J2", + "fecI128J1", + "fecI128J2", + "fecI128J3", + "fecI128J4", + "fecI128J5", + "fecI128J6", + "fecI128J7", + "fecI128J8", + "other" + ], + "type": "list", + "current_value": "fecI32J4", + "updated_at": 1778219824 + }, + "cable ds-phy-profile 0 symbol-rate": { + "hint": "Description: Sets the symbol rate for the channel.\nPossible completions:\n[5.360537]", + "options": [], + "type": "string_or_number", + "current_value": "5.360537", + "updated_at": 1778219824 + }, + "cable ds-phy-profile 0 spectral-inversion": { + "hint": "Possible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778219824 + }, + "cable ds-phy-profile 1 name": { + "hint": "Description: Name for the profile for display purposes\nPossible completions:\n[QAM256_A]", + "options": [], + "type": "string_or_number", + "current_value": "QAM256_A", + "updated_at": 1778219824 + }, + "cable ds-phy-profile 1 annex": { + "hint": "Description: Phy Standard Supported by the Channel\nPossible completions:\n[a] a b c", + "options": [ + "a", + "b", + "c" + ], + "type": "list", + "current_value": "a", + "updated_at": 1778219824 + }, + "cable ds-phy-profile 1 modulation": { + "hint": "Description: Modulation type used\nPossible completions:\n[qam256] qam64 qam128 qam256", + "options": [ + "qam64", + "qam128", + "qam256" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778219824 + }, + "cable ds-phy-profile 1 interleaver": { + "hint": "Description: Interleaver depth type\nPossible completions:\n[fecI12J17] fecI8J16 fecI12J17 fecI16J8 fecI32J4 fecI64J2 fecI128J1 fecI128J2 fecI128J3 fecI128J4 fecI128J5 fecI128J6 fecI128J7 fecI128J8 other", + "options": [ + "fecI8J16", + "fecI12J17", + "fecI16J8", + "fecI32J4", + "fecI64J2", + "fecI128J1", + "fecI128J2", + "fecI128J3", + "fecI128J4", + "fecI128J5", + "fecI128J6", + "fecI128J7", + "fecI128J8", + "other" + ], + "type": "list", + "current_value": "fecI12J17", + "updated_at": 1778219824 + }, + "cable ds-phy-profile 1 symbol-rate": { + "hint": "Description: Sets the symbol rate for the channel.\nPossible completions:\n[6.952]", + "options": [], + "type": "string_or_number", + "current_value": "6.952", + "updated_at": 1778219824 + }, + "cable ds-phy-profile 1 spectral-inversion": { + "hint": "Possible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778219824 + }, + "cable ds-phy-profile 2 name": { + "hint": "Description: Name for the profile for display purposes\nPossible completions:\n[QAM64_A]", + "options": [], + "type": "string_or_number", + "current_value": "QAM64_A", + "updated_at": 1778219824 + }, + "cable ds-phy-profile 2 annex": { + "hint": "Description: Phy Standard Supported by the Channel\nPossible completions:\n[a] a b c", + "options": [ + "a", + "b", + "c" + ], + "type": "list", + "current_value": "a", + "updated_at": 1778219824 + }, + "cable ds-phy-profile 2 modulation": { + "hint": "Description: Modulation type used\nPossible completions:\n[qam64] qam64 qam128 qam256", + "options": [ + "qam64", + "qam128", + "qam256" + ], + "type": "list", + "current_value": "qam64", + "updated_at": 1778219824 + }, + "cable ds-phy-profile 2 interleaver": { + "hint": "Description: Interleaver depth type\nPossible completions:\n[fecI12J17] fecI8J16 fecI12J17 fecI16J8 fecI32J4 fecI64J2 fecI128J1 fecI128J2 fecI128J3 fecI128J4 fecI128J5 fecI128J6 fecI128J7 fecI128J8 other", + "options": [ + "fecI8J16", + "fecI12J17", + "fecI16J8", + "fecI32J4", + "fecI64J2", + "fecI128J1", + "fecI128J2", + "fecI128J3", + "fecI128J4", + "fecI128J5", + "fecI128J6", + "fecI128J7", + "fecI128J8", + "other" + ], + "type": "list", + "current_value": "fecI12J17", + "updated_at": 1778219824 + }, + "cable ds-phy-profile 2 symbol-rate": { + "hint": "Description: Sets the symbol rate for the channel.\nPossible completions:\n[6.952]", + "options": [], + "type": "string_or_number", + "current_value": "6.952", + "updated_at": 1778219824 + }, + "cable ds-phy-profile 2 spectral-inversion": { + "hint": "Possible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778219824 + }, + "cable ds-phy-profile 3 name": { + "hint": "Description: Name for the profile for display purposes\nPossible completions:\n[QAM256_B]", + "options": [], + "type": "string_or_number", + "current_value": "QAM256_B", + "updated_at": 1778219824 + }, + "cable ds-phy-profile 3 annex": { + "hint": "Description: Phy Standard Supported by the Channel\nPossible completions:\n[b] a b c", + "options": [ + "a", + "b", + "c" + ], + "type": "list", + "current_value": "b", + "updated_at": 1778219824 + }, + "cable ds-phy-profile 3 modulation": { + "hint": "Description: Modulation type used\nPossible completions:\n[qam256] qam64 qam128 qam256", + "options": [ + "qam64", + "qam128", + "qam256" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778219824 + }, + "cable ds-phy-profile 3 interleaver": { + "hint": "Description: Interleaver depth type\nPossible completions:\n[fecI32J4] fecI8J16 fecI12J17 fecI16J8 fecI32J4 fecI64J2 fecI128J1 fecI128J2 fecI128J3 fecI128J4 fecI128J5 fecI128J6 fecI128J7 fecI128J8 other", + "options": [ + "fecI8J16", + "fecI12J17", + "fecI16J8", + "fecI32J4", + "fecI64J2", + "fecI128J1", + "fecI128J2", + "fecI128J3", + "fecI128J4", + "fecI128J5", + "fecI128J6", + "fecI128J7", + "fecI128J8", + "other" + ], + "type": "list", + "current_value": "fecI32J4", + "updated_at": 1778219824 + }, + "cable ds-phy-profile 3 symbol-rate": { + "hint": "Description: Sets the symbol rate for the channel.\nPossible completions:\n[5.360537]", + "options": [], + "type": "string_or_number", + "current_value": "5.360537", + "updated_at": 1778219824 + }, + "cable ds-phy-profile 3 spectral-inversion": { + "hint": "Possible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778219824 + }, + "cable ds-phy-profile 4 name": { + "hint": "Description: Name for the profile for display purposes\nPossible completions:\n[QAM64_B]", + "options": [], + "type": "string_or_number", + "current_value": "QAM64_B", + "updated_at": 1778219824 + }, + "cable ds-phy-profile 4 annex": { + "hint": "Description: Phy Standard Supported by the Channel\nPossible completions:\n[b] a b c", + "options": [ + "a", + "b", + "c" + ], + "type": "list", + "current_value": "b", + "updated_at": 1778219824 + }, + "cable ds-phy-profile 4 modulation": { + "hint": "Description: Modulation type used\nPossible completions:\n[qam64] qam64 qam128 qam256", + "options": [ + "qam64", + "qam128", + "qam256" + ], + "type": "list", + "current_value": "qam64", + "updated_at": 1778219824 + }, + "cable ds-phy-profile 4 interleaver": { + "hint": "Description: Interleaver depth type\nPossible completions:\n[fecI32J4] fecI8J16 fecI12J17 fecI16J8 fecI32J4 fecI64J2 fecI128J1 fecI128J2 fecI128J3 fecI128J4 fecI128J5 fecI128J6 fecI128J7 fecI128J8 other", + "options": [ + "fecI8J16", + "fecI12J17", + "fecI16J8", + "fecI32J4", + "fecI64J2", + "fecI128J1", + "fecI128J2", + "fecI128J3", + "fecI128J4", + "fecI128J5", + "fecI128J6", + "fecI128J7", + "fecI128J8", + "other" + ], + "type": "list", + "current_value": "fecI32J4", + "updated_at": 1778219824 + }, + "cable ds-phy-profile 4 symbol-rate": { + "hint": "Description: Sets the symbol rate for the channel.\nPossible completions:\n[5.360537]", + "options": [], + "type": "string_or_number", + "current_value": "5.360537", + "updated_at": 1778219824 + }, + "cable ds-phy-profile 4 spectral-inversion": { + "hint": "Possible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778219824 + }, + "cable ds-phy-profile 5 name": { + "hint": "Description: Name for the profile for display purposes\nPossible completions:\n[QAM256_B_Vid]", + "options": [], + "type": "string_or_number", + "current_value": "QAM256_B_Vid", + "updated_at": 1778219874 + }, + "cable ds-phy-profile 5 annex": { + "hint": "Description: Phy Standard Supported by the Channel\nPossible completions:\n[b] a b c", + "options": [ + "a", + "b", + "c" + ], + "type": "list", + "current_value": "b", + "updated_at": 1778219874 + }, + "cable ds-phy-profile 5 modulation": { + "hint": "Description: Modulation type used\nPossible completions:\n[qam256] qam64 qam128 qam256", + "options": [ + "qam64", + "qam128", + "qam256" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778219874 + }, + "cable ds-phy-profile 5 interleaver": { + "hint": "Description: Interleaver depth type\nPossible completions:\n[fecI128J1] fecI8J16 fecI12J17 fecI16J8 fecI32J4 fecI64J2 fecI128J1 fecI128J2 fecI128J3 fecI128J4 fecI128J5 fecI128J6 fecI128J7 fecI128J8 other", + "options": [ + "fecI8J16", + "fecI12J17", + "fecI16J8", + "fecI32J4", + "fecI64J2", + "fecI128J1", + "fecI128J2", + "fecI128J3", + "fecI128J4", + "fecI128J5", + "fecI128J6", + "fecI128J7", + "fecI128J8", + "other" + ], + "type": "list", + "current_value": "fecI128J1", + "updated_at": 1778219874 + }, + "cable ds-phy-profile 5 symbol-rate": { + "hint": "Description: Sets the symbol rate for the channel.\nPossible completions:\n[5.360537]", + "options": [], + "type": "string_or_number", + "current_value": "5.360537", + "updated_at": 1778219874 + }, + "cable ds-phy-profile 5 spectral-inversion": { + "hint": "Possible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778219874 + }, + "cable ds-phy-profile 6 name": { + "hint": "Description: Name for the profile for display purposes\nPossible completions:\n[QAM256_B_FDD]", + "options": [], + "type": "string_or_number", + "current_value": "QAM256_B_FDD", + "updated_at": 1778219874 + }, + "cable ds-phy-profile 6 description": { + "hint": "Description: Free text description\nPossible completions:\n[FDD_QAM256_B]", + "options": [], + "type": "string_or_number", + "current_value": "FDD_QAM256_B", + "updated_at": 1778219874 + }, + "cable ds-phy-profile 6 annex": { + "hint": "Description: Phy Standard Supported by the Channel\nPossible completions:\n[b] a b c", + "options": [ + "a", + "b", + "c" + ], + "type": "list", + "current_value": "b", + "updated_at": 1778219874 + }, + "cable ds-phy-profile 6 modulation": { + "hint": "Description: Modulation type used\nPossible completions:\n[qam256] qam64 qam128 qam256", + "options": [ + "qam64", + "qam128", + "qam256" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778219874 + }, + "cable ds-phy-profile 6 interleaver": { + "hint": "Description: Interleaver depth type\nPossible completions:\n[fecI32J4] fecI8J16 fecI12J17 fecI16J8 fecI32J4 fecI64J2 fecI128J1 fecI128J2 fecI128J3 fecI128J4 fecI128J5 fecI128J6 fecI128J7 fecI128J8 other", + "options": [ + "fecI8J16", + "fecI12J17", + "fecI16J8", + "fecI32J4", + "fecI64J2", + "fecI128J1", + "fecI128J2", + "fecI128J3", + "fecI128J4", + "fecI128J5", + "fecI128J6", + "fecI128J7", + "fecI128J8", + "other" + ], + "type": "list", + "current_value": "fecI32J4", + "updated_at": 1778219874 + }, + "cable ds-phy-profile 6 symbol-rate": { + "hint": "Description: Sets the symbol rate for the channel.\nPossible completions:\n[6.952]", + "options": [], + "type": "string_or_number", + "current_value": "6.952", + "updated_at": 1778219874 + }, + "cable ds-phy-profile 6 spectral-inversion": { + "hint": "Possible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778219874 + }, + "cable ofdm-guard-band 1 width-mhz": { + "hint": "Possible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778219874 + }, + "cable ofdm-guard-band 2 width-mhz": { + "hint": "Possible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778219874 + }, + "cable mod-prof-ofdma 401 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[25khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "25khz", + "updated_at": 1778219874 + }, + "cable mod-prof-ofdma 401 cyclic-prefix-samples": { + "hint": "Possible completions:\n[256]", + "options": [], + "type": "string_or_number", + "current_value": "256", + "updated_at": 1778219874 + }, + "cable mod-prof-ofdma 401 rolloff-period-samples": { + "hint": "Description: Rolloff period configuration\nPossible completions:\n[128]", + "options": [], + "type": "string_or_number", + "current_value": "128", + "updated_at": 1778219874 + }, + "cable mod-prof-ofdma 401 symbols-per-frame": { + "hint": "Description: Number of OFDMA symbols per OFDMA frame\nPossible completions:\n[9]", + "options": [], + "type": "string_or_number", + "current_value": "9", + "updated_at": 1778219874 + }, + "cable mod-prof-ofdma 401 initial-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\npreamble-multiplier\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778219874 + }, + "cable mod-prof-ofdma 401 fine-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778219874 + }, + "cable mod-prof-ofdma 401 rx-window-samples": { + "hint": "Possible completions:\n[64]", + "options": [], + "type": "string_or_number", + "current_value": "64", + "updated_at": 1778219874 + }, + "cable mod-prof-ofdma 401 data-iuc 9 modulation": { + "hint": "Possible completions:\n[qam1024] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778219874 + }, + "cable mod-prof-ofdma 401 data-iuc 9 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778219874 + }, + "cable mod-prof-ofdma 401 data-iuc 10 modulation": { + "hint": "Possible completions:\n[qam2048] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778219874 + }, + "cable mod-prof-ofdma 401 data-iuc 10 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778219874 + }, + "cable mod-prof-ofdma 401 data-iuc 11 modulation": { + "hint": "Possible completions:\n[qam4096] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778219874 + }, + "cable mod-prof-ofdma 401 data-iuc 11 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778219874 + }, + "cable mod-prof-ofdma 401 data-iuc 12 modulation": { + "hint": "Possible completions:\n[qam512] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778219874 + }, + "cable mod-prof-ofdma 401 data-iuc 12 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778219874 + }, + "cable mod-prof-ofdma 401 data-iuc 13 modulation": { + "hint": "Possible completions:\n[qam16] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778219925 + }, + "cable mod-prof-ofdma 401 data-iuc 13 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778219925 + }, + "cable mod-prof-ofdma 403 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778219925 + }, + "cable mod-prof-ofdma 403 cyclic-prefix-samples": { + "hint": "Possible completions:\n[192]", + "options": [], + "type": "string_or_number", + "current_value": "192", + "updated_at": 1778219925 + }, + "cable mod-prof-ofdma 403 rolloff-period-samples": { + "hint": "Description: Rolloff period configuration\nPossible completions:\n[64]", + "options": [], + "type": "string_or_number", + "current_value": "64", + "updated_at": 1778219925 + }, + "cable mod-prof-ofdma 403 symbols-per-frame": { + "hint": "Description: Number of OFDMA symbols per OFDMA frame\nPossible completions:\n[16]", + "options": [], + "type": "string_or_number", + "current_value": "16", + "updated_at": 1778219925 + }, + "cable mod-prof-ofdma 403 initial-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\npreamble-multiplier\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778219925 + }, + "cable mod-prof-ofdma 403 fine-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778219925 + }, + "cable mod-prof-ofdma 403 rx-window-samples": { + "hint": "Possible completions:\n[64]", + "options": [], + "type": "string_or_number", + "current_value": "64", + "updated_at": 1778219925 + }, + "cable mod-prof-ofdma 403 data-iuc 5 modulation": { + "hint": "Possible completions:\n[qam1024] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778219925 + }, + "cable mod-prof-ofdma 403 data-iuc 5 pilot-pattern": { + "hint": "Possible completions:\n[4]", + "options": [], + "type": "string_or_number", + "current_value": "4", + "updated_at": 1778219925 + }, + "cable mod-prof-ofdma 403 data-iuc 6 modulation": { + "hint": "Possible completions:\n[qam512] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778219925 + }, + "cable mod-prof-ofdma 403 data-iuc 6 pilot-pattern": { + "hint": "Possible completions:\n[4]", + "options": [], + "type": "string_or_number", + "current_value": "4", + "updated_at": 1778219925 + }, + "cable mod-prof-ofdma 403 data-iuc 9 modulation": { + "hint": "Possible completions:\n[qam256] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778219925 + }, + "cable mod-prof-ofdma 403 data-iuc 9 pilot-pattern": { + "hint": "Possible completions:\n[3]", + "options": [], + "type": "string_or_number", + "current_value": "3", + "updated_at": 1778219925 + }, + "cable mod-prof-ofdma 403 data-iuc 10 modulation": { + "hint": "Possible completions:\n[qam128] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam128", + "updated_at": 1778219925 + }, + "cable mod-prof-ofdma 403 data-iuc 10 pilot-pattern": { + "hint": "Possible completions:\n[3]", + "options": [], + "type": "string_or_number", + "current_value": "3", + "updated_at": 1778219925 + }, + "cable mod-prof-ofdma 403 data-iuc 11 modulation": { + "hint": "Possible completions:\n[qam64] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam64", + "updated_at": 1778219925 + }, + "cable mod-prof-ofdma 403 data-iuc 11 pilot-pattern": { + "hint": "Possible completions:\n[2]", + "options": [], + "type": "string_or_number", + "current_value": "2", + "updated_at": 1778219925 + }, + "cable mod-prof-ofdma 403 data-iuc 12 modulation": { + "hint": "Possible completions:\n[qam32] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam32", + "updated_at": 1778219925 + }, + "cable mod-prof-ofdma 403 data-iuc 12 pilot-pattern": { + "hint": "Possible completions:\n[2]", + "options": [], + "type": "string_or_number", + "current_value": "2", + "updated_at": 1778219925 + }, + "cable mod-prof-ofdma 403 data-iuc 13 modulation": { + "hint": "Possible completions:\n[qam16] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778219925 + }, + "cable mod-prof-ofdma 403 data-iuc 13 pilot-pattern": { + "hint": "Possible completions:\n[2]", + "options": [], + "type": "string_or_number", + "current_value": "2", + "updated_at": 1778219925 + }, + "cable mod-prof-ofdma 408 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[25khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "25khz", + "updated_at": 1778219925 + }, + "cable mod-prof-ofdma 408 cyclic-prefix-samples": { + "hint": "Possible completions:\n[160]", + "options": [], + "type": "string_or_number", + "current_value": "160", + "updated_at": 1778219925 + }, + "cable mod-prof-ofdma 408 rolloff-period-samples": { + "hint": "Description: Rolloff period configuration\nPossible completions:\n[64]", + "options": [], + "type": "string_or_number", + "current_value": "64", + "updated_at": 1778219925 + }, + "cable mod-prof-ofdma 408 symbols-per-frame": { + "hint": "Description: Number of OFDMA symbols per OFDMA frame\nPossible completions:\n[12]", + "options": [], + "type": "string_or_number", + "current_value": "12", + "updated_at": 1778219925 + }, + "cable mod-prof-ofdma 408 initial-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\npreamble-multiplier\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778219925 + }, + "cable mod-prof-ofdma 408 fine-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778219925 + }, + "cable mod-prof-ofdma 408 data-iuc 5 modulation": { + "hint": "Possible completions:\n[qam32] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam32", + "updated_at": 1778219925 + }, + "cable mod-prof-ofdma 408 data-iuc 5 pilot-pattern": { + "hint": "Possible completions:\n[9]", + "options": [], + "type": "string_or_number", + "current_value": "9", + "updated_at": 1778219976 + }, + "cable mod-prof-ofdma 408 data-iuc 6 modulation": { + "hint": "Possible completions:\n[qam128] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam128", + "updated_at": 1778219976 + }, + "cable mod-prof-ofdma 408 data-iuc 6 pilot-pattern": { + "hint": "Possible completions:\n[9]", + "options": [], + "type": "string_or_number", + "current_value": "9", + "updated_at": 1778219976 + }, + "cable mod-prof-ofdma 408 data-iuc 9 modulation": { + "hint": "Possible completions:\n[qam256] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778219976 + }, + "cable mod-prof-ofdma 408 data-iuc 9 pilot-pattern": { + "hint": "Possible completions:\n[9]", + "options": [], + "type": "string_or_number", + "current_value": "9", + "updated_at": 1778219976 + }, + "cable mod-prof-ofdma 408 data-iuc 13 modulation": { + "hint": "Possible completions:\n[qam16] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778219976 + }, + "cable mod-prof-ofdma 408 data-iuc 13 pilot-pattern": { + "hint": "Possible completions:\n[9]", + "options": [], + "type": "string_or_number", + "current_value": "9", + "updated_at": 1778219976 + }, + "cable mod-prof-ofdma 409 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778219976 + }, + "cable mod-prof-ofdma 409 cyclic-prefix-samples": { + "hint": "Possible completions:\n[256]", + "options": [], + "type": "string_or_number", + "current_value": "256", + "updated_at": 1778219976 + }, + "cable mod-prof-ofdma 409 rolloff-period-samples": { + "hint": "Description: Rolloff period configuration\nPossible completions:\n[96]", + "options": [], + "type": "string_or_number", + "current_value": "96", + "updated_at": 1778219976 + }, + "cable mod-prof-ofdma 409 symbols-per-frame": { + "hint": "Description: Number of OFDMA symbols per OFDMA frame\nPossible completions:\n[18]", + "options": [], + "type": "string_or_number", + "current_value": "18", + "updated_at": 1778219976 + }, + "cable mod-prof-ofdma 409 initial-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\npreamble-multiplier\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778219976 + }, + "cable mod-prof-ofdma 409 fine-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778219976 + }, + "cable mod-prof-ofdma 409 data-iuc 10 modulation": { + "hint": "Possible completions:\n[qam4096] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778219976 + }, + "cable mod-prof-ofdma 409 data-iuc 10 pilot-pattern": { + "hint": "Possible completions:\n[7]", + "options": [], + "type": "string_or_number", + "current_value": "7", + "updated_at": 1778219976 + }, + "cable mod-prof-ofdma 409 data-iuc 11 modulation": { + "hint": "Possible completions:\n[qam256] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778219976 + }, + "cable mod-prof-ofdma 409 data-iuc 11 pilot-pattern": { + "hint": "Possible completions:\n[7]", + "options": [], + "type": "string_or_number", + "current_value": "7", + "updated_at": 1778219976 + }, + "cable mod-prof-ofdma 409 data-iuc 12 modulation": { + "hint": "Possible completions:\n[qam2048] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778219976 + }, + "cable mod-prof-ofdma 409 data-iuc 12 pilot-pattern": { + "hint": "Possible completions:\n[7]", + "options": [], + "type": "string_or_number", + "current_value": "7", + "updated_at": 1778219976 + }, + "cable mod-prof-ofdma 409 data-iuc 13 modulation": { + "hint": "Possible completions:\n[qam1024] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778219976 + }, + "cable mod-prof-ofdma 409 data-iuc 13 pilot-pattern": { + "hint": "Possible completions:\n[7]", + "options": [], + "type": "string_or_number", + "current_value": "7", + "updated_at": 1778219976 + }, + "cable mod-prof-ofdma 410 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778219976 + }, + "cable mod-prof-ofdma 410 cyclic-prefix-samples": { + "hint": "Possible completions:\n[192]", + "options": [], + "type": "string_or_number", + "current_value": "192", + "updated_at": 1778219976 + }, + "cable mod-prof-ofdma 410 rolloff-period-samples": { + "hint": "Description: Rolloff period configuration\nPossible completions:\n[64]", + "options": [], + "type": "string_or_number", + "current_value": "64", + "updated_at": 1778219976 + }, + "cable mod-prof-ofdma 410 symbols-per-frame": { + "hint": "Description: Number of OFDMA symbols per OFDMA frame\nPossible completions:\n[16]", + "options": [], + "type": "string_or_number", + "current_value": "16", + "updated_at": 1778219976 + }, + "cable mod-prof-ofdma 410 initial-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\npreamble-multiplier\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778219976 + }, + "cable mod-prof-ofdma 410 fine-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778219976 + }, + "cable mod-prof-ofdma 410 data-iuc 5 modulation": { + "hint": "Possible completions:\n[qam4096] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778219976 + }, + "cable mod-prof-ofdma 410 data-iuc 5 pilot-pattern": { + "hint": "Possible completions:\n[4]", + "options": [], + "type": "string_or_number", + "current_value": "4", + "updated_at": 1778219976 + }, + "cable mod-prof-ofdma 410 data-iuc 6 modulation": { + "hint": "Possible completions:\n[qam2048] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778219976 + }, + "cable mod-prof-ofdma 410 data-iuc 6 pilot-pattern": { + "hint": "Possible completions:\n[4]", + "options": [], + "type": "string_or_number", + "current_value": "4", + "updated_at": 1778220026 + }, + "cable mod-prof-ofdma 410 data-iuc 9 modulation": { + "hint": "Possible completions:\n[qam1024] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778220026 + }, + "cable mod-prof-ofdma 410 data-iuc 9 pilot-pattern": { + "hint": "Possible completions:\n[4]", + "options": [], + "type": "string_or_number", + "current_value": "4", + "updated_at": 1778220026 + }, + "cable mod-prof-ofdma 410 data-iuc 10 modulation": { + "hint": "Possible completions:\n[qam512] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778220026 + }, + "cable mod-prof-ofdma 410 data-iuc 10 pilot-pattern": { + "hint": "Possible completions:\n[4]", + "options": [], + "type": "string_or_number", + "current_value": "4", + "updated_at": 1778220026 + }, + "cable mod-prof-ofdma 410 data-iuc 11 modulation": { + "hint": "Possible completions:\n[qam256] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778220026 + }, + "cable mod-prof-ofdma 410 data-iuc 11 pilot-pattern": { + "hint": "Possible completions:\n[4]", + "options": [], + "type": "string_or_number", + "current_value": "4", + "updated_at": 1778220026 + }, + "cable mod-prof-ofdma 410 data-iuc 12 modulation": { + "hint": "Possible completions:\n[qam128] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam128", + "updated_at": 1778220026 + }, + "cable mod-prof-ofdma 410 data-iuc 12 pilot-pattern": { + "hint": "Possible completions:\n[4]", + "options": [], + "type": "string_or_number", + "current_value": "4", + "updated_at": 1778220026 + }, + "cable mod-prof-ofdma 410 data-iuc 13 modulation": { + "hint": "Possible completions:\n[qam16] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778220026 + }, + "cable mod-prof-ofdma 410 data-iuc 13 pilot-pattern": { + "hint": "Possible completions:\n[4]", + "options": [], + "type": "string_or_number", + "current_value": "4", + "updated_at": 1778220026 + }, + "cable mod-prof-ofdma 411 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[25khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "25khz", + "updated_at": 1778220026 + }, + "cable mod-prof-ofdma 411 cyclic-prefix-samples": { + "hint": "Possible completions:\n[256]", + "options": [], + "type": "string_or_number", + "current_value": "256", + "updated_at": 1778220026 + }, + "cable mod-prof-ofdma 411 rolloff-period-samples": { + "hint": "Description: Rolloff period configuration\nPossible completions:\n[128]", + "options": [], + "type": "string_or_number", + "current_value": "128", + "updated_at": 1778220026 + }, + "cable mod-prof-ofdma 411 symbols-per-frame": { + "hint": "Description: Number of OFDMA symbols per OFDMA frame\nPossible completions:\n[9]", + "options": [], + "type": "string_or_number", + "current_value": "9", + "updated_at": 1778220026 + }, + "cable mod-prof-ofdma 411 initial-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\npreamble-multiplier\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220026 + }, + "cable mod-prof-ofdma 411 fine-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220026 + }, + "cable mod-prof-ofdma 411 rx-window-samples": { + "hint": "Possible completions:\n[64]", + "options": [], + "type": "string_or_number", + "current_value": "64", + "updated_at": 1778220026 + }, + "cable mod-prof-ofdma 411 data-iuc 9 modulation": { + "hint": "Possible completions:\n[qam128] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam128", + "updated_at": 1778220026 + }, + "cable mod-prof-ofdma 411 data-iuc 9 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778220026 + }, + "cable mod-prof-ofdma 411 data-iuc 10 modulation": { + "hint": "Possible completions:\n[qam256] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778220026 + }, + "cable mod-prof-ofdma 411 data-iuc 10 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778220026 + }, + "cable mod-prof-ofdma 411 data-iuc 11 modulation": { + "hint": "Possible completions:\n[qam512] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778220026 + }, + "cable mod-prof-ofdma 411 data-iuc 11 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778220026 + }, + "cable mod-prof-ofdma 411 data-iuc 12 modulation": { + "hint": "Possible completions:\n[qam1024] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778220026 + }, + "cable mod-prof-ofdma 411 data-iuc 12 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778220026 + }, + "cable mod-prof-ofdma 411 data-iuc 13 modulation": { + "hint": "Possible completions:\n[qam16] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778220026 + }, + "cable mod-prof-ofdma 411 data-iuc 13 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778220026 + }, + "cable mod-prof-ofdma 412 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778220026 + }, + "cable mod-prof-ofdma 412 cyclic-prefix-samples": { + "hint": "Possible completions:\n[256]", + "options": [], + "type": "string_or_number", + "current_value": "256", + "updated_at": 1778220026 + }, + "cable mod-prof-ofdma 412 rolloff-period-samples": { + "hint": "Description: Rolloff period configuration\nPossible completions:\n[128]", + "options": [], + "type": "string_or_number", + "current_value": "128", + "updated_at": 1778220077 + }, + "cable mod-prof-ofdma 412 symbols-per-frame": { + "hint": "Description: Number of OFDMA symbols per OFDMA frame\nPossible completions:\n[8]", + "options": [], + "type": "string_or_number", + "current_value": "8", + "updated_at": 1778220077 + }, + "cable mod-prof-ofdma 412 initial-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\npreamble-multiplier\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220077 + }, + "cable mod-prof-ofdma 412 fine-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220077 + }, + "cable mod-prof-ofdma 412 data-iuc 9 modulation": { + "hint": "Possible completions:\n[qam512] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778220077 + }, + "cable mod-prof-ofdma 412 data-iuc 9 pilot-pattern": { + "hint": "Possible completions:\n[10]", + "options": [], + "type": "string_or_number", + "current_value": "10", + "updated_at": 1778220077 + }, + "cable mod-prof-ofdma 412 data-iuc 11 modulation": { + "hint": "Possible completions:\n[qam256] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778220077 + }, + "cable mod-prof-ofdma 412 data-iuc 11 pilot-pattern": { + "hint": "Possible completions:\n[10]", + "options": [], + "type": "string_or_number", + "current_value": "10", + "updated_at": 1778220077 + }, + "cable mod-prof-ofdma 412 data-iuc 12 modulation": { + "hint": "Possible completions:\n[qam128] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam128", + "updated_at": 1778220077 + }, + "cable mod-prof-ofdma 412 data-iuc 12 pilot-pattern": { + "hint": "Possible completions:\n[10]", + "options": [], + "type": "string_or_number", + "current_value": "10", + "updated_at": 1778220077 + }, + "cable mod-prof-ofdma 412 data-iuc 13 modulation": { + "hint": "Possible completions:\n[qam16] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778220077 + }, + "cable mod-prof-ofdma 412 data-iuc 13 pilot-pattern": { + "hint": "Possible completions:\n[11]", + "options": [], + "type": "string_or_number", + "current_value": "11", + "updated_at": 1778220077 + }, + "cable mod-prof-ofdma 413 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778220077 + }, + "cable mod-prof-ofdma 413 cyclic-prefix-samples": { + "hint": "Possible completions:\n[192]", + "options": [], + "type": "string_or_number", + "current_value": "192", + "updated_at": 1778220077 + }, + "cable mod-prof-ofdma 413 rolloff-period-samples": { + "hint": "Description: Rolloff period configuration\nPossible completions:\n[128]", + "options": [], + "type": "string_or_number", + "current_value": "128", + "updated_at": 1778220077 + }, + "cable mod-prof-ofdma 413 symbols-per-frame": { + "hint": "Description: Number of OFDMA symbols per OFDMA frame\nPossible completions:\n[10]", + "options": [], + "type": "string_or_number", + "current_value": "10", + "updated_at": 1778220077 + }, + "cable mod-prof-ofdma 413 initial-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\npreamble-multiplier\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220077 + }, + "cable mod-prof-ofdma 413 fine-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220077 + }, + "cable mod-prof-ofdma 413 data-iuc 5 modulation": { + "hint": "Possible completions:\n[qam4096] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778220077 + }, + "cable mod-prof-ofdma 413 data-iuc 5 pilot-pattern": { + "hint": "Possible completions:\n[4]", + "options": [], + "type": "string_or_number", + "current_value": "4", + "updated_at": 1778220077 + }, + "cable mod-prof-ofdma 413 data-iuc 6 modulation": { + "hint": "Possible completions:\n[qam2048] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778220077 + }, + "cable mod-prof-ofdma 413 data-iuc 6 pilot-pattern": { + "hint": "Possible completions:\n[4]", + "options": [], + "type": "string_or_number", + "current_value": "4", + "updated_at": 1778220077 + }, + "cable mod-prof-ofdma 413 data-iuc 9 modulation": { + "hint": "Possible completions:\n[qam1024] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778220077 + }, + "cable mod-prof-ofdma 413 data-iuc 9 pilot-pattern": { + "hint": "Possible completions:\n[4]", + "options": [], + "type": "string_or_number", + "current_value": "4", + "updated_at": 1778220077 + }, + "cable mod-prof-ofdma 413 data-iuc 10 modulation": { + "hint": "Possible completions:\n[qam512] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778220077 + }, + "cable mod-prof-ofdma 413 data-iuc 10 pilot-pattern": { + "hint": "Possible completions:\n[4]", + "options": [], + "type": "string_or_number", + "current_value": "4", + "updated_at": 1778220077 + }, + "cable mod-prof-ofdma 413 data-iuc 11 modulation": { + "hint": "Possible completions:\n[qam256] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778220077 + }, + "cable mod-prof-ofdma 413 data-iuc 11 pilot-pattern": { + "hint": "Possible completions:\n[4]", + "options": [], + "type": "string_or_number", + "current_value": "4", + "updated_at": 1778220077 + }, + "cable mod-prof-ofdma 413 data-iuc 12 modulation": { + "hint": "Possible completions:\n[qam128] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam128", + "updated_at": 1778220077 + }, + "cable mod-prof-ofdma 413 data-iuc 12 pilot-pattern": { + "hint": "Possible completions:\n[4]", + "options": [], + "type": "string_or_number", + "current_value": "4", + "updated_at": 1778220077 + }, + "cable mod-prof-ofdma 413 data-iuc 13 modulation": { + "hint": "Possible completions:\n[qam16] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778220128 + }, + "cable mod-prof-ofdma 413 data-iuc 13 pilot-pattern": { + "hint": "Possible completions:\n[4]", + "options": [], + "type": "string_or_number", + "current_value": "4", + "updated_at": 1778220128 + }, + "cable mod-prof-ofdma 414 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778220128 + }, + "cable mod-prof-ofdma 414 cyclic-prefix-samples": { + "hint": "Possible completions:\n[192]", + "options": [], + "type": "string_or_number", + "current_value": "192", + "updated_at": 1778220128 + }, + "cable mod-prof-ofdma 414 rolloff-period-samples": { + "hint": "Description: Rolloff period configuration\nPossible completions:\n[96]", + "options": [], + "type": "string_or_number", + "current_value": "96", + "updated_at": 1778220128 + }, + "cable mod-prof-ofdma 414 symbols-per-frame": { + "hint": "Description: Number of OFDMA symbols per OFDMA frame\nPossible completions:\n[16]", + "options": [], + "type": "string_or_number", + "current_value": "16", + "updated_at": 1778220128 + }, + "cable mod-prof-ofdma 414 initial-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\npreamble-multiplier\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220128 + }, + "cable mod-prof-ofdma 414 fine-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220128 + }, + "cable mod-prof-ofdma 414 data-iuc 12 modulation": { + "hint": "Possible completions:\n[qam1024] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778220128 + }, + "cable mod-prof-ofdma 414 data-iuc 12 pilot-pattern": { + "hint": "Possible completions:\n[2]", + "options": [], + "type": "string_or_number", + "current_value": "2", + "updated_at": 1778220128 + }, + "cable mod-prof-ofdma 414 data-iuc 13 modulation": { + "hint": "Possible completions:\n[qam64] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam64", + "updated_at": 1778220128 + }, + "cable mod-prof-ofdma 414 data-iuc 13 pilot-pattern": { + "hint": "Possible completions:\n[2]", + "options": [], + "type": "string_or_number", + "current_value": "2", + "updated_at": 1778220128 + }, + "cable mod-prof-ofdma 415 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778220128 + }, + "cable mod-prof-ofdma 415 cyclic-prefix-samples": { + "hint": "Possible completions:\n[256]", + "options": [], + "type": "string_or_number", + "current_value": "256", + "updated_at": 1778220128 + }, + "cable mod-prof-ofdma 415 rolloff-period-samples": { + "hint": "Description: Rolloff period configuration\nPossible completions:\n[128]", + "options": [], + "type": "string_or_number", + "current_value": "128", + "updated_at": 1778220128 + }, + "cable mod-prof-ofdma 415 symbols-per-frame": { + "hint": "Description: Number of OFDMA symbols per OFDMA frame\nPossible completions:\n[16]", + "options": [], + "type": "string_or_number", + "current_value": "16", + "updated_at": 1778220128 + }, + "cable mod-prof-ofdma 415 initial-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\npreamble-multiplier\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220128 + }, + "cable mod-prof-ofdma 415 fine-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220128 + }, + "cable mod-prof-ofdma 415 data-iuc 9 modulation": { + "hint": "Possible completions:\n[qam512] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778220128 + }, + "cable mod-prof-ofdma 415 data-iuc 9 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778220128 + }, + "cable mod-prof-ofdma 415 data-iuc 10 modulation": { + "hint": "Possible completions:\n[qam1024] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778220128 + }, + "cable mod-prof-ofdma 415 data-iuc 10 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778220128 + }, + "cable mod-prof-ofdma 415 data-iuc 11 modulation": { + "hint": "Possible completions:\n[qam2048] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778220128 + }, + "cable mod-prof-ofdma 415 data-iuc 11 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778220128 + }, + "cable mod-prof-ofdma 415 data-iuc 12 modulation": { + "hint": "Possible completions:\n[qam4096] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778220128 + }, + "cable mod-prof-ofdma 415 data-iuc 12 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778220128 + }, + "cable mod-prof-ofdma 415 data-iuc 13 modulation": { + "hint": "Possible completions:\n[qam16] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778220128 + }, + "cable mod-prof-ofdma 415 data-iuc 13 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778220128 + }, + "cable mod-prof-ofdma 416 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other\n------------------------------------------------------------------------------------------------------------------------\nFri May 8 06:02:04 2026 Event ID 2052 (RpdImageActivationFailure). RPD image activation failure on AC Power failure.\ncounter 1 Time: Fri May 8 06:02:40 2026; RPD-ID: 00:20:A3:A6:7D:A0;admin@SERCOMM-COS-02(config)# cable mod-prof-ofdma 416 subcarrier-spacing", + "options": [ + "25khz", + "50khz", + "other", + "------------------------------------------------------------------------------------------------------------------------", + "Fri", + "May", + "8", + "06:02:04", + "2026", + "Event", + "ID", + "2052", + "(RpdImageActivationFailure).", + "RPD", + "image", + "activation", + "failure", + "on", + "AC", + "Power", + "failure.", + "counter", + "1", + "Time:", + "06:02:40", + "2026;", + "RPD-ID:", + "00:20:A3:A6:7D:A0;admin@SERCOMM-COS-02(config)#", + "cable", + "mod-prof-ofdma", + "416", + "subcarrier-spacing" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778220128 + }, + "cable mod-prof-ofdma 416 cyclic-prefix-samples": { + "hint": "Possible completions:\n[192]", + "options": [], + "type": "string_or_number", + "current_value": "192", + "updated_at": 1778220128 + }, + "cable mod-prof-ofdma 416 rolloff-period-samples": { + "hint": "Description: Rolloff period configuration\nPossible completions:\n[64]", + "options": [], + "type": "string_or_number", + "current_value": "64", + "updated_at": 1778220179 + }, + "cable mod-prof-ofdma 416 symbols-per-frame": { + "hint": "Description: Number of OFDMA symbols per OFDMA frame\nPossible completions:\n[16]", + "options": [], + "type": "string_or_number", + "current_value": "16", + "updated_at": 1778220179 + }, + "cable mod-prof-ofdma 416 initial-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\npreamble-multiplier\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220179 + }, + "cable mod-prof-ofdma 416 fine-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220179 + }, + "cable mod-prof-ofdma 416 data-iuc 9 modulation": { + "hint": "Possible completions:\n[qam1024] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778220179 + }, + "cable mod-prof-ofdma 416 data-iuc 9 pilot-pattern": { + "hint": "Possible completions:\n[4]", + "options": [], + "type": "string_or_number", + "current_value": "4", + "updated_at": 1778220179 + }, + "cable mod-prof-ofdma 416 data-iuc 10 modulation": { + "hint": "Possible completions:\n[qam512] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778220179 + }, + "cable mod-prof-ofdma 416 data-iuc 10 pilot-pattern": { + "hint": "Possible completions:\n[4]", + "options": [], + "type": "string_or_number", + "current_value": "4", + "updated_at": 1778220179 + }, + "cable mod-prof-ofdma 416 data-iuc 11 modulation": { + "hint": "Possible completions:\n[qam256] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778220179 + }, + "cable mod-prof-ofdma 416 data-iuc 11 pilot-pattern": { + "hint": "Possible completions:\n[4]", + "options": [], + "type": "string_or_number", + "current_value": "4", + "updated_at": 1778220179 + }, + "cable mod-prof-ofdma 416 data-iuc 12 modulation": { + "hint": "Possible completions:\n[qam128] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam128", + "updated_at": 1778220179 + }, + "cable mod-prof-ofdma 416 data-iuc 12 pilot-pattern": { + "hint": "Possible completions:\n[4]", + "options": [], + "type": "string_or_number", + "current_value": "4", + "updated_at": 1778220179 + }, + "cable mod-prof-ofdma 416 data-iuc 13 modulation": { + "hint": "Possible completions:\n[qam16] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778220179 + }, + "cable mod-prof-ofdma 416 data-iuc 13 pilot-pattern": { + "hint": "Possible completions:\n[4]", + "options": [], + "type": "string_or_number", + "current_value": "4", + "updated_at": 1778220179 + }, + "cable mod-prof-ofdma 417 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778220179 + }, + "cable mod-prof-ofdma 417 cyclic-prefix-samples": { + "hint": "Possible completions:\n[192]", + "options": [], + "type": "string_or_number", + "current_value": "192", + "updated_at": 1778220179 + }, + "cable mod-prof-ofdma 417 rolloff-period-samples": { + "hint": "Description: Rolloff period configuration\nPossible completions:\n[64]", + "options": [], + "type": "string_or_number", + "current_value": "64", + "updated_at": 1778220179 + }, + "cable mod-prof-ofdma 417 symbols-per-frame": { + "hint": "Description: Number of OFDMA symbols per OFDMA frame\nPossible completions:\n[16]", + "options": [], + "type": "string_or_number", + "current_value": "16", + "updated_at": 1778220179 + }, + "cable mod-prof-ofdma 417 initial-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\npreamble-multiplier\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220179 + }, + "cable mod-prof-ofdma 417 fine-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220179 + }, + "cable mod-prof-ofdma 417 data-iuc 5 modulation": { + "hint": "Possible completions:\n[qam4096] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778220179 + }, + "cable mod-prof-ofdma 417 data-iuc 5 pilot-pattern": { + "hint": "Possible completions:\n[4]", + "options": [], + "type": "string_or_number", + "current_value": "4", + "updated_at": 1778220179 + }, + "cable mod-prof-ofdma 417 data-iuc 6 modulation": { + "hint": "Possible completions:\n[qam2048] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778220179 + }, + "cable mod-prof-ofdma 417 data-iuc 6 pilot-pattern": { + "hint": "Possible completions:\n[4]", + "options": [], + "type": "string_or_number", + "current_value": "4", + "updated_at": 1778220179 + }, + "cable mod-prof-ofdma 417 data-iuc 9 modulation": { + "hint": "Possible completions:\n[qam1024] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778220179 + }, + "cable mod-prof-ofdma 417 data-iuc 9 pilot-pattern": { + "hint": "Possible completions:\n[4]", + "options": [], + "type": "string_or_number", + "current_value": "4", + "updated_at": 1778220179 + }, + "cable mod-prof-ofdma 417 data-iuc 10 modulation": { + "hint": "Possible completions:\n[qam512] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778220179 + }, + "cable mod-prof-ofdma 417 data-iuc 10 pilot-pattern": { + "hint": "Possible completions:\n[4]", + "options": [], + "type": "string_or_number", + "current_value": "4", + "updated_at": 1778220179 + }, + "cable mod-prof-ofdma 417 data-iuc 11 modulation": { + "hint": "Possible completions:\n[qam256] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778220179 + }, + "cable mod-prof-ofdma 417 data-iuc 11 pilot-pattern": { + "hint": "Possible completions:\n[4]", + "options": [], + "type": "string_or_number", + "current_value": "4", + "updated_at": 1778220179 + }, + "cable mod-prof-ofdma 417 data-iuc 12 modulation": { + "hint": "Possible completions:\n[qam128] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam128", + "updated_at": 1778220230 + }, + "cable mod-prof-ofdma 417 data-iuc 12 pilot-pattern": { + "hint": "Possible completions:\n[4]", + "options": [], + "type": "string_or_number", + "current_value": "4", + "updated_at": 1778220230 + }, + "cable mod-prof-ofdma 417 data-iuc 13 modulation": { + "hint": "Possible completions:\n[qam16] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778220230 + }, + "cable mod-prof-ofdma 417 data-iuc 13 pilot-pattern": { + "hint": "Possible completions:\n[4]", + "options": [], + "type": "string_or_number", + "current_value": "4", + "updated_at": 1778220230 + }, + "cable mod-prof-ofdma 418 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[25khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "25khz", + "updated_at": 1778220230 + }, + "cable mod-prof-ofdma 418 cyclic-prefix-samples": { + "hint": "Possible completions:\n[192]", + "options": [], + "type": "string_or_number", + "current_value": "192", + "updated_at": 1778220230 + }, + "cable mod-prof-ofdma 418 rolloff-period-samples": { + "hint": "Description: Rolloff period configuration\nPossible completions:\n[64]", + "options": [], + "type": "string_or_number", + "current_value": "64", + "updated_at": 1778220230 + }, + "cable mod-prof-ofdma 418 symbols-per-frame": { + "hint": "Description: Number of OFDMA symbols per OFDMA frame\nPossible completions:\n[8]", + "options": [], + "type": "string_or_number", + "current_value": "8", + "updated_at": 1778220230 + }, + "cable mod-prof-ofdma 418 initial-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\npreamble-multiplier\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220230 + }, + "cable mod-prof-ofdma 418 fine-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220230 + }, + "cable mod-prof-ofdma 418 data-iuc 5 modulation": { + "hint": "Possible completions:\n[qam4096] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778220230 + }, + "cable mod-prof-ofdma 418 data-iuc 5 pilot-pattern": { + "hint": "Possible completions:\n[8]", + "options": [], + "type": "string_or_number", + "current_value": "8", + "updated_at": 1778220230 + }, + "cable mod-prof-ofdma 418 data-iuc 6 modulation": { + "hint": "Possible completions:\n[qam2048] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778220230 + }, + "cable mod-prof-ofdma 418 data-iuc 6 pilot-pattern": { + "hint": "Possible completions:\n[8]", + "options": [], + "type": "string_or_number", + "current_value": "8", + "updated_at": 1778220230 + }, + "cable mod-prof-ofdma 418 data-iuc 9 modulation": { + "hint": "Possible completions:\n[qam1024] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778220230 + }, + "cable mod-prof-ofdma 418 data-iuc 9 pilot-pattern": { + "hint": "Possible completions:\n[8]", + "options": [], + "type": "string_or_number", + "current_value": "8", + "updated_at": 1778220230 + }, + "cable mod-prof-ofdma 418 data-iuc 10 modulation": { + "hint": "Possible completions:\n[qam512] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778220230 + }, + "cable mod-prof-ofdma 418 data-iuc 10 pilot-pattern": { + "hint": "Possible completions:\n[8]", + "options": [], + "type": "string_or_number", + "current_value": "8", + "updated_at": 1778220230 + }, + "cable mod-prof-ofdma 418 data-iuc 11 modulation": { + "hint": "Possible completions:\n[qam256] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778220230 + }, + "cable mod-prof-ofdma 418 data-iuc 11 pilot-pattern": { + "hint": "Possible completions:\n[8]", + "options": [], + "type": "string_or_number", + "current_value": "8", + "updated_at": 1778220230 + }, + "cable mod-prof-ofdma 418 data-iuc 12 modulation": { + "hint": "Possible completions:\n[qam128] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam128", + "updated_at": 1778220230 + }, + "cable mod-prof-ofdma 418 data-iuc 12 pilot-pattern": { + "hint": "Possible completions:\n[8]", + "options": [], + "type": "string_or_number", + "current_value": "8", + "updated_at": 1778220230 + }, + "cable mod-prof-ofdma 418 data-iuc 13 modulation": { + "hint": "Possible completions:\n[qam16] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778220230 + }, + "cable mod-prof-ofdma 418 data-iuc 13 pilot-pattern": { + "hint": "Possible completions:\n[8]", + "options": [], + "type": "string_or_number", + "current_value": "8", + "updated_at": 1778220230 + }, + "cable mod-prof-ofdma 419 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[25khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "25khz", + "updated_at": 1778220230 + }, + "cable mod-prof-ofdma 419 cyclic-prefix-samples": { + "hint": "Possible completions:\n[256]", + "options": [], + "type": "string_or_number", + "current_value": "256", + "updated_at": 1778220230 + }, + "cable mod-prof-ofdma 419 rolloff-period-samples": { + "hint": "Description: Rolloff period configuration\nPossible completions:\n[128]", + "options": [], + "type": "string_or_number", + "current_value": "128", + "updated_at": 1778220230 + }, + "cable mod-prof-ofdma 419 symbols-per-frame": { + "hint": "Description: Number of OFDMA symbols per OFDMA frame\nPossible completions:\n[9]", + "options": [], + "type": "string_or_number", + "current_value": "9", + "updated_at": 1778220230 + }, + "cable mod-prof-ofdma 419 initial-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\npreamble-multiplier\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220230 + }, + "cable mod-prof-ofdma 419 fine-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220230 + }, + "cable mod-prof-ofdma 419 rx-window-samples": { + "hint": "Possible completions:\n[64]", + "options": [], + "type": "string_or_number", + "current_value": "64", + "updated_at": 1778220281 + }, + "cable mod-prof-ofdma 419 data-iuc 11 modulation": { + "hint": "Possible completions:\n[qam64] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam64", + "updated_at": 1778220281 + }, + "cable mod-prof-ofdma 419 data-iuc 11 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778220281 + }, + "cable mod-prof-ofdma 419 data-iuc 12 modulation": { + "hint": "Possible completions:\n[qam512] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778220281 + }, + "cable mod-prof-ofdma 419 data-iuc 12 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778220281 + }, + "cable mod-prof-ofdma 419 data-iuc 13 modulation": { + "hint": "Possible completions:\n[qam16] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778220281 + }, + "cable mod-prof-ofdma 419 data-iuc 13 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778220281 + }, + "cable mod-prof-ofdma 420 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778220281 + }, + "cable mod-prof-ofdma 420 cyclic-prefix-samples": { + "hint": "Possible completions:\n[256]", + "options": [], + "type": "string_or_number", + "current_value": "256", + "updated_at": 1778220281 + }, + "cable mod-prof-ofdma 420 rolloff-period-samples": { + "hint": "Description: Rolloff period configuration\nPossible completions:\n[96]", + "options": [], + "type": "string_or_number", + "current_value": "96", + "updated_at": 1778220281 + }, + "cable mod-prof-ofdma 420 symbols-per-frame": { + "hint": "Description: Number of OFDMA symbols per OFDMA frame\nPossible completions:\n[8]", + "options": [], + "type": "string_or_number", + "current_value": "8", + "updated_at": 1778220281 + }, + "cable mod-prof-ofdma 420 initial-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\npreamble-multiplier\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220281 + }, + "cable mod-prof-ofdma 420 fine-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220281 + }, + "cable mod-prof-ofdma 420 data-iuc 12 modulation": { + "hint": "Possible completions:\n[qam2048] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778220281 + }, + "cable mod-prof-ofdma 420 data-iuc 12 pilot-pattern": { + "hint": "Possible completions:\n[1]", + "options": [], + "type": "string_or_number", + "current_value": "1", + "updated_at": 1778220281 + }, + "cable mod-prof-ofdma 420 data-iuc 13 modulation": { + "hint": "Possible completions:\n[qam1024] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778220281 + }, + "cable mod-prof-ofdma 420 data-iuc 13 pilot-pattern": { + "hint": "Possible completions:\n[1]", + "options": [], + "type": "string_or_number", + "current_value": "1", + "updated_at": 1778220281 + }, + "cable mod-prof-ofdma 421 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[25khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "25khz", + "updated_at": 1778220281 + }, + "cable mod-prof-ofdma 421 cyclic-prefix-samples": { + "hint": "Possible completions:\n[160]", + "options": [], + "type": "string_or_number", + "current_value": "160", + "updated_at": 1778220281 + }, + "cable mod-prof-ofdma 421 rolloff-period-samples": { + "hint": "Description: Rolloff period configuration\nPossible completions:\n[64]", + "options": [], + "type": "string_or_number", + "current_value": "64", + "updated_at": 1778220281 + }, + "cable mod-prof-ofdma 421 symbols-per-frame": { + "hint": "Description: Number of OFDMA symbols per OFDMA frame\nPossible completions:\n[9]", + "options": [], + "type": "string_or_number", + "current_value": "9", + "updated_at": 1778220281 + }, + "cable mod-prof-ofdma 421 initial-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\npreamble-multiplier\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220281 + }, + "cable mod-prof-ofdma 421 fine-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220281 + }, + "cable mod-prof-ofdma 421 data-iuc 5 modulation": { + "hint": "Possible completions:\n[qam32] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam32", + "updated_at": 1778220281 + }, + "cable mod-prof-ofdma 421 data-iuc 5 pilot-pattern": { + "hint": "Possible completions:\n[9]", + "options": [], + "type": "string_or_number", + "current_value": "9", + "updated_at": 1778220281 + }, + "cable mod-prof-ofdma 421 data-iuc 6 modulation": { + "hint": "Possible completions:\n[qam128] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam128", + "updated_at": 1778220281 + }, + "cable mod-prof-ofdma 421 data-iuc 6 pilot-pattern": { + "hint": "Possible completions:\n[9]", + "options": [], + "type": "string_or_number", + "current_value": "9", + "updated_at": 1778220281 + }, + "cable mod-prof-ofdma 421 data-iuc 9 modulation": { + "hint": "Possible completions:\n[qam256] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778220281 + }, + "cable mod-prof-ofdma 421 data-iuc 9 pilot-pattern": { + "hint": "Possible completions:\n[9]", + "options": [], + "type": "string_or_number", + "current_value": "9", + "updated_at": 1778220281 + }, + "cable mod-prof-ofdma 421 data-iuc 10 modulation": { + "hint": "Possible completions:\n[qam512] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778220281 + }, + "cable mod-prof-ofdma 421 data-iuc 10 pilot-pattern": { + "hint": "Possible completions:\n[9]", + "options": [], + "type": "string_or_number", + "current_value": "9", + "updated_at": 1778220332 + }, + "cable mod-prof-ofdma 421 data-iuc 11 modulation": { + "hint": "Possible completions:\n[qam1024] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778220332 + }, + "cable mod-prof-ofdma 421 data-iuc 11 pilot-pattern": { + "hint": "Possible completions:\n[9]", + "options": [], + "type": "string_or_number", + "current_value": "9", + "updated_at": 1778220332 + }, + "cable mod-prof-ofdma 421 data-iuc 12 modulation": { + "hint": "Possible completions:\n[qam2048] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778220332 + }, + "cable mod-prof-ofdma 421 data-iuc 12 pilot-pattern": { + "hint": "Possible completions:\n[10]", + "options": [], + "type": "string_or_number", + "current_value": "10", + "updated_at": 1778220332 + }, + "cable mod-prof-ofdma 421 data-iuc 13 modulation": { + "hint": "Possible completions:\n[qam16] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778220332 + }, + "cable mod-prof-ofdma 421 data-iuc 13 pilot-pattern": { + "hint": "Possible completions:\n[9]", + "options": [], + "type": "string_or_number", + "current_value": "9", + "updated_at": 1778220332 + }, + "cable mod-prof-ofdma 428 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[25khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "25khz", + "updated_at": 1778220332 + }, + "cable mod-prof-ofdma 428 cyclic-prefix-samples": { + "hint": "Possible completions:\n[160]", + "options": [], + "type": "string_or_number", + "current_value": "160", + "updated_at": 1778220332 + }, + "cable mod-prof-ofdma 428 rolloff-period-samples": { + "hint": "Description: Rolloff period configuration\nPossible completions:\n[64]", + "options": [], + "type": "string_or_number", + "current_value": "64", + "updated_at": 1778220332 + }, + "cable mod-prof-ofdma 428 symbols-per-frame": { + "hint": "Description: Number of OFDMA symbols per OFDMA frame\nPossible completions:\n[18]", + "options": [], + "type": "string_or_number", + "current_value": "18", + "updated_at": 1778220332 + }, + "cable mod-prof-ofdma 428 initial-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\npreamble-multiplier\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220332 + }, + "cable mod-prof-ofdma 428 fine-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220332 + }, + "cable mod-prof-ofdma 428 data-iuc 10 modulation": { + "hint": "Possible completions:\n[qam256] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value\nSystem message at 2026-05-08 14:05:05...\nCommit performed by admin via ssh using cli.", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value", + "System", + "message", + "at", + "2026-05-08", + "14:05:05...", + "Commit", + "performed", + "by", + "admin", + "via", + "ssh", + "using", + "cli." + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778220332 + }, + "cable mod-prof-ofdma 428 data-iuc 10 pilot-pattern": { + "hint": "Possible completions:\n[8]", + "options": [], + "type": "string_or_number", + "current_value": "8", + "updated_at": 1778220332 + }, + "cable mod-prof-ofdma 428 data-iuc 11 modulation": { + "hint": "Possible completions:\n[qam512] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778220332 + }, + "cable mod-prof-ofdma 428 data-iuc 11 pilot-pattern": { + "hint": "Possible completions:\n[8]", + "options": [], + "type": "string_or_number", + "current_value": "8", + "updated_at": 1778220332 + }, + "cable mod-prof-ofdma 428 data-iuc 12 modulation": { + "hint": "Possible completions:\n[qam2048] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778220332 + }, + "cable mod-prof-ofdma 428 data-iuc 12 pilot-pattern": { + "hint": "Possible completions:\n[8]\nSystem message at 2026-05-08 14:05:13...\nCommit performed by admin via ssh using cli.", + "options": [], + "type": "string_or_number", + "current_value": "8", + "updated_at": 1778220332 + }, + "cable mod-prof-ofdma 428 data-iuc 13 modulation": { + "hint": "Possible completions:\n[qam1024] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778220332 + }, + "cable mod-prof-ofdma 428 data-iuc 13 pilot-pattern": { + "hint": "Possible completions:\n[8]", + "options": [], + "type": "string_or_number", + "current_value": "8", + "updated_at": 1778220332 + }, + "cable mod-prof-ofdma 429 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778220332 + }, + "cable mod-prof-ofdma 429 cyclic-prefix-samples": { + "hint": "Possible completions:\n[256]", + "options": [], + "type": "string_or_number", + "current_value": "256", + "updated_at": 1778220332 + }, + "cable mod-prof-ofdma 429 rolloff-period-samples": { + "hint": "Description: Rolloff period configuration\nPossible completions:\n[192]", + "options": [], + "type": "string_or_number", + "current_value": "192", + "updated_at": 1778220332 + }, + "cable mod-prof-ofdma 429 symbols-per-frame": { + "hint": "Description: Number of OFDMA symbols per OFDMA frame\nPossible completions:\n[18]", + "options": [], + "type": "string_or_number", + "current_value": "18", + "updated_at": 1778220332 + }, + "cable mod-prof-ofdma 429 initial-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\npreamble-multiplier\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220332 + }, + "cable mod-prof-ofdma 429 fine-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220332 + }, + "cable mod-prof-ofdma 429 data-iuc 10 modulation": { + "hint": "Possible completions:\n[qam256] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778220332 + }, + "cable mod-prof-ofdma 429 data-iuc 10 pilot-pattern": { + "hint": "Possible completions:\n[1]", + "options": [], + "type": "string_or_number", + "current_value": "1", + "updated_at": 1778220332 + }, + "cable mod-prof-ofdma 429 data-iuc 11 modulation": { + "hint": "Possible completions:\n[qam512] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778220332 + }, + "cable mod-prof-ofdma 429 data-iuc 11 pilot-pattern": { + "hint": "Possible completions:\n[1]", + "options": [], + "type": "string_or_number", + "current_value": "1", + "updated_at": 1778220383 + }, + "cable mod-prof-ofdma 429 data-iuc 12 modulation": { + "hint": "Possible completions:\n[qam2048] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778220383 + }, + "cable mod-prof-ofdma 429 data-iuc 12 pilot-pattern": { + "hint": "Possible completions:\n[1]", + "options": [], + "type": "string_or_number", + "current_value": "1", + "updated_at": 1778220383 + }, + "cable mod-prof-ofdma 429 data-iuc 13 modulation": { + "hint": "Possible completions:\n[qam1024] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778220383 + }, + "cable mod-prof-ofdma 429 data-iuc 13 pilot-pattern": { + "hint": "Possible completions:\n[1]", + "options": [], + "type": "string_or_number", + "current_value": "1", + "updated_at": 1778220383 + }, + "cable mod-prof-ofdma 432 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[25khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "25khz", + "updated_at": 1778220383 + }, + "cable mod-prof-ofdma 432 cyclic-prefix-samples": { + "hint": "Possible completions:\n[256]", + "options": [], + "type": "string_or_number", + "current_value": "256", + "updated_at": 1778220383 + }, + "cable mod-prof-ofdma 432 rolloff-period-samples": { + "hint": "Description: Rolloff period configuration\nPossible completions:\n[128]", + "options": [], + "type": "string_or_number", + "current_value": "128", + "updated_at": 1778220383 + }, + "cable mod-prof-ofdma 432 symbols-per-frame": { + "hint": "Description: Number of OFDMA symbols per OFDMA frame\nPossible completions:\n[9]", + "options": [], + "type": "string_or_number", + "current_value": "9", + "updated_at": 1778220383 + }, + "cable mod-prof-ofdma 432 initial-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\npreamble-multiplier\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220383 + }, + "cable mod-prof-ofdma 432 fine-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220383 + }, + "cable mod-prof-ofdma 432 rx-window-samples": { + "hint": "Possible completions:\n[64]", + "options": [], + "type": "string_or_number", + "current_value": "64", + "updated_at": 1778220383 + }, + "cable mod-prof-ofdma 432 data-iuc 5 modulation": { + "hint": "Possible completions:\n[qam4096] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778220383 + }, + "cable mod-prof-ofdma 432 data-iuc 5 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778220383 + }, + "cable mod-prof-ofdma 432 data-iuc 6 modulation": { + "hint": "Possible completions:\n[qam2048] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778220383 + }, + "cable mod-prof-ofdma 432 data-iuc 6 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778220383 + }, + "cable mod-prof-ofdma 432 data-iuc 9 modulation": { + "hint": "Possible completions:\n[qam1024] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778220383 + }, + "cable mod-prof-ofdma 432 data-iuc 9 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778220383 + }, + "cable mod-prof-ofdma 432 data-iuc 10 modulation": { + "hint": "Possible completions:\n[qam512] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778220383 + }, + "cable mod-prof-ofdma 432 data-iuc 10 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778220383 + }, + "cable mod-prof-ofdma 432 data-iuc 11 modulation": { + "hint": "Possible completions:\n[qam256] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778220383 + }, + "cable mod-prof-ofdma 432 data-iuc 11 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778220383 + }, + "cable mod-prof-ofdma 432 data-iuc 12 modulation": { + "hint": "Possible completions:\n[qam128] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam128", + "updated_at": 1778220383 + }, + "cable mod-prof-ofdma 432 data-iuc 12 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778220383 + }, + "cable mod-prof-ofdma 432 data-iuc 13 modulation": { + "hint": "Possible completions:\n[qam16] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778220383 + }, + "cable mod-prof-ofdma 432 data-iuc 13 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778220383 + }, + "cable mod-prof-ofdma 433 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[25khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "25khz", + "updated_at": 1778220383 + }, + "cable mod-prof-ofdma 433 cyclic-prefix-samples": { + "hint": "Possible completions:\n[160]", + "options": [], + "type": "string_or_number", + "current_value": "160", + "updated_at": 1778220383 + }, + "cable mod-prof-ofdma 433 rolloff-period-samples": { + "hint": "Description: Rolloff period configuration\nPossible completions:\n[64]", + "options": [], + "type": "string_or_number", + "current_value": "64", + "updated_at": 1778220383 + }, + "cable mod-prof-ofdma 433 symbols-per-frame": { + "hint": "Description: Number of OFDMA symbols per OFDMA frame\nPossible completions:\n[18]", + "options": [], + "type": "string_or_number", + "current_value": "18", + "updated_at": 1778220383 + }, + "cable mod-prof-ofdma 433 initial-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\npreamble-multiplier\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220434 + }, + "cable mod-prof-ofdma 433 fine-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220434 + }, + "cable mod-prof-ofdma 433 rx-window-samples": { + "hint": "Possible completions:\n[64]", + "options": [], + "type": "string_or_number", + "current_value": "64", + "updated_at": 1778220434 + }, + "cable mod-prof-ofdma 433 data-iuc 5 modulation": { + "hint": "Possible completions:\n[qam4096] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778220434 + }, + "cable mod-prof-ofdma 433 data-iuc 5 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778220434 + }, + "cable mod-prof-ofdma 433 data-iuc 6 modulation": { + "hint": "Possible completions:\n[qam2048] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778220434 + }, + "cable mod-prof-ofdma 433 data-iuc 6 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778220434 + }, + "cable mod-prof-ofdma 433 data-iuc 9 modulation": { + "hint": "Possible completions:\n[qam1024] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778220434 + }, + "cable mod-prof-ofdma 433 data-iuc 9 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778220434 + }, + "cable mod-prof-ofdma 433 data-iuc 10 modulation": { + "hint": "Possible completions:\n[qam512] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778220434 + }, + "cable mod-prof-ofdma 433 data-iuc 10 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778220434 + }, + "cable mod-prof-ofdma 433 data-iuc 11 modulation": { + "hint": "Possible completions:\n[qam256] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778220434 + }, + "cable mod-prof-ofdma 433 data-iuc 11 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778220434 + }, + "cable mod-prof-ofdma 433 data-iuc 12 modulation": { + "hint": "Possible completions:\n[qam128] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam128", + "updated_at": 1778220434 + }, + "cable mod-prof-ofdma 433 data-iuc 12 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778220434 + }, + "cable mod-prof-ofdma 433 data-iuc 13 modulation": { + "hint": "Possible completions:\n[qam16] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778220434 + }, + "cable mod-prof-ofdma 433 data-iuc 13 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778220434 + }, + "cable mod-prof-ofdma 435 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[25khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "25khz", + "updated_at": 1778220434 + }, + "cable mod-prof-ofdma 435 cyclic-prefix-samples": { + "hint": "Possible completions:\n[128]", + "options": [], + "type": "string_or_number", + "current_value": "128", + "updated_at": 1778220434 + }, + "cable mod-prof-ofdma 435 rolloff-period-samples": { + "hint": "Description: Rolloff period configuration\nPossible completions:\n[64]", + "options": [], + "type": "string_or_number", + "current_value": "64", + "updated_at": 1778220434 + }, + "cable mod-prof-ofdma 435 symbols-per-frame": { + "hint": "Description: Number of OFDMA symbols per OFDMA frame\nPossible completions:\n[9]", + "options": [], + "type": "string_or_number", + "current_value": "9", + "updated_at": 1778220434 + }, + "cable mod-prof-ofdma 435 initial-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\npreamble-multiplier\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220434 + }, + "cable mod-prof-ofdma 435 fine-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220434 + }, + "cable mod-prof-ofdma 435 rx-window-samples": { + "hint": "Possible completions:\n[64]", + "options": [], + "type": "string_or_number", + "current_value": "64", + "updated_at": 1778220434 + }, + "cable mod-prof-ofdma 435 data-iuc 5 modulation": { + "hint": "Possible completions:\n[qam4096] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778220434 + }, + "cable mod-prof-ofdma 435 data-iuc 5 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778220434 + }, + "cable mod-prof-ofdma 435 data-iuc 6 modulation": { + "hint": "Possible completions:\n[qam2048] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778220434 + }, + "cable mod-prof-ofdma 435 data-iuc 6 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778220434 + }, + "cable mod-prof-ofdma 435 data-iuc 9 modulation": { + "hint": "Possible completions:\n[qam1024] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778220434 + }, + "cable mod-prof-ofdma 435 data-iuc 9 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778220434 + }, + "cable mod-prof-ofdma 435 data-iuc 10 modulation": { + "hint": "Possible completions:\n[qam512] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778220485 + }, + "cable mod-prof-ofdma 435 data-iuc 10 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778220485 + }, + "cable mod-prof-ofdma 435 data-iuc 11 modulation": { + "hint": "Possible completions:\n[qam256] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778220485 + }, + "cable mod-prof-ofdma 435 data-iuc 11 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778220485 + }, + "cable mod-prof-ofdma 435 data-iuc 12 modulation": { + "hint": "Possible completions:\n[qam128] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam128", + "updated_at": 1778220485 + }, + "cable mod-prof-ofdma 435 data-iuc 12 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778220485 + }, + "cable mod-prof-ofdma 435 data-iuc 13 modulation": { + "hint": "Possible completions:\n[qam16] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778220485 + }, + "cable mod-prof-ofdma 435 data-iuc 13 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778220485 + }, + "cable mod-prof-ofdma 444 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778220485 + }, + "cable mod-prof-ofdma 444 cyclic-prefix-samples": { + "hint": "Possible completions:\n[256]", + "options": [], + "type": "string_or_number", + "current_value": "256", + "updated_at": 1778220485 + }, + "cable mod-prof-ofdma 444 rolloff-period-samples": { + "hint": "Description: Rolloff period configuration\nPossible completions:\n[96]", + "options": [], + "type": "string_or_number", + "current_value": "96", + "updated_at": 1778220485 + }, + "cable mod-prof-ofdma 444 symbols-per-frame": { + "hint": "Description: Number of OFDMA symbols per OFDMA frame\nPossible completions:\n[18]", + "options": [], + "type": "string_or_number", + "current_value": "18", + "updated_at": 1778220485 + }, + "cable mod-prof-ofdma 444 initial-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\npreamble-multiplier\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220485 + }, + "cable mod-prof-ofdma 444 fine-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220485 + }, + "cable mod-prof-ofdma 444 data-iuc 11 modulation": { + "hint": "Possible completions:\n[qam512] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778220485 + }, + "cable mod-prof-ofdma 444 data-iuc 11 pilot-pattern": { + "hint": "Possible completions:\n[6]", + "options": [], + "type": "string_or_number", + "current_value": "6", + "updated_at": 1778220485 + }, + "cable mod-prof-ofdma 444 data-iuc 12 modulation": { + "hint": "Possible completions:\n[qam4096] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778220485 + }, + "cable mod-prof-ofdma 444 data-iuc 12 pilot-pattern": { + "hint": "Possible completions:\n[6]", + "options": [], + "type": "string_or_number", + "current_value": "6", + "updated_at": 1778220485 + }, + "cable mod-prof-ofdma 444 data-iuc 13 modulation": { + "hint": "Possible completions:\n[qam16] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778220485 + }, + "cable mod-prof-ofdma 444 data-iuc 13 pilot-pattern": { + "hint": "Possible completions:\n[6]", + "options": [], + "type": "string_or_number", + "current_value": "6", + "updated_at": 1778220485 + }, + "cable mod-prof-ofdma 450 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778220485 + }, + "cable mod-prof-ofdma 450 cyclic-prefix-samples": { + "hint": "Possible completions:\n[256]", + "options": [], + "type": "string_or_number", + "current_value": "256", + "updated_at": 1778220485 + }, + "cable mod-prof-ofdma 450 rolloff-period-samples": { + "hint": "Description: Rolloff period configuration\nPossible completions:\n[96]", + "options": [], + "type": "string_or_number", + "current_value": "96", + "updated_at": 1778220485 + }, + "cable mod-prof-ofdma 450 symbols-per-frame": { + "hint": "Description: Number of OFDMA symbols per OFDMA frame\nPossible completions:\n[16]", + "options": [], + "type": "string_or_number", + "current_value": "16", + "updated_at": 1778220485 + }, + "cable mod-prof-ofdma 450 initial-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\npreamble-multiplier\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220485 + }, + "cable mod-prof-ofdma 450 fine-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220485 + }, + "cable mod-prof-ofdma 450 data-iuc 9 modulation": { + "hint": "Possible completions:\n[qam1024] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778220485 + }, + "cable mod-prof-ofdma 450 data-iuc 9 pilot-pattern": { + "hint": "Possible completions:\n[2]", + "options": [], + "type": "string_or_number", + "current_value": "2", + "updated_at": 1778220485 + }, + "cable mod-prof-ofdma 450 data-iuc 10 modulation": { + "hint": "Possible completions:\n[qam512] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778220485 + }, + "cable mod-prof-ofdma 450 data-iuc 10 pilot-pattern": { + "hint": "Possible completions:\n[2]", + "options": [], + "type": "string_or_number", + "current_value": "2", + "updated_at": 1778220485 + }, + "cable mod-prof-ofdma 450 data-iuc 11 modulation": { + "hint": "Possible completions:\n[qam256] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778220536 + }, + "cable mod-prof-ofdma 450 data-iuc 11 pilot-pattern": { + "hint": "Possible completions:\n[2]", + "options": [], + "type": "string_or_number", + "current_value": "2", + "updated_at": 1778220536 + }, + "cable mod-prof-ofdma 450 data-iuc 12 modulation": { + "hint": "Possible completions:\n[qam128] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam128", + "updated_at": 1778220536 + }, + "cable mod-prof-ofdma 450 data-iuc 12 pilot-pattern": { + "hint": "Possible completions:\n[2]", + "options": [], + "type": "string_or_number", + "current_value": "2", + "updated_at": 1778220536 + }, + "cable mod-prof-ofdma 450 data-iuc 13 modulation": { + "hint": "Possible completions:\n[qam64] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam64", + "updated_at": 1778220536 + }, + "cable mod-prof-ofdma 450 data-iuc 13 pilot-pattern": { + "hint": "Possible completions:\n[2]", + "options": [], + "type": "string_or_number", + "current_value": "2", + "updated_at": 1778220536 + }, + "cable mod-prof-ofdma 451 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[25khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "25khz", + "updated_at": 1778220536 + }, + "cable mod-prof-ofdma 451 cyclic-prefix-samples": { + "hint": "Possible completions:\n[256]", + "options": [], + "type": "string_or_number", + "current_value": "256", + "updated_at": 1778220536 + }, + "cable mod-prof-ofdma 451 rolloff-period-samples": { + "hint": "Description: Rolloff period configuration\nPossible completions:\n[128]", + "options": [], + "type": "string_or_number", + "current_value": "128", + "updated_at": 1778220536 + }, + "cable mod-prof-ofdma 451 symbols-per-frame": { + "hint": "Description: Number of OFDMA symbols per OFDMA frame\nPossible completions:\n[9]", + "options": [], + "type": "string_or_number", + "current_value": "9", + "updated_at": 1778220536 + }, + "cable mod-prof-ofdma 451 initial-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\npreamble-multiplier\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220536 + }, + "cable mod-prof-ofdma 451 fine-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220536 + }, + "cable mod-prof-ofdma 451 rx-window-samples": { + "hint": "Possible completions:\n[64]", + "options": [], + "type": "string_or_number", + "current_value": "64", + "updated_at": 1778220536 + }, + "cable mod-prof-ofdma 451 data-iuc 5 modulation": { + "hint": "Possible completions:\n[qam4096] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778220536 + }, + "cable mod-prof-ofdma 451 data-iuc 5 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778220536 + }, + "cable mod-prof-ofdma 451 data-iuc 6 modulation": { + "hint": "Possible completions:\n[qam2048] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778220536 + }, + "cable mod-prof-ofdma 451 data-iuc 6 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778220536 + }, + "cable mod-prof-ofdma 451 data-iuc 9 modulation": { + "hint": "Possible completions:\n[qam1024] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778220536 + }, + "cable mod-prof-ofdma 451 data-iuc 9 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778220536 + }, + "cable mod-prof-ofdma 451 data-iuc 10 modulation": { + "hint": "Possible completions:\n[qam512] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778220536 + }, + "cable mod-prof-ofdma 451 data-iuc 10 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778220536 + }, + "cable mod-prof-ofdma 451 data-iuc 11 modulation": { + "hint": "Possible completions:\n[qam256] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778220536 + }, + "cable mod-prof-ofdma 451 data-iuc 11 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778220536 + }, + "cable mod-prof-ofdma 451 data-iuc 12 modulation": { + "hint": "Possible completions:\n[qam128] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam128", + "updated_at": 1778220536 + }, + "cable mod-prof-ofdma 451 data-iuc 12 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778220536 + }, + "cable mod-prof-ofdma 451 data-iuc 13 modulation": { + "hint": "Possible completions:\n[qam16] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778220536 + }, + "cable mod-prof-ofdma 451 data-iuc 13 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778220536 + }, + "cable mod-prof-ofdma 461 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778220536 + }, + "cable mod-prof-ofdma 461 cyclic-prefix-samples": { + "hint": "Possible completions:\n[192]", + "options": [], + "type": "string_or_number", + "current_value": "192", + "updated_at": 1778220536 + }, + "cable mod-prof-ofdma 461 rolloff-period-samples": { + "hint": "Description: Rolloff period configuration\nPossible completions:\n[64]", + "options": [], + "type": "string_or_number", + "current_value": "64", + "updated_at": 1778220536 + }, + "cable mod-prof-ofdma 461 symbols-per-frame": { + "hint": "Description: Number of OFDMA symbols per OFDMA frame\nPossible completions:\n[16]", + "options": [], + "type": "string_or_number", + "current_value": "16", + "updated_at": 1778220586 + }, + "cable mod-prof-ofdma 461 initial-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\npreamble-multiplier\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220586 + }, + "cable mod-prof-ofdma 461 fine-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220586 + }, + "cable mod-prof-ofdma 461 data-iuc 5 modulation": { + "hint": "Possible completions:\n[qam4096] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778220586 + }, + "cable mod-prof-ofdma 461 data-iuc 5 pilot-pattern": { + "hint": "Possible completions:\n[3]", + "options": [], + "type": "string_or_number", + "current_value": "3", + "updated_at": 1778220586 + }, + "cable mod-prof-ofdma 461 data-iuc 6 modulation": { + "hint": "Possible completions:\n[qam2048] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778220586 + }, + "cable mod-prof-ofdma 461 data-iuc 6 pilot-pattern": { + "hint": "Possible completions:\n[3]", + "options": [], + "type": "string_or_number", + "current_value": "3", + "updated_at": 1778220586 + }, + "cable mod-prof-ofdma 461 data-iuc 9 modulation": { + "hint": "Possible completions:\n[qam1024] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778220586 + }, + "cable mod-prof-ofdma 461 data-iuc 9 pilot-pattern": { + "hint": "Possible completions:\n[3]", + "options": [], + "type": "string_or_number", + "current_value": "3", + "updated_at": 1778220586 + }, + "cable mod-prof-ofdma 461 data-iuc 10 modulation": { + "hint": "Possible completions:\n[qam512] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778220586 + }, + "cable mod-prof-ofdma 461 data-iuc 10 pilot-pattern": { + "hint": "Possible completions:\n[3]", + "options": [], + "type": "string_or_number", + "current_value": "3", + "updated_at": 1778220586 + }, + "cable mod-prof-ofdma 461 data-iuc 11 modulation": { + "hint": "Possible completions:\n[qam256] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778220586 + }, + "cable mod-prof-ofdma 461 data-iuc 11 pilot-pattern": { + "hint": "Possible completions:\n[3]", + "options": [], + "type": "string_or_number", + "current_value": "3", + "updated_at": 1778220586 + }, + "cable mod-prof-ofdma 461 data-iuc 12 modulation": { + "hint": "Possible completions:\n[qam64] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam64", + "updated_at": 1778220586 + }, + "cable mod-prof-ofdma 461 data-iuc 12 pilot-pattern": { + "hint": "Possible completions:\n[2]", + "options": [], + "type": "string_or_number", + "current_value": "2", + "updated_at": 1778220586 + }, + "cable mod-prof-ofdma 461 data-iuc 13 modulation": { + "hint": "Possible completions:\n[qam16] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778220586 + }, + "cable mod-prof-ofdma 461 data-iuc 13 pilot-pattern": { + "hint": "Possible completions:\n[2]", + "options": [], + "type": "string_or_number", + "current_value": "2", + "updated_at": 1778220586 + }, + "cable mod-prof-ofdma 466 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[25khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "25khz", + "updated_at": 1778220586 + }, + "cable mod-prof-ofdma 466 cyclic-prefix-samples": { + "hint": "Possible completions:\n[192]", + "options": [], + "type": "string_or_number", + "current_value": "192", + "updated_at": 1778220586 + }, + "cable mod-prof-ofdma 466 rolloff-period-samples": { + "hint": "Description: Rolloff period configuration\nPossible completions:\n[64]", + "options": [], + "type": "string_or_number", + "current_value": "64", + "updated_at": 1778220586 + }, + "cable mod-prof-ofdma 466 symbols-per-frame": { + "hint": "Description: Number of OFDMA symbols per OFDMA frame\nPossible completions:\n[8]", + "options": [], + "type": "string_or_number", + "current_value": "8", + "updated_at": 1778220586 + }, + "cable mod-prof-ofdma 466 initial-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\npreamble-multiplier\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220586 + }, + "cable mod-prof-ofdma 466 fine-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220586 + }, + "cable mod-prof-ofdma 466 data-iuc 9 modulation": { + "hint": "Possible completions:\n[qam1024] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778220586 + }, + "cable mod-prof-ofdma 466 data-iuc 9 pilot-pattern": { + "hint": "Possible completions:\n[8]", + "options": [], + "type": "string_or_number", + "current_value": "8", + "updated_at": 1778220586 + }, + "cable mod-prof-ofdma 466 data-iuc 10 modulation": { + "hint": "Possible completions:\n[qam512] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778220586 + }, + "cable mod-prof-ofdma 466 data-iuc 10 pilot-pattern": { + "hint": "Possible completions:\n[8]", + "options": [], + "type": "string_or_number", + "current_value": "8", + "updated_at": 1778220586 + }, + "cable mod-prof-ofdma 466 data-iuc 11 modulation": { + "hint": "Possible completions:\n[qam256] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778220586 + }, + "cable mod-prof-ofdma 466 data-iuc 11 pilot-pattern": { + "hint": "Possible completions:\n[8]", + "options": [], + "type": "string_or_number", + "current_value": "8", + "updated_at": 1778220586 + }, + "cable mod-prof-ofdma 466 data-iuc 12 modulation": { + "hint": "Possible completions:\n[qam128] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam128", + "updated_at": 1778220586 + }, + "cable mod-prof-ofdma 466 data-iuc 12 pilot-pattern": { + "hint": "Possible completions:\n[8]", + "options": [], + "type": "string_or_number", + "current_value": "8", + "updated_at": 1778220637 + }, + "cable mod-prof-ofdma 466 data-iuc 13 modulation": { + "hint": "Possible completions:\n[qam16] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778220637 + }, + "cable mod-prof-ofdma 466 data-iuc 13 pilot-pattern": { + "hint": "Possible completions:\n[8]", + "options": [], + "type": "string_or_number", + "current_value": "8", + "updated_at": 1778220637 + }, + "cable mod-prof-ofdma 487 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[25khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "25khz", + "updated_at": 1778220637 + }, + "cable mod-prof-ofdma 487 cyclic-prefix-samples": { + "hint": "Possible completions:\n[192]", + "options": [], + "type": "string_or_number", + "current_value": "192", + "updated_at": 1778220637 + }, + "cable mod-prof-ofdma 487 rolloff-period-samples": { + "hint": "Description: Rolloff period configuration\nPossible completions:\n[64]", + "options": [], + "type": "string_or_number", + "current_value": "64", + "updated_at": 1778220637 + }, + "cable mod-prof-ofdma 487 symbols-per-frame": { + "hint": "Description: Number of OFDMA symbols per OFDMA frame\nPossible completions:\n[6]", + "options": [], + "type": "string_or_number", + "current_value": "6", + "updated_at": 1778220637 + }, + "cable mod-prof-ofdma 487 initial-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\npreamble-multiplier\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220637 + }, + "cable mod-prof-ofdma 487 fine-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220637 + }, + "cable mod-prof-ofdma 487 data-iuc 5 modulation": { + "hint": "Possible completions:\n[qam4096] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778220637 + }, + "cable mod-prof-ofdma 487 data-iuc 5 pilot-pattern": { + "hint": "Possible completions:\n[8]", + "options": [], + "type": "string_or_number", + "current_value": "8", + "updated_at": 1778220637 + }, + "cable mod-prof-ofdma 487 data-iuc 6 modulation": { + "hint": "Possible completions:\n[qam2048] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778220637 + }, + "cable mod-prof-ofdma 487 data-iuc 6 pilot-pattern": { + "hint": "Possible completions:\n[8]", + "options": [], + "type": "string_or_number", + "current_value": "8", + "updated_at": 1778220637 + }, + "cable mod-prof-ofdma 487 data-iuc 9 modulation": { + "hint": "Possible completions:\n[qam1024] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778220637 + }, + "cable mod-prof-ofdma 487 data-iuc 9 pilot-pattern": { + "hint": "Possible completions:\n[8]", + "options": [], + "type": "string_or_number", + "current_value": "8", + "updated_at": 1778220637 + }, + "cable mod-prof-ofdma 487 data-iuc 10 modulation": { + "hint": "Possible completions:\n[qam512] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778220637 + }, + "cable mod-prof-ofdma 487 data-iuc 10 pilot-pattern": { + "hint": "Possible completions:\n[8]", + "options": [], + "type": "string_or_number", + "current_value": "8", + "updated_at": 1778220637 + }, + "cable mod-prof-ofdma 487 data-iuc 11 modulation": { + "hint": "Possible completions:\n[qam256] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778220637 + }, + "cable mod-prof-ofdma 487 data-iuc 11 pilot-pattern": { + "hint": "Possible completions:\n[8]", + "options": [], + "type": "string_or_number", + "current_value": "8", + "updated_at": 1778220637 + }, + "cable mod-prof-ofdma 487 data-iuc 12 modulation": { + "hint": "Possible completions:\n[qam128] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam128", + "updated_at": 1778220637 + }, + "cable mod-prof-ofdma 487 data-iuc 12 pilot-pattern": { + "hint": "Possible completions:\n[8]", + "options": [], + "type": "string_or_number", + "current_value": "8", + "updated_at": 1778220637 + }, + "cable mod-prof-ofdma 487 data-iuc 13 modulation": { + "hint": "Possible completions:\n[qam16] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778220637 + }, + "cable mod-prof-ofdma 487 data-iuc 13 pilot-pattern": { + "hint": "Possible completions:\n[8]", + "options": [], + "type": "string_or_number", + "current_value": "8", + "updated_at": 1778220637 + }, + "cable mod-prof-ofdma 488 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[25khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "25khz", + "updated_at": 1778220637 + }, + "cable mod-prof-ofdma 488 cyclic-prefix-samples": { + "hint": "Possible completions:\n[256]", + "options": [], + "type": "string_or_number", + "current_value": "256", + "updated_at": 1778220637 + }, + "cable mod-prof-ofdma 488 rolloff-period-samples": { + "hint": "Description: Rolloff period configuration\nPossible completions:\n[128]", + "options": [], + "type": "string_or_number", + "current_value": "128", + "updated_at": 1778220637 + }, + "cable mod-prof-ofdma 488 symbols-per-frame": { + "hint": "Description: Number of OFDMA symbols per OFDMA frame\nPossible completions:\n[9]", + "options": [], + "type": "string_or_number", + "current_value": "9", + "updated_at": 1778220637 + }, + "cable mod-prof-ofdma 488 initial-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\npreamble-multiplier\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220637 + }, + "cable mod-prof-ofdma 488 fine-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220637 + }, + "cable mod-prof-ofdma 488 data-iuc 9 modulation": { + "hint": "Possible completions:\n[qam1024] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778220637 + }, + "cable mod-prof-ofdma 488 data-iuc 9 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778220688 + }, + "cable mod-prof-ofdma 488 data-iuc 10 modulation": { + "hint": "Possible completions:\n[qam512] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778220688 + }, + "cable mod-prof-ofdma 488 data-iuc 10 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778220688 + }, + "cable mod-prof-ofdma 488 data-iuc 11 modulation": { + "hint": "Possible completions:\n[qam256] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778220688 + }, + "cable mod-prof-ofdma 488 data-iuc 11 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778220688 + }, + "cable mod-prof-ofdma 488 data-iuc 12 modulation": { + "hint": "Possible completions:\n[qam128] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam128", + "updated_at": 1778220688 + }, + "cable mod-prof-ofdma 488 data-iuc 12 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778220688 + }, + "cable mod-prof-ofdma 488 data-iuc 13 modulation": { + "hint": "Possible completions:\n[qam16] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778220688 + }, + "cable mod-prof-ofdma 488 data-iuc 13 pilot-pattern": { + "hint": "Possible completions:\n[14]", + "options": [], + "type": "string_or_number", + "current_value": "14", + "updated_at": 1778220688 + }, + "cable mod-prof-ofdma 499 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778220688 + }, + "cable mod-prof-ofdma 499 cyclic-prefix-samples": { + "hint": "Possible completions:\n[192]", + "options": [], + "type": "string_or_number", + "current_value": "192", + "updated_at": 1778220688 + }, + "cable mod-prof-ofdma 499 rolloff-period-samples": { + "hint": "Description: Rolloff period configuration\nPossible completions:\n[64]", + "options": [], + "type": "string_or_number", + "current_value": "64", + "updated_at": 1778220688 + }, + "cable mod-prof-ofdma 499 symbols-per-frame": { + "hint": "Description: Number of OFDMA symbols per OFDMA frame\nPossible completions:\n[16]", + "options": [], + "type": "string_or_number", + "current_value": "16", + "updated_at": 1778220688 + }, + "cable mod-prof-ofdma 499 initial-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\npreamble-multiplier\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220688 + }, + "cable mod-prof-ofdma 499 fine-ranging": { + "hint": "Possible completions:\nguard-subcarriers Number of subcarriers dedicated as guard interval\nsubcarriers", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220688 + }, + "cable mod-prof-ofdma 499 data-iuc 12 modulation": { + "hint": "Possible completions:\n[qpsk] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qpsk", + "updated_at": 1778220688 + }, + "cable mod-prof-ofdma 499 data-iuc 12 pilot-pattern": { + "hint": "Possible completions:\n[7]", + "options": [], + "type": "string_or_number", + "current_value": "7", + "updated_at": 1778220688 + }, + "cable mod-prof-ofdma 499 data-iuc 13 modulation": { + "hint": "Possible completions:\n[qam16] bpsk other qam8 qam16 qam32 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qpsk zero-value", + "options": [ + "bpsk", + "other", + "qam8", + "qam16", + "qam32", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qpsk", + "zero-value" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778220688 + }, + "cable mod-prof-ofdma 499 data-iuc 13 pilot-pattern": { + "hint": "Possible completions:\n[7]", + "options": [], + "type": "string_or_number", + "current_value": "7", + "updated_at": 1778220688 + }, + "cable template ds-rf-port A-D24S4O admin-state": { + "hint": "Description: Administrative State of the DS RF port [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778220688 + }, + "cable template ds-rf-port A-D24S4O max-occupied-bw-mhz": { + "hint": "Description: Maximum bandwidth occupied by this port in megahertz\nPossible completions:\n[960.0]", + "options": [], + "type": "string_or_number", + "current_value": "960.0", + "updated_at": 1778220688 + }, + "cable template ds-rf-port A-D24S4O tilt-adjust": { + "hint": "Description: tilt-adjustment\nPossible completions:\n[10.0]", + "options": [], + "type": "string_or_number", + "current_value": "10.0", + "updated_at": 1778220688 + }, + "cable template ds-rf-port A-D24S4O base-channel-power-dbmv": { + "hint": "Description: Base channel power level in TenthdB\nPossible completions:\n[50.0]", + "options": [], + "type": "string_or_number", + "current_value": "50.0", + "updated_at": 1778220688 + }, + "cable template ds-rf-port A-D24S4O down-channel 0 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778220688 + }, + "cable template ds-rf-port A-D24S4O down-channel 0 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778220688 + }, + "cable template ds-rf-port A-D24S4O down-channel 0 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[258.0]", + "options": [], + "type": "string_or_number", + "current_value": "258.0", + "updated_at": 1778220688 + }, + "cable template ds-rf-port A-D24S4O down-channel 0 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-34]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-34", + "updated_at": 1778220688 + }, + "cable template ds-rf-port A-D24S4O down-channel 1 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778220688 + }, + "cable template ds-rf-port A-D24S4O down-channel 1 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778220688 + }, + "cable template ds-rf-port A-D24S4O down-channel 1 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[266.0]", + "options": [], + "type": "string_or_number", + "current_value": "266.0", + "updated_at": 1778220688 + }, + "cable template ds-rf-port A-D24S4O down-channel 1 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-35]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-35", + "updated_at": 1778220739 + }, + "cable template ds-rf-port A-D24S4O down-channel 2 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778220739 + }, + "cable template ds-rf-port A-D24S4O down-channel 2 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778220739 + }, + "cable template ds-rf-port A-D24S4O down-channel 2 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[274.0]", + "options": [], + "type": "string_or_number", + "current_value": "274.0", + "updated_at": 1778220739 + }, + "cable template ds-rf-port A-D24S4O down-channel 2 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778220739 + }, + "cable template ds-rf-port A-D24S4O down-channel 3 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778220739 + }, + "cable template ds-rf-port A-D24S4O down-channel 3 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778220739 + }, + "cable template ds-rf-port A-D24S4O down-channel 3 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[282.0]", + "options": [], + "type": "string_or_number", + "current_value": "282.0", + "updated_at": 1778220739 + }, + "cable template ds-rf-port A-D24S4O down-channel 3 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-37]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-37", + "updated_at": 1778220739 + }, + "cable template ds-rf-port A-D24S4O down-channel 4 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778220739 + }, + "cable template ds-rf-port A-D24S4O down-channel 4 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778220739 + }, + "cable template ds-rf-port A-D24S4O down-channel 4 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[290.0]", + "options": [], + "type": "string_or_number", + "current_value": "290.0", + "updated_at": 1778220739 + }, + "cable template ds-rf-port A-D24S4O down-channel 4 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-38]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-38", + "updated_at": 1778220739 + }, + "cable template ds-rf-port A-D24S4O down-channel 5 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778220739 + }, + "cable template ds-rf-port A-D24S4O down-channel 5 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778220739 + }, + "cable template ds-rf-port A-D24S4O down-channel 5 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[298.0]", + "options": [], + "type": "string_or_number", + "current_value": "298.0", + "updated_at": 1778220739 + }, + "cable template ds-rf-port A-D24S4O down-channel 5 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-39]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-39", + "updated_at": 1778220739 + }, + "cable template ds-rf-port A-D24S4O down-channel 6 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778220739 + }, + "cable template ds-rf-port A-D24S4O down-channel 6 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778220739 + }, + "cable template ds-rf-port A-D24S4O down-channel 6 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[306.0]", + "options": [], + "type": "string_or_number", + "current_value": "306.0", + "updated_at": 1778220739 + }, + "cable template ds-rf-port A-D24S4O down-channel 6 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-40]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-40", + "updated_at": 1778220739 + }, + "cable template ds-rf-port A-D24S4O down-channel 7 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778220739 + }, + "cable template ds-rf-port A-D24S4O down-channel 7 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778220739 + }, + "cable template ds-rf-port A-D24S4O down-channel 7 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[314.0]", + "options": [], + "type": "string_or_number", + "current_value": "314.0", + "updated_at": 1778220739 + }, + "cable template ds-rf-port A-D24S4O down-channel 7 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-41]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-41", + "updated_at": 1778220739 + }, + "cable template ds-rf-port A-D24S4O down-channel 8 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778220739 + }, + "cable template ds-rf-port A-D24S4O down-channel 8 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778220739 + }, + "cable template ds-rf-port A-D24S4O down-channel 8 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[322.0]", + "options": [], + "type": "string_or_number", + "current_value": "322.0", + "updated_at": 1778220739 + }, + "cable template ds-rf-port A-D24S4O down-channel 8 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-42]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-42", + "updated_at": 1778220739 + }, + "cable template ds-rf-port A-D24S4O down-channel 9 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778220739 + }, + "cable template ds-rf-port A-D24S4O down-channel 9 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778220790 + }, + "cable template ds-rf-port A-D24S4O down-channel 9 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[330.0]", + "options": [], + "type": "string_or_number", + "current_value": "330.0", + "updated_at": 1778220790 + }, + "cable template ds-rf-port A-D24S4O down-channel 9 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-43]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-43", + "updated_at": 1778220790 + }, + "cable template ds-rf-port A-D24S4O down-channel 10 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778220790 + }, + "cable template ds-rf-port A-D24S4O down-channel 10 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778220790 + }, + "cable template ds-rf-port A-D24S4O down-channel 10 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[338.0]", + "options": [], + "type": "string_or_number", + "current_value": "338.0", + "updated_at": 1778220790 + }, + "cable template ds-rf-port A-D24S4O down-channel 10 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-44]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-44", + "updated_at": 1778220790 + }, + "cable template ds-rf-port A-D24S4O down-channel 11 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778220790 + }, + "cable template ds-rf-port A-D24S4O down-channel 11 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778220790 + }, + "cable template ds-rf-port A-D24S4O down-channel 11 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[346.0]", + "options": [], + "type": "string_or_number", + "current_value": "346.0", + "updated_at": 1778220790 + }, + "cable template ds-rf-port A-D24S4O down-channel 11 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-45]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-45", + "updated_at": 1778220790 + }, + "cable template ds-rf-port A-D24S4O down-channel 12 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778220790 + }, + "cable template ds-rf-port A-D24S4O down-channel 12 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778220790 + }, + "cable template ds-rf-port A-D24S4O down-channel 12 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[354.0]", + "options": [], + "type": "string_or_number", + "current_value": "354.0", + "updated_at": 1778220790 + }, + "cable template ds-rf-port A-D24S4O down-channel 12 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-46]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-46", + "updated_at": 1778220790 + }, + "cable template ds-rf-port A-D24S4O down-channel 13 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778220790 + }, + "cable template ds-rf-port A-D24S4O down-channel 13 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778220790 + }, + "cable template ds-rf-port A-D24S4O down-channel 13 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[362.0]", + "options": [], + "type": "string_or_number", + "current_value": "362.0", + "updated_at": 1778220790 + }, + "cable template ds-rf-port A-D24S4O down-channel 13 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-47]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-47", + "updated_at": 1778220790 + }, + "cable template ds-rf-port A-D24S4O down-channel 14 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778220790 + }, + "cable template ds-rf-port A-D24S4O down-channel 14 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778220790 + }, + "cable template ds-rf-port A-D24S4O down-channel 14 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[370.0]", + "options": [], + "type": "string_or_number", + "current_value": "370.0", + "updated_at": 1778220790 + }, + "cable template ds-rf-port A-D24S4O down-channel 14 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-48]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-48", + "updated_at": 1778220790 + }, + "cable template ds-rf-port A-D24S4O down-channel 15 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778220790 + }, + "cable template ds-rf-port A-D24S4O down-channel 15 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778220790 + }, + "cable template ds-rf-port A-D24S4O down-channel 15 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[378.0]", + "options": [], + "type": "string_or_number", + "current_value": "378.0", + "updated_at": 1778220790 + }, + "cable template ds-rf-port A-D24S4O down-channel 15 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-49]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-49", + "updated_at": 1778220790 + }, + "cable template ds-rf-port A-D24S4O down-channel 16 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778220790 + }, + "cable template ds-rf-port A-D24S4O down-channel 16 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778220790 + }, + "cable template ds-rf-port A-D24S4O down-channel 16 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[386.0]", + "options": [], + "type": "string_or_number", + "current_value": "386.0", + "updated_at": 1778220790 + }, + "cable template ds-rf-port A-D24S4O down-channel 16 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-50]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-50", + "updated_at": 1778220840 + }, + "cable template ds-rf-port A-D24S4O down-channel 17 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778220840 + }, + "cable template ds-rf-port A-D24S4O down-channel 17 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778220840 + }, + "cable template ds-rf-port A-D24S4O down-channel 17 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[394.0]", + "options": [], + "type": "string_or_number", + "current_value": "394.0", + "updated_at": 1778220840 + }, + "cable template ds-rf-port A-D24S4O down-channel 17 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-51]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-51", + "updated_at": 1778220840 + }, + "cable template ds-rf-port A-D24S4O down-channel 18 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778220840 + }, + "cable template ds-rf-port A-D24S4O down-channel 18 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778220840 + }, + "cable template ds-rf-port A-D24S4O down-channel 18 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[402.0]", + "options": [], + "type": "string_or_number", + "current_value": "402.0", + "updated_at": 1778220840 + }, + "cable template ds-rf-port A-D24S4O down-channel 18 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-52]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-52", + "updated_at": 1778220840 + }, + "cable template ds-rf-port A-D24S4O down-channel 19 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778220840 + }, + "cable template ds-rf-port A-D24S4O down-channel 19 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778220840 + }, + "cable template ds-rf-port A-D24S4O down-channel 19 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[410.0]", + "options": [], + "type": "string_or_number", + "current_value": "410.0", + "updated_at": 1778220840 + }, + "cable template ds-rf-port A-D24S4O down-channel 19 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-53]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-53", + "updated_at": 1778220840 + }, + "cable template ds-rf-port A-D24S4O down-channel 20 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778220840 + }, + "cable template ds-rf-port A-D24S4O down-channel 20 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778220840 + }, + "cable template ds-rf-port A-D24S4O down-channel 20 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[418.0]", + "options": [], + "type": "string_or_number", + "current_value": "418.0", + "updated_at": 1778220840 + }, + "cable template ds-rf-port A-D24S4O down-channel 20 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-54]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-54", + "updated_at": 1778220840 + }, + "cable template ds-rf-port A-D24S4O down-channel 21 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778220840 + }, + "cable template ds-rf-port A-D24S4O down-channel 21 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778220840 + }, + "cable template ds-rf-port A-D24S4O down-channel 21 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[426.0]", + "options": [], + "type": "string_or_number", + "current_value": "426.0", + "updated_at": 1778220840 + }, + "cable template ds-rf-port A-D24S4O down-channel 21 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-55]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-55", + "updated_at": 1778220840 + }, + "cable template ds-rf-port A-D24S4O down-channel 22 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778220840 + }, + "cable template ds-rf-port A-D24S4O down-channel 22 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778220840 + }, + "cable template ds-rf-port A-D24S4O down-channel 22 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[434.0]", + "options": [], + "type": "string_or_number", + "current_value": "434.0", + "updated_at": 1778220840 + }, + "cable template ds-rf-port A-D24S4O down-channel 22 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-56]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-56", + "updated_at": 1778220840 + }, + "cable template ds-rf-port A-D24S4O down-channel 23 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778220840 + }, + "cable template ds-rf-port A-D24S4O down-channel 23 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778220840 + }, + "cable template ds-rf-port A-D24S4O down-channel 23 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[442.0]", + "options": [], + "type": "string_or_number", + "current_value": "442.0", + "updated_at": 1778220840 + }, + "cable template ds-rf-port A-D24S4O down-channel 23 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-57]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-57", + "updated_at": 1778220840 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 0 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778220840 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 0 auto-profile-change": { + "hint": "Description: Enable/disable automatic profile changes\nPossible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778220891 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 0 cyclic-prefix": { + "hint": "Description: Cyclic prefix configuration\nPossible completions:\n[256]", + "options": [], + "type": "string_or_number", + "current_value": "256", + "updated_at": 1778220891 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 0 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778220891 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 0 query-load-percent": { + "hint": "Description: Define amount of traffic sent on each profile for testing MER.\nPossible completions:\n[0.0]", + "options": [], + "type": "string_or_number", + "current_value": "0.0", + "updated_at": 1778220891 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 0 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778220891 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 0 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778220891 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 0 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [450.0]", + "options": [], + "type": "string_or_number", + "current_value": "450.0", + "updated_at": 1778220891 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 0 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[642.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220891 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 0 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[546.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220891 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 0 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778220891 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 0 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778220891 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 0 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778220891 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 0 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778220891 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 0 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778220891 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 0 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778220891 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 1 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778220891 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 1 auto-profile-change": { + "hint": "Description: Enable/disable automatic profile changes\nPossible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778220891 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 1 cyclic-prefix": { + "hint": "Description: Cyclic prefix configuration\nPossible completions:\n[256]", + "options": [], + "type": "string_or_number", + "current_value": "256", + "updated_at": 1778220891 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 1 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778220891 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 1 query-load-percent": { + "hint": "Description: Define amount of traffic sent on each profile for testing MER.\nPossible completions:\n[0.0]", + "options": [], + "type": "string_or_number", + "current_value": "0.0", + "updated_at": 1778220891 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 1 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778220891 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 1 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778220891 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 1 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [642.0]", + "options": [], + "type": "string_or_number", + "current_value": "642.0", + "updated_at": 1778220891 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 1 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[834.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220891 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 1 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[738.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220891 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 1 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778220891 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 1 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778220891 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 1 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778220891 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 1 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778220891 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 1 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778220891 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 1 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778220942 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 2 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778220942 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 2 auto-profile-change": { + "hint": "Description: Enable/disable automatic profile changes\nPossible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778220942 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 2 cyclic-prefix": { + "hint": "Description: Cyclic prefix configuration\nPossible completions:\n[256]", + "options": [], + "type": "string_or_number", + "current_value": "256", + "updated_at": 1778220942 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 2 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778220942 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 2 query-load-percent": { + "hint": "Description: Define amount of traffic sent on each profile for testing MER.\nPossible completions:\n[0.0]", + "options": [], + "type": "string_or_number", + "current_value": "0.0", + "updated_at": 1778220942 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 2 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778220942 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 2 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778220942 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 2 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [834.0]", + "options": [], + "type": "string_or_number", + "current_value": "834.0", + "updated_at": 1778220942 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 2 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[1026.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220942 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 2 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[930.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220942 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 2 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778220942 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 2 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778220942 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 2 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778220942 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 2 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778220942 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 2 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778220942 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 2 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778220942 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 3 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778220942 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 3 auto-profile-change": { + "hint": "Description: Enable/disable automatic profile changes\nPossible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778220942 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 3 cyclic-prefix": { + "hint": "Description: Cyclic prefix configuration\nPossible completions:\n[256]", + "options": [], + "type": "string_or_number", + "current_value": "256", + "updated_at": 1778220942 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 3 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778220942 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 3 query-load-percent": { + "hint": "Description: Define amount of traffic sent on each profile for testing MER.\nPossible completions:\n[0.0]", + "options": [], + "type": "string_or_number", + "current_value": "0.0", + "updated_at": 1778220942 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 3 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778220942 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 3 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778220942 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 3 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [1026.0]", + "options": [], + "type": "string_or_number", + "current_value": "1026.0", + "updated_at": 1778220942 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 3 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[1218.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220942 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 3 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[1122.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778220942 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 3 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778220942 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 3 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778220942 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 3 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778220942 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 3 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778220993 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 3 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778220993 + }, + "cable template ds-rf-port A-D24S4O ofdm-channel 3 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778220993 + }, + "cable template ds-rf-port A-D26 admin-state": { + "hint": "Description: Administrative State of the DS RF port [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778220993 + }, + "cable template ds-rf-port A-D26 max-occupied-bw-mhz": { + "hint": "Description: Maximum bandwidth occupied by this port in megahertz\nPossible completions:\n[862.0]", + "options": [], + "type": "string_or_number", + "current_value": "862.0", + "updated_at": 1778220993 + }, + "cable template ds-rf-port A-D26 tilt-adjust": { + "hint": "Description: tilt-adjustment\nPossible completions:\n[10.0]", + "options": [], + "type": "string_or_number", + "current_value": "10.0", + "updated_at": 1778220993 + }, + "cable template ds-rf-port A-D26 base-channel-power-dbmv": { + "hint": "Description: Base channel power level in TenthdB\nPossible completions:\n[50.0]", + "options": [], + "type": "string_or_number", + "current_value": "50.0", + "updated_at": 1778220993 + }, + "cable template ds-rf-port A-D26 down-channel 0 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778220993 + }, + "cable template ds-rf-port A-D26 down-channel 0 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778220993 + }, + "cable template ds-rf-port A-D26 down-channel 0 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[114.0]", + "options": [], + "type": "string_or_number", + "current_value": "114.0", + "updated_at": 1778220993 + }, + "cable template ds-rf-port A-D26 down-channel 0 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-34]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-34", + "updated_at": 1778220993 + }, + "cable template ds-rf-port A-D26 down-channel 1 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778220993 + }, + "cable template ds-rf-port A-D26 down-channel 1 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778220993 + }, + "cable template ds-rf-port A-D26 down-channel 1 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[130.0]", + "options": [], + "type": "string_or_number", + "current_value": "130.0", + "updated_at": 1778220993 + }, + "cable template ds-rf-port A-D26 down-channel 1 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-35]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-35", + "updated_at": 1778220993 + }, + "cable template ds-rf-port A-D26 down-channel 2 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778220993 + }, + "cable template ds-rf-port A-D26 down-channel 2 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778220993 + }, + "cable template ds-rf-port A-D26 down-channel 2 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[570.0]", + "options": [], + "type": "string_or_number", + "current_value": "570.0", + "updated_at": 1778220993 + }, + "cable template ds-rf-port A-D26 down-channel 2 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778220993 + }, + "cable template ds-rf-port A-D26 down-channel 3 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778220993 + }, + "cable template ds-rf-port A-D26 down-channel 3 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778220993 + }, + "cable template ds-rf-port A-D26 down-channel 3 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[578.0]", + "options": [], + "type": "string_or_number", + "current_value": "578.0", + "updated_at": 1778220993 + }, + "cable template ds-rf-port A-D26 down-channel 3 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-37]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-37", + "updated_at": 1778220993 + }, + "cable template ds-rf-port A-D26 down-channel 4 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778220993 + }, + "cable template ds-rf-port A-D26 down-channel 4 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778220993 + }, + "cable template ds-rf-port A-D26 down-channel 4 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[586.0]", + "options": [], + "type": "string_or_number", + "current_value": "586.0", + "updated_at": 1778220993 + }, + "cable template ds-rf-port A-D26 down-channel 4 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-38]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-38", + "updated_at": 1778220993 + }, + "cable template ds-rf-port A-D26 down-channel 5 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778220993 + }, + "cable template ds-rf-port A-D26 down-channel 5 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778220993 + }, + "cable template ds-rf-port A-D26 down-channel 5 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[594.0]", + "options": [], + "type": "string_or_number", + "current_value": "594.0", + "updated_at": 1778220993 + }, + "cable template ds-rf-port A-D26 down-channel 5 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-39]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-39", + "updated_at": 1778221044 + }, + "cable template ds-rf-port A-D26 down-channel 6 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221044 + }, + "cable template ds-rf-port A-D26 down-channel 6 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221044 + }, + "cable template ds-rf-port A-D26 down-channel 6 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[602.0]", + "options": [], + "type": "string_or_number", + "current_value": "602.0", + "updated_at": 1778221044 + }, + "cable template ds-rf-port A-D26 down-channel 6 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-40]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-40", + "updated_at": 1778221044 + }, + "cable template ds-rf-port A-D26 down-channel 7 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221044 + }, + "cable template ds-rf-port A-D26 down-channel 7 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221044 + }, + "cable template ds-rf-port A-D26 down-channel 7 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[618.0]", + "options": [], + "type": "string_or_number", + "current_value": "618.0", + "updated_at": 1778221044 + }, + "cable template ds-rf-port A-D26 down-channel 7 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-41]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-41", + "updated_at": 1778221044 + }, + "cable template ds-rf-port A-D26 down-channel 8 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221044 + }, + "cable template ds-rf-port A-D26 down-channel 8 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221044 + }, + "cable template ds-rf-port A-D26 down-channel 8 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[626.0]", + "options": [], + "type": "string_or_number", + "current_value": "626.0", + "updated_at": 1778221044 + }, + "cable template ds-rf-port A-D26 down-channel 8 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-42]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-42", + "updated_at": 1778221044 + }, + "cable template ds-rf-port A-D26 down-channel 9 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221044 + }, + "cable template ds-rf-port A-D26 down-channel 9 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221044 + }, + "cable template ds-rf-port A-D26 down-channel 9 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[634.0]", + "options": [], + "type": "string_or_number", + "current_value": "634.0", + "updated_at": 1778221044 + }, + "cable template ds-rf-port A-D26 down-channel 9 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-43]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-43", + "updated_at": 1778221044 + }, + "cable template ds-rf-port A-D26 down-channel 10 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221044 + }, + "cable template ds-rf-port A-D26 down-channel 10 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221044 + }, + "cable template ds-rf-port A-D26 down-channel 10 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[642.0]", + "options": [], + "type": "string_or_number", + "current_value": "642.0", + "updated_at": 1778221044 + }, + "cable template ds-rf-port A-D26 down-channel 10 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-44]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-44", + "updated_at": 1778221044 + }, + "cable template ds-rf-port A-D26 down-channel 11 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221044 + }, + "cable template ds-rf-port A-D26 down-channel 11 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221044 + }, + "cable template ds-rf-port A-D26 down-channel 11 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[650.0]", + "options": [], + "type": "string_or_number", + "current_value": "650.0", + "updated_at": 1778221044 + }, + "cable template ds-rf-port A-D26 down-channel 11 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-45]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-45", + "updated_at": 1778221044 + }, + "cable template ds-rf-port A-D26 down-channel 12 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221044 + }, + "cable template ds-rf-port A-D26 down-channel 12 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221044 + }, + "cable template ds-rf-port A-D26 down-channel 12 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[658.0]", + "options": [], + "type": "string_or_number", + "current_value": "658.0", + "updated_at": 1778221044 + }, + "cable template ds-rf-port A-D26 down-channel 12 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-46]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-46", + "updated_at": 1778221044 + }, + "cable template ds-rf-port A-D26 down-channel 13 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221044 + }, + "cable template ds-rf-port A-D26 down-channel 13 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221095 + }, + "cable template ds-rf-port A-D26 down-channel 13 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[666.0]", + "options": [], + "type": "string_or_number", + "current_value": "666.0", + "updated_at": 1778221095 + }, + "cable template ds-rf-port A-D26 down-channel 13 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-47]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-47", + "updated_at": 1778221095 + }, + "cable template ds-rf-port A-D26 down-channel 14 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221095 + }, + "cable template ds-rf-port A-D26 down-channel 14 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221095 + }, + "cable template ds-rf-port A-D26 down-channel 14 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[674.0]", + "options": [], + "type": "string_or_number", + "current_value": "674.0", + "updated_at": 1778221095 + }, + "cable template ds-rf-port A-D26 down-channel 14 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-48]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-48", + "updated_at": 1778221095 + }, + "cable template ds-rf-port A-D26 down-channel 15 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221095 + }, + "cable template ds-rf-port A-D26 down-channel 15 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221095 + }, + "cable template ds-rf-port A-D26 down-channel 15 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[682.0]", + "options": [], + "type": "string_or_number", + "current_value": "682.0", + "updated_at": 1778221095 + }, + "cable template ds-rf-port A-D26 down-channel 15 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-49]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-49", + "updated_at": 1778221095 + }, + "cable template ds-rf-port A-D26 down-channel 16 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221095 + }, + "cable template ds-rf-port A-D26 down-channel 16 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221095 + }, + "cable template ds-rf-port A-D26 down-channel 16 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[690.0]", + "options": [], + "type": "string_or_number", + "current_value": "690.0", + "updated_at": 1778221095 + }, + "cable template ds-rf-port A-D26 down-channel 16 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-50]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-50", + "updated_at": 1778221095 + }, + "cable template ds-rf-port A-D26 down-channel 17 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221095 + }, + "cable template ds-rf-port A-D26 down-channel 17 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221095 + }, + "cable template ds-rf-port A-D26 down-channel 17 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[698.0]", + "options": [], + "type": "string_or_number", + "current_value": "698.0", + "updated_at": 1778221095 + }, + "cable template ds-rf-port A-D26 down-channel 17 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-51]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-51", + "updated_at": 1778221095 + }, + "cable template ds-rf-port A-D26 down-channel 18 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221095 + }, + "cable template ds-rf-port A-D26 down-channel 18 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221095 + }, + "cable template ds-rf-port A-D26 down-channel 18 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[706.0]", + "options": [], + "type": "string_or_number", + "current_value": "706.0", + "updated_at": 1778221095 + }, + "cable template ds-rf-port A-D26 down-channel 18 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-52]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-52", + "updated_at": 1778221095 + }, + "cable template ds-rf-port A-D26 down-channel 19 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221095 + }, + "cable template ds-rf-port A-D26 down-channel 19 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B\nSystem message at 2026-05-08 14:18:05...\nCommit performed by admin via ssh using cli.", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "System", + "message", + "at", + "2026-05-08", + "14:18:05...", + "Commit", + "performed", + "by", + "admin", + "via", + "ssh", + "using", + "cli." + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221095 + }, + "cable template ds-rf-port A-D26 down-channel 19 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[714.0]", + "options": [], + "type": "string_or_number", + "current_value": "714.0", + "updated_at": 1778221095 + }, + "cable template ds-rf-port A-D26 down-channel 19 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-53]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-53", + "updated_at": 1778221095 + }, + "cable template ds-rf-port A-D26 down-channel 20 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221095 + }, + "cable template ds-rf-port A-D26 down-channel 20 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221095 + }, + "cable template ds-rf-port A-D26 down-channel 20 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[722.0]", + "options": [], + "type": "string_or_number", + "current_value": "722.0", + "updated_at": 1778221095 + }, + "cable template ds-rf-port A-D26 down-channel 20 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-54]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-54", + "updated_at": 1778221146 + }, + "cable template ds-rf-port A-D26 down-channel 21 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221146 + }, + "cable template ds-rf-port A-D26 down-channel 21 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221146 + }, + "cable template ds-rf-port A-D26 down-channel 21 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[730.0]", + "options": [], + "type": "string_or_number", + "current_value": "730.0", + "updated_at": 1778221146 + }, + "cable template ds-rf-port A-D26 down-channel 21 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-55]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-55", + "updated_at": 1778221146 + }, + "cable template ds-rf-port A-D26 down-channel 22 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221146 + }, + "cable template ds-rf-port A-D26 down-channel 22 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221146 + }, + "cable template ds-rf-port A-D26 down-channel 22 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[738.0]", + "options": [], + "type": "string_or_number", + "current_value": "738.0", + "updated_at": 1778221146 + }, + "cable template ds-rf-port A-D26 down-channel 22 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-56]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-56", + "updated_at": 1778221146 + }, + "cable template ds-rf-port A-D26 down-channel 23 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221146 + }, + "cable template ds-rf-port A-D26 down-channel 23 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221146 + }, + "cable template ds-rf-port A-D26 down-channel 23 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[746.0]", + "options": [], + "type": "string_or_number", + "current_value": "746.0", + "updated_at": 1778221146 + }, + "cable template ds-rf-port A-D26 down-channel 23 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-57]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-57", + "updated_at": 1778221146 + }, + "cable template ds-rf-port A-D26 ofdm-channel 0 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221146 + }, + "cable template ds-rf-port A-D26 ofdm-channel 0 auto-profile-change": { + "hint": "Description: Enable/disable automatic profile changes\nPossible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778221146 + }, + "cable template ds-rf-port A-D26 ofdm-channel 0 cyclic-prefix": { + "hint": "Description: Cyclic prefix configuration\nPossible completions:\n[512]", + "options": [], + "type": "string_or_number", + "current_value": "512", + "updated_at": 1778221146 + }, + "cable template ds-rf-port A-D26 ofdm-channel 0 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221146 + }, + "cable template ds-rf-port A-D26 ofdm-channel 0 query-load-percent": { + "hint": "Description: Define amount of traffic sent on each profile for testing MER.\nPossible completions:\n[0.0]", + "options": [], + "type": "string_or_number", + "current_value": "0.0", + "updated_at": 1778221146 + }, + "cable template ds-rf-port A-D26 ofdm-channel 0 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778221146 + }, + "cable template ds-rf-port A-D26 ofdm-channel 0 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221146 + }, + "cable template ds-rf-port A-D26 ofdm-channel 0 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [134.0]", + "options": [], + "type": "string_or_number", + "current_value": "134.0", + "updated_at": 1778221146 + }, + "cable template ds-rf-port A-D26 ofdm-channel 0 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[326.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778221146 + }, + "cable template ds-rf-port A-D26 ofdm-channel 0 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[264.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778221146 + }, + "cable template ds-rf-port A-D26 ofdm-channel 0 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778221146 + }, + "cable template ds-rf-port A-D26 ofdm-channel 0 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778221146 + }, + "cable template ds-rf-port A-D26 ofdm-channel 0 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778221146 + }, + "cable template ds-rf-port A-D26 ofdm-channel 0 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778221146 + }, + "cable template ds-rf-port A-D26 ofdm-channel 0 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778221146 + }, + "cable template ds-rf-port A-D26 ofdm-channel 0 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778221146 + }, + "cable template ds-rf-port A-D26 ofdm-channel 1 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221146 + }, + "cable template ds-rf-port A-D26 ofdm-channel 1 auto-profile-change": { + "hint": "Description: Enable/disable automatic profile changes\nPossible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778221197 + }, + "cable template ds-rf-port A-D26 ofdm-channel 1 cyclic-prefix": { + "hint": "Description: Cyclic prefix configuration\nPossible completions:\n[512]", + "options": [], + "type": "string_or_number", + "current_value": "512", + "updated_at": 1778221197 + }, + "cable template ds-rf-port A-D26 ofdm-channel 1 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221197 + }, + "cable template ds-rf-port A-D26 ofdm-channel 1 query-load-percent": { + "hint": "Description: Define amount of traffic sent on each profile for testing MER.\nPossible completions:\n[0.0]", + "options": [], + "type": "string_or_number", + "current_value": "0.0", + "updated_at": 1778221197 + }, + "cable template ds-rf-port A-D26 ofdm-channel 1 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778221197 + }, + "cable template ds-rf-port A-D26 ofdm-channel 1 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221197 + }, + "cable template ds-rf-port A-D26 ofdm-channel 1 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [750.0]", + "options": [], + "type": "string_or_number", + "current_value": "750.0", + "updated_at": 1778221197 + }, + "cable template ds-rf-port A-D26 ofdm-channel 1 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[862.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778221197 + }, + "cable template ds-rf-port A-D26 ofdm-channel 1 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[822.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778221197 + }, + "cable template ds-rf-port A-D26 ofdm-channel 1 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778221197 + }, + "cable template ds-rf-port A-D26 ofdm-channel 1 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778221197 + }, + "cable template ds-rf-port A-D26 ofdm-channel 1 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778221197 + }, + "cable template ds-rf-port A-D26 ofdm-channel 1 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778221197 + }, + "cable template ds-rf-port A-D26 ofdm-channel 1 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778221197 + }, + "cable template ds-rf-port A-D26 ofdm-channel 1 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778221197 + }, + "cable template ds-rf-port A-D2O admin-state": { + "hint": "Description: Administrative State of the DS RF port [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221197 + }, + "cable template ds-rf-port A-D2O max-occupied-bw-mhz": { + "hint": "Description: Maximum bandwidth occupied by this port in megahertz\nPossible completions:\n[384.0]", + "options": [], + "type": "string_or_number", + "current_value": "384.0", + "updated_at": 1778221197 + }, + "cable template ds-rf-port A-D2O tilt-adjust": { + "hint": "Description: tilt-adjustment\nPossible completions:\n[10.0]", + "options": [], + "type": "string_or_number", + "current_value": "10.0", + "updated_at": 1778221197 + }, + "cable template ds-rf-port A-D2O base-channel-power-dbmv": { + "hint": "Description: Base channel power level in TenthdB\nPossible completions:\n[50.0]", + "options": [], + "type": "string_or_number", + "current_value": "50.0", + "updated_at": 1778221197 + }, + "cable template ds-rf-port A-D2O ofdm-channel 0 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221197 + }, + "cable template ds-rf-port A-D2O ofdm-channel 0 auto-profile-change": { + "hint": "Description: Enable/disable automatic profile changes\nPossible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778221197 + }, + "cable template ds-rf-port A-D2O ofdm-channel 0 cyclic-prefix": { + "hint": "Description: Cyclic prefix configuration\nPossible completions:\n[512]", + "options": [], + "type": "string_or_number", + "current_value": "512", + "updated_at": 1778221197 + }, + "cable template ds-rf-port A-D2O ofdm-channel 0 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221197 + }, + "cable template ds-rf-port A-D2O ofdm-channel 0 query-load-percent": { + "hint": "Description: Define amount of traffic sent on each profile for testing MER.\nPossible completions:\n[0.0]", + "options": [], + "type": "string_or_number", + "current_value": "0.0", + "updated_at": 1778221197 + }, + "cable template ds-rf-port A-D2O ofdm-channel 0 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778221197 + }, + "cable template ds-rf-port A-D2O ofdm-channel 0 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221197 + }, + "cable template ds-rf-port A-D2O ofdm-channel 0 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [510.0]", + "options": [], + "type": "string_or_number", + "current_value": "510.0", + "updated_at": 1778221197 + }, + "cable template ds-rf-port A-D2O ofdm-channel 0 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[702.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778221197 + }, + "cable template ds-rf-port A-D2O ofdm-channel 0 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[606.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778221197 + }, + "cable template ds-rf-port A-D2O ofdm-channel 0 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778221197 + }, + "cable template ds-rf-port A-D2O ofdm-channel 0 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778221248 + }, + "cable template ds-rf-port A-D2O ofdm-channel 0 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778221248 + }, + "cable template ds-rf-port A-D2O ofdm-channel 0 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778221248 + }, + "cable template ds-rf-port A-D2O ofdm-channel 0 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778221248 + }, + "cable template ds-rf-port A-D2O ofdm-channel 0 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778221248 + }, + "cable template ds-rf-port A-D2O ofdm-channel 1 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221248 + }, + "cable template ds-rf-port A-D2O ofdm-channel 1 auto-profile-change": { + "hint": "Description: Enable/disable automatic profile changes\nPossible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778221248 + }, + "cable template ds-rf-port A-D2O ofdm-channel 1 cyclic-prefix": { + "hint": "Description: Cyclic prefix configuration\nPossible completions:\n[512]", + "options": [], + "type": "string_or_number", + "current_value": "512", + "updated_at": 1778221248 + }, + "cable template ds-rf-port A-D2O ofdm-channel 1 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221248 + }, + "cable template ds-rf-port A-D2O ofdm-channel 1 query-load-percent": { + "hint": "Description: Define amount of traffic sent on each profile for testing MER.\nPossible completions:\n[0.0]", + "options": [], + "type": "string_or_number", + "current_value": "0.0", + "updated_at": 1778221248 + }, + "cable template ds-rf-port A-D2O ofdm-channel 1 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778221248 + }, + "cable template ds-rf-port A-D2O ofdm-channel 1 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221248 + }, + "cable template ds-rf-port A-D2O ofdm-channel 1 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [710.0]", + "options": [], + "type": "string_or_number", + "current_value": "710.0", + "updated_at": 1778221248 + }, + "cable template ds-rf-port A-D2O ofdm-channel 1 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[902.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778221248 + }, + "cable template ds-rf-port A-D2O ofdm-channel 1 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[806.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778221248 + }, + "cable template ds-rf-port A-D2O ofdm-channel 1 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778221248 + }, + "cable template ds-rf-port A-D2O ofdm-channel 1 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778221248 + }, + "cable template ds-rf-port A-D2O ofdm-channel 1 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778221248 + }, + "cable template ds-rf-port A-D2O ofdm-channel 1 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778221248 + }, + "cable template ds-rf-port A-D2O ofdm-channel 1 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778221248 + }, + "cable template ds-rf-port A-D2O ofdm-channel 1 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778221248 + }, + "cable template ds-rf-port A-D32S2O admin-state": { + "hint": "Description: Administrative State of the DS RF port [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221248 + }, + "cable template ds-rf-port A-D32S2O max-occupied-bw-mhz": { + "hint": "Description: Maximum bandwidth occupied by this port in megahertz\nPossible completions:\n[640.0]", + "options": [], + "type": "string_or_number", + "current_value": "640.0", + "updated_at": 1778221248 + }, + "cable template ds-rf-port A-D32S2O tilt-adjust": { + "hint": "Description: tilt-adjustment\nPossible completions:\n[10.0]", + "options": [], + "type": "string_or_number", + "current_value": "10.0", + "updated_at": 1778221248 + }, + "cable template ds-rf-port A-D32S2O base-channel-power-dbmv": { + "hint": "Description: Base channel power level in TenthdB\nPossible completions:\n[50.0]", + "options": [], + "type": "string_or_number", + "current_value": "50.0", + "updated_at": 1778221248 + }, + "cable template ds-rf-port A-D32S2O down-channel 0 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221248 + }, + "cable template ds-rf-port A-D32S2O down-channel 0 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221248 + }, + "cable template ds-rf-port A-D32S2O down-channel 0 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[286.0]", + "options": [], + "type": "string_or_number", + "current_value": "286.0", + "updated_at": 1778221248 + }, + "cable template ds-rf-port A-D32S2O down-channel 0 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-34]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-34", + "updated_at": 1778221248 + }, + "cable template ds-rf-port A-D32S2O down-channel 1 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221248 + }, + "cable template ds-rf-port A-D32S2O down-channel 1 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221298 + }, + "cable template ds-rf-port A-D32S2O down-channel 1 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[294.0]", + "options": [], + "type": "string_or_number", + "current_value": "294.0", + "updated_at": 1778221298 + }, + "cable template ds-rf-port A-D32S2O down-channel 1 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-35]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-35", + "updated_at": 1778221298 + }, + "cable template ds-rf-port A-D32S2O down-channel 2 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221298 + }, + "cable template ds-rf-port A-D32S2O down-channel 2 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221298 + }, + "cable template ds-rf-port A-D32S2O down-channel 2 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[302.0]", + "options": [], + "type": "string_or_number", + "current_value": "302.0", + "updated_at": 1778221298 + }, + "cable template ds-rf-port A-D32S2O down-channel 2 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778221298 + }, + "cable template ds-rf-port A-D32S2O down-channel 3 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221298 + }, + "cable template ds-rf-port A-D32S2O down-channel 3 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221298 + }, + "cable template ds-rf-port A-D32S2O down-channel 3 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[310.0]", + "options": [], + "type": "string_or_number", + "current_value": "310.0", + "updated_at": 1778221298 + }, + "cable template ds-rf-port A-D32S2O down-channel 3 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-37]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-37", + "updated_at": 1778221298 + }, + "cable template ds-rf-port A-D32S2O down-channel 4 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221298 + }, + "cable template ds-rf-port A-D32S2O down-channel 4 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221298 + }, + "cable template ds-rf-port A-D32S2O down-channel 4 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[318.0]", + "options": [], + "type": "string_or_number", + "current_value": "318.0", + "updated_at": 1778221298 + }, + "cable template ds-rf-port A-D32S2O down-channel 4 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-38]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-38", + "updated_at": 1778221298 + }, + "cable template ds-rf-port A-D32S2O down-channel 5 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221298 + }, + "cable template ds-rf-port A-D32S2O down-channel 5 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221298 + }, + "cable template ds-rf-port A-D32S2O down-channel 5 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[326.0]", + "options": [], + "type": "string_or_number", + "current_value": "326.0", + "updated_at": 1778221298 + }, + "cable template ds-rf-port A-D32S2O down-channel 5 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-39]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-39", + "updated_at": 1778221298 + }, + "cable template ds-rf-port A-D32S2O down-channel 6 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221298 + }, + "cable template ds-rf-port A-D32S2O down-channel 6 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221298 + }, + "cable template ds-rf-port A-D32S2O down-channel 6 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[334.0]", + "options": [], + "type": "string_or_number", + "current_value": "334.0", + "updated_at": 1778221298 + }, + "cable template ds-rf-port A-D32S2O down-channel 6 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-40]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-40", + "updated_at": 1778221298 + }, + "cable template ds-rf-port A-D32S2O down-channel 7 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221298 + }, + "cable template ds-rf-port A-D32S2O down-channel 7 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221298 + }, + "cable template ds-rf-port A-D32S2O down-channel 7 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[342.0]", + "options": [], + "type": "string_or_number", + "current_value": "342.0", + "updated_at": 1778221298 + }, + "cable template ds-rf-port A-D32S2O down-channel 7 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-41]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-41", + "updated_at": 1778221298 + }, + "cable template ds-rf-port A-D32S2O down-channel 8 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221298 + }, + "cable template ds-rf-port A-D32S2O down-channel 8 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221298 + }, + "cable template ds-rf-port A-D32S2O down-channel 8 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[350.0]", + "options": [], + "type": "string_or_number", + "current_value": "350.0", + "updated_at": 1778221298 + }, + "cable template ds-rf-port A-D32S2O down-channel 8 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-42]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-42", + "updated_at": 1778221349 + }, + "cable template ds-rf-port A-D32S2O down-channel 9 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221349 + }, + "cable template ds-rf-port A-D32S2O down-channel 9 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221349 + }, + "cable template ds-rf-port A-D32S2O down-channel 9 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[358.0]", + "options": [], + "type": "string_or_number", + "current_value": "358.0", + "updated_at": 1778221349 + }, + "cable template ds-rf-port A-D32S2O down-channel 9 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-43]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-43", + "updated_at": 1778221349 + }, + "cable template ds-rf-port A-D32S2O down-channel 10 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221349 + }, + "cable template ds-rf-port A-D32S2O down-channel 10 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221349 + }, + "cable template ds-rf-port A-D32S2O down-channel 10 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[366.0]", + "options": [], + "type": "string_or_number", + "current_value": "366.0", + "updated_at": 1778221349 + }, + "cable template ds-rf-port A-D32S2O down-channel 10 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-44]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-44", + "updated_at": 1778221349 + }, + "cable template ds-rf-port A-D32S2O down-channel 11 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221349 + }, + "cable template ds-rf-port A-D32S2O down-channel 11 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221349 + }, + "cable template ds-rf-port A-D32S2O down-channel 11 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[374.0]", + "options": [], + "type": "string_or_number", + "current_value": "374.0", + "updated_at": 1778221349 + }, + "cable template ds-rf-port A-D32S2O down-channel 11 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-45]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-45", + "updated_at": 1778221349 + }, + "cable template ds-rf-port A-D32S2O down-channel 12 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221349 + }, + "cable template ds-rf-port A-D32S2O down-channel 12 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221349 + }, + "cable template ds-rf-port A-D32S2O down-channel 12 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[382.0]", + "options": [], + "type": "string_or_number", + "current_value": "382.0", + "updated_at": 1778221349 + }, + "cable template ds-rf-port A-D32S2O down-channel 12 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-46]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-46", + "updated_at": 1778221349 + }, + "cable template ds-rf-port A-D32S2O down-channel 13 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221349 + }, + "cable template ds-rf-port A-D32S2O down-channel 13 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221349 + }, + "cable template ds-rf-port A-D32S2O down-channel 13 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[390.0]", + "options": [], + "type": "string_or_number", + "current_value": "390.0", + "updated_at": 1778221349 + }, + "cable template ds-rf-port A-D32S2O down-channel 13 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-47]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-47", + "updated_at": 1778221349 + }, + "cable template ds-rf-port A-D32S2O down-channel 14 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221349 + }, + "cable template ds-rf-port A-D32S2O down-channel 14 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221349 + }, + "cable template ds-rf-port A-D32S2O down-channel 14 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[398.0]", + "options": [], + "type": "string_or_number", + "current_value": "398.0", + "updated_at": 1778221349 + }, + "cable template ds-rf-port A-D32S2O down-channel 14 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-48]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-48", + "updated_at": 1778221349 + }, + "cable template ds-rf-port A-D32S2O down-channel 15 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221349 + }, + "cable template ds-rf-port A-D32S2O down-channel 15 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221349 + }, + "cable template ds-rf-port A-D32S2O down-channel 15 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[406.0]", + "options": [], + "type": "string_or_number", + "current_value": "406.0", + "updated_at": 1778221349 + }, + "cable template ds-rf-port A-D32S2O down-channel 15 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-49]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-49", + "updated_at": 1778221349 + }, + "cable template ds-rf-port A-D32S2O down-channel 16 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221349 + }, + "cable template ds-rf-port A-D32S2O down-channel 16 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221400 + }, + "cable template ds-rf-port A-D32S2O down-channel 16 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[414.0]", + "options": [], + "type": "string_or_number", + "current_value": "414.0", + "updated_at": 1778221400 + }, + "cable template ds-rf-port A-D32S2O down-channel 16 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-50]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-50", + "updated_at": 1778221400 + }, + "cable template ds-rf-port A-D32S2O down-channel 17 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221400 + }, + "cable template ds-rf-port A-D32S2O down-channel 17 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221400 + }, + "cable template ds-rf-port A-D32S2O down-channel 17 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[422.0]", + "options": [], + "type": "string_or_number", + "current_value": "422.0", + "updated_at": 1778221400 + }, + "cable template ds-rf-port A-D32S2O down-channel 17 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-51]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-51", + "updated_at": 1778221400 + }, + "cable template ds-rf-port A-D32S2O down-channel 18 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221400 + }, + "cable template ds-rf-port A-D32S2O down-channel 18 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221400 + }, + "cable template ds-rf-port A-D32S2O down-channel 18 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[430.0]", + "options": [], + "type": "string_or_number", + "current_value": "430.0", + "updated_at": 1778221400 + }, + "cable template ds-rf-port A-D32S2O down-channel 18 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-52]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-52", + "updated_at": 1778221400 + }, + "cable template ds-rf-port A-D32S2O down-channel 19 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221400 + }, + "cable template ds-rf-port A-D32S2O down-channel 19 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221400 + }, + "cable template ds-rf-port A-D32S2O down-channel 19 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[438.0]", + "options": [], + "type": "string_or_number", + "current_value": "438.0", + "updated_at": 1778221400 + }, + "cable template ds-rf-port A-D32S2O down-channel 19 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-53]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-53", + "updated_at": 1778221400 + }, + "cable template ds-rf-port A-D32S2O down-channel 20 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221400 + }, + "cable template ds-rf-port A-D32S2O down-channel 20 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221400 + }, + "cable template ds-rf-port A-D32S2O down-channel 20 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[446.0]", + "options": [], + "type": "string_or_number", + "current_value": "446.0", + "updated_at": 1778221400 + }, + "cable template ds-rf-port A-D32S2O down-channel 20 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-54]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-54", + "updated_at": 1778221400 + }, + "cable template ds-rf-port A-D32S2O down-channel 21 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221400 + }, + "cable template ds-rf-port A-D32S2O down-channel 21 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221400 + }, + "cable template ds-rf-port A-D32S2O down-channel 21 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[454.0]", + "options": [], + "type": "string_or_number", + "current_value": "454.0", + "updated_at": 1778221400 + }, + "cable template ds-rf-port A-D32S2O down-channel 21 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-55]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-55", + "updated_at": 1778221400 + }, + "cable template ds-rf-port A-D32S2O down-channel 22 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221400 + }, + "cable template ds-rf-port A-D32S2O down-channel 22 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221400 + }, + "cable template ds-rf-port A-D32S2O down-channel 22 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[462.0]", + "options": [], + "type": "string_or_number", + "current_value": "462.0", + "updated_at": 1778221400 + }, + "cable template ds-rf-port A-D32S2O down-channel 22 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-56]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-56", + "updated_at": 1778221400 + }, + "cable template ds-rf-port A-D32S2O down-channel 23 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221400 + }, + "cable template ds-rf-port A-D32S2O down-channel 23 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221400 + }, + "cable template ds-rf-port A-D32S2O down-channel 23 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[470.0]", + "options": [], + "type": "string_or_number", + "current_value": "470.0", + "updated_at": 1778221400 + }, + "cable template ds-rf-port A-D32S2O down-channel 23 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-57]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-57", + "updated_at": 1778221451 + }, + "cable template ds-rf-port A-D32S2O down-channel 24 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221451 + }, + "cable template ds-rf-port A-D32S2O down-channel 24 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221451 + }, + "cable template ds-rf-port A-D32S2O down-channel 24 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[478.0]", + "options": [], + "type": "string_or_number", + "current_value": "478.0", + "updated_at": 1778221451 + }, + "cable template ds-rf-port A-D32S2O down-channel 24 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-58]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-58", + "updated_at": 1778221451 + }, + "cable template ds-rf-port A-D32S2O down-channel 25 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221451 + }, + "cable template ds-rf-port A-D32S2O down-channel 25 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221451 + }, + "cable template ds-rf-port A-D32S2O down-channel 25 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[486.0]", + "options": [], + "type": "string_or_number", + "current_value": "486.0", + "updated_at": 1778221451 + }, + "cable template ds-rf-port A-D32S2O down-channel 25 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-59]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-59", + "updated_at": 1778221451 + }, + "cable template ds-rf-port A-D32S2O down-channel 26 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221451 + }, + "cable template ds-rf-port A-D32S2O down-channel 26 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221451 + }, + "cable template ds-rf-port A-D32S2O down-channel 26 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[494.0]", + "options": [], + "type": "string_or_number", + "current_value": "494.0", + "updated_at": 1778221451 + }, + "cable template ds-rf-port A-D32S2O down-channel 26 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-60]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-60", + "updated_at": 1778221451 + }, + "cable template ds-rf-port A-D32S2O down-channel 27 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221451 + }, + "cable template ds-rf-port A-D32S2O down-channel 27 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221451 + }, + "cable template ds-rf-port A-D32S2O down-channel 27 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[502.0]", + "options": [], + "type": "string_or_number", + "current_value": "502.0", + "updated_at": 1778221451 + }, + "cable template ds-rf-port A-D32S2O down-channel 27 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-61]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-61", + "updated_at": 1778221451 + }, + "cable template ds-rf-port A-D32S2O down-channel 28 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221451 + }, + "cable template ds-rf-port A-D32S2O down-channel 28 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221451 + }, + "cable template ds-rf-port A-D32S2O down-channel 28 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[510.0]", + "options": [], + "type": "string_or_number", + "current_value": "510.0", + "updated_at": 1778221451 + }, + "cable template ds-rf-port A-D32S2O down-channel 28 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-62]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-62", + "updated_at": 1778221451 + }, + "cable template ds-rf-port A-D32S2O down-channel 29 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221451 + }, + "cable template ds-rf-port A-D32S2O down-channel 29 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221451 + }, + "cable template ds-rf-port A-D32S2O down-channel 29 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[518.0]", + "options": [], + "type": "string_or_number", + "current_value": "518.0", + "updated_at": 1778221451 + }, + "cable template ds-rf-port A-D32S2O down-channel 29 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-63]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-63", + "updated_at": 1778221451 + }, + "cable template ds-rf-port A-D32S2O down-channel 30 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221451 + }, + "cable template ds-rf-port A-D32S2O down-channel 30 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221451 + }, + "cable template ds-rf-port A-D32S2O down-channel 30 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[526.0]", + "options": [], + "type": "string_or_number", + "current_value": "526.0", + "updated_at": 1778221451 + }, + "cable template ds-rf-port A-D32S2O down-channel 30 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-64]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-64", + "updated_at": 1778221451 + }, + "cable template ds-rf-port A-D32S2O down-channel 31 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221451 + }, + "cable template ds-rf-port A-D32S2O down-channel 31 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221501 + }, + "cable template ds-rf-port A-D32S2O down-channel 31 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[534.0]", + "options": [], + "type": "string_or_number", + "current_value": "534.0", + "updated_at": 1778221501 + }, + "cable template ds-rf-port A-D32S2O down-channel 31 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-65]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-65", + "updated_at": 1778221501 + }, + "cable template ds-rf-port A-D32S2O ofdm-channel 0 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221501 + }, + "cable template ds-rf-port A-D32S2O ofdm-channel 0 auto-profile-change": { + "hint": "Description: Enable/disable automatic profile changes\nPossible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778221501 + }, + "cable template ds-rf-port A-D32S2O ofdm-channel 0 cyclic-prefix": { + "hint": "Description: Cyclic prefix configuration\nPossible completions:\n[512]", + "options": [], + "type": "string_or_number", + "current_value": "512", + "updated_at": 1778221501 + }, + "cable template ds-rf-port A-D32S2O ofdm-channel 0 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221501 + }, + "cable template ds-rf-port A-D32S2O ofdm-channel 0 query-load-percent": { + "hint": "Description: Define amount of traffic sent on each profile for testing MER.\nPossible completions:\n[0.0]", + "options": [], + "type": "string_or_number", + "current_value": "0.0", + "updated_at": 1778221501 + }, + "cable template ds-rf-port A-D32S2O ofdm-channel 0 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778221501 + }, + "cable template ds-rf-port A-D32S2O ofdm-channel 0 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221501 + }, + "cable template ds-rf-port A-D32S2O ofdm-channel 0 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [550.0]", + "options": [], + "type": "string_or_number", + "current_value": "550.0", + "updated_at": 1778221501 + }, + "cable template ds-rf-port A-D32S2O ofdm-channel 0 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[742.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778221501 + }, + "cable template ds-rf-port A-D32S2O ofdm-channel 0 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[646.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778221501 + }, + "cable template ds-rf-port A-D32S2O ofdm-channel 0 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778221501 + }, + "cable template ds-rf-port A-D32S2O ofdm-channel 0 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778221501 + }, + "cable template ds-rf-port A-D32S2O ofdm-channel 0 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778221501 + }, + "cable template ds-rf-port A-D32S2O ofdm-channel 0 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778221501 + }, + "cable template ds-rf-port A-D32S2O ofdm-channel 0 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778221501 + }, + "cable template ds-rf-port A-D32S2O ofdm-channel 0 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778221501 + }, + "cable template ds-rf-port A-D32S2O ofdm-channel 1 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221501 + }, + "cable template ds-rf-port A-D32S2O ofdm-channel 1 auto-profile-change": { + "hint": "Description: Enable/disable automatic profile changes\nPossible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778221501 + }, + "cable template ds-rf-port A-D32S2O ofdm-channel 1 cyclic-prefix": { + "hint": "Description: Cyclic prefix configuration\nPossible completions:\n[512]", + "options": [], + "type": "string_or_number", + "current_value": "512", + "updated_at": 1778221501 + }, + "cable template ds-rf-port A-D32S2O ofdm-channel 1 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221501 + }, + "cable template ds-rf-port A-D32S2O ofdm-channel 1 query-load-percent": { + "hint": "Description: Define amount of traffic sent on each profile for testing MER.\nPossible completions:\n[0.0]", + "options": [], + "type": "string_or_number", + "current_value": "0.0", + "updated_at": 1778221501 + }, + "cable template ds-rf-port A-D32S2O ofdm-channel 1 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778221501 + }, + "cable template ds-rf-port A-D32S2O ofdm-channel 1 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221501 + }, + "cable template ds-rf-port A-D32S2O ofdm-channel 1 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [750.0]", + "options": [], + "type": "string_or_number", + "current_value": "750.0", + "updated_at": 1778221501 + }, + "cable template ds-rf-port A-D32S2O ofdm-channel 1 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[942.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778221501 + }, + "cable template ds-rf-port A-D32S2O ofdm-channel 1 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[846.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778221501 + }, + "cable template ds-rf-port A-D32S2O ofdm-channel 1 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778221501 + }, + "cable template ds-rf-port A-D32S2O ofdm-channel 1 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778221552 + }, + "cable template ds-rf-port A-D32S2O ofdm-channel 1 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778221552 + }, + "cable template ds-rf-port A-D32S2O ofdm-channel 1 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778221552 + }, + "cable template ds-rf-port A-D32S2O ofdm-channel 1 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778221552 + }, + "cable template ds-rf-port A-D32S2O ofdm-channel 1 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778221552 + }, + "cable template ds-rf-port A-D4O admin-state": { + "hint": "Description: Administrative State of the DS RF port [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221552 + }, + "cable template ds-rf-port A-D4O max-occupied-bw-mhz": { + "hint": "Description: Maximum bandwidth occupied by this port in megahertz\nPossible completions:\n[768.0]", + "options": [], + "type": "string_or_number", + "current_value": "768.0", + "updated_at": 1778221552 + }, + "cable template ds-rf-port A-D4O tilt-adjust": { + "hint": "Description: tilt-adjustment\nPossible completions:\n[10.0]", + "options": [], + "type": "string_or_number", + "current_value": "10.0", + "updated_at": 1778221552 + }, + "cable template ds-rf-port A-D4O base-channel-power-dbmv": { + "hint": "Description: Base channel power level in TenthdB\nPossible completions:\n[50.0]", + "options": [], + "type": "string_or_number", + "current_value": "50.0", + "updated_at": 1778221552 + }, + "cable template ds-rf-port A-D4O ofdm-channel 0 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221552 + }, + "cable template ds-rf-port A-D4O ofdm-channel 0 auto-profile-change": { + "hint": "Description: Enable/disable automatic profile changes\nPossible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778221552 + }, + "cable template ds-rf-port A-D4O ofdm-channel 0 cyclic-prefix": { + "hint": "Description: Cyclic prefix configuration\nPossible completions:\n[512]", + "options": [], + "type": "string_or_number", + "current_value": "512", + "updated_at": 1778221552 + }, + "cable template ds-rf-port A-D4O ofdm-channel 0 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221552 + }, + "cable template ds-rf-port A-D4O ofdm-channel 0 query-load-percent": { + "hint": "Description: Define amount of traffic sent on each profile for testing MER.\nPossible completions:\n[0.0]", + "options": [], + "type": "string_or_number", + "current_value": "0.0", + "updated_at": 1778221552 + }, + "cable template ds-rf-port A-D4O ofdm-channel 0 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778221552 + }, + "cable template ds-rf-port A-D4O ofdm-channel 0 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221552 + }, + "cable template ds-rf-port A-D4O ofdm-channel 0 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [310.0]", + "options": [], + "type": "string_or_number", + "current_value": "310.0", + "updated_at": 1778221552 + }, + "cable template ds-rf-port A-D4O ofdm-channel 0 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[502.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778221552 + }, + "cable template ds-rf-port A-D4O ofdm-channel 0 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[406.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778221552 + }, + "cable template ds-rf-port A-D4O ofdm-channel 0 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778221552 + }, + "cable template ds-rf-port A-D4O ofdm-channel 0 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778221552 + }, + "cable template ds-rf-port A-D4O ofdm-channel 0 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778221552 + }, + "cable template ds-rf-port A-D4O ofdm-channel 0 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778221552 + }, + "cable template ds-rf-port A-D4O ofdm-channel 0 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778221552 + }, + "cable template ds-rf-port A-D4O ofdm-channel 0 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778221552 + }, + "cable template ds-rf-port A-D4O ofdm-channel 1 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221552 + }, + "cable template ds-rf-port A-D4O ofdm-channel 1 auto-profile-change": { + "hint": "Description: Enable/disable automatic profile changes\nPossible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778221552 + }, + "cable template ds-rf-port A-D4O ofdm-channel 1 cyclic-prefix": { + "hint": "Description: Cyclic prefix configuration\nPossible completions:\n[512]", + "options": [], + "type": "string_or_number", + "current_value": "512", + "updated_at": 1778221552 + }, + "cable template ds-rf-port A-D4O ofdm-channel 1 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221552 + }, + "cable template ds-rf-port A-D4O ofdm-channel 1 query-load-percent": { + "hint": "Description: Define amount of traffic sent on each profile for testing MER.\nPossible completions:\n[0.0]", + "options": [], + "type": "string_or_number", + "current_value": "0.0", + "updated_at": 1778221552 + }, + "cable template ds-rf-port A-D4O ofdm-channel 1 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778221603 + }, + "cable template ds-rf-port A-D4O ofdm-channel 1 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221603 + }, + "cable template ds-rf-port A-D4O ofdm-channel 1 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [510.0]", + "options": [], + "type": "string_or_number", + "current_value": "510.0", + "updated_at": 1778221603 + }, + "cable template ds-rf-port A-D4O ofdm-channel 1 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[702.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778221603 + }, + "cable template ds-rf-port A-D4O ofdm-channel 1 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[606.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778221603 + }, + "cable template ds-rf-port A-D4O ofdm-channel 1 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778221603 + }, + "cable template ds-rf-port A-D4O ofdm-channel 1 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778221603 + }, + "cable template ds-rf-port A-D4O ofdm-channel 1 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778221603 + }, + "cable template ds-rf-port A-D4O ofdm-channel 1 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778221603 + }, + "cable template ds-rf-port A-D4O ofdm-channel 1 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778221603 + }, + "cable template ds-rf-port A-D4O ofdm-channel 1 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778221603 + }, + "cable template ds-rf-port A-D4O ofdm-channel 2 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221603 + }, + "cable template ds-rf-port A-D4O ofdm-channel 2 auto-profile-change": { + "hint": "Description: Enable/disable automatic profile changes\nPossible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778221603 + }, + "cable template ds-rf-port A-D4O ofdm-channel 2 cyclic-prefix": { + "hint": "Description: Cyclic prefix configuration\nPossible completions:\n[512]", + "options": [], + "type": "string_or_number", + "current_value": "512", + "updated_at": 1778221603 + }, + "cable template ds-rf-port A-D4O ofdm-channel 2 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221603 + }, + "cable template ds-rf-port A-D4O ofdm-channel 2 query-load-percent": { + "hint": "Description: Define amount of traffic sent on each profile for testing MER.\nPossible completions:\n[0.0]", + "options": [], + "type": "string_or_number", + "current_value": "0.0", + "updated_at": 1778221603 + }, + "cable template ds-rf-port A-D4O ofdm-channel 2 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778221603 + }, + "cable template ds-rf-port A-D4O ofdm-channel 2 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221603 + }, + "cable template ds-rf-port A-D4O ofdm-channel 2 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [710.0]", + "options": [], + "type": "string_or_number", + "current_value": "710.0", + "updated_at": 1778221603 + }, + "cable template ds-rf-port A-D4O ofdm-channel 2 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[902.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778221603 + }, + "cable template ds-rf-port A-D4O ofdm-channel 2 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[806.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778221603 + }, + "cable template ds-rf-port A-D4O ofdm-channel 2 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778221603 + }, + "cable template ds-rf-port A-D4O ofdm-channel 2 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778221603 + }, + "cable template ds-rf-port A-D4O ofdm-channel 2 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778221603 + }, + "cable template ds-rf-port A-D4O ofdm-channel 2 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778221603 + }, + "cable template ds-rf-port A-D4O ofdm-channel 2 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778221603 + }, + "cable template ds-rf-port A-D4O ofdm-channel 2 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778221603 + }, + "cable template ds-rf-port A-D4O ofdm-channel 3 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221603 + }, + "cable template ds-rf-port A-D4O ofdm-channel 3 auto-profile-change": { + "hint": "Description: Enable/disable automatic profile changes\nPossible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778221603 + }, + "cable template ds-rf-port A-D4O ofdm-channel 3 cyclic-prefix": { + "hint": "Description: Cyclic prefix configuration\nPossible completions:\n[512]", + "options": [], + "type": "string_or_number", + "current_value": "512", + "updated_at": 1778221603 + }, + "cable template ds-rf-port A-D4O ofdm-channel 3 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221654 + }, + "cable template ds-rf-port A-D4O ofdm-channel 3 query-load-percent": { + "hint": "Description: Define amount of traffic sent on each profile for testing MER.\nPossible completions:\n[0.0]", + "options": [], + "type": "string_or_number", + "current_value": "0.0", + "updated_at": 1778221654 + }, + "cable template ds-rf-port A-D4O ofdm-channel 3 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778221654 + }, + "cable template ds-rf-port A-D4O ofdm-channel 3 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221654 + }, + "cable template ds-rf-port A-D4O ofdm-channel 3 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [910.0]", + "options": [], + "type": "string_or_number", + "current_value": "910.0", + "updated_at": 1778221654 + }, + "cable template ds-rf-port A-D4O ofdm-channel 3 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[1102.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778221654 + }, + "cable template ds-rf-port A-D4O ofdm-channel 3 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[1006.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778221654 + }, + "cable template ds-rf-port A-D4O ofdm-channel 3 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778221654 + }, + "cable template ds-rf-port A-D4O ofdm-channel 3 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778221654 + }, + "cable template ds-rf-port A-D4O ofdm-channel 3 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778221654 + }, + "cable template ds-rf-port A-D4O ofdm-channel 3 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778221654 + }, + "cable template ds-rf-port A-D4O ofdm-channel 3 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778221654 + }, + "cable template ds-rf-port A-D4O ofdm-channel 3 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778221654 + }, + "cable template ds-rf-port B-D32S2O admin-state": { + "hint": "Description: Administrative State of the DS RF port [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221654 + }, + "cable template ds-rf-port B-D32S2O max-occupied-bw-mhz": { + "hint": "Description: Maximum bandwidth occupied by this port in megahertz\nPossible completions:\n[768.0]", + "options": [], + "type": "string_or_number", + "current_value": "768.0", + "updated_at": 1778221654 + }, + "cable template ds-rf-port B-D32S2O tilt-adjust": { + "hint": "Description: tilt-adjustment\nPossible completions:\n[10.0]", + "options": [], + "type": "string_or_number", + "current_value": "10.0", + "updated_at": 1778221654 + }, + "cable template ds-rf-port B-D32S2O base-channel-power-dbmv": { + "hint": "Description: Base channel power level in TenthdB\nPossible completions:\n[50.0]", + "options": [], + "type": "string_or_number", + "current_value": "50.0", + "updated_at": 1778221654 + }, + "cable template ds-rf-port B-D32S2O down-channel 0 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221654 + }, + "cable template ds-rf-port B-D32S2O down-channel 0 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778221654 + }, + "cable template ds-rf-port B-D32S2O down-channel 0 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[258.0]", + "options": [], + "type": "string_or_number", + "current_value": "258.0", + "updated_at": 1778221654 + }, + "cable template ds-rf-port B-D32S2O down-channel 0 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-34]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-34", + "updated_at": 1778221654 + }, + "cable template ds-rf-port B-D32S2O down-channel 1 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221654 + }, + "cable template ds-rf-port B-D32S2O down-channel 1 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778221654 + }, + "cable template ds-rf-port B-D32S2O down-channel 1 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[264.0]", + "options": [], + "type": "string_or_number", + "current_value": "264.0", + "updated_at": 1778221654 + }, + "cable template ds-rf-port B-D32S2O down-channel 1 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-35]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-35", + "updated_at": 1778221654 + }, + "cable template ds-rf-port B-D32S2O down-channel 2 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221654 + }, + "cable template ds-rf-port B-D32S2O down-channel 2 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778221654 + }, + "cable template ds-rf-port B-D32S2O down-channel 2 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[270.0]", + "options": [], + "type": "string_or_number", + "current_value": "270.0", + "updated_at": 1778221654 + }, + "cable template ds-rf-port B-D32S2O down-channel 2 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778221654 + }, + "cable template ds-rf-port B-D32S2O down-channel 3 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221654 + }, + "cable template ds-rf-port B-D32S2O down-channel 3 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778221704 + }, + "cable template ds-rf-port B-D32S2O down-channel 3 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[276.0]", + "options": [], + "type": "string_or_number", + "current_value": "276.0", + "updated_at": 1778221704 + }, + "cable template ds-rf-port B-D32S2O down-channel 3 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-37]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-37", + "updated_at": 1778221704 + }, + "cable template ds-rf-port B-D32S2O down-channel 4 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221704 + }, + "cable template ds-rf-port B-D32S2O down-channel 4 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778221704 + }, + "cable template ds-rf-port B-D32S2O down-channel 4 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[282.0]", + "options": [], + "type": "string_or_number", + "current_value": "282.0", + "updated_at": 1778221704 + }, + "cable template ds-rf-port B-D32S2O down-channel 4 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-38]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-38", + "updated_at": 1778221704 + }, + "cable template ds-rf-port B-D32S2O down-channel 5 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221704 + }, + "cable template ds-rf-port B-D32S2O down-channel 5 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778221704 + }, + "cable template ds-rf-port B-D32S2O down-channel 5 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[288.0]", + "options": [], + "type": "string_or_number", + "current_value": "288.0", + "updated_at": 1778221704 + }, + "cable template ds-rf-port B-D32S2O down-channel 5 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-39]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-39", + "updated_at": 1778221704 + }, + "cable template ds-rf-port B-D32S2O down-channel 6 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221704 + }, + "cable template ds-rf-port B-D32S2O down-channel 6 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778221704 + }, + "cable template ds-rf-port B-D32S2O down-channel 6 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[294.0]", + "options": [], + "type": "string_or_number", + "current_value": "294.0", + "updated_at": 1778221704 + }, + "cable template ds-rf-port B-D32S2O down-channel 6 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-40]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-40", + "updated_at": 1778221704 + }, + "cable template ds-rf-port B-D32S2O down-channel 7 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221704 + }, + "cable template ds-rf-port B-D32S2O down-channel 7 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778221704 + }, + "cable template ds-rf-port B-D32S2O down-channel 7 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[300.0]", + "options": [], + "type": "string_or_number", + "current_value": "300.0", + "updated_at": 1778221704 + }, + "cable template ds-rf-port B-D32S2O down-channel 7 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-41]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-41", + "updated_at": 1778221704 + }, + "cable template ds-rf-port B-D32S2O down-channel 8 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221704 + }, + "cable template ds-rf-port B-D32S2O down-channel 8 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778221704 + }, + "cable template ds-rf-port B-D32S2O down-channel 8 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[306.0]", + "options": [], + "type": "string_or_number", + "current_value": "306.0", + "updated_at": 1778221704 + }, + "cable template ds-rf-port B-D32S2O down-channel 8 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-42]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-42", + "updated_at": 1778221704 + }, + "cable template ds-rf-port B-D32S2O down-channel 9 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221704 + }, + "cable template ds-rf-port B-D32S2O down-channel 9 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778221704 + }, + "cable template ds-rf-port B-D32S2O down-channel 9 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[312.0]", + "options": [], + "type": "string_or_number", + "current_value": "312.0", + "updated_at": 1778221704 + }, + "cable template ds-rf-port B-D32S2O down-channel 9 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-43]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-43", + "updated_at": 1778221704 + }, + "cable template ds-rf-port B-D32S2O down-channel 10 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221704 + }, + "cable template ds-rf-port B-D32S2O down-channel 10 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778221704 + }, + "cable template ds-rf-port B-D32S2O down-channel 10 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[318.0]", + "options": [], + "type": "string_or_number", + "current_value": "318.0", + "updated_at": 1778221704 + }, + "cable template ds-rf-port B-D32S2O down-channel 10 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-44]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-44", + "updated_at": 1778221755 + }, + "cable template ds-rf-port B-D32S2O down-channel 11 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221755 + }, + "cable template ds-rf-port B-D32S2O down-channel 11 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778221755 + }, + "cable template ds-rf-port B-D32S2O down-channel 11 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[324.0]", + "options": [], + "type": "string_or_number", + "current_value": "324.0", + "updated_at": 1778221755 + }, + "cable template ds-rf-port B-D32S2O down-channel 11 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-45]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-45", + "updated_at": 1778221755 + }, + "cable template ds-rf-port B-D32S2O down-channel 12 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221755 + }, + "cable template ds-rf-port B-D32S2O down-channel 12 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778221755 + }, + "cable template ds-rf-port B-D32S2O down-channel 12 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[330.0]", + "options": [], + "type": "string_or_number", + "current_value": "330.0", + "updated_at": 1778221755 + }, + "cable template ds-rf-port B-D32S2O down-channel 12 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-46]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-46", + "updated_at": 1778221755 + }, + "cable template ds-rf-port B-D32S2O down-channel 13 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221755 + }, + "cable template ds-rf-port B-D32S2O down-channel 13 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778221755 + }, + "cable template ds-rf-port B-D32S2O down-channel 13 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[336.0]", + "options": [], + "type": "string_or_number", + "current_value": "336.0", + "updated_at": 1778221755 + }, + "cable template ds-rf-port B-D32S2O down-channel 13 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-47]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-47", + "updated_at": 1778221755 + }, + "cable template ds-rf-port B-D32S2O down-channel 14 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221755 + }, + "cable template ds-rf-port B-D32S2O down-channel 14 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778221755 + }, + "cable template ds-rf-port B-D32S2O down-channel 14 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[342.0]", + "options": [], + "type": "string_or_number", + "current_value": "342.0", + "updated_at": 1778221755 + }, + "cable template ds-rf-port B-D32S2O down-channel 14 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-48]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-48", + "updated_at": 1778221755 + }, + "cable template ds-rf-port B-D32S2O down-channel 15 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221755 + }, + "cable template ds-rf-port B-D32S2O down-channel 15 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778221755 + }, + "cable template ds-rf-port B-D32S2O down-channel 15 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[348.0]", + "options": [], + "type": "string_or_number", + "current_value": "348.0", + "updated_at": 1778221755 + }, + "cable template ds-rf-port B-D32S2O down-channel 15 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-49]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-49", + "updated_at": 1778221755 + }, + "cable template ds-rf-port B-D32S2O down-channel 16 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221755 + }, + "cable template ds-rf-port B-D32S2O down-channel 16 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778221755 + }, + "cable template ds-rf-port B-D32S2O down-channel 16 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[354.0]", + "options": [], + "type": "string_or_number", + "current_value": "354.0", + "updated_at": 1778221755 + }, + "cable template ds-rf-port B-D32S2O down-channel 16 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-50]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-50", + "updated_at": 1778221755 + }, + "cable template ds-rf-port B-D32S2O down-channel 17 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221755 + }, + "cable template ds-rf-port B-D32S2O down-channel 17 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778221755 + }, + "cable template ds-rf-port B-D32S2O down-channel 17 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[360.0]", + "options": [], + "type": "string_or_number", + "current_value": "360.0", + "updated_at": 1778221755 + }, + "cable template ds-rf-port B-D32S2O down-channel 17 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-51]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-51", + "updated_at": 1778221755 + }, + "cable template ds-rf-port B-D32S2O down-channel 18 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221755 + }, + "cable template ds-rf-port B-D32S2O down-channel 18 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778221806 + }, + "cable template ds-rf-port B-D32S2O down-channel 18 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[366.0]", + "options": [], + "type": "string_or_number", + "current_value": "366.0", + "updated_at": 1778221806 + }, + "cable template ds-rf-port B-D32S2O down-channel 18 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-52]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-52", + "updated_at": 1778221806 + }, + "cable template ds-rf-port B-D32S2O down-channel 19 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221806 + }, + "cable template ds-rf-port B-D32S2O down-channel 19 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778221806 + }, + "cable template ds-rf-port B-D32S2O down-channel 19 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[372.0]", + "options": [], + "type": "string_or_number", + "current_value": "372.0", + "updated_at": 1778221806 + }, + "cable template ds-rf-port B-D32S2O down-channel 19 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-53]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-53", + "updated_at": 1778221806 + }, + "cable template ds-rf-port B-D32S2O down-channel 20 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221806 + }, + "cable template ds-rf-port B-D32S2O down-channel 20 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778221806 + }, + "cable template ds-rf-port B-D32S2O down-channel 20 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[378.0]", + "options": [], + "type": "string_or_number", + "current_value": "378.0", + "updated_at": 1778221806 + }, + "cable template ds-rf-port B-D32S2O down-channel 20 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-54]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-54", + "updated_at": 1778221806 + }, + "cable template ds-rf-port B-D32S2O down-channel 21 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221806 + }, + "cable template ds-rf-port B-D32S2O down-channel 21 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778221806 + }, + "cable template ds-rf-port B-D32S2O down-channel 21 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[384.0]", + "options": [], + "type": "string_or_number", + "current_value": "384.0", + "updated_at": 1778221806 + }, + "cable template ds-rf-port B-D32S2O down-channel 21 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-55]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-55", + "updated_at": 1778221806 + }, + "cable template ds-rf-port B-D32S2O down-channel 22 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221806 + }, + "cable template ds-rf-port B-D32S2O down-channel 22 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778221806 + }, + "cable template ds-rf-port B-D32S2O down-channel 22 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[390.0]", + "options": [], + "type": "string_or_number", + "current_value": "390.0", + "updated_at": 1778221806 + }, + "cable template ds-rf-port B-D32S2O down-channel 22 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-56]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-56", + "updated_at": 1778221806 + }, + "cable template ds-rf-port B-D32S2O down-channel 23 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221806 + }, + "cable template ds-rf-port B-D32S2O down-channel 23 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778221806 + }, + "cable template ds-rf-port B-D32S2O down-channel 23 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[396.0]", + "options": [], + "type": "string_or_number", + "current_value": "396.0", + "updated_at": 1778221806 + }, + "cable template ds-rf-port B-D32S2O down-channel 23 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-57]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-57", + "updated_at": 1778221806 + }, + "cable template ds-rf-port B-D32S2O down-channel 24 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221806 + }, + "cable template ds-rf-port B-D32S2O down-channel 24 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778221806 + }, + "cable template ds-rf-port B-D32S2O down-channel 24 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[402.0]", + "options": [], + "type": "string_or_number", + "current_value": "402.0", + "updated_at": 1778221806 + }, + "cable template ds-rf-port B-D32S2O down-channel 24 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-58]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-58", + "updated_at": 1778221806 + }, + "cable template ds-rf-port B-D32S2O down-channel 25 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221806 + }, + "cable template ds-rf-port B-D32S2O down-channel 25 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778221806 + }, + "cable template ds-rf-port B-D32S2O down-channel 25 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[408.0]", + "options": [], + "type": "string_or_number", + "current_value": "408.0", + "updated_at": 1778221806 + }, + "cable template ds-rf-port B-D32S2O down-channel 25 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-59]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-59", + "updated_at": 1778221856 + }, + "cable template ds-rf-port B-D32S2O down-channel 26 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221856 + }, + "cable template ds-rf-port B-D32S2O down-channel 26 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778221856 + }, + "cable template ds-rf-port B-D32S2O down-channel 26 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[414.0]", + "options": [], + "type": "string_or_number", + "current_value": "414.0", + "updated_at": 1778221856 + }, + "cable template ds-rf-port B-D32S2O down-channel 26 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-60]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-60", + "updated_at": 1778221856 + }, + "cable template ds-rf-port B-D32S2O down-channel 27 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221856 + }, + "cable template ds-rf-port B-D32S2O down-channel 27 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778221856 + }, + "cable template ds-rf-port B-D32S2O down-channel 27 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[420.0]", + "options": [], + "type": "string_or_number", + "current_value": "420.0", + "updated_at": 1778221856 + }, + "cable template ds-rf-port B-D32S2O down-channel 27 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-61]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-61", + "updated_at": 1778221856 + }, + "cable template ds-rf-port B-D32S2O down-channel 28 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221856 + }, + "cable template ds-rf-port B-D32S2O down-channel 28 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778221856 + }, + "cable template ds-rf-port B-D32S2O down-channel 28 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[426.0]", + "options": [], + "type": "string_or_number", + "current_value": "426.0", + "updated_at": 1778221856 + }, + "cable template ds-rf-port B-D32S2O down-channel 28 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-62]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-62", + "updated_at": 1778221856 + }, + "cable template ds-rf-port B-D32S2O down-channel 29 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221856 + }, + "cable template ds-rf-port B-D32S2O down-channel 29 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778221856 + }, + "cable template ds-rf-port B-D32S2O down-channel 29 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[432.0]", + "options": [], + "type": "string_or_number", + "current_value": "432.0", + "updated_at": 1778221856 + }, + "cable template ds-rf-port B-D32S2O down-channel 29 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-63]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-63", + "updated_at": 1778221856 + }, + "cable template ds-rf-port B-D32S2O down-channel 30 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221856 + }, + "cable template ds-rf-port B-D32S2O down-channel 30 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778221856 + }, + "cable template ds-rf-port B-D32S2O down-channel 30 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[438.0]", + "options": [], + "type": "string_or_number", + "current_value": "438.0", + "updated_at": 1778221856 + }, + "cable template ds-rf-port B-D32S2O down-channel 30 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-64]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-64", + "updated_at": 1778221856 + }, + "cable template ds-rf-port B-D32S2O down-channel 31 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221856 + }, + "cable template ds-rf-port B-D32S2O down-channel 31 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778221856 + }, + "cable template ds-rf-port B-D32S2O down-channel 31 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[444.0]", + "options": [], + "type": "string_or_number", + "current_value": "444.0", + "updated_at": 1778221856 + }, + "cable template ds-rf-port B-D32S2O down-channel 31 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-65]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-65", + "updated_at": 1778221856 + }, + "cable template ds-rf-port B-D32S2O ofdm-channel 0 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221856 + }, + "cable template ds-rf-port B-D32S2O ofdm-channel 0 auto-profile-change": { + "hint": "Description: Enable/disable automatic profile changes\nPossible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778221856 + }, + "cable template ds-rf-port B-D32S2O ofdm-channel 0 cyclic-prefix": { + "hint": "Description: Cyclic prefix configuration\nPossible completions:\n[256]", + "options": [], + "type": "string_or_number", + "current_value": "256", + "updated_at": 1778221856 + }, + "cable template ds-rf-port B-D32S2O ofdm-channel 0 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221856 + }, + "cable template ds-rf-port B-D32S2O ofdm-channel 0 query-load-percent": { + "hint": "Description: Define amount of traffic sent on each profile for testing MER.\nPossible completions:\n[0.0]", + "options": [], + "type": "string_or_number", + "current_value": "0.0", + "updated_at": 1778221856 + }, + "cable template ds-rf-port B-D32S2O ofdm-channel 0 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778221907 + }, + "cable template ds-rf-port B-D32S2O ofdm-channel 0 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221907 + }, + "cable template ds-rf-port B-D32S2O ofdm-channel 0 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [450.0]", + "options": [], + "type": "string_or_number", + "current_value": "450.0", + "updated_at": 1778221907 + }, + "cable template ds-rf-port B-D32S2O ofdm-channel 0 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[642.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778221907 + }, + "cable template ds-rf-port B-D32S2O ofdm-channel 0 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[546.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778221907 + }, + "cable template ds-rf-port B-D32S2O ofdm-channel 0 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778221907 + }, + "cable template ds-rf-port B-D32S2O ofdm-channel 0 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778221907 + }, + "cable template ds-rf-port B-D32S2O ofdm-channel 0 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778221907 + }, + "cable template ds-rf-port B-D32S2O ofdm-channel 0 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778221907 + }, + "cable template ds-rf-port B-D32S2O ofdm-channel 0 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778221907 + }, + "cable template ds-rf-port B-D32S2O ofdm-channel 0 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778221907 + }, + "cable template ds-rf-port B-D32S2O ofdm-channel 1 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221907 + }, + "cable template ds-rf-port B-D32S2O ofdm-channel 1 auto-profile-change": { + "hint": "Description: Enable/disable automatic profile changes\nPossible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778221907 + }, + "cable template ds-rf-port B-D32S2O ofdm-channel 1 cyclic-prefix": { + "hint": "Description: Cyclic prefix configuration\nPossible completions:\n[256]", + "options": [], + "type": "string_or_number", + "current_value": "256", + "updated_at": 1778221907 + }, + "cable template ds-rf-port B-D32S2O ofdm-channel 1 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221907 + }, + "cable template ds-rf-port B-D32S2O ofdm-channel 1 query-load-percent": { + "hint": "Description: Define amount of traffic sent on each profile for testing MER.\nPossible completions:\n[0.0]", + "options": [], + "type": "string_or_number", + "current_value": "0.0", + "updated_at": 1778221907 + }, + "cable template ds-rf-port B-D32S2O ofdm-channel 1 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778221907 + }, + "cable template ds-rf-port B-D32S2O ofdm-channel 1 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778221907 + }, + "cable template ds-rf-port B-D32S2O ofdm-channel 1 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [642.0]", + "options": [], + "type": "string_or_number", + "current_value": "642.0", + "updated_at": 1778221907 + }, + "cable template ds-rf-port B-D32S2O ofdm-channel 1 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[834.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778221907 + }, + "cable template ds-rf-port B-D32S2O ofdm-channel 1 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[738.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778221907 + }, + "cable template ds-rf-port B-D32S2O ofdm-channel 1 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778221907 + }, + "cable template ds-rf-port B-D32S2O ofdm-channel 1 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778221907 + }, + "cable template ds-rf-port B-D32S2O ofdm-channel 1 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778221907 + }, + "cable template ds-rf-port B-D32S2O ofdm-channel 1 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778221907 + }, + "cable template ds-rf-port B-D32S2O ofdm-channel 1 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778221907 + }, + "cable template ds-rf-port B-D32S2O ofdm-channel 1 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778221907 + }, + "cable template ds-rf-port B-D32S4O admin-state": { + "hint": "Description: Administrative State of the DS RF port [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221907 + }, + "cable template ds-rf-port B-D32S4O max-occupied-bw-mhz": { + "hint": "Description: Maximum bandwidth occupied by this port in megahertz\nPossible completions:\n[960.0]", + "options": [], + "type": "string_or_number", + "current_value": "960.0", + "updated_at": 1778221907 + }, + "cable template ds-rf-port B-D32S4O tilt-adjust": { + "hint": "Description: tilt-adjustment\nPossible completions:\n[10.0]", + "options": [], + "type": "string_or_number", + "current_value": "10.0", + "updated_at": 1778221907 + }, + "cable template ds-rf-port B-D32S4O base-channel-power-dbmv": { + "hint": "Description: Base channel power level in TenthdB\nPossible completions:\n[50.0]", + "options": [], + "type": "string_or_number", + "current_value": "50.0", + "updated_at": 1778221958 + }, + "cable template ds-rf-port B-D32S4O down-channel 0 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221958 + }, + "cable template ds-rf-port B-D32S4O down-channel 0 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778221958 + }, + "cable template ds-rf-port B-D32S4O down-channel 0 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[258.0]", + "options": [], + "type": "string_or_number", + "current_value": "258.0", + "updated_at": 1778221958 + }, + "cable template ds-rf-port B-D32S4O down-channel 0 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-34]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-34", + "updated_at": 1778221958 + }, + "cable template ds-rf-port B-D32S4O down-channel 1 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221958 + }, + "cable template ds-rf-port B-D32S4O down-channel 1 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778221958 + }, + "cable template ds-rf-port B-D32S4O down-channel 1 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[264.0]", + "options": [], + "type": "string_or_number", + "current_value": "264.0", + "updated_at": 1778221958 + }, + "cable template ds-rf-port B-D32S4O down-channel 1 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-35]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-35", + "updated_at": 1778221958 + }, + "cable template ds-rf-port B-D32S4O down-channel 2 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221958 + }, + "cable template ds-rf-port B-D32S4O down-channel 2 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778221958 + }, + "cable template ds-rf-port B-D32S4O down-channel 2 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[270.0]", + "options": [], + "type": "string_or_number", + "current_value": "270.0", + "updated_at": 1778221958 + }, + "cable template ds-rf-port B-D32S4O down-channel 2 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778221958 + }, + "cable template ds-rf-port B-D32S4O down-channel 3 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221958 + }, + "cable template ds-rf-port B-D32S4O down-channel 3 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778221958 + }, + "cable template ds-rf-port B-D32S4O down-channel 3 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[276.0]", + "options": [], + "type": "string_or_number", + "current_value": "276.0", + "updated_at": 1778221958 + }, + "cable template ds-rf-port B-D32S4O down-channel 3 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-37]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-37", + "updated_at": 1778221958 + }, + "cable template ds-rf-port B-D32S4O down-channel 4 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221958 + }, + "cable template ds-rf-port B-D32S4O down-channel 4 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778221958 + }, + "cable template ds-rf-port B-D32S4O down-channel 4 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[282.0]", + "options": [], + "type": "string_or_number", + "current_value": "282.0", + "updated_at": 1778221958 + }, + "cable template ds-rf-port B-D32S4O down-channel 4 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-38]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-38", + "updated_at": 1778221958 + }, + "cable template ds-rf-port B-D32S4O down-channel 5 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221958 + }, + "cable template ds-rf-port B-D32S4O down-channel 5 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778221958 + }, + "cable template ds-rf-port B-D32S4O down-channel 5 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[288.0]", + "options": [], + "type": "string_or_number", + "current_value": "288.0", + "updated_at": 1778221958 + }, + "cable template ds-rf-port B-D32S4O down-channel 5 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-39]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-39", + "updated_at": 1778221958 + }, + "cable template ds-rf-port B-D32S4O down-channel 6 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221958 + }, + "cable template ds-rf-port B-D32S4O down-channel 6 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778221958 + }, + "cable template ds-rf-port B-D32S4O down-channel 6 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[294.0]", + "options": [], + "type": "string_or_number", + "current_value": "294.0", + "updated_at": 1778221958 + }, + "cable template ds-rf-port B-D32S4O down-channel 6 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-40]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-40", + "updated_at": 1778221958 + }, + "cable template ds-rf-port B-D32S4O down-channel 7 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778221958 + }, + "cable template ds-rf-port B-D32S4O down-channel 7 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222009 + }, + "cable template ds-rf-port B-D32S4O down-channel 7 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[300.0]", + "options": [], + "type": "string_or_number", + "current_value": "300.0", + "updated_at": 1778222009 + }, + "cable template ds-rf-port B-D32S4O down-channel 7 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-41]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-41", + "updated_at": 1778222009 + }, + "cable template ds-rf-port B-D32S4O down-channel 8 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222009 + }, + "cable template ds-rf-port B-D32S4O down-channel 8 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222009 + }, + "cable template ds-rf-port B-D32S4O down-channel 8 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[306.0]", + "options": [], + "type": "string_or_number", + "current_value": "306.0", + "updated_at": 1778222009 + }, + "cable template ds-rf-port B-D32S4O down-channel 8 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-42]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-42", + "updated_at": 1778222009 + }, + "cable template ds-rf-port B-D32S4O down-channel 9 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222009 + }, + "cable template ds-rf-port B-D32S4O down-channel 9 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222009 + }, + "cable template ds-rf-port B-D32S4O down-channel 9 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[312.0]", + "options": [], + "type": "string_or_number", + "current_value": "312.0", + "updated_at": 1778222009 + }, + "cable template ds-rf-port B-D32S4O down-channel 9 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-43]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-43", + "updated_at": 1778222009 + }, + "cable template ds-rf-port B-D32S4O down-channel 10 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222009 + }, + "cable template ds-rf-port B-D32S4O down-channel 10 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222009 + }, + "cable template ds-rf-port B-D32S4O down-channel 10 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[318.0]", + "options": [], + "type": "string_or_number", + "current_value": "318.0", + "updated_at": 1778222009 + }, + "cable template ds-rf-port B-D32S4O down-channel 10 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-44]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-44", + "updated_at": 1778222009 + }, + "cable template ds-rf-port B-D32S4O down-channel 11 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222009 + }, + "cable template ds-rf-port B-D32S4O down-channel 11 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222009 + }, + "cable template ds-rf-port B-D32S4O down-channel 11 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[324.0]", + "options": [], + "type": "string_or_number", + "current_value": "324.0", + "updated_at": 1778222009 + }, + "cable template ds-rf-port B-D32S4O down-channel 11 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-45]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-45", + "updated_at": 1778222009 + }, + "cable template ds-rf-port B-D32S4O down-channel 12 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222009 + }, + "cable template ds-rf-port B-D32S4O down-channel 12 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222009 + }, + "cable template ds-rf-port B-D32S4O down-channel 12 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[330.0]", + "options": [], + "type": "string_or_number", + "current_value": "330.0", + "updated_at": 1778222009 + }, + "cable template ds-rf-port B-D32S4O down-channel 12 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-46]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-46", + "updated_at": 1778222009 + }, + "cable template ds-rf-port B-D32S4O down-channel 13 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222009 + }, + "cable template ds-rf-port B-D32S4O down-channel 13 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222009 + }, + "cable template ds-rf-port B-D32S4O down-channel 13 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[336.0]", + "options": [], + "type": "string_or_number", + "current_value": "336.0", + "updated_at": 1778222009 + }, + "cable template ds-rf-port B-D32S4O down-channel 13 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-47]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-47", + "updated_at": 1778222009 + }, + "cable template ds-rf-port B-D32S4O down-channel 14 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222009 + }, + "cable template ds-rf-port B-D32S4O down-channel 14 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222009 + }, + "cable template ds-rf-port B-D32S4O down-channel 14 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[342.0]", + "options": [], + "type": "string_or_number", + "current_value": "342.0", + "updated_at": 1778222009 + }, + "cable template ds-rf-port B-D32S4O down-channel 14 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-48]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-48", + "updated_at": 1778222060 + }, + "cable template ds-rf-port B-D32S4O down-channel 15 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222060 + }, + "cable template ds-rf-port B-D32S4O down-channel 15 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222060 + }, + "cable template ds-rf-port B-D32S4O down-channel 15 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[348.0]", + "options": [], + "type": "string_or_number", + "current_value": "348.0", + "updated_at": 1778222060 + }, + "cable template ds-rf-port B-D32S4O down-channel 15 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-49]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-49", + "updated_at": 1778222060 + }, + "cable template ds-rf-port B-D32S4O down-channel 16 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222060 + }, + "cable template ds-rf-port B-D32S4O down-channel 16 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222060 + }, + "cable template ds-rf-port B-D32S4O down-channel 16 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[354.0]", + "options": [], + "type": "string_or_number", + "current_value": "354.0", + "updated_at": 1778222060 + }, + "cable template ds-rf-port B-D32S4O down-channel 16 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-50]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-50", + "updated_at": 1778222060 + }, + "cable template ds-rf-port B-D32S4O down-channel 17 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222060 + }, + "cable template ds-rf-port B-D32S4O down-channel 17 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222060 + }, + "cable template ds-rf-port B-D32S4O down-channel 17 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[360.0]", + "options": [], + "type": "string_or_number", + "current_value": "360.0", + "updated_at": 1778222060 + }, + "cable template ds-rf-port B-D32S4O down-channel 17 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-51]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-51", + "updated_at": 1778222060 + }, + "cable template ds-rf-port B-D32S4O down-channel 18 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222060 + }, + "cable template ds-rf-port B-D32S4O down-channel 18 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222060 + }, + "cable template ds-rf-port B-D32S4O down-channel 18 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[366.0]", + "options": [], + "type": "string_or_number", + "current_value": "366.0", + "updated_at": 1778222060 + }, + "cable template ds-rf-port B-D32S4O down-channel 18 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-52]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-52", + "updated_at": 1778222060 + }, + "cable template ds-rf-port B-D32S4O down-channel 19 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222060 + }, + "cable template ds-rf-port B-D32S4O down-channel 19 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222060 + }, + "cable template ds-rf-port B-D32S4O down-channel 19 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[372.0]", + "options": [], + "type": "string_or_number", + "current_value": "372.0", + "updated_at": 1778222060 + }, + "cable template ds-rf-port B-D32S4O down-channel 19 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-53]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-53", + "updated_at": 1778222060 + }, + "cable template ds-rf-port B-D32S4O down-channel 20 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222060 + }, + "cable template ds-rf-port B-D32S4O down-channel 20 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222060 + }, + "cable template ds-rf-port B-D32S4O down-channel 20 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[378.0]", + "options": [], + "type": "string_or_number", + "current_value": "378.0", + "updated_at": 1778222060 + }, + "cable template ds-rf-port B-D32S4O down-channel 20 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-54]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-54", + "updated_at": 1778222060 + }, + "cable template ds-rf-port B-D32S4O down-channel 21 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222060 + }, + "cable template ds-rf-port B-D32S4O down-channel 21 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222060 + }, + "cable template ds-rf-port B-D32S4O down-channel 21 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[384.0]", + "options": [], + "type": "string_or_number", + "current_value": "384.0", + "updated_at": 1778222060 + }, + "cable template ds-rf-port B-D32S4O down-channel 21 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-55]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-55", + "updated_at": 1778222060 + }, + "cable template ds-rf-port B-D32S4O down-channel 22 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222060 + }, + "cable template ds-rf-port B-D32S4O down-channel 22 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222110 + }, + "cable template ds-rf-port B-D32S4O down-channel 22 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[390.0]", + "options": [], + "type": "string_or_number", + "current_value": "390.0", + "updated_at": 1778222110 + }, + "cable template ds-rf-port B-D32S4O down-channel 22 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-56]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-56", + "updated_at": 1778222110 + }, + "cable template ds-rf-port B-D32S4O down-channel 23 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222110 + }, + "cable template ds-rf-port B-D32S4O down-channel 23 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222110 + }, + "cable template ds-rf-port B-D32S4O down-channel 23 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[396.0]", + "options": [], + "type": "string_or_number", + "current_value": "396.0", + "updated_at": 1778222110 + }, + "cable template ds-rf-port B-D32S4O down-channel 23 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-57]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-57", + "updated_at": 1778222110 + }, + "cable template ds-rf-port B-D32S4O down-channel 24 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222110 + }, + "cable template ds-rf-port B-D32S4O down-channel 24 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222110 + }, + "cable template ds-rf-port B-D32S4O down-channel 24 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[402.0]", + "options": [], + "type": "string_or_number", + "current_value": "402.0", + "updated_at": 1778222110 + }, + "cable template ds-rf-port B-D32S4O down-channel 24 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-58]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-58", + "updated_at": 1778222110 + }, + "cable template ds-rf-port B-D32S4O down-channel 25 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222110 + }, + "cable template ds-rf-port B-D32S4O down-channel 25 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222110 + }, + "cable template ds-rf-port B-D32S4O down-channel 25 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[408.0]", + "options": [], + "type": "string_or_number", + "current_value": "408.0", + "updated_at": 1778222110 + }, + "cable template ds-rf-port B-D32S4O down-channel 25 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-59]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-59", + "updated_at": 1778222110 + }, + "cable template ds-rf-port B-D32S4O down-channel 26 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222110 + }, + "cable template ds-rf-port B-D32S4O down-channel 26 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222110 + }, + "cable template ds-rf-port B-D32S4O down-channel 26 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[414.0]", + "options": [], + "type": "string_or_number", + "current_value": "414.0", + "updated_at": 1778222110 + }, + "cable template ds-rf-port B-D32S4O down-channel 26 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-60]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-60", + "updated_at": 1778222110 + }, + "cable template ds-rf-port B-D32S4O down-channel 27 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222110 + }, + "cable template ds-rf-port B-D32S4O down-channel 27 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222110 + }, + "cable template ds-rf-port B-D32S4O down-channel 27 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[420.0]", + "options": [], + "type": "string_or_number", + "current_value": "420.0", + "updated_at": 1778222110 + }, + "cable template ds-rf-port B-D32S4O down-channel 27 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-61]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-61", + "updated_at": 1778222110 + }, + "cable template ds-rf-port B-D32S4O down-channel 28 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222110 + }, + "cable template ds-rf-port B-D32S4O down-channel 28 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222110 + }, + "cable template ds-rf-port B-D32S4O down-channel 28 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[426.0]", + "options": [], + "type": "string_or_number", + "current_value": "426.0", + "updated_at": 1778222110 + }, + "cable template ds-rf-port B-D32S4O down-channel 28 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-62]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-62", + "updated_at": 1778222110 + }, + "cable template ds-rf-port B-D32S4O down-channel 29 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222110 + }, + "cable template ds-rf-port B-D32S4O down-channel 29 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222110 + }, + "cable template ds-rf-port B-D32S4O down-channel 29 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[432.0]", + "options": [], + "type": "string_or_number", + "current_value": "432.0", + "updated_at": 1778222110 + }, + "cable template ds-rf-port B-D32S4O down-channel 29 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-63]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-63", + "updated_at": 1778222161 + }, + "cable template ds-rf-port B-D32S4O down-channel 30 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222161 + }, + "cable template ds-rf-port B-D32S4O down-channel 30 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222161 + }, + "cable template ds-rf-port B-D32S4O down-channel 30 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[438.0]", + "options": [], + "type": "string_or_number", + "current_value": "438.0", + "updated_at": 1778222161 + }, + "cable template ds-rf-port B-D32S4O down-channel 30 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-64]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-64", + "updated_at": 1778222161 + }, + "cable template ds-rf-port B-D32S4O down-channel 31 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222161 + }, + "cable template ds-rf-port B-D32S4O down-channel 31 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222161 + }, + "cable template ds-rf-port B-D32S4O down-channel 31 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[444.0]", + "options": [], + "type": "string_or_number", + "current_value": "444.0", + "updated_at": 1778222161 + }, + "cable template ds-rf-port B-D32S4O down-channel 31 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-65]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-65", + "updated_at": 1778222161 + }, + "cable template ds-rf-port B-D32S4O ofdm-channel 0 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222161 + }, + "cable template ds-rf-port B-D32S4O ofdm-channel 0 auto-profile-change": { + "hint": "Description: Enable/disable automatic profile changes\nPossible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778222161 + }, + "cable template ds-rf-port B-D32S4O ofdm-channel 0 cyclic-prefix": { + "hint": "Description: Cyclic prefix configuration\nPossible completions:\n[256]", + "options": [], + "type": "string_or_number", + "current_value": "256", + "updated_at": 1778222161 + }, + "cable template ds-rf-port B-D32S4O ofdm-channel 0 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778222161 + }, + "cable template ds-rf-port B-D32S4O ofdm-channel 0 query-load-percent": { + "hint": "Description: Define amount of traffic sent on each profile for testing MER.\nPossible completions:\n[0.0]", + "options": [], + "type": "string_or_number", + "current_value": "0.0", + "updated_at": 1778222161 + }, + "cable template ds-rf-port B-D32S4O ofdm-channel 0 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778222161 + }, + "cable template ds-rf-port B-D32S4O ofdm-channel 0 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778222161 + }, + "cable template ds-rf-port B-D32S4O ofdm-channel 0 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [450.0]", + "options": [], + "type": "string_or_number", + "current_value": "450.0", + "updated_at": 1778222161 + }, + "cable template ds-rf-port B-D32S4O ofdm-channel 0 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[642.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222161 + }, + "cable template ds-rf-port B-D32S4O ofdm-channel 0 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[546.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222161 + }, + "cable template ds-rf-port B-D32S4O ofdm-channel 0 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778222161 + }, + "cable template ds-rf-port B-D32S4O ofdm-channel 0 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778222161 + }, + "cable template ds-rf-port B-D32S4O ofdm-channel 0 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778222161 + }, + "cable template ds-rf-port B-D32S4O ofdm-channel 0 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778222161 + }, + "cable template ds-rf-port B-D32S4O ofdm-channel 0 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778222161 + }, + "cable template ds-rf-port B-D32S4O ofdm-channel 0 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778222161 + }, + "cable template ds-rf-port B-D32S4O ofdm-channel 1 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222161 + }, + "cable template ds-rf-port B-D32S4O ofdm-channel 1 auto-profile-change": { + "hint": "Description: Enable/disable automatic profile changes\nPossible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778222161 + }, + "cable template ds-rf-port B-D32S4O ofdm-channel 1 cyclic-prefix": { + "hint": "Description: Cyclic prefix configuration\nPossible completions:\n[256]", + "options": [], + "type": "string_or_number", + "current_value": "256", + "updated_at": 1778222161 + }, + "cable template ds-rf-port B-D32S4O ofdm-channel 1 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778222161 + }, + "cable template ds-rf-port B-D32S4O ofdm-channel 1 query-load-percent": { + "hint": "Description: Define amount of traffic sent on each profile for testing MER.\nPossible completions:\n[0.0]", + "options": [], + "type": "string_or_number", + "current_value": "0.0", + "updated_at": 1778222161 + }, + "cable template ds-rf-port B-D32S4O ofdm-channel 1 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778222212 + }, + "cable template ds-rf-port B-D32S4O ofdm-channel 1 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778222212 + }, + "cable template ds-rf-port B-D32S4O ofdm-channel 1 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [642.0]", + "options": [], + "type": "string_or_number", + "current_value": "642.0", + "updated_at": 1778222212 + }, + "cable template ds-rf-port B-D32S4O ofdm-channel 1 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[680.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222212 + }, + "cable template ds-rf-port B-D32S4O ofdm-channel 1 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[673.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222212 + }, + "cable template ds-rf-port B-D32S4O ofdm-channel 1 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778222212 + }, + "cable template ds-rf-port B-D32S4O ofdm-channel 1 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778222212 + }, + "cable template ds-rf-port B-D32S4O ofdm-channel 1 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778222212 + }, + "cable template ds-rf-port B-D32S4O ofdm-channel 1 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778222212 + }, + "cable template ds-rf-port B-D32S4O ofdm-channel 1 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778222212 + }, + "cable template ds-rf-port B-D32S4O ofdm-channel 1 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778222212 + }, + "cable template ds-rf-port B-D36S2O admin-state": { + "hint": "Description: Administrative State of the DS RF port [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222212 + }, + "cable template ds-rf-port B-D36S2O max-occupied-bw-mhz": { + "hint": "Description: Maximum bandwidth occupied by this port in megahertz\nPossible completions:\n[600.0]", + "options": [], + "type": "string_or_number", + "current_value": "600.0", + "updated_at": 1778222212 + }, + "cable template ds-rf-port B-D36S2O tilt-adjust": { + "hint": "Description: tilt-adjustment\nPossible completions:\n[10.0]", + "options": [], + "type": "string_or_number", + "current_value": "10.0", + "updated_at": 1778222212 + }, + "cable template ds-rf-port B-D36S2O base-channel-power-dbmv": { + "hint": "Description: Base channel power level in TenthdB\nPossible completions:\n[50.0]", + "options": [], + "type": "string_or_number", + "current_value": "50.0", + "updated_at": 1778222212 + }, + "cable template ds-rf-port B-D36S2O down-channel 0 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222212 + }, + "cable template ds-rf-port B-D36S2O down-channel 0 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222212 + }, + "cable template ds-rf-port B-D36S2O down-channel 0 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[285.0]", + "options": [], + "type": "string_or_number", + "current_value": "285.0", + "updated_at": 1778222212 + }, + "cable template ds-rf-port B-D36S2O down-channel 0 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-34]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-34", + "updated_at": 1778222212 + }, + "cable template ds-rf-port B-D36S2O down-channel 1 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222212 + }, + "cable template ds-rf-port B-D36S2O down-channel 1 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222212 + }, + "cable template ds-rf-port B-D36S2O down-channel 1 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[291.0]", + "options": [], + "type": "string_or_number", + "current_value": "291.0", + "updated_at": 1778222212 + }, + "cable template ds-rf-port B-D36S2O down-channel 1 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-35]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-35", + "updated_at": 1778222212 + }, + "cable template ds-rf-port B-D36S2O down-channel 2 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222212 + }, + "cable template ds-rf-port B-D36S2O down-channel 2 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222212 + }, + "cable template ds-rf-port B-D36S2O down-channel 2 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[297.0]", + "options": [], + "type": "string_or_number", + "current_value": "297.0", + "updated_at": 1778222212 + }, + "cable template ds-rf-port B-D36S2O down-channel 2 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778222212 + }, + "cable template ds-rf-port B-D36S2O down-channel 3 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222212 + }, + "cable template ds-rf-port B-D36S2O down-channel 3 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222212 + }, + "cable template ds-rf-port B-D36S2O down-channel 3 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[303.0]", + "options": [], + "type": "string_or_number", + "current_value": "303.0", + "updated_at": 1778222212 + }, + "cable template ds-rf-port B-D36S2O down-channel 3 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-37]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-37", + "updated_at": 1778222263 + }, + "cable template ds-rf-port B-D36S2O down-channel 4 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222263 + }, + "cable template ds-rf-port B-D36S2O down-channel 4 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222263 + }, + "cable template ds-rf-port B-D36S2O down-channel 4 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[309.0]\nSystem message at 2026-05-08 14:37:00...\nCommit performed by admin via ssh using cli.", + "options": [], + "type": "string_or_number", + "current_value": "309.0", + "updated_at": 1778222263 + }, + "cable template ds-rf-port B-D36S2O down-channel 4 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-38]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-38", + "updated_at": 1778222263 + }, + "cable template ds-rf-port B-D36S2O down-channel 5 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222263 + }, + "cable template ds-rf-port B-D36S2O down-channel 5 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222263 + }, + "cable template ds-rf-port B-D36S2O down-channel 5 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[315.0]", + "options": [], + "type": "string_or_number", + "current_value": "315.0", + "updated_at": 1778222263 + }, + "cable template ds-rf-port B-D36S2O down-channel 5 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-39]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-39", + "updated_at": 1778222263 + }, + "cable template ds-rf-port B-D36S2O down-channel 6 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222263 + }, + "cable template ds-rf-port B-D36S2O down-channel 6 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222263 + }, + "cable template ds-rf-port B-D36S2O down-channel 6 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[321.0]", + "options": [], + "type": "string_or_number", + "current_value": "321.0", + "updated_at": 1778222263 + }, + "cable template ds-rf-port B-D36S2O down-channel 6 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-40]\n------------------------------------------------------------------------------------------------------------------------\nFri May 8 06:37:14 2026 Event ID 2052 (RpdImageActivationFailure). RPD image activation failure on AC Power failure.\ncounter 1 Time: Fri May 8 06:37:51 2026; RPD-ID: 00:20:A3:A6:7D:A0;admin@SERCOMM-COS-02(config)# cable template ds-rf-port B-D36S2O down-channel 6 qam-alias", + "options": [], + "type": "string_or_number", + "current_value": "EIA-40", + "updated_at": 1778222263 + }, + "cable template ds-rf-port B-D36S2O down-channel 7 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222263 + }, + "cable template ds-rf-port B-D36S2O down-channel 7 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222263 + }, + "cable template ds-rf-port B-D36S2O down-channel 7 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[327.0]", + "options": [], + "type": "string_or_number", + "current_value": "327.0", + "updated_at": 1778222263 + }, + "cable template ds-rf-port B-D36S2O down-channel 7 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-41]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-41", + "updated_at": 1778222263 + }, + "cable template ds-rf-port B-D36S2O down-channel 8 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222263 + }, + "cable template ds-rf-port B-D36S2O down-channel 8 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222263 + }, + "cable template ds-rf-port B-D36S2O down-channel 8 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[333.0]", + "options": [], + "type": "string_or_number", + "current_value": "333.0", + "updated_at": 1778222263 + }, + "cable template ds-rf-port B-D36S2O down-channel 8 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-42]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-42", + "updated_at": 1778222263 + }, + "cable template ds-rf-port B-D36S2O down-channel 9 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222263 + }, + "cable template ds-rf-port B-D36S2O down-channel 9 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222263 + }, + "cable template ds-rf-port B-D36S2O down-channel 9 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[339.0]", + "options": [], + "type": "string_or_number", + "current_value": "339.0", + "updated_at": 1778222263 + }, + "cable template ds-rf-port B-D36S2O down-channel 9 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-43]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-43", + "updated_at": 1778222263 + }, + "cable template ds-rf-port B-D36S2O down-channel 10 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222263 + }, + "cable template ds-rf-port B-D36S2O down-channel 10 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222263 + }, + "cable template ds-rf-port B-D36S2O down-channel 10 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[345.0]", + "options": [], + "type": "string_or_number", + "current_value": "345.0", + "updated_at": 1778222263 + }, + "cable template ds-rf-port B-D36S2O down-channel 10 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-44]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-44", + "updated_at": 1778222263 + }, + "cable template ds-rf-port B-D36S2O down-channel 11 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222263 + }, + "cable template ds-rf-port B-D36S2O down-channel 11 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222314 + }, + "cable template ds-rf-port B-D36S2O down-channel 11 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[351.0]", + "options": [], + "type": "string_or_number", + "current_value": "351.0", + "updated_at": 1778222314 + }, + "cable template ds-rf-port B-D36S2O down-channel 11 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-45]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-45", + "updated_at": 1778222314 + }, + "cable template ds-rf-port B-D36S2O down-channel 12 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222314 + }, + "cable template ds-rf-port B-D36S2O down-channel 12 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222314 + }, + "cable template ds-rf-port B-D36S2O down-channel 12 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[357.0]", + "options": [], + "type": "string_or_number", + "current_value": "357.0", + "updated_at": 1778222314 + }, + "cable template ds-rf-port B-D36S2O down-channel 12 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-46]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-46", + "updated_at": 1778222314 + }, + "cable template ds-rf-port B-D36S2O down-channel 13 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222314 + }, + "cable template ds-rf-port B-D36S2O down-channel 13 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222314 + }, + "cable template ds-rf-port B-D36S2O down-channel 13 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[363.0]", + "options": [], + "type": "string_or_number", + "current_value": "363.0", + "updated_at": 1778222314 + }, + "cable template ds-rf-port B-D36S2O down-channel 13 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-47]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-47", + "updated_at": 1778222314 + }, + "cable template ds-rf-port B-D36S2O down-channel 14 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222314 + }, + "cable template ds-rf-port B-D36S2O down-channel 14 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222314 + }, + "cable template ds-rf-port B-D36S2O down-channel 14 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[369.0]", + "options": [], + "type": "string_or_number", + "current_value": "369.0", + "updated_at": 1778222314 + }, + "cable template ds-rf-port B-D36S2O down-channel 14 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-48]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-48", + "updated_at": 1778222314 + }, + "cable template ds-rf-port B-D36S2O down-channel 15 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222314 + }, + "cable template ds-rf-port B-D36S2O down-channel 15 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222314 + }, + "cable template ds-rf-port B-D36S2O down-channel 15 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[375.0]", + "options": [], + "type": "string_or_number", + "current_value": "375.0", + "updated_at": 1778222314 + }, + "cable template ds-rf-port B-D36S2O down-channel 15 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-49]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-49", + "updated_at": 1778222314 + }, + "cable template ds-rf-port B-D36S2O down-channel 16 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222314 + }, + "cable template ds-rf-port B-D36S2O down-channel 16 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222314 + }, + "cable template ds-rf-port B-D36S2O down-channel 16 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[381.0]", + "options": [], + "type": "string_or_number", + "current_value": "381.0", + "updated_at": 1778222314 + }, + "cable template ds-rf-port B-D36S2O down-channel 16 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-50]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-50", + "updated_at": 1778222314 + }, + "cable template ds-rf-port B-D36S2O down-channel 17 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222314 + }, + "cable template ds-rf-port B-D36S2O down-channel 17 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222314 + }, + "cable template ds-rf-port B-D36S2O down-channel 17 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[387.0]", + "options": [], + "type": "string_or_number", + "current_value": "387.0", + "updated_at": 1778222314 + }, + "cable template ds-rf-port B-D36S2O down-channel 17 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-51]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-51", + "updated_at": 1778222314 + }, + "cable template ds-rf-port B-D36S2O down-channel 18 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222314 + }, + "cable template ds-rf-port B-D36S2O down-channel 18 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222314 + }, + "cable template ds-rf-port B-D36S2O down-channel 18 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[393.0]", + "options": [], + "type": "string_or_number", + "current_value": "393.0", + "updated_at": 1778222314 + }, + "cable template ds-rf-port B-D36S2O down-channel 18 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-52]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-52", + "updated_at": 1778222365 + }, + "cable template ds-rf-port B-D36S2O down-channel 19 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222365 + }, + "cable template ds-rf-port B-D36S2O down-channel 19 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222365 + }, + "cable template ds-rf-port B-D36S2O down-channel 19 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[399.0]", + "options": [], + "type": "string_or_number", + "current_value": "399.0", + "updated_at": 1778222365 + }, + "cable template ds-rf-port B-D36S2O down-channel 19 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-53]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-53", + "updated_at": 1778222365 + }, + "cable template ds-rf-port B-D36S2O down-channel 20 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222365 + }, + "cable template ds-rf-port B-D36S2O down-channel 20 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222365 + }, + "cable template ds-rf-port B-D36S2O down-channel 20 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[405.0]", + "options": [], + "type": "string_or_number", + "current_value": "405.0", + "updated_at": 1778222365 + }, + "cable template ds-rf-port B-D36S2O down-channel 20 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-54]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-54", + "updated_at": 1778222365 + }, + "cable template ds-rf-port B-D36S2O down-channel 21 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222365 + }, + "cable template ds-rf-port B-D36S2O down-channel 21 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222365 + }, + "cable template ds-rf-port B-D36S2O down-channel 21 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[411.0]", + "options": [], + "type": "string_or_number", + "current_value": "411.0", + "updated_at": 1778222365 + }, + "cable template ds-rf-port B-D36S2O down-channel 21 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-55]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-55", + "updated_at": 1778222365 + }, + "cable template ds-rf-port B-D36S2O down-channel 22 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222365 + }, + "cable template ds-rf-port B-D36S2O down-channel 22 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222365 + }, + "cable template ds-rf-port B-D36S2O down-channel 22 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[417.0]", + "options": [], + "type": "string_or_number", + "current_value": "417.0", + "updated_at": 1778222365 + }, + "cable template ds-rf-port B-D36S2O down-channel 22 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-56]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-56", + "updated_at": 1778222365 + }, + "cable template ds-rf-port B-D36S2O down-channel 23 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222365 + }, + "cable template ds-rf-port B-D36S2O down-channel 23 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222365 + }, + "cable template ds-rf-port B-D36S2O down-channel 23 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[423.0]", + "options": [], + "type": "string_or_number", + "current_value": "423.0", + "updated_at": 1778222365 + }, + "cable template ds-rf-port B-D36S2O down-channel 23 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-57]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-57", + "updated_at": 1778222365 + }, + "cable template ds-rf-port B-D36S2O down-channel 24 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222365 + }, + "cable template ds-rf-port B-D36S2O down-channel 24 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222365 + }, + "cable template ds-rf-port B-D36S2O down-channel 24 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[429.0]", + "options": [], + "type": "string_or_number", + "current_value": "429.0", + "updated_at": 1778222365 + }, + "cable template ds-rf-port B-D36S2O down-channel 24 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-58]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-58", + "updated_at": 1778222365 + }, + "cable template ds-rf-port B-D36S2O down-channel 25 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222365 + }, + "cable template ds-rf-port B-D36S2O down-channel 25 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222365 + }, + "cable template ds-rf-port B-D36S2O down-channel 25 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[435.0]", + "options": [], + "type": "string_or_number", + "current_value": "435.0", + "updated_at": 1778222365 + }, + "cable template ds-rf-port B-D36S2O down-channel 25 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-59]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-59", + "updated_at": 1778222365 + }, + "cable template ds-rf-port B-D36S2O down-channel 26 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222365 + }, + "cable template ds-rf-port B-D36S2O down-channel 26 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222415 + }, + "cable template ds-rf-port B-D36S2O down-channel 26 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[441.0]", + "options": [], + "type": "string_or_number", + "current_value": "441.0", + "updated_at": 1778222415 + }, + "cable template ds-rf-port B-D36S2O down-channel 26 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-60]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-60", + "updated_at": 1778222415 + }, + "cable template ds-rf-port B-D36S2O down-channel 27 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222415 + }, + "cable template ds-rf-port B-D36S2O down-channel 27 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222415 + }, + "cable template ds-rf-port B-D36S2O down-channel 27 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[447.0]", + "options": [], + "type": "string_or_number", + "current_value": "447.0", + "updated_at": 1778222415 + }, + "cable template ds-rf-port B-D36S2O down-channel 27 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-61]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-61", + "updated_at": 1778222415 + }, + "cable template ds-rf-port B-D36S2O down-channel 28 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222415 + }, + "cable template ds-rf-port B-D36S2O down-channel 28 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222415 + }, + "cable template ds-rf-port B-D36S2O down-channel 28 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[453.0]", + "options": [], + "type": "string_or_number", + "current_value": "453.0", + "updated_at": 1778222415 + }, + "cable template ds-rf-port B-D36S2O down-channel 28 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-62]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-62", + "updated_at": 1778222415 + }, + "cable template ds-rf-port B-D36S2O down-channel 29 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222415 + }, + "cable template ds-rf-port B-D36S2O down-channel 29 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222415 + }, + "cable template ds-rf-port B-D36S2O down-channel 29 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[459.0]", + "options": [], + "type": "string_or_number", + "current_value": "459.0", + "updated_at": 1778222415 + }, + "cable template ds-rf-port B-D36S2O down-channel 29 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-63]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-63", + "updated_at": 1778222415 + }, + "cable template ds-rf-port B-D36S2O down-channel 30 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222415 + }, + "cable template ds-rf-port B-D36S2O down-channel 30 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222415 + }, + "cable template ds-rf-port B-D36S2O down-channel 30 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[465.0]", + "options": [], + "type": "string_or_number", + "current_value": "465.0", + "updated_at": 1778222415 + }, + "cable template ds-rf-port B-D36S2O down-channel 30 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-64]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-64", + "updated_at": 1778222415 + }, + "cable template ds-rf-port B-D36S2O down-channel 31 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222415 + }, + "cable template ds-rf-port B-D36S2O down-channel 31 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222415 + }, + "cable template ds-rf-port B-D36S2O down-channel 31 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[471.0]", + "options": [], + "type": "string_or_number", + "current_value": "471.0", + "updated_at": 1778222415 + }, + "cable template ds-rf-port B-D36S2O down-channel 31 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-65]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-65", + "updated_at": 1778222415 + }, + "cable template ds-rf-port B-D36S2O down-channel 64 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222415 + }, + "cable template ds-rf-port B-D36S2O down-channel 64 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222415 + }, + "cable template ds-rf-port B-D36S2O down-channel 64 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[261.0]", + "options": [], + "type": "string_or_number", + "current_value": "261.0", + "updated_at": 1778222415 + }, + "cable template ds-rf-port B-D36S2O down-channel 64 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-30]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-30", + "updated_at": 1778222415 + }, + "cable template ds-rf-port B-D36S2O down-channel 65 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222415 + }, + "cable template ds-rf-port B-D36S2O down-channel 65 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222415 + }, + "cable template ds-rf-port B-D36S2O down-channel 65 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[267.0]", + "options": [], + "type": "string_or_number", + "current_value": "267.0", + "updated_at": 1778222415 + }, + "cable template ds-rf-port B-D36S2O down-channel 65 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-31]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-31", + "updated_at": 1778222466 + }, + "cable template ds-rf-port B-D36S2O down-channel 66 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222466 + }, + "cable template ds-rf-port B-D36S2O down-channel 66 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222466 + }, + "cable template ds-rf-port B-D36S2O down-channel 66 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[273.0]", + "options": [], + "type": "string_or_number", + "current_value": "273.0", + "updated_at": 1778222466 + }, + "cable template ds-rf-port B-D36S2O down-channel 66 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-32]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-32", + "updated_at": 1778222466 + }, + "cable template ds-rf-port B-D36S2O down-channel 67 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222466 + }, + "cable template ds-rf-port B-D36S2O down-channel 67 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778222466 + }, + "cable template ds-rf-port B-D36S2O down-channel 67 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[279.0]", + "options": [], + "type": "string_or_number", + "current_value": "279.0", + "updated_at": 1778222466 + }, + "cable template ds-rf-port B-D36S2O down-channel 67 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-33]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-33", + "updated_at": 1778222466 + }, + "cable template ds-rf-port B-D36S2O ofdm-channel 0 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222466 + }, + "cable template ds-rf-port B-D36S2O ofdm-channel 0 auto-profile-change": { + "hint": "Description: Enable/disable automatic profile changes\nPossible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778222466 + }, + "cable template ds-rf-port B-D36S2O ofdm-channel 0 cyclic-prefix": { + "hint": "Description: Cyclic prefix configuration\nPossible completions:\n[256]", + "options": [], + "type": "string_or_number", + "current_value": "256", + "updated_at": 1778222466 + }, + "cable template ds-rf-port B-D36S2O ofdm-channel 0 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778222466 + }, + "cable template ds-rf-port B-D36S2O ofdm-channel 0 query-load-percent": { + "hint": "Description: Define amount of traffic sent on each profile for testing MER.\nPossible completions:\n[0.0]", + "options": [], + "type": "string_or_number", + "current_value": "0.0", + "updated_at": 1778222466 + }, + "cable template ds-rf-port B-D36S2O ofdm-channel 0 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778222466 + }, + "cable template ds-rf-port B-D36S2O ofdm-channel 0 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778222466 + }, + "cable template ds-rf-port B-D36S2O ofdm-channel 0 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [477.0]", + "options": [], + "type": "string_or_number", + "current_value": "477.0", + "updated_at": 1778222466 + }, + "cable template ds-rf-port B-D36S2O ofdm-channel 0 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[669.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222466 + }, + "cable template ds-rf-port B-D36S2O ofdm-channel 0 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[573.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222466 + }, + "cable template ds-rf-port B-D36S2O ofdm-channel 0 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778222466 + }, + "cable template ds-rf-port B-D36S2O ofdm-channel 0 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778222466 + }, + "cable template ds-rf-port B-D36S2O ofdm-channel 0 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778222466 + }, + "cable template ds-rf-port B-D36S2O ofdm-channel 0 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778222466 + }, + "cable template ds-rf-port B-D36S2O ofdm-channel 0 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778222466 + }, + "cable template ds-rf-port B-D36S2O ofdm-channel 0 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778222466 + }, + "cable template ds-rf-port B-D36S2O ofdm-channel 1 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222466 + }, + "cable template ds-rf-port B-D36S2O ofdm-channel 1 auto-profile-change": { + "hint": "Description: Enable/disable automatic profile changes\nPossible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778222466 + }, + "cable template ds-rf-port B-D36S2O ofdm-channel 1 cyclic-prefix": { + "hint": "Description: Cyclic prefix configuration\nPossible completions:\n[256]", + "options": [], + "type": "string_or_number", + "current_value": "256", + "updated_at": 1778222466 + }, + "cable template ds-rf-port B-D36S2O ofdm-channel 1 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778222466 + }, + "cable template ds-rf-port B-D36S2O ofdm-channel 1 query-load-percent": { + "hint": "Description: Define amount of traffic sent on each profile for testing MER.\nPossible completions:\n[0.0]", + "options": [], + "type": "string_or_number", + "current_value": "0.0", + "updated_at": 1778222466 + }, + "cable template ds-rf-port B-D36S2O ofdm-channel 1 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778222517 + }, + "cable template ds-rf-port B-D36S2O ofdm-channel 1 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778222517 + }, + "cable template ds-rf-port B-D36S2O ofdm-channel 1 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [675.0]", + "options": [], + "type": "string_or_number", + "current_value": "675.0", + "updated_at": 1778222517 + }, + "cable template ds-rf-port B-D36S2O ofdm-channel 1 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[867.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222517 + }, + "cable template ds-rf-port B-D36S2O ofdm-channel 1 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[771.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222517 + }, + "cable template ds-rf-port B-D36S2O ofdm-channel 1 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778222517 + }, + "cable template ds-rf-port B-D36S2O ofdm-channel 1 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778222517 + }, + "cable template ds-rf-port B-D36S2O ofdm-channel 1 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778222517 + }, + "cable template ds-rf-port B-D36S2O ofdm-channel 1 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778222517 + }, + "cable template ds-rf-port B-D36S2O ofdm-channel 1 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778222517 + }, + "cable template ds-rf-port B-D36S2O ofdm-channel 1 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778222517 + }, + "cable template us-rf-port A-U2O admin-state": { + "hint": "Description: Administrative State of the US RF port [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222517 + }, + "cable template us-rf-port A-U2O base-target-rx-power-dbmv": { + "hint": "Description: Base port power level in dB per 1.6 MHz of RF bandwith\nPossible completions:\n[8.0]", + "options": [], + "type": "string_or_number", + "current_value": "8.0", + "updated_at": 1778222517 + }, + "cable template us-rf-port A-U2O ofdma-channel 0 admin-state": { + "hint": "Description: Administrative State of the ofdma channel\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222517 + }, + "cable template us-rf-port A-U2O ofdma-channel 0 modulation-profile": { + "hint": "Description: Reference to mod-prof-ofdma\nPossible completions:\n[403]\n<401..499> OFDMA modulation profile\n401\n403\n408\n409\n410\n411\n412\n413\n414\n415\n416\n417\n418\n419\n420\n421\n428\n429\n432\n433\n\u001b[7m--More--\u001b[27m\b\b\b\b\b\b\b\b \b\b\b\b\b\b\b\b 435\n444\n450\n451\n461\n466\n487\n488\n499", + "options": [], + "type": "string_or_number", + "current_value": "403", + "updated_at": 1778222517 + }, + "cable template us-rf-port A-U2O ofdma-channel 0 target-power-density": { + "hint": "Description: Configures the upstream received power density\nPossible completions:\n<-13.0..19.0> Upstream received power density[-6.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222517 + }, + "cable template us-rf-port A-U2O ofdma-channel 0 frequency-range-mhz": { + "hint": "Description: Define the lower boundary frequency in MHz of ofdma-channel\nPossible completions:\n<5.0..197.6> Lower boundary frequency in MHz[5.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222517 + }, + "cable template us-rf-port A-U2O ofdma-channel 0 transmit-backoff": { + "hint": "Possible completions:\n[3]", + "options": [], + "type": "string_or_number", + "current_value": "3", + "updated_at": 1778222517 + }, + "cable template us-rf-port A-U2O ofdma-channel 0 ranging-backoff": { + "hint": "Possible completions:\n[2]", + "options": [], + "type": "string_or_number", + "current_value": "2", + "updated_at": 1778222517 + }, + "cable template us-rf-port A-U2O ofdma-channel 1 admin-state": { + "hint": "Description: Administrative State of the ofdma channel\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222517 + }, + "cable template us-rf-port A-U2O ofdma-channel 1 modulation-profile": { + "hint": "Description: Reference to mod-prof-ofdma\nPossible completions:\n[403]\n<401..499> OFDMA modulation profile\n401\n403\n408\n409\n410\n411\n412\n413\n414\n415\n416\n417\n418\n419\n420\n421\n428\n429\n432\n433\n\u001b[7m--More--\u001b[27m\b\b\b\b\b\b\b\b \b\b\b\b\b\b\b\b 435\n444\n450\n451\n461\n466\n487\n488\n499", + "options": [], + "type": "string_or_number", + "current_value": "403", + "updated_at": 1778222517 + }, + "cable template us-rf-port A-U2O ofdma-channel 1 target-power-density": { + "hint": "Description: Configures the upstream received power density\nPossible completions:\n<-13.0..19.0> Upstream received power density[-6.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222517 + }, + "cable template us-rf-port A-U2O ofdma-channel 1 frequency-range-mhz": { + "hint": "Description: Define the lower boundary frequency in MHz of ofdma-channel\nPossible completions:\n<5.0..197.6> Lower boundary frequency in MHz[108.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222517 + }, + "cable template us-rf-port A-U2O ofdma-channel 1 transmit-backoff": { + "hint": "Possible completions:\n[3]", + "options": [], + "type": "string_or_number", + "current_value": "3", + "updated_at": 1778222517 + }, + "cable template us-rf-port A-U2O ofdma-channel 1 ranging-backoff": { + "hint": "Possible completions:\n[2]", + "options": [], + "type": "string_or_number", + "current_value": "2", + "updated_at": 1778222517 + }, + "cable template us-rf-port A-U5 admin-state": { + "hint": "Description: Administrative State of the US RF port [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222517 + }, + "cable template us-rf-port A-U5 base-target-rx-power-dbmv": { + "hint": "Description: Base port power level in dB per 1.6 MHz of RF bandwith\nPossible completions:\n[8.0]", + "options": [], + "type": "string_or_number", + "current_value": "8.0", + "updated_at": 1778222517 + }, + "cable template us-rf-port A-U5 us-phy-channel 0 admin-state": { + "hint": "Description: Administrative State of the upstream physical channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222517 + }, + "cable template us-rf-port A-U5 us-phy-channel 0 frequency-mhz": { + "hint": "Description: Define the center RF frequency in MHz of us-phy-channel\nPossible completions:\n[51.0]", + "options": [], + "type": "string_or_number", + "current_value": "51.0", + "updated_at": 1778222517 + }, + "cable template us-rf-port A-U5 us-phy-channel 0 power-level-db": { + "hint": "Description: Decimal number between -13.0 - 40.0 with steps of 0.1 dB\nPossible completions:\n[0.0]", + "options": [], + "type": "string_or_number", + "current_value": "0.0", + "updated_at": 1778222517 + }, + "cable template us-rf-port A-U5 us-phy-channel 0 width-mhz": { + "hint": "Description: Width of the us-phy-channel in MHz\nPossible completions:\n[6.400] 1.600 3.200 6.400", + "options": [ + "1.600", + "3.200", + "6.400" + ], + "type": "list", + "current_value": "6.400", + "updated_at": 1778222568 + }, + "cable template us-rf-port A-U5 us-phy-channel 0 us-logical-channel 0 admin-state": { + "hint": "Description: Administrative State of the upstream logical channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222568 + }, + "cable template us-rf-port A-U5 us-phy-channel 0 us-logical-channel 0 ingress-cancellation": { + "hint": "Description: Enable/Disable ingress cancellation\nPossible completions:\n[enabled]\ndisabled\nenabled\ninterval-msec Ingress Cancellation Interval in msec", + "options": [ + "disabled", + "enabled", + "interval-msec" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778222568 + }, + "cable template us-rf-port A-U5 us-phy-channel 0 us-logical-channel 0 modulation-profile": { + "hint": "Description: Primary Modulation Profile index\nPossible completions:\n[231]\n228\n229\n231\n266\nsecondary Secondary Modulation Profile index\ntertiary Tertiary Modulation Profile index", + "options": [ + "228", + "229", + "231", + "266", + "secondary", + "tertiary" + ], + "type": "list", + "current_value": "231", + "updated_at": 1778222568 + }, + "cable template us-rf-port A-U5 us-phy-channel 0 us-logical-channel 0 pre-equalization": { + "hint": "Description: US pre Equalization\nPossible completions:\n[enabled]\ndisabled\nenabled\nscale-exp Binary exponent of scale factor of 1/(2^exp) the CMTS reduces each pre-equalization\nsnr-threshold-db The SNR threshold the CMTS sends pre-equalization adjustment to the CM", + "options": [ + "disabled", + "enabled", + "scale-exp", + "snr-threshold-db" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778222568 + }, + "cable template us-rf-port A-U5 us-phy-channel 0 us-logical-channel 0 slot-size": { + "hint": "Description: Number of 6.25 microseconds ticks\nPossible completions:\n[4]", + "options": [], + "type": "string_or_number", + "current_value": "4", + "updated_at": 1778222568 + }, + "cable template us-rf-port A-U5 us-phy-channel 0 us-logical-channel 0 transmit-backoff": { + "hint": "Possible completions:\n[2]", + "options": [], + "type": "string_or_number", + "current_value": "2", + "updated_at": 1778222568 + }, + "cable template us-rf-port A-U5 us-phy-channel 0 us-logical-channel 0 us-channel-type": { + "hint": "Description: Advertised Upstream Channel Descriptor\nPossible completions:\n[atdma] atdma tdma tdma-atdma", + "options": [ + "atdma", + "tdma", + "tdma-atdma" + ], + "type": "list", + "current_value": "atdma", + "updated_at": 1778222568 + }, + "cable template us-rf-port A-U5 us-phy-channel 0 us-logical-channel 0 ranging-backoff": { + "hint": "Possible completions:\n[3]", + "options": [], + "type": "string_or_number", + "current_value": "3", + "updated_at": 1778222568 + }, + "cable template us-rf-port A-U5 us-phy-channel 1 admin-state": { + "hint": "Description: Administrative State of the upstream physical channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222568 + }, + "cable template us-rf-port A-U5 us-phy-channel 1 frequency-mhz": { + "hint": "Description: Define the center RF frequency in MHz of us-phy-channel\nPossible completions:\n[44.6]", + "options": [], + "type": "string_or_number", + "current_value": "44.6", + "updated_at": 1778222568 + }, + "cable template us-rf-port A-U5 us-phy-channel 1 power-level-db": { + "hint": "Description: Decimal number between -13.0 - 40.0 with steps of 0.1 dB\nPossible completions:\n[0.0]", + "options": [], + "type": "string_or_number", + "current_value": "0.0", + "updated_at": 1778222568 + }, + "cable template us-rf-port A-U5 us-phy-channel 1 width-mhz": { + "hint": "Description: Width of the us-phy-channel in MHz\nPossible completions:\n[6.400] 1.600 3.200 6.400", + "options": [ + "1.600", + "3.200", + "6.400" + ], + "type": "list", + "current_value": "6.400", + "updated_at": 1778222568 + }, + "cable template us-rf-port A-U5 us-phy-channel 1 us-logical-channel 0 admin-state": { + "hint": "Description: Administrative State of the upstream logical channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222568 + }, + "cable template us-rf-port A-U5 us-phy-channel 1 us-logical-channel 0 ingress-cancellation": { + "hint": "Description: Enable/Disable ingress cancellation\nPossible completions:\n[enabled]\ndisabled\nenabled\ninterval-msec Ingress Cancellation Interval in msec", + "options": [ + "disabled", + "enabled", + "interval-msec" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778222568 + }, + "cable template us-rf-port A-U5 us-phy-channel 1 us-logical-channel 0 modulation-profile": { + "hint": "Description: Primary Modulation Profile index\nPossible completions:\n[231]\n228\n229\n231\n266\nsecondary Secondary Modulation Profile index\ntertiary Tertiary Modulation Profile index", + "options": [ + "228", + "229", + "231", + "266", + "secondary", + "tertiary" + ], + "type": "list", + "current_value": "231", + "updated_at": 1778222568 + }, + "cable template us-rf-port A-U5 us-phy-channel 1 us-logical-channel 0 pre-equalization": { + "hint": "Description: US pre Equalization\nPossible completions:\n[enabled]\ndisabled\nenabled\nscale-exp Binary exponent of scale factor of 1/(2^exp) the CMTS reduces each pre-equalization\nsnr-threshold-db The SNR threshold the CMTS sends pre-equalization adjustment to the CM", + "options": [ + "disabled", + "enabled", + "scale-exp", + "snr-threshold-db" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778222568 + }, + "cable template us-rf-port A-U5 us-phy-channel 1 us-logical-channel 0 slot-size": { + "hint": "Description: Number of 6.25 microseconds ticks\nPossible completions:\n[4]", + "options": [], + "type": "string_or_number", + "current_value": "4", + "updated_at": 1778222568 + }, + "cable template us-rf-port A-U5 us-phy-channel 1 us-logical-channel 0 transmit-backoff": { + "hint": "Possible completions:\n[2]", + "options": [], + "type": "string_or_number", + "current_value": "2", + "updated_at": 1778222568 + }, + "cable template us-rf-port A-U5 us-phy-channel 1 us-logical-channel 0 us-channel-type": { + "hint": "Description: Advertised Upstream Channel Descriptor\nPossible completions:\n[atdma] atdma tdma tdma-atdma", + "options": [ + "atdma", + "tdma", + "tdma-atdma" + ], + "type": "list", + "current_value": "atdma", + "updated_at": 1778222568 + }, + "cable template us-rf-port A-U5 us-phy-channel 1 us-logical-channel 0 ranging-backoff": { + "hint": "Possible completions:\n[3]", + "options": [], + "type": "string_or_number", + "current_value": "3", + "updated_at": 1778222568 + }, + "cable template us-rf-port A-U5 us-phy-channel 2 admin-state": { + "hint": "Description: Administrative State of the upstream physical channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222568 + }, + "cable template us-rf-port A-U5 us-phy-channel 2 frequency-mhz": { + "hint": "Description: Define the center RF frequency in MHz of us-phy-channel\nPossible completions:\n[37.2]", + "options": [], + "type": "string_or_number", + "current_value": "37.2", + "updated_at": 1778222568 + }, + "cable template us-rf-port A-U5 us-phy-channel 2 power-level-db": { + "hint": "Description: Decimal number between -13.0 - 40.0 with steps of 0.1 dB\nPossible completions:\n[0.0]", + "options": [], + "type": "string_or_number", + "current_value": "0.0", + "updated_at": 1778222568 + }, + "cable template us-rf-port A-U5 us-phy-channel 2 width-mhz": { + "hint": "Description: Width of the us-phy-channel in MHz\nPossible completions:\n[6.400] 1.600 3.200 6.400", + "options": [ + "1.600", + "3.200", + "6.400" + ], + "type": "list", + "current_value": "6.400", + "updated_at": 1778222568 + }, + "cable template us-rf-port A-U5 us-phy-channel 2 us-logical-channel 0 admin-state": { + "hint": "Description: Administrative State of the upstream logical channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222568 + }, + "cable template us-rf-port A-U5 us-phy-channel 2 us-logical-channel 0 ingress-cancellation": { + "hint": "Description: Enable/Disable ingress cancellation\nPossible completions:\n[enabled]\ndisabled\nenabled\ninterval-msec Ingress Cancellation Interval in msec", + "options": [ + "disabled", + "enabled", + "interval-msec" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778222568 + }, + "cable template us-rf-port A-U5 us-phy-channel 2 us-logical-channel 0 modulation-profile": { + "hint": "Description: Primary Modulation Profile index\nPossible completions:\n[231]\n228\n229\n231\n266\nsecondary Secondary Modulation Profile index\ntertiary Tertiary Modulation Profile index", + "options": [ + "228", + "229", + "231", + "266", + "secondary", + "tertiary" + ], + "type": "list", + "current_value": "231", + "updated_at": 1778222568 + }, + "cable template us-rf-port A-U5 us-phy-channel 2 us-logical-channel 0 pre-equalization": { + "hint": "Description: US pre Equalization\nPossible completions:\n[enabled]\ndisabled\nenabled\nscale-exp Binary exponent of scale factor of 1/(2^exp) the CMTS reduces each pre-equalization\nsnr-threshold-db The SNR threshold the CMTS sends pre-equalization adjustment to the CM", + "options": [ + "disabled", + "enabled", + "scale-exp", + "snr-threshold-db" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778222568 + }, + "cable template us-rf-port A-U5 us-phy-channel 2 us-logical-channel 0 slot-size": { + "hint": "Description: Number of 6.25 microseconds ticks\nPossible completions:\n[2]", + "options": [], + "type": "string_or_number", + "current_value": "2", + "updated_at": 1778222568 + }, + "cable template us-rf-port A-U5 us-phy-channel 2 us-logical-channel 0 transmit-backoff": { + "hint": "Possible completions:\n[2]", + "options": [], + "type": "string_or_number", + "current_value": "2", + "updated_at": 1778222618 + }, + "cable template us-rf-port A-U5 us-phy-channel 2 us-logical-channel 0 us-channel-type": { + "hint": "Description: Advertised Upstream Channel Descriptor\nPossible completions:\n[atdma] atdma tdma tdma-atdma", + "options": [ + "atdma", + "tdma", + "tdma-atdma" + ], + "type": "list", + "current_value": "atdma", + "updated_at": 1778222618 + }, + "cable template us-rf-port A-U5 us-phy-channel 2 us-logical-channel 0 ranging-backoff": { + "hint": "Possible completions:\n[3]", + "options": [], + "type": "string_or_number", + "current_value": "3", + "updated_at": 1778222618 + }, + "cable template us-rf-port A-U5 us-phy-channel 3 admin-state": { + "hint": "Description: Administrative State of the upstream physical channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222618 + }, + "cable template us-rf-port A-U5 us-phy-channel 3 frequency-mhz": { + "hint": "Description: Define the center RF frequency in MHz of us-phy-channel\nPossible completions:\n[30.8]", + "options": [], + "type": "string_or_number", + "current_value": "30.8", + "updated_at": 1778222618 + }, + "cable template us-rf-port A-U5 us-phy-channel 3 power-level-db": { + "hint": "Description: Decimal number between -13.0 - 40.0 with steps of 0.1 dB\nPossible completions:\n[0.0]", + "options": [], + "type": "string_or_number", + "current_value": "0.0", + "updated_at": 1778222618 + }, + "cable template us-rf-port A-U5 us-phy-channel 3 width-mhz": { + "hint": "Description: Width of the us-phy-channel in MHz\nPossible completions:\n[6.400] 1.600 3.200 6.400", + "options": [ + "1.600", + "3.200", + "6.400" + ], + "type": "list", + "current_value": "6.400", + "updated_at": 1778222618 + }, + "cable template us-rf-port A-U5 us-phy-channel 3 us-logical-channel 0 admin-state": { + "hint": "Description: Administrative State of the upstream logical channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222618 + }, + "cable template us-rf-port A-U5 us-phy-channel 3 us-logical-channel 0 ingress-cancellation": { + "hint": "Description: Enable/Disable ingress cancellation\nPossible completions:\n[enabled]\ndisabled\nenabled\ninterval-msec Ingress Cancellation Interval in msec", + "options": [ + "disabled", + "enabled", + "interval-msec" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778222618 + }, + "cable template us-rf-port A-U5 us-phy-channel 3 us-logical-channel 0 modulation-profile": { + "hint": "Description: Primary Modulation Profile index\nPossible completions:\n[231]\n228\n229\n231\n266\nsecondary Secondary Modulation Profile index\ntertiary Tertiary Modulation Profile index", + "options": [ + "228", + "229", + "231", + "266", + "secondary", + "tertiary" + ], + "type": "list", + "current_value": "231", + "updated_at": 1778222618 + }, + "cable template us-rf-port A-U5 us-phy-channel 3 us-logical-channel 0 pre-equalization": { + "hint": "Description: US pre Equalization\nPossible completions:\n[enabled]\ndisabled\nenabled\nscale-exp Binary exponent of scale factor of 1/(2^exp) the CMTS reduces each pre-equalization\nsnr-threshold-db The SNR threshold the CMTS sends pre-equalization adjustment to the CM", + "options": [ + "disabled", + "enabled", + "scale-exp", + "snr-threshold-db" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778222618 + }, + "cable template us-rf-port A-U5 us-phy-channel 3 us-logical-channel 0 slot-size": { + "hint": "Description: Number of 6.25 microseconds ticks\nPossible completions:\n[2]", + "options": [], + "type": "string_or_number", + "current_value": "2", + "updated_at": 1778222618 + }, + "cable template us-rf-port A-U5 us-phy-channel 3 us-logical-channel 0 transmit-backoff": { + "hint": "Possible completions:\n[2]", + "options": [], + "type": "string_or_number", + "current_value": "2", + "updated_at": 1778222618 + }, + "cable template us-rf-port A-U5 us-phy-channel 3 us-logical-channel 0 us-channel-type": { + "hint": "Description: Advertised Upstream Channel Descriptor\nPossible completions:\n[atdma] atdma tdma tdma-atdma", + "options": [ + "atdma", + "tdma", + "tdma-atdma" + ], + "type": "list", + "current_value": "atdma", + "updated_at": 1778222618 + }, + "cable template us-rf-port A-U5 us-phy-channel 3 us-logical-channel 0 ranging-backoff": { + "hint": "Possible completions:\n[3]", + "options": [], + "type": "string_or_number", + "current_value": "3", + "updated_at": 1778222618 + }, + "cable template us-rf-port A-U5 ofdma-channel 0 admin-state": { + "hint": "Description: Administrative State of the ofdma channel\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222618 + }, + "cable template us-rf-port A-U5 ofdma-channel 0 modulation-profile": { + "hint": "Description: Reference to mod-prof-ofdma\nPossible completions:\n[403]\n<401..499> OFDMA modulation profile\n401\n403\n408\n409\n410\n411\n412\n413\n414\n415\n416\n417\n418\n419\n420\n421\n428\n429\n432\n433\n\u001b[7m--More--\u001b[27m\b\b\b\b\b\b\b\b \b\b\b\b\b\b\b\b 435\n444\n450\n451\n461\n466\n487\n488\n499", + "options": [], + "type": "string_or_number", + "current_value": "403", + "updated_at": 1778222618 + }, + "cable template us-rf-port A-U5 ofdma-channel 0 target-power-density": { + "hint": "Description: Configures the upstream received power density\nPossible completions:\n<-13.0..19.0> Upstream received power density[-6.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222618 + }, + "cable template us-rf-port A-U5 ofdma-channel 0 frequency-range-mhz": { + "hint": "Description: Define the lower boundary frequency in MHz of ofdma-channel\nPossible completions:\n<5.0..197.6> Lower boundary frequency in MHz[8.2]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222618 + }, + "cable template us-rf-port A-U5 ofdma-channel 0 transmit-backoff": { + "hint": "Possible completions:\n[3]", + "options": [], + "type": "string_or_number", + "current_value": "3", + "updated_at": 1778222618 + }, + "cable template us-rf-port A-U5 ofdma-channel 0 ranging-backoff": { + "hint": "Possible completions:\n[2]", + "options": [], + "type": "string_or_number", + "current_value": "2", + "updated_at": 1778222618 + }, + "cable template us-rf-port B-U2O admin-state": { + "hint": "Description: Administrative State of the US RF port [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222618 + }, + "cable template us-rf-port B-U2O base-target-rx-power-dbmv": { + "hint": "Description: Base port power level in dB per 1.6 MHz of RF bandwith\nPossible completions:\n[8.0]", + "options": [], + "type": "string_or_number", + "current_value": "8.0", + "updated_at": 1778222618 + }, + "cable template us-rf-port B-U2O ofdma-channel 0 admin-state": { + "hint": "Description: Administrative State of the ofdma channel\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222618 + }, + "cable template us-rf-port B-U2O ofdma-channel 0 modulation-profile": { + "hint": "Description: Reference to mod-prof-ofdma\nPossible completions:\n[403]\n<401..499> OFDMA modulation profile\n401\n403\n408\n409\n410\n411\n412\n413\n414\n415\n416\n417\n418\n419\n420\n421\n428\n429\n432\n433\n\u001b[7m--More--\u001b[27m\b\b\b\b\b\b\b\b \b\b\b\b\b\b\b\b 435\n444\n450\n451\n461\n466\n487\n488\n499", + "options": [], + "type": "string_or_number", + "current_value": "403", + "updated_at": 1778222618 + }, + "cable template us-rf-port B-U2O ofdma-channel 0 target-power-density": { + "hint": "Description: Configures the upstream received power density\nPossible completions:\n<-13.0..19.0> Upstream received power density[-6.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222618 + }, + "cable template us-rf-port B-U2O ofdma-channel 0 frequency-range-mhz": { + "hint": "Description: Define the lower boundary frequency in MHz of ofdma-channel\nPossible completions:\n<5.0..197.6> Lower boundary frequency in MHz[5.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222618 + }, + "cable template us-rf-port B-U2O ofdma-channel 0 transmit-backoff": { + "hint": "Possible completions:\n[3]", + "options": [], + "type": "string_or_number", + "current_value": "3", + "updated_at": 1778222618 + }, + "cable template us-rf-port B-U2O ofdma-channel 0 ranging-backoff": { + "hint": "Possible completions:\n[2]", + "options": [], + "type": "string_or_number", + "current_value": "2", + "updated_at": 1778222618 + }, + "cable template us-rf-port B-U2O ofdma-channel 1 admin-state": { + "hint": "Description: Administrative State of the ofdma channel\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222618 + }, + "cable template us-rf-port B-U2O ofdma-channel 1 modulation-profile": { + "hint": "Description: Reference to mod-prof-ofdma\nPossible completions:\n[403]\n<401..499> OFDMA modulation profile\n401\n403\n408\n409\n410\n411\n412\n413\n414\n415\n416\n417\n418\n419\n420\n421\n428\n429\n432\n433\n\u001b[7m--More--\u001b[27m\b\b\b\b\b\b\b\b \b\b\b\b\b\b\b\b 435\n444\n450\n451\n461\n466\n487\n488\n499", + "options": [], + "type": "string_or_number", + "current_value": "403", + "updated_at": 1778222669 + }, + "cable template us-rf-port B-U2O ofdma-channel 1 target-power-density": { + "hint": "Description: Configures the upstream received power density\nPossible completions:\n<-13.0..19.0> Upstream received power density[-6.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222669 + }, + "cable template us-rf-port B-U2O ofdma-channel 1 frequency-range-mhz": { + "hint": "Description: Define the lower boundary frequency in MHz of ofdma-channel\nPossible completions:\n<5.0..197.6> Lower boundary frequency in MHz[108.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222669 + }, + "cable template us-rf-port B-U2O ofdma-channel 1 transmit-backoff": { + "hint": "Possible completions:\n[3]", + "options": [], + "type": "string_or_number", + "current_value": "3", + "updated_at": 1778222669 + }, + "cable template us-rf-port B-U2O ofdma-channel 1 ranging-backoff": { + "hint": "Possible completions:\n[2]", + "options": [], + "type": "string_or_number", + "current_value": "2", + "updated_at": 1778222669 + }, + "cable template us-rf-port B-U6S2O admin-state": { + "hint": "Description: Administrative State of the US RF port [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222669 + }, + "cable template us-rf-port B-U6S2O base-target-rx-power-dbmv": { + "hint": "Description: Base port power level in dB per 1.6 MHz of RF bandwith\nPossible completions:\n[0.0]", + "options": [], + "type": "string_or_number", + "current_value": "0.0", + "updated_at": 1778222669 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 0 admin-state": { + "hint": "Description: Administrative State of the upstream physical channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222669 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 0 frequency-mhz": { + "hint": "Description: Define the center RF frequency in MHz of us-phy-channel\nPossible completions:\n[11.6]", + "options": [], + "type": "string_or_number", + "current_value": "11.6", + "updated_at": 1778222669 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 0 power-level-db": { + "hint": "Description: Decimal number between -13.0 - 40.0 with steps of 0.1 dB\nPossible completions:\n[0.0]", + "options": [], + "type": "string_or_number", + "current_value": "0.0", + "updated_at": 1778222669 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 0 width-mhz": { + "hint": "Description: Width of the us-phy-channel in MHz\nPossible completions:\n[3.200] 1.600 3.200 6.400", + "options": [ + "1.600", + "3.200", + "6.400" + ], + "type": "list", + "current_value": "3.200", + "updated_at": 1778222669 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 0 us-logical-channel 0 admin-state": { + "hint": "Description: Administrative State of the upstream logical channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222669 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 0 us-logical-channel 0 ingress-cancellation": { + "hint": "Description: Enable/Disable ingress cancellation\nPossible completions:\n[enabled]\ndisabled\nenabled\ninterval-msec Ingress Cancellation Interval in msec", + "options": [ + "disabled", + "enabled", + "interval-msec" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778222669 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 0 us-logical-channel 0 modulation-profile": { + "hint": "Description: Primary Modulation Profile index\nPossible completions:\n[231]\n228\n229\n231\n266\nsecondary Secondary Modulation Profile index\ntertiary Tertiary Modulation Profile index", + "options": [ + "228", + "229", + "231", + "266", + "secondary", + "tertiary" + ], + "type": "list", + "current_value": "231", + "updated_at": 1778222669 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 0 us-logical-channel 0 pre-equalization": { + "hint": "Description: US pre Equalization\nPossible completions:\n[enabled]\ndisabled\nenabled\nscale-exp Binary exponent of scale factor of 1/(2^exp) the CMTS reduces each pre-equalization\nsnr-threshold-db The SNR threshold the CMTS sends pre-equalization adjustment to the CM", + "options": [ + "disabled", + "enabled", + "scale-exp", + "snr-threshold-db" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778222669 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 0 us-logical-channel 0 slot-size": { + "hint": "Description: Number of 6.25 microseconds ticks\nPossible completions:\n[4]", + "options": [], + "type": "string_or_number", + "current_value": "4", + "updated_at": 1778222669 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 0 us-logical-channel 0 transmit-backoff": { + "hint": "Possible completions:\n[2]", + "options": [], + "type": "string_or_number", + "current_value": "2", + "updated_at": 1778222669 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 0 us-logical-channel 0 us-channel-type": { + "hint": "Description: Advertised Upstream Channel Descriptor\nPossible completions:\n[atdma] atdma tdma tdma-atdma", + "options": [ + "atdma", + "tdma", + "tdma-atdma" + ], + "type": "list", + "current_value": "atdma", + "updated_at": 1778222669 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 0 us-logical-channel 0 ranging-backoff": { + "hint": "Possible completions:\n[3]", + "options": [], + "type": "string_or_number", + "current_value": "3", + "updated_at": 1778222669 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 1 admin-state": { + "hint": "Description: Administrative State of the upstream physical channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222669 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 1 frequency-mhz": { + "hint": "Description: Define the center RF frequency in MHz of us-phy-channel\nPossible completions:\n[14.8]", + "options": [], + "type": "string_or_number", + "current_value": "14.8", + "updated_at": 1778222669 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 1 power-level-db": { + "hint": "Description: Decimal number between -13.0 - 40.0 with steps of 0.1 dB\nPossible completions:\n[0.0]", + "options": [], + "type": "string_or_number", + "current_value": "0.0", + "updated_at": 1778222669 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 1 width-mhz": { + "hint": "Description: Width of the us-phy-channel in MHz\nPossible completions:\n[3.200] 1.600 3.200 6.400", + "options": [ + "1.600", + "3.200", + "6.400" + ], + "type": "list", + "current_value": "3.200", + "updated_at": 1778222669 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 1 us-logical-channel 0 admin-state": { + "hint": "Description: Administrative State of the upstream logical channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222669 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 1 us-logical-channel 0 ingress-cancellation": { + "hint": "Description: Enable/Disable ingress cancellation\nPossible completions:\n[enabled]\ndisabled\nenabled\ninterval-msec Ingress Cancellation Interval in msec", + "options": [ + "disabled", + "enabled", + "interval-msec" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778222669 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 1 us-logical-channel 0 modulation-profile": { + "hint": "Description: Primary Modulation Profile index\nPossible completions:\n[231]\n228\n229\n231\n266\nsecondary Secondary Modulation Profile index\ntertiary Tertiary Modulation Profile index", + "options": [ + "228", + "229", + "231", + "266", + "secondary", + "tertiary" + ], + "type": "list", + "current_value": "231", + "updated_at": 1778222669 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 1 us-logical-channel 0 pre-equalization": { + "hint": "Description: US pre Equalization\nPossible completions:\n[enabled]\ndisabled\nenabled\nscale-exp Binary exponent of scale factor of 1/(2^exp) the CMTS reduces each pre-equalization\nsnr-threshold-db The SNR threshold the CMTS sends pre-equalization adjustment to the CM", + "options": [ + "disabled", + "enabled", + "scale-exp", + "snr-threshold-db" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778222669 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 1 us-logical-channel 0 slot-size": { + "hint": "Description: Number of 6.25 microseconds ticks\nPossible completions:\n[4]", + "options": [], + "type": "string_or_number", + "current_value": "4", + "updated_at": 1778222669 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 1 us-logical-channel 0 transmit-backoff": { + "hint": "Possible completions:\n[2]", + "options": [], + "type": "string_or_number", + "current_value": "2", + "updated_at": 1778222669 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 1 us-logical-channel 0 us-channel-type": { + "hint": "Description: Advertised Upstream Channel Descriptor\nPossible completions:\n[atdma] atdma tdma tdma-atdma", + "options": [ + "atdma", + "tdma", + "tdma-atdma" + ], + "type": "list", + "current_value": "atdma", + "updated_at": 1778222669 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 1 us-logical-channel 0 ranging-backoff": { + "hint": "Possible completions:\n[3]", + "options": [], + "type": "string_or_number", + "current_value": "3", + "updated_at": 1778222720 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 2 admin-state": { + "hint": "Description: Administrative State of the upstream physical channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222720 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 2 frequency-mhz": { + "hint": "Description: Define the center RF frequency in MHz of us-phy-channel\nPossible completions:\n[19.6]", + "options": [], + "type": "string_or_number", + "current_value": "19.6", + "updated_at": 1778222720 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 2 power-level-db": { + "hint": "Description: Decimal number between -13.0 - 40.0 with steps of 0.1 dB\nPossible completions:\n[-3.0]", + "options": [], + "type": "string_or_number", + "current_value": "-3.0", + "updated_at": 1778222720 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 2 width-mhz": { + "hint": "Description: Width of the us-phy-channel in MHz\nPossible completions:\n[6.400] 1.600 3.200 6.400", + "options": [ + "1.600", + "3.200", + "6.400" + ], + "type": "list", + "current_value": "6.400", + "updated_at": 1778222720 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 2 us-logical-channel 0 admin-state": { + "hint": "Description: Administrative State of the upstream logical channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222720 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 2 us-logical-channel 0 ingress-cancellation": { + "hint": "Description: Enable/Disable ingress cancellation\nPossible completions:\n[enabled]\ndisabled\nenabled\ninterval-msec Ingress Cancellation Interval in msec", + "options": [ + "disabled", + "enabled", + "interval-msec" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778222720 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 2 us-logical-channel 0 modulation-profile": { + "hint": "Description: Primary Modulation Profile index\nPossible completions:\n[231]\n228\n229\n231\n266\nsecondary Secondary Modulation Profile index\ntertiary Tertiary Modulation Profile index", + "options": [ + "228", + "229", + "231", + "266", + "secondary", + "tertiary" + ], + "type": "list", + "current_value": "231", + "updated_at": 1778222720 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 2 us-logical-channel 0 pre-equalization": { + "hint": "Description: US pre Equalization\nPossible completions:\n[enabled]\ndisabled\nenabled\nscale-exp Binary exponent of scale factor of 1/(2^exp) the CMTS reduces each pre-equalization\nsnr-threshold-db The SNR threshold the CMTS sends pre-equalization adjustment to the CM", + "options": [ + "disabled", + "enabled", + "scale-exp", + "snr-threshold-db" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778222720 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 2 us-logical-channel 0 slot-size": { + "hint": "Description: Number of 6.25 microseconds ticks\nPossible completions:\n[2]", + "options": [], + "type": "string_or_number", + "current_value": "2", + "updated_at": 1778222720 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 2 us-logical-channel 0 transmit-backoff": { + "hint": "Possible completions:\n[2]", + "options": [], + "type": "string_or_number", + "current_value": "2", + "updated_at": 1778222720 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 2 us-logical-channel 0 us-channel-type": { + "hint": "Description: Advertised Upstream Channel Descriptor\nPossible completions:\n[atdma] atdma tdma tdma-atdma", + "options": [ + "atdma", + "tdma", + "tdma-atdma" + ], + "type": "list", + "current_value": "atdma", + "updated_at": 1778222720 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 2 us-logical-channel 0 ranging-backoff": { + "hint": "Possible completions:\n[3]", + "options": [], + "type": "string_or_number", + "current_value": "3", + "updated_at": 1778222720 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 3 admin-state": { + "hint": "Description: Administrative State of the upstream physical channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222720 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 3 frequency-mhz": { + "hint": "Description: Define the center RF frequency in MHz of us-phy-channel\nPossible completions:\n[26.0]", + "options": [], + "type": "string_or_number", + "current_value": "26.0", + "updated_at": 1778222720 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 3 power-level-db": { + "hint": "Description: Decimal number between -13.0 - 40.0 with steps of 0.1 dB\nPossible completions:\n[-3.0]", + "options": [], + "type": "string_or_number", + "current_value": "-3.0", + "updated_at": 1778222720 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 3 width-mhz": { + "hint": "Description: Width of the us-phy-channel in MHz\nPossible completions:\n[6.400] 1.600 3.200 6.400", + "options": [ + "1.600", + "3.200", + "6.400" + ], + "type": "list", + "current_value": "6.400", + "updated_at": 1778222720 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 3 us-logical-channel 0 admin-state": { + "hint": "Description: Administrative State of the upstream logical channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222720 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 3 us-logical-channel 0 ingress-cancellation": { + "hint": "Description: Enable/Disable ingress cancellation\nPossible completions:\n[enabled]\ndisabled\nenabled\ninterval-msec Ingress Cancellation Interval in msec", + "options": [ + "disabled", + "enabled", + "interval-msec" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778222720 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 3 us-logical-channel 0 modulation-profile": { + "hint": "Description: Primary Modulation Profile index\nPossible completions:\n[231]\n228\n229\n231\n266\nsecondary Secondary Modulation Profile index\ntertiary Tertiary Modulation Profile index", + "options": [ + "228", + "229", + "231", + "266", + "secondary", + "tertiary" + ], + "type": "list", + "current_value": "231", + "updated_at": 1778222720 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 3 us-logical-channel 0 pre-equalization": { + "hint": "Description: US pre Equalization\nPossible completions:\n[enabled]\ndisabled\nenabled\nscale-exp Binary exponent of scale factor of 1/(2^exp) the CMTS reduces each pre-equalization\nsnr-threshold-db The SNR threshold the CMTS sends pre-equalization adjustment to the CM", + "options": [ + "disabled", + "enabled", + "scale-exp", + "snr-threshold-db" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778222720 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 3 us-logical-channel 0 slot-size": { + "hint": "Description: Number of 6.25 microseconds ticks\nPossible completions:\n[2]", + "options": [], + "type": "string_or_number", + "current_value": "2", + "updated_at": 1778222720 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 3 us-logical-channel 0 transmit-backoff": { + "hint": "Possible completions:\n[2]", + "options": [], + "type": "string_or_number", + "current_value": "2", + "updated_at": 1778222720 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 3 us-logical-channel 0 us-channel-type": { + "hint": "Description: Advertised Upstream Channel Descriptor\nPossible completions:\n[atdma] atdma tdma tdma-atdma", + "options": [ + "atdma", + "tdma", + "tdma-atdma" + ], + "type": "list", + "current_value": "atdma", + "updated_at": 1778222720 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 3 us-logical-channel 0 ranging-backoff": { + "hint": "Possible completions:\n[3]", + "options": [], + "type": "string_or_number", + "current_value": "3", + "updated_at": 1778222720 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 4 admin-state": { + "hint": "Description: Administrative State of the upstream physical channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222720 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 4 frequency-mhz": { + "hint": "Description: Define the center RF frequency in MHz of us-phy-channel\nPossible completions:\n[32.4]", + "options": [], + "type": "string_or_number", + "current_value": "32.4", + "updated_at": 1778222720 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 4 power-level-db": { + "hint": "Description: Decimal number between -13.0 - 40.0 with steps of 0.1 dB\nPossible completions:\n[-3.0]", + "options": [], + "type": "string_or_number", + "current_value": "-3.0", + "updated_at": 1778222720 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 4 width-mhz": { + "hint": "Description: Width of the us-phy-channel in MHz\nPossible completions:\n[6.400] 1.600 3.200 6.400", + "options": [ + "1.600", + "3.200", + "6.400" + ], + "type": "list", + "current_value": "6.400", + "updated_at": 1778222720 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 4 us-logical-channel 0 admin-state": { + "hint": "Description: Administrative State of the upstream logical channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222720 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 4 us-logical-channel 0 ingress-cancellation": { + "hint": "Description: Enable/Disable ingress cancellation\nPossible completions:\n[enabled]\ndisabled\nenabled\ninterval-msec Ingress Cancellation Interval in msec", + "options": [ + "disabled", + "enabled", + "interval-msec" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778222771 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 4 us-logical-channel 0 modulation-profile": { + "hint": "Description: Primary Modulation Profile index\nPossible completions:\n[231]\n228\n229\n231\n266\nsecondary Secondary Modulation Profile index\ntertiary Tertiary Modulation Profile index", + "options": [ + "228", + "229", + "231", + "266", + "secondary", + "tertiary" + ], + "type": "list", + "current_value": "231", + "updated_at": 1778222771 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 4 us-logical-channel 0 pre-equalization": { + "hint": "Description: US pre Equalization\nPossible completions:\n[enabled]\ndisabled\nenabled\nscale-exp Binary exponent of scale factor of 1/(2^exp) the CMTS reduces each pre-equalization\nsnr-threshold-db The SNR threshold the CMTS sends pre-equalization adjustment to the CM", + "options": [ + "disabled", + "enabled", + "scale-exp", + "snr-threshold-db" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778222771 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 4 us-logical-channel 0 slot-size": { + "hint": "Description: Number of 6.25 microseconds ticks\nPossible completions:\n[2]", + "options": [], + "type": "string_or_number", + "current_value": "2", + "updated_at": 1778222771 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 4 us-logical-channel 0 transmit-backoff": { + "hint": "Possible completions:\n[2]", + "options": [], + "type": "string_or_number", + "current_value": "2", + "updated_at": 1778222771 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 4 us-logical-channel 0 us-channel-type": { + "hint": "Description: Advertised Upstream Channel Descriptor\nPossible completions:\n[atdma] atdma tdma tdma-atdma", + "options": [ + "atdma", + "tdma", + "tdma-atdma" + ], + "type": "list", + "current_value": "atdma", + "updated_at": 1778222771 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 4 us-logical-channel 0 ranging-backoff": { + "hint": "Possible completions:\n[3]", + "options": [], + "type": "string_or_number", + "current_value": "3", + "updated_at": 1778222771 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 5 admin-state": { + "hint": "Description: Administrative State of the upstream physical channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222771 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 5 frequency-mhz": { + "hint": "Description: Define the center RF frequency in MHz of us-phy-channel\nPossible completions:\n[38.8]", + "options": [], + "type": "string_or_number", + "current_value": "38.8", + "updated_at": 1778222771 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 5 power-level-db": { + "hint": "Description: Decimal number between -13.0 - 40.0 with steps of 0.1 dB\nPossible completions:\n[-3.0]", + "options": [], + "type": "string_or_number", + "current_value": "-3.0", + "updated_at": 1778222771 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 5 width-mhz": { + "hint": "Description: Width of the us-phy-channel in MHz\nPossible completions:\n[6.400] 1.600 3.200 6.400", + "options": [ + "1.600", + "3.200", + "6.400" + ], + "type": "list", + "current_value": "6.400", + "updated_at": 1778222771 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 5 us-logical-channel 0 admin-state": { + "hint": "Description: Administrative State of the upstream logical channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222771 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 5 us-logical-channel 0 ingress-cancellation": { + "hint": "Description: Enable/Disable ingress cancellation\nPossible completions:\n[enabled]\ndisabled\nenabled\ninterval-msec Ingress Cancellation Interval in msec", + "options": [ + "disabled", + "enabled", + "interval-msec" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778222771 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 5 us-logical-channel 0 modulation-profile": { + "hint": "Description: Primary Modulation Profile index\nPossible completions:\n[231]\n228\n229\n231\n266\nsecondary Secondary Modulation Profile index\ntertiary Tertiary Modulation Profile index", + "options": [ + "228", + "229", + "231", + "266", + "secondary", + "tertiary" + ], + "type": "list", + "current_value": "231", + "updated_at": 1778222771 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 5 us-logical-channel 0 pre-equalization": { + "hint": "Description: US pre Equalization\nPossible completions:\n[enabled]\ndisabled\nenabled\nscale-exp Binary exponent of scale factor of 1/(2^exp) the CMTS reduces each pre-equalization\nsnr-threshold-db The SNR threshold the CMTS sends pre-equalization adjustment to the CM", + "options": [ + "disabled", + "enabled", + "scale-exp", + "snr-threshold-db" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778222771 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 5 us-logical-channel 0 slot-size": { + "hint": "Description: Number of 6.25 microseconds ticks\nPossible completions:\n[2]", + "options": [], + "type": "string_or_number", + "current_value": "2", + "updated_at": 1778222771 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 5 us-logical-channel 0 transmit-backoff": { + "hint": "Possible completions:\n[2]", + "options": [], + "type": "string_or_number", + "current_value": "2", + "updated_at": 1778222771 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 5 us-logical-channel 0 us-channel-type": { + "hint": "Description: Advertised Upstream Channel Descriptor\nPossible completions:\n[atdma] atdma tdma tdma-atdma", + "options": [ + "atdma", + "tdma", + "tdma-atdma" + ], + "type": "list", + "current_value": "atdma", + "updated_at": 1778222771 + }, + "cable template us-rf-port B-U6S2O us-phy-channel 5 us-logical-channel 0 ranging-backoff": { + "hint": "Possible completions:\n[3]", + "options": [], + "type": "string_or_number", + "current_value": "3", + "updated_at": 1778222771 + }, + "cable template us-rf-port B-U6S2O ofdma-channel 0 admin-state": { + "hint": "Description: Administrative State of the ofdma channel\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222771 + }, + "cable template us-rf-port B-U6S2O ofdma-channel 0 modulation-profile": { + "hint": "Description: Reference to mod-prof-ofdma\nPossible completions:\n[403]\n<401..499> OFDMA modulation profile\n401\n403\n408\n409\n410\n411\n412\n413\n414\n415\n416\n417\n418\n419\n420\n421\n428\n429\n432\n433\n\u001b[7m--More--\u001b[27m\b\b\b\b\b\b\b\b \b\b\b\b\b\b\b\b 435\n444\n450\n451\n461\n466\n487\n488\n499", + "options": [], + "type": "string_or_number", + "current_value": "403", + "updated_at": 1778222771 + }, + "cable template us-rf-port B-U6S2O ofdma-channel 0 target-power-density": { + "hint": "Description: Configures the upstream received power density\nPossible completions:\n<-13.0..19.0> Upstream received power density[-6.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222771 + }, + "cable template us-rf-port B-U6S2O ofdma-channel 0 frequency-range-mhz": { + "hint": "Description: Define the lower boundary frequency in MHz of ofdma-channel\nPossible completions:\n<5.0..197.6> Lower boundary frequency in MHz[44.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222771 + }, + "cable template us-rf-port B-U6S2O ofdma-channel 0 transmit-backoff": { + "hint": "Possible completions:\n[3]", + "options": [], + "type": "string_or_number", + "current_value": "3", + "updated_at": 1778222771 + }, + "cable template us-rf-port B-U6S2O ofdma-channel 0 ranging-backoff": { + "hint": "Possible completions:\n[2]", + "options": [], + "type": "string_or_number", + "current_value": "2", + "updated_at": 1778222771 + }, + "cable template us-rf-port B-U6S2O ofdma-channel 1 admin-state": { + "hint": "Description: Administrative State of the ofdma channel\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222771 + }, + "cable template us-rf-port B-U6S2O ofdma-channel 1 modulation-profile": { + "hint": "Description: Reference to mod-prof-ofdma\nPossible completions:\n[403]\n<401..499> OFDMA modulation profile\n401\n403\n408\n409\n410\n411\n412\n413\n414\n415\n416\n417\n418\n419\n420\n421\n428\n429\n432\n433\n\u001b[7m--More--\u001b[27m\b\b\b\b\b\b\b\b \b\b\b\b\b\b\b\b 435\n444\n450\n451\n461\n466\n487\n488\n499", + "options": [], + "type": "string_or_number", + "current_value": "403", + "updated_at": 1778222771 + }, + "cable template us-rf-port B-U6S2O ofdma-channel 1 target-power-density": { + "hint": "Description: Configures the upstream received power density\nPossible completions:\n<-13.0..19.0> Upstream received power density[-6.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222771 + }, + "cable template us-rf-port B-U6S2O ofdma-channel 1 frequency-range-mhz": { + "hint": "Description: Define the lower boundary frequency in MHz of ofdma-channel\nPossible completions:\n<5.0..197.6> Lower boundary frequency in MHz[108.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222771 + }, + "cable template us-rf-port B-U6S2O ofdma-channel 1 transmit-backoff": { + "hint": "Possible completions:\n[3]", + "options": [], + "type": "string_or_number", + "current_value": "3", + "updated_at": 1778222771 + }, + "cable template us-rf-port B-U6S2O ofdma-channel 1 ranging-backoff": { + "hint": "Possible completions:\n[2]", + "options": [], + "type": "string_or_number", + "current_value": "2", + "updated_at": 1778222825 + }, + "cable template mac-domain U2O-D24S4O ds-primary-set": { + "hint": "Description: Primary Down Channels for the Mac Domain\nPossible completions:\nunsignedInt, 0 .. 157", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222825 + }, + "cable template mac-domain U2O-D24S4O ds-non-primary-set": { + "hint": "Description: Non Primary Down Channels for the Mac Domain\nPossible completions:\nunsignedInt, 0 .. 157", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222825 + }, + "cable template mac-domain U2O-D24S4O admin-state": { + "hint": "Description: Administrative State of the Mac Domain [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222825 + }, + "cable template mac-domain U2O-D24S4O bundle": { + "hint": "Description: Reference to top cable-bundle index\nPossible completions:\n[1] 1", + "options": [ + "1" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778222825 + }, + "cable template mac-domain U2O-D24S4O ip-provisioning-mode": { + "hint": "Description: IP Provisioning Mode for MAC Domain\nPossible completions:\n[dual-stack] alternate dual-stack ipv4-only ipv6-only", + "options": [ + "alternate", + "dual-stack", + "ipv4-only", + "ipv6-only" + ], + "type": "list", + "current_value": "dual-stack", + "updated_at": 1778222825 + }, + "cable template mac-domain U2O-D24S4O no": { + "hint": "", + "options": [], + "type": "unknown", + "current_value": null, + "updated_at": 1778222825 + }, + "cable template mac-domain U2O-D24S4O ds-ofdm-set": { + "hint": "Description: The primary OFDM Channels for the Mac Domain\nPossible completions:\nunsignedInt, 0 .. 7", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222825 + }, + "cable template mac-domain U2O-D24S4O us-ofdma-set": { + "hint": "Description: OFDM Channels for the Mac Domain\nPossible completions:\nunsignedInt, 0 .. 1", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222825 + }, + "cable template mac-domain U2O-D24S4O controller": { + "hint": "Possible completions:\ndynamic-bg\ndynamic-ofdma-mod-prof-hopping\ndynamic-us-mod-prof-hopping\ningress-cancellation-sid Ingress Cancellation SID [default 1ffd]\nsf-dynamic", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222825 + }, + "cable template mac-domain U2O-D24S4O ds-dynamic-bonding-group": { + "hint": "Description: Enable/Disable DS Dynamic Bonding Group\nPossible completions:\n[enabled]\ndisabled\nenabled\nresequencing-wait-msec DSID re-sequencing Wait Time in milliseconds\nwarning-threshold-msec DSID re-sequencing Warning Threshold in milliseconds", + "options": [ + "disabled", + "enabled", + "resequencing-wait-msec", + "warning-threshold-msec" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778222825 + }, + "cable template mac-domain U2O-D24S4O us-dynamic-bonding-group": { + "hint": "Possible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778222825 + }, + "cable template mac-domain U2O-D24S4O us-bonding-group U2A admin-state": { + "hint": "Description: Administrative State of UBG [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222825 + }, + "cable template mac-domain U2O-D24S4O us-bonding-group U2A provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-22", + "operator-23", + "operator-30", + "operator-31", + "reserved-3", + "reserved-10", + "reserved-11", + "reserved-12" + ], + "type": "list", + "current_value": "bonded", + "updated_at": 1778222825 + }, + "cable template mac-domain U2O-D24S4O us-bonding-group U2A ofdma-channel-set": { + "hint": "Description: UBG configured ofdma-channels\nPossible completions:\nunsignedShort, 0 .. 1", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222825 + }, + "cable template mac-domain U2O-D24S4O load-balance": { + "hint": "Possible completions:\ndownstream restricted upstream", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222825 + }, + "cable template mac-domain U2O-D2O admin-state": { + "hint": "Description: Administrative State of the Mac Domain [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222825 + }, + "cable template mac-domain U2O-D2O bundle": { + "hint": "Description: Reference to top cable-bundle index\nPossible completions:\n[1] 1", + "options": [ + "1" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778222825 + }, + "cable template mac-domain U2O-D2O ip-provisioning-mode": { + "hint": "Description: IP Provisioning Mode for MAC Domain\nPossible completions:\n[dual-stack] alternate dual-stack ipv4-only ipv6-only", + "options": [ + "alternate", + "dual-stack", + "ipv4-only", + "ipv6-only" + ], + "type": "list", + "current_value": "dual-stack", + "updated_at": 1778222825 + }, + "cable template mac-domain U2O-D2O no": { + "hint": "", + "options": [], + "type": "unknown", + "current_value": null, + "updated_at": 1778222825 + }, + "cable template mac-domain U2O-D2O ds-ofdm-set": { + "hint": "Description: The primary OFDM Channels for the Mac Domain\nPossible completions:\nunsignedInt, 0 .. 7", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222825 + }, + "cable template mac-domain U2O-D2O us-ofdma-set": { + "hint": "Description: OFDM Channels for the Mac Domain\nPossible completions:\nunsignedInt, 0 .. 1", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222825 + }, + "cable template mac-domain U2O-D2O controller": { + "hint": "Possible completions:\ndynamic-bg\ndynamic-ofdma-mod-prof-hopping\ndynamic-us-mod-prof-hopping\ningress-cancellation-sid Ingress Cancellation SID [default 1ffd]\nsf-dynamic", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222825 + }, + "cable template mac-domain U2O-D2O ds-dynamic-bonding-group": { + "hint": "Description: Enable/Disable DS Dynamic Bonding Group\nPossible completions:\n[enabled]\ndisabled\nenabled\nresequencing-wait-msec DSID re-sequencing Wait Time in milliseconds\nwarning-threshold-msec DSID re-sequencing Warning Threshold in milliseconds", + "options": [ + "disabled", + "enabled", + "resequencing-wait-msec", + "warning-threshold-msec" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778222825 + }, + "cable template mac-domain U2O-D2O us-dynamic-bonding-group": { + "hint": "Possible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778222825 + }, + "cable template mac-domain U2O-D2O us-bonding-group U2A admin-state": { + "hint": "Description: Administrative State of UBG [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222825 + }, + "cable template mac-domain U2O-D2O us-bonding-group U2A provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-22", + "operator-23", + "operator-30", + "operator-31", + "reserved-3", + "reserved-10", + "reserved-11", + "reserved-12" + ], + "type": "list", + "current_value": "bonded", + "updated_at": 1778222825 + }, + "cable template mac-domain U2O-D2O us-bonding-group U2A ofdma-channel-set": { + "hint": "Description: UBG configured ofdma-channels\nPossible completions:\nunsignedShort, 0 .. 1", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222825 + }, + "cable template mac-domain U2O-D2O load-balance": { + "hint": "Possible completions:\ndownstream restricted upstream", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222825 + }, + "cable template mac-domain U2O-D32S2O ds-primary-set": { + "hint": "Description: Primary Down Channels for the Mac Domain\nPossible completions:\nunsignedInt, 0 .. 157", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222825 + }, + "cable template mac-domain U2O-D32S2O ds-non-primary-set": { + "hint": "Description: Non Primary Down Channels for the Mac Domain\nPossible completions:\nunsignedInt, 0 .. 157", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222878 + }, + "cable template mac-domain U2O-D32S2O admin-state": { + "hint": "Description: Administrative State of the Mac Domain [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222878 + }, + "cable template mac-domain U2O-D32S2O bundle": { + "hint": "Description: Reference to top cable-bundle index\nPossible completions:\n[1] 1", + "options": [ + "1" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778222878 + }, + "cable template mac-domain U2O-D32S2O ip-provisioning-mode": { + "hint": "Description: IP Provisioning Mode for MAC Domain\nPossible completions:\n[dual-stack] alternate dual-stack ipv4-only ipv6-only", + "options": [ + "alternate", + "dual-stack", + "ipv4-only", + "ipv6-only" + ], + "type": "list", + "current_value": "dual-stack", + "updated_at": 1778222878 + }, + "cable template mac-domain U2O-D32S2O no": { + "hint": "", + "options": [], + "type": "unknown", + "current_value": null, + "updated_at": 1778222878 + }, + "cable template mac-domain U2O-D32S2O ds-ofdm-set": { + "hint": "Description: The primary OFDM Channels for the Mac Domain\nPossible completions:\nunsignedInt, 0 .. 7", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222878 + }, + "cable template mac-domain U2O-D32S2O us-ofdma-set": { + "hint": "Description: OFDM Channels for the Mac Domain\nPossible completions:\nunsignedInt, 0 .. 1", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222878 + }, + "cable template mac-domain U2O-D32S2O controller": { + "hint": "Possible completions:\ndynamic-bg\ndynamic-ofdma-mod-prof-hopping\ndynamic-us-mod-prof-hopping\ningress-cancellation-sid Ingress Cancellation SID [default 1ffd]\nsf-dynamic", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222878 + }, + "cable template mac-domain U2O-D32S2O ds-dynamic-bonding-group": { + "hint": "Description: Enable/Disable DS Dynamic Bonding Group\nPossible completions:\n[enabled]\ndisabled\nenabled\nresequencing-wait-msec DSID re-sequencing Wait Time in milliseconds\nwarning-threshold-msec DSID re-sequencing Warning Threshold in milliseconds", + "options": [ + "disabled", + "enabled", + "resequencing-wait-msec", + "warning-threshold-msec" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778222878 + }, + "cable template mac-domain U2O-D32S2O us-dynamic-bonding-group": { + "hint": "Possible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778222878 + }, + "cable template mac-domain U2O-D32S2O us-bonding-group U2A admin-state": { + "hint": "Description: Administrative State of UBG [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222878 + }, + "cable template mac-domain U2O-D32S2O us-bonding-group U2A provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-22", + "operator-23", + "operator-30", + "operator-31", + "reserved-3", + "reserved-10", + "reserved-11", + "reserved-12" + ], + "type": "list", + "current_value": "bonded", + "updated_at": 1778222878 + }, + "cable template mac-domain U2O-D32S2O us-bonding-group U2A ofdma-channel-set": { + "hint": "Description: UBG configured ofdma-channels\nPossible completions:\nunsignedShort, 0 .. 1", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222878 + }, + "cable template mac-domain U2O-D32S2O load-balance": { + "hint": "Possible completions:\ndownstream restricted upstream", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222878 + }, + "cable template mac-domain U2O-D32S4O ds-primary-set": { + "hint": "Description: Primary Down Channels for the Mac Domain\nPossible completions:\nunsignedInt, 0 .. 157", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222878 + }, + "cable template mac-domain U2O-D32S4O ds-non-primary-set": { + "hint": "Description: Non Primary Down Channels for the Mac Domain\nPossible completions:\nunsignedInt, 0 .. 157", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222878 + }, + "cable template mac-domain U2O-D32S4O admin-state": { + "hint": "Description: Administrative State of the Mac Domain [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222878 + }, + "cable template mac-domain U2O-D32S4O bundle": { + "hint": "Description: Reference to top cable-bundle index\nPossible completions:\n[1] 1", + "options": [ + "1" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778222878 + }, + "cable template mac-domain U2O-D32S4O ip-provisioning-mode": { + "hint": "Description: IP Provisioning Mode for MAC Domain\nPossible completions:\n[dual-stack] alternate dual-stack ipv4-only ipv6-only", + "options": [ + "alternate", + "dual-stack", + "ipv4-only", + "ipv6-only" + ], + "type": "list", + "current_value": "dual-stack", + "updated_at": 1778222878 + }, + "cable template mac-domain U2O-D32S4O no": { + "hint": "", + "options": [], + "type": "unknown", + "current_value": null, + "updated_at": 1778222878 + }, + "cable template mac-domain U2O-D32S4O ds-ofdm-set": { + "hint": "Description: The primary OFDM Channels for the Mac Domain\nPossible completions:\nunsignedInt, 0 .. 7", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222878 + }, + "cable template mac-domain U2O-D32S4O us-ofdma-set": { + "hint": "Description: OFDM Channels for the Mac Domain\nPossible completions:\nunsignedInt, 0 .. 1", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222878 + }, + "cable template mac-domain U2O-D32S4O controller": { + "hint": "Possible completions:\ndynamic-bg\ndynamic-ofdma-mod-prof-hopping\ndynamic-us-mod-prof-hopping\ningress-cancellation-sid Ingress Cancellation SID [default 1ffd]\nsf-dynamic", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222878 + }, + "cable template mac-domain U2O-D32S4O ds-dynamic-bonding-group": { + "hint": "Description: Enable/Disable DS Dynamic Bonding Group\nPossible completions:\n[enabled]\ndisabled\nenabled\nresequencing-wait-msec DSID re-sequencing Wait Time in milliseconds\nwarning-threshold-msec DSID re-sequencing Warning Threshold in milliseconds", + "options": [ + "disabled", + "enabled", + "resequencing-wait-msec", + "warning-threshold-msec" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778222878 + }, + "cable template mac-domain U2O-D32S4O us-dynamic-bonding-group": { + "hint": "Possible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778222878 + }, + "cable template mac-domain U2O-D32S4O us-bonding-group U2A admin-state": { + "hint": "Description: Administrative State of UBG [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222878 + }, + "cable template mac-domain U2O-D32S4O us-bonding-group U2A provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-22", + "operator-23", + "operator-30", + "operator-31", + "reserved-3", + "reserved-10", + "reserved-11", + "reserved-12" + ], + "type": "list", + "current_value": "bonded", + "updated_at": 1778222878 + }, + "cable template mac-domain U2O-D32S4O us-bonding-group U2A ofdma-channel-set": { + "hint": "Description: UBG configured ofdma-channels\nPossible completions:\nunsignedShort, 0 .. 1", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222878 + }, + "cable template mac-domain U2O-D32S4O load-balance": { + "hint": "Possible completions:\ndownstream restricted upstream", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222878 + }, + "cable template mac-domain U2O-D4O admin-state": { + "hint": "Description: Administrative State of the Mac Domain [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222878 + }, + "cable template mac-domain U2O-D4O bundle": { + "hint": "Description: Reference to top cable-bundle index\nPossible completions:\n[1] 1", + "options": [ + "1" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778222932 + }, + "cable template mac-domain U2O-D4O ip-provisioning-mode": { + "hint": "Description: IP Provisioning Mode for MAC Domain\nPossible completions:\n[dual-stack] alternate dual-stack ipv4-only ipv6-only", + "options": [ + "alternate", + "dual-stack", + "ipv4-only", + "ipv6-only" + ], + "type": "list", + "current_value": "dual-stack", + "updated_at": 1778222932 + }, + "cable template mac-domain U2O-D4O no": { + "hint": "", + "options": [], + "type": "unknown", + "current_value": null, + "updated_at": 1778222932 + }, + "cable template mac-domain U2O-D4O ds-ofdm-set": { + "hint": "Description: The primary OFDM Channels for the Mac Domain\nPossible completions:\nunsignedInt, 0 .. 7", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222932 + }, + "cable template mac-domain U2O-D4O us-ofdma-set": { + "hint": "Description: OFDM Channels for the Mac Domain\nPossible completions:\nunsignedInt, 0 .. 1", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222932 + }, + "cable template mac-domain U2O-D4O controller": { + "hint": "Possible completions:\ndynamic-bg\ndynamic-ofdma-mod-prof-hopping\ndynamic-us-mod-prof-hopping\ningress-cancellation-sid Ingress Cancellation SID [default 1ffd]\nsf-dynamic", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222932 + }, + "cable template mac-domain U2O-D4O ds-dynamic-bonding-group": { + "hint": "Description: Enable/Disable DS Dynamic Bonding Group\nPossible completions:\n[enabled]\ndisabled\nenabled\nresequencing-wait-msec DSID re-sequencing Wait Time in milliseconds\nwarning-threshold-msec DSID re-sequencing Warning Threshold in milliseconds", + "options": [ + "disabled", + "enabled", + "resequencing-wait-msec", + "warning-threshold-msec" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778222932 + }, + "cable template mac-domain U2O-D4O us-dynamic-bonding-group": { + "hint": "Possible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778222932 + }, + "cable template mac-domain U2O-D4O us-bonding-group U2A admin-state": { + "hint": "Description: Administrative State of UBG [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222932 + }, + "cable template mac-domain U2O-D4O us-bonding-group U2A provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-22", + "operator-23", + "operator-30", + "operator-31", + "reserved-3", + "reserved-10", + "reserved-11", + "reserved-12" + ], + "type": "list", + "current_value": "bonded", + "updated_at": 1778222932 + }, + "cable template mac-domain U2O-D4O us-bonding-group U2A ofdma-channel-set": { + "hint": "Description: UBG configured ofdma-channels\nPossible completions:\nunsignedShort, 0 .. 1", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222932 + }, + "cable template mac-domain U2O-D4O load-balance": { + "hint": "Possible completions:\ndownstream restricted upstream", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222932 + }, + "cable template mac-domain U5-D26 ds-primary-set": { + "hint": "Description: Primary Down Channels for the Mac Domain\nPossible completions:\nunsignedInt, 0 .. 157", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222932 + }, + "cable template mac-domain U5-D26 ds-non-primary-set": { + "hint": "Description: Non Primary Down Channels for the Mac Domain\nPossible completions:\nunsignedInt, 0 .. 157", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222932 + }, + "cable template mac-domain U5-D26 us-phy-channel-set": { + "hint": "Description: Upstream Channels for the Mac Domain\nPossible completions:\nunsignedInt, 0 .. 255", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222932 + }, + "cable template mac-domain U5-D26 admin-state": { + "hint": "Description: Administrative State of the Mac Domain [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222932 + }, + "cable template mac-domain U5-D26 bundle": { + "hint": "Description: Reference to top cable-bundle index\nPossible completions:\n[1] 1", + "options": [ + "1" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778222932 + }, + "cable template mac-domain U5-D26 ip-provisioning-mode": { + "hint": "Description: IP Provisioning Mode for MAC Domain\nPossible completions:\n[dual-stack] alternate dual-stack ipv4-only ipv6-only", + "options": [ + "alternate", + "dual-stack", + "ipv4-only", + "ipv6-only" + ], + "type": "list", + "current_value": "dual-stack", + "updated_at": 1778222932 + }, + "cable template mac-domain U5-D26 no": { + "hint": "", + "options": [], + "type": "unknown", + "current_value": null, + "updated_at": 1778222932 + }, + "cable template mac-domain U5-D26 ds-ofdm-set": { + "hint": "Description: The primary OFDM Channels for the Mac Domain\nPossible completions:\nunsignedInt, 0 .. 7", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222932 + }, + "cable template mac-domain U5-D26 us-ofdma-set": { + "hint": "Description: OFDM Channels for the Mac Domain\nPossible completions:\nunsignedInt, 0 .. 1", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222932 + }, + "cable template mac-domain U5-D26 controller": { + "hint": "Possible completions:\ndynamic-bg\ndynamic-ofdma-mod-prof-hopping\ndynamic-us-mod-prof-hopping\ningress-cancellation-sid Ingress Cancellation SID [default 1ffd]\nsf-dynamic", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222932 + }, + "cable template mac-domain U5-D26 ds-dynamic-bonding-group": { + "hint": "Description: Enable/Disable DS Dynamic Bonding Group\nPossible completions:\n[enabled]\ndisabled\nenabled\nresequencing-wait-msec DSID re-sequencing Wait Time in milliseconds\nwarning-threshold-msec DSID re-sequencing Warning Threshold in milliseconds", + "options": [ + "disabled", + "enabled", + "resequencing-wait-msec", + "warning-threshold-msec" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778222932 + }, + "cable template mac-domain U5-D26 us-dynamic-bonding-group": { + "hint": "Possible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778222932 + }, + "cable template mac-domain U5-D26 load-balance": { + "hint": "Possible completions:\ndownstream restricted upstream", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222932 + }, + "cable template mac-domain U6S2O-D32S2O ds-primary-set": { + "hint": "Description: Primary Down Channels for the Mac Domain\nPossible completions:\nunsignedInt, 0 .. 157", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222932 + }, + "cable template mac-domain U6S2O-D32S2O ds-non-primary-set": { + "hint": "Description: Non Primary Down Channels for the Mac Domain\nPossible completions:\nunsignedInt, 0 .. 157", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222932 + }, + "cable template mac-domain U6S2O-D32S2O us-phy-channel-set": { + "hint": "Description: Upstream Channels for the Mac Domain\nPossible completions:\nunsignedInt, 0 .. 255", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222932 + }, + "cable template mac-domain U6S2O-D32S2O admin-state": { + "hint": "Description: Administrative State of the Mac Domain [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222932 + }, + "cable template mac-domain U6S2O-D32S2O bundle": { + "hint": "Description: Reference to top cable-bundle index\nPossible completions:\n[1] 1", + "options": [ + "1" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778222932 + }, + "cable template mac-domain U6S2O-D32S2O ip-provisioning-mode": { + "hint": "Description: IP Provisioning Mode for MAC Domain\nPossible completions:\n[dual-stack] alternate dual-stack ipv4-only ipv6-only", + "options": [ + "alternate", + "dual-stack", + "ipv4-only", + "ipv6-only" + ], + "type": "list", + "current_value": "dual-stack", + "updated_at": 1778222988 + }, + "cable template mac-domain U6S2O-D32S2O no": { + "hint": "", + "options": [], + "type": "unknown", + "current_value": null, + "updated_at": 1778222988 + }, + "cable template mac-domain U6S2O-D32S2O ds-ofdm-set": { + "hint": "Description: The primary OFDM Channels for the Mac Domain\nPossible completions:\nunsignedInt, 0 .. 7", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222988 + }, + "cable template mac-domain U6S2O-D32S2O us-ofdma-set": { + "hint": "Description: OFDM Channels for the Mac Domain\nPossible completions:\nunsignedInt, 0 .. 1", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222988 + }, + "cable template mac-domain U6S2O-D32S2O controller": { + "hint": "Possible completions:\ndynamic-bg\ndynamic-ofdma-mod-prof-hopping\ndynamic-us-mod-prof-hopping\ningress-cancellation-sid Ingress Cancellation SID [default 1ffd]\nsf-dynamic", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222988 + }, + "cable template mac-domain U6S2O-D32S2O ds-dynamic-bonding-group": { + "hint": "Description: Enable/Disable DS Dynamic Bonding Group\nPossible completions:\n[enabled]\ndisabled\nenabled\nresequencing-wait-msec DSID re-sequencing Wait Time in milliseconds\nwarning-threshold-msec DSID re-sequencing Warning Threshold in milliseconds", + "options": [ + "disabled", + "enabled", + "resequencing-wait-msec", + "warning-threshold-msec" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778222988 + }, + "cable template mac-domain U6S2O-D32S2O us-dynamic-bonding-group": { + "hint": "Possible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778222988 + }, + "cable template mac-domain U6S2O-D32S2O load-balance": { + "hint": "Possible completions:\ndownstream restricted upstream", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222988 + }, + "cable template mac-domain U6S2O-D36S2O ds-primary-set": { + "hint": "Description: Primary Down Channels for the Mac Domain\nPossible completions:\nunsignedInt, 0 .. 157", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222988 + }, + "cable template mac-domain U6S2O-D36S2O ds-non-primary-set": { + "hint": "Description: Non Primary Down Channels for the Mac Domain\nPossible completions:\nunsignedInt, 0 .. 157", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222988 + }, + "cable template mac-domain U6S2O-D36S2O us-phy-channel-set": { + "hint": "Description: Upstream Channels for the Mac Domain\nPossible completions:\nunsignedInt, 0 .. 255", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222988 + }, + "cable template mac-domain U6S2O-D36S2O admin-state": { + "hint": "Description: Administrative State of the Mac Domain [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222988 + }, + "cable template mac-domain U6S2O-D36S2O bundle": { + "hint": "Description: Reference to top cable-bundle index\nPossible completions:\n[1] 1", + "options": [ + "1" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778222988 + }, + "cable template mac-domain U6S2O-D36S2O ip-provisioning-mode": { + "hint": "Description: IP Provisioning Mode for MAC Domain\nPossible completions:\n[dual-stack] alternate dual-stack ipv4-only ipv6-only", + "options": [ + "alternate", + "dual-stack", + "ipv4-only", + "ipv6-only" + ], + "type": "list", + "current_value": "dual-stack", + "updated_at": 1778222988 + }, + "cable template mac-domain U6S2O-D36S2O no": { + "hint": "", + "options": [], + "type": "unknown", + "current_value": null, + "updated_at": 1778222988 + }, + "cable template mac-domain U6S2O-D36S2O ds-ofdm-set": { + "hint": "Description: The primary OFDM Channels for the Mac Domain\nPossible completions:\nunsignedInt, 0 .. 7", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222988 + }, + "cable template mac-domain U6S2O-D36S2O us-ofdma-set": { + "hint": "Description: OFDM Channels for the Mac Domain\nPossible completions:\nunsignedInt, 0 .. 1", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222988 + }, + "cable template mac-domain U6S2O-D36S2O controller": { + "hint": "Possible completions:\ndynamic-bg\ndynamic-ofdma-mod-prof-hopping\ndynamic-us-mod-prof-hopping\ningress-cancellation-sid Ingress Cancellation SID [default 1ffd]\nsf-dynamic", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222988 + }, + "cable template mac-domain U6S2O-D36S2O ds-dynamic-bonding-group": { + "hint": "Description: Enable/Disable DS Dynamic Bonding Group\nPossible completions:\n[enabled]\ndisabled\nenabled\nresequencing-wait-msec DSID re-sequencing Wait Time in milliseconds\nwarning-threshold-msec DSID re-sequencing Warning Threshold in milliseconds", + "options": [ + "disabled", + "enabled", + "resequencing-wait-msec", + "warning-threshold-msec" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778222988 + }, + "cable template mac-domain U6S2O-D36S2O us-dynamic-bonding-group": { + "hint": "Possible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778222988 + }, + "cable template mac-domain U6S2O-D36S2O load-balance": { + "hint": "Possible completions:\ndownstream restricted upstream", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222988 + }, + "cable template mac-domain test no": { + "hint": "", + "options": [], + "type": "unknown", + "current_value": null, + "updated_at": 1778222988 + }, + "cable template mac-domain test ds-dynamic-bonding-group": { + "hint": "Description: Enable/Disable DS Dynamic Bonding Group\nPossible completions:\n[disabled]\ndisabled\nenabled\nresequencing-wait-msec DSID re-sequencing Wait Time in milliseconds\nwarning-threshold-msec DSID re-sequencing Warning Threshold in milliseconds", + "options": [ + "disabled", + "enabled", + "resequencing-wait-msec", + "warning-threshold-msec" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778222988 + }, + "cable template rpd U2O-D24S4O admin-state": { + "hint": "Description: Administrative State of the slot [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778222988 + }, + "cable template rpd U2O-D24S4O ip-stack": { + "hint": "Description: RPD current ip stack\nPossible completions:\n[ipv6_only]", + "options": [], + "type": "string_or_number", + "current_value": "ipv6_only", + "updated_at": 1778222988 + }, + "cable template rpd U2O-D24S4O ptp": { + "hint": "Possible completions:\nadmin-state Administrative State of the PTP [default down]\nbmca BMCA state [default on]\ndomain The identifier of administrative domain\ndscp Differentiated services code point value.\nmcast-mac Master multicast MAC address\nprimary-clock Primary PTP Master configuration\nprofile PTP profile\nsecondary-clock Secondary PTP Master configuration", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778222988 + }, + "cable template rpd U2O-D24S4O sshd": { + "hint": "Description: Enable/disable ssh daemon on the RPD\nPossible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778222988 + }, + "cable template rpd U2O-D24S4O local-user": { + "hint": "Description: Enable/disable local user on rpd\nPossible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778222988 + }, + "cable template rpd U2O-D24S4O video-type": { + "hint": "Description: RPD FPGA video type (reboot is required)\nPossible completions:\n[sync-video]", + "options": [], + "type": "string_or_number", + "current_value": "sync-video", + "updated_at": 1778222988 + }, + "cable template rpd U2O-D24S4O early-video": { + "hint": "Description: RPD early video feature (reboot is required)\nPossible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778222988 + }, + "cable template rpd U2O-D24S4O video-only": { + "hint": "Description: RPD video-only mode\nPossible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778223038 + }, + "cable template rpd U2O-D24S4O use-base-target-rx-power": { + "hint": "Description: Enable/disable I08-like US power adjust [default disabed]\nPossible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778223038 + }, + "cable template rpd U2O-D24S4O rf-ports": { + "hint": "Possible completions:\ndownstream Ds-rf-ports count\nupstream Us-rf-ports count", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778223038 + }, + "cable template rpd U2O-D24S4O ds-rf-template": { + "hint": "Description: reference to ds-rf-port template\nPossible completions:\n[A-D24S4O] A-D2O A-D4O A-D24S4O A-D26 A-D32S2O B-D32S2O B-D32S4O B-D32S40 B-D36S2O", + "options": [ + "A-D2O", + "A-D4O", + "A-D24S4O", + "A-D26", + "A-D32S2O", + "B-D32S2O", + "B-D32S4O", + "B-D32S40", + "B-D36S2O" + ], + "type": "list", + "current_value": "A-D24S4O", + "updated_at": 1778223038 + }, + "cable template rpd U2O-D24S4O us-rf-template": { + "hint": "Description: reference to us-rf-port template\nPossible completions:\n[A-U2O] A-U2O A-U5 B-U2O B-U6S2O", + "options": [ + "A-U2O", + "A-U5", + "B-U2O", + "B-U6S2O" + ], + "type": "list", + "current_value": "A-U2O", + "updated_at": 1778223038 + }, + "cable template rpd U2O-D24S4O domain 0 template": { + "hint": "Description: Reference to a mac-domain template\nPossible completions:\n[U2O-D24S4O] U2O-D2O U2O-D4O U2O-D24S4O U2O-D32S2O U2O-D32S4O U5-D26 U6S2O-D32S2O U6S2O-D36S2O test", + "options": [ + "U2O-D2O", + "U2O-D4O", + "U2O-D24S4O", + "U2O-D32S2O", + "U2O-D32S4O", + "U5-D26", + "U6S2O-D32S2O", + "U6S2O-D36S2O", + "test" + ], + "type": "list", + "current_value": "U2O-D24S4O", + "updated_at": 1778223038 + }, + "cable template rpd U2O-D2O admin-state": { + "hint": "Description: Administrative State of the slot [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223038 + }, + "cable template rpd U2O-D2O ip-stack": { + "hint": "Description: RPD current ip stack\nPossible completions:\n[ipv6_only]", + "options": [], + "type": "string_or_number", + "current_value": "ipv6_only", + "updated_at": 1778223038 + }, + "cable template rpd U2O-D2O ptp": { + "hint": "Possible completions:\nadmin-state Administrative State of the PTP [default down]\nbmca BMCA state [default on]\ndomain The identifier of administrative domain\ndscp Differentiated services code point value.\nmcast-mac Master multicast MAC address\nprimary-clock Primary PTP Master configuration\nprofile PTP profile\nsecondary-clock Secondary PTP Master configuration", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778223038 + }, + "cable template rpd U2O-D2O sshd": { + "hint": "Description: Enable/disable ssh daemon on the RPD\nPossible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778223038 + }, + "cable template rpd U2O-D2O local-user": { + "hint": "Description: Enable/disable local user on rpd\nPossible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778223038 + }, + "cable template rpd U2O-D2O video-type": { + "hint": "Description: RPD FPGA video type (reboot is required)\nPossible completions:\n[sync-video]", + "options": [], + "type": "string_or_number", + "current_value": "sync-video", + "updated_at": 1778223038 + }, + "cable template rpd U2O-D2O early-video": { + "hint": "Description: RPD early video feature (reboot is required)\nPossible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778223038 + }, + "cable template rpd U2O-D2O video-only": { + "hint": "Description: RPD video-only mode\nPossible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778223038 + }, + "cable template rpd U2O-D2O use-base-target-rx-power": { + "hint": "Description: Enable/disable I08-like US power adjust [default disabed]\nPossible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778223038 + }, + "cable template rpd U2O-D2O rf-ports": { + "hint": "Possible completions:\ndownstream Ds-rf-ports count\nupstream Us-rf-ports count", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778223038 + }, + "cable template rpd U2O-D2O ds-rf-template": { + "hint": "Description: reference to ds-rf-port template\nPossible completions:\n[A-D2O] A-D2O A-D4O A-D24S4O A-D26 A-D32S2O B-D32S2O B-D32S4O B-D32S40 B-D36S2O", + "options": [ + "A-D2O", + "A-D4O", + "A-D24S4O", + "A-D26", + "A-D32S2O", + "B-D32S2O", + "B-D32S4O", + "B-D32S40", + "B-D36S2O" + ], + "type": "list", + "current_value": "A-D2O", + "updated_at": 1778223038 + }, + "cable template rpd U2O-D2O us-rf-template": { + "hint": "Description: reference to us-rf-port template\nPossible completions:\n[A-U2O] A-U2O A-U5 B-U2O B-U6S2O", + "options": [ + "A-U2O", + "A-U5", + "B-U2O", + "B-U6S2O" + ], + "type": "list", + "current_value": "A-U2O", + "updated_at": 1778223038 + }, + "cable template rpd U2O-D2O domain 0 template": { + "hint": "Description: Reference to a mac-domain template\nPossible completions:\n[U2O-D2O] U2O-D2O U2O-D4O U2O-D24S4O U2O-D32S2O U2O-D32S4O U5-D26 U6S2O-D32S2O U6S2O-D36S2O test", + "options": [ + "U2O-D2O", + "U2O-D4O", + "U2O-D24S4O", + "U2O-D32S2O", + "U2O-D32S4O", + "U5-D26", + "U6S2O-D32S2O", + "U6S2O-D36S2O", + "test" + ], + "type": "list", + "current_value": "U2O-D2O", + "updated_at": 1778223038 + }, + "cable template rpd U2O-D32S2O admin-state": { + "hint": "Description: Administrative State of the slot [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223038 + }, + "cable template rpd U2O-D32S2O ip-stack": { + "hint": "Description: RPD current ip stack\nPossible completions:\n[ipv6_only]", + "options": [], + "type": "string_or_number", + "current_value": "ipv6_only", + "updated_at": 1778223038 + }, + "cable template rpd U2O-D32S2O ptp": { + "hint": "Possible completions:\nadmin-state Administrative State of the PTP [default down]\nbmca BMCA state [default on]\ndomain The identifier of administrative domain\ndscp Differentiated services code point value.\nmcast-mac Master multicast MAC address\nprimary-clock Primary PTP Master configuration\nprofile PTP profile\nsecondary-clock Secondary PTP Master configuration", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778223038 + }, + "cable template rpd U2O-D32S2O sshd": { + "hint": "Description: Enable/disable ssh daemon on the RPD\nPossible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778223038 + }, + "cable template rpd U2O-D32S2O local-user": { + "hint": "Description: Enable/disable local user on rpd\nPossible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778223038 + }, + "cable template rpd U2O-D32S2O video-type": { + "hint": "Description: RPD FPGA video type (reboot is required)\nPossible completions:\n[sync-video]", + "options": [], + "type": "string_or_number", + "current_value": "sync-video", + "updated_at": 1778223038 + }, + "cable template rpd U2O-D32S2O early-video": { + "hint": "Description: RPD early video feature (reboot is required)\nPossible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778223038 + }, + "cable template rpd U2O-D32S2O video-only": { + "hint": "Description: RPD video-only mode\nPossible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778223038 + }, + "cable template rpd U2O-D32S2O use-base-target-rx-power": { + "hint": "Description: Enable/disable I08-like US power adjust [default disabed]\nPossible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778223038 + }, + "cable template rpd U2O-D32S2O rf-ports": { + "hint": "Possible completions:\ndownstream Ds-rf-ports count\nupstream Us-rf-ports count", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778223038 + }, + "cable template rpd U2O-D32S2O ds-rf-template": { + "hint": "Description: reference to ds-rf-port template\nPossible completions:\n[A-D32S2O] A-D2O A-D4O A-D24S4O A-D26 A-D32S2O B-D32S2O B-D32S4O B-D32S40 B-D36S2O", + "options": [ + "A-D2O", + "A-D4O", + "A-D24S4O", + "A-D26", + "A-D32S2O", + "B-D32S2O", + "B-D32S4O", + "B-D32S40", + "B-D36S2O" + ], + "type": "list", + "current_value": "A-D32S2O", + "updated_at": 1778223038 + }, + "cable template rpd U2O-D32S2O us-rf-template": { + "hint": "Description: reference to us-rf-port template\nPossible completions:\n[A-U2O] A-U2O A-U5 B-U2O B-U6S2O", + "options": [ + "A-U2O", + "A-U5", + "B-U2O", + "B-U6S2O" + ], + "type": "list", + "current_value": "A-U2O", + "updated_at": 1778223089 + }, + "cable template rpd U2O-D32S2O domain 0 template": { + "hint": "Description: Reference to a mac-domain template\nPossible completions:\n[U2O-D32S2O] U2O-D2O U2O-D4O U2O-D24S4O U2O-D32S2O U2O-D32S4O U5-D26 U6S2O-D32S2O U6S2O-D36S2O test", + "options": [ + "U2O-D2O", + "U2O-D4O", + "U2O-D24S4O", + "U2O-D32S2O", + "U2O-D32S4O", + "U5-D26", + "U6S2O-D32S2O", + "U6S2O-D36S2O", + "test" + ], + "type": "list", + "current_value": "U2O-D32S2O", + "updated_at": 1778223089 + }, + "cable template rpd U2O-D32S4O admin-state": { + "hint": "Description: Administrative State of the slot [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223089 + }, + "cable template rpd U2O-D32S4O ip-stack": { + "hint": "Description: RPD current ip stack\nPossible completions:\n[ipv6_only]", + "options": [], + "type": "string_or_number", + "current_value": "ipv6_only", + "updated_at": 1778223089 + }, + "cable template rpd U2O-D32S4O ptp": { + "hint": "Possible completions:\nadmin-state Administrative State of the PTP [default down]\nbmca BMCA state [default on]\ndomain The identifier of administrative domain\ndscp Differentiated services code point value.\nmcast-mac Master multicast MAC address\nprimary-clock Primary PTP Master configuration\nprofile PTP profile\nsecondary-clock Secondary PTP Master configuration", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778223089 + }, + "cable template rpd U2O-D32S4O sshd": { + "hint": "Description: Enable/disable ssh daemon on the RPD\nPossible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778223089 + }, + "cable template rpd U2O-D32S4O local-user": { + "hint": "Description: Enable/disable local user on rpd\nPossible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778223089 + }, + "cable template rpd U2O-D32S4O video-type": { + "hint": "Description: RPD FPGA video type (reboot is required)\nPossible completions:\n[sync-video]", + "options": [], + "type": "string_or_number", + "current_value": "sync-video", + "updated_at": 1778223089 + }, + "cable template rpd U2O-D32S4O early-video": { + "hint": "Description: RPD early video feature (reboot is required)\nPossible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778223089 + }, + "cable template rpd U2O-D32S4O video-only": { + "hint": "Description: RPD video-only mode\nPossible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778223089 + }, + "cable template rpd U2O-D32S4O use-base-target-rx-power": { + "hint": "Description: Enable/disable I08-like US power adjust [default disabed]\nPossible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778223089 + }, + "cable template rpd U2O-D32S4O rf-ports": { + "hint": "Possible completions:\ndownstream Ds-rf-ports count\nupstream Us-rf-ports count", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778223089 + }, + "cable template rpd U2O-D32S4O ds-rf-template": { + "hint": "Description: reference to ds-rf-port template\nPossible completions:\n[B-D32S4O] A-D2O A-D4O A-D24S4O A-D26 A-D32S2O B-D32S2O B-D32S4O B-D32S40 B-D36S2O", + "options": [ + "A-D2O", + "A-D4O", + "A-D24S4O", + "A-D26", + "A-D32S2O", + "B-D32S2O", + "B-D32S4O", + "B-D32S40", + "B-D36S2O" + ], + "type": "list", + "current_value": "B-D32S4O", + "updated_at": 1778223089 + }, + "cable template rpd U2O-D32S4O us-rf-template": { + "hint": "Description: reference to us-rf-port template\nPossible completions:\n[B-U2O] A-U2O A-U5 B-U2O B-U6S2O", + "options": [ + "A-U2O", + "A-U5", + "B-U2O", + "B-U6S2O" + ], + "type": "list", + "current_value": "B-U2O", + "updated_at": 1778223089 + }, + "cable template rpd U2O-D32S4O domain 0 template": { + "hint": "Description: Reference to a mac-domain template\nPossible completions:\n[U2O-D32S4O] U2O-D2O U2O-D4O U2O-D24S4O U2O-D32S2O U2O-D32S4O U5-D26 U6S2O-D32S2O U6S2O-D36S2O test", + "options": [ + "U2O-D2O", + "U2O-D4O", + "U2O-D24S4O", + "U2O-D32S2O", + "U2O-D32S4O", + "U5-D26", + "U6S2O-D32S2O", + "U6S2O-D36S2O", + "test" + ], + "type": "list", + "current_value": "U2O-D32S4O", + "updated_at": 1778223089 + }, + "cable template rpd U2O-D4O admin-state": { + "hint": "Description: Administrative State of the slot [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223089 + }, + "cable template rpd U2O-D4O ip-stack": { + "hint": "Description: RPD current ip stack\nPossible completions:\n[ipv6_only]", + "options": [], + "type": "string_or_number", + "current_value": "ipv6_only", + "updated_at": 1778223089 + }, + "cable template rpd U2O-D4O ptp": { + "hint": "Possible completions:\nadmin-state Administrative State of the PTP [default down]\nbmca BMCA state [default on]\ndomain The identifier of administrative domain\ndscp Differentiated services code point value.\nmcast-mac Master multicast MAC address\nprimary-clock Primary PTP Master configuration\nprofile PTP profile\nsecondary-clock Secondary PTP Master configuration", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778223089 + }, + "cable template rpd U2O-D4O sshd": { + "hint": "Description: Enable/disable ssh daemon on the RPD\nPossible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778223089 + }, + "cable template rpd U2O-D4O local-user": { + "hint": "Description: Enable/disable local user on rpd\nPossible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778223089 + }, + "cable template rpd U2O-D4O video-type": { + "hint": "Description: RPD FPGA video type (reboot is required)\nPossible completions:\n[sync-video]", + "options": [], + "type": "string_or_number", + "current_value": "sync-video", + "updated_at": 1778223089 + }, + "cable template rpd U2O-D4O early-video": { + "hint": "Description: RPD early video feature (reboot is required)\nPossible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778223089 + }, + "cable template rpd U2O-D4O video-only": { + "hint": "Description: RPD video-only mode\nPossible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778223089 + }, + "cable template rpd U2O-D4O use-base-target-rx-power": { + "hint": "Description: Enable/disable I08-like US power adjust [default disabed]\nPossible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778223089 + }, + "cable template rpd U2O-D4O rf-ports": { + "hint": "Possible completions:\ndownstream Ds-rf-ports count\nupstream Us-rf-ports count", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778223089 + }, + "cable template rpd U2O-D4O ds-rf-template": { + "hint": "Description: reference to ds-rf-port template\nPossible completions:\n[A-D4O] A-D2O A-D4O A-D24S4O A-D26 A-D32S2O B-D32S2O B-D32S4O B-D32S40 B-D36S2O", + "options": [ + "A-D2O", + "A-D4O", + "A-D24S4O", + "A-D26", + "A-D32S2O", + "B-D32S2O", + "B-D32S4O", + "B-D32S40", + "B-D36S2O" + ], + "type": "list", + "current_value": "A-D4O", + "updated_at": 1778223089 + }, + "cable template rpd U2O-D4O us-rf-template": { + "hint": "Description: reference to us-rf-port template\nPossible completions:\n[A-U2O] A-U2O A-U5 B-U2O B-U6S2O", + "options": [ + "A-U2O", + "A-U5", + "B-U2O", + "B-U6S2O" + ], + "type": "list", + "current_value": "A-U2O", + "updated_at": 1778223089 + }, + "cable template rpd U2O-D4O domain 0 template": { + "hint": "Description: Reference to a mac-domain template\nPossible completions:\n[U2O-D4O] U2O-D2O U2O-D4O U2O-D24S4O U2O-D32S2O U2O-D32S4O U5-D26 U6S2O-D32S2O U6S2O-D36S2O test", + "options": [ + "U2O-D2O", + "U2O-D4O", + "U2O-D24S4O", + "U2O-D32S2O", + "U2O-D32S4O", + "U5-D26", + "U6S2O-D32S2O", + "U6S2O-D36S2O", + "test" + ], + "type": "list", + "current_value": "U2O-D4O", + "updated_at": 1778223089 + }, + "cable template rpd U5-D26 admin-state": { + "hint": "Description: Administrative State of the slot [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223089 + }, + "cable template rpd U5-D26 ip-stack": { + "hint": "Description: RPD current ip stack\nPossible completions:\n[ipv6_only]", + "options": [], + "type": "string_or_number", + "current_value": "ipv6_only", + "updated_at": 1778223089 + }, + "cable template rpd U5-D26 ptp": { + "hint": "Possible completions:\nadmin-state Administrative State of the PTP [default down]\nbmca BMCA state [default on]\ndomain The identifier of administrative domain\ndscp Differentiated services code point value.\nmcast-mac Master multicast MAC address\nprimary-clock Primary PTP Master configuration\nprofile PTP profile\nsecondary-clock Secondary PTP Master configuration", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778223140 + }, + "cable template rpd U5-D26 sshd": { + "hint": "Description: Enable/disable ssh daemon on the RPD\nPossible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778223140 + }, + "cable template rpd U5-D26 local-user": { + "hint": "Description: Enable/disable local user on rpd\nPossible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778223140 + }, + "cable template rpd U5-D26 video-type": { + "hint": "Description: RPD FPGA video type (reboot is required)\nPossible completions:\n[sync-video]", + "options": [], + "type": "string_or_number", + "current_value": "sync-video", + "updated_at": 1778223140 + }, + "cable template rpd U5-D26 early-video": { + "hint": "Description: RPD early video feature (reboot is required)\nPossible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778223140 + }, + "cable template rpd U5-D26 video-only": { + "hint": "Description: RPD video-only mode\nPossible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778223140 + }, + "cable template rpd U5-D26 use-base-target-rx-power": { + "hint": "Description: Enable/disable I08-like US power adjust [default disabed]\nPossible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778223140 + }, + "cable template rpd U5-D26 rf-ports": { + "hint": "Possible completions:\ndownstream Ds-rf-ports count\nupstream Us-rf-ports count", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778223140 + }, + "cable template rpd U5-D26 ds-rf-template": { + "hint": "Description: reference to ds-rf-port template\nPossible completions:\n[A-D26] A-D2O A-D4O A-D24S4O A-D26 A-D32S2O B-D32S2O B-D32S4O B-D32S40 B-D36S2O", + "options": [ + "A-D2O", + "A-D4O", + "A-D24S4O", + "A-D26", + "A-D32S2O", + "B-D32S2O", + "B-D32S4O", + "B-D32S40", + "B-D36S2O" + ], + "type": "list", + "current_value": "A-D26", + "updated_at": 1778223140 + }, + "cable template rpd U5-D26 us-rf-template": { + "hint": "Description: reference to us-rf-port template\nPossible completions:\n[A-U5] A-U2O A-U5 B-U2O B-U6S2O", + "options": [ + "A-U2O", + "A-U5", + "B-U2O", + "B-U6S2O" + ], + "type": "list", + "current_value": "A-U5", + "updated_at": 1778223140 + }, + "cable template rpd U5-D26 domain 0 template": { + "hint": "Description: Reference to a mac-domain template\nPossible completions:\n[U5-D26] U2O-D2O U2O-D4O U2O-D24S4O U2O-D32S2O U2O-D32S4O U5-D26 U6S2O-D32S2O U6S2O-D36S2O test", + "options": [ + "U2O-D2O", + "U2O-D4O", + "U2O-D24S4O", + "U2O-D32S2O", + "U2O-D32S4O", + "U5-D26", + "U6S2O-D32S2O", + "U6S2O-D36S2O", + "test" + ], + "type": "list", + "current_value": "U5-D26", + "updated_at": 1778223140 + }, + "cable template rpd U6S2O-D32S2O admin-state": { + "hint": "Description: Administrative State of the slot [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223140 + }, + "cable template rpd U6S2O-D32S2O ip-stack": { + "hint": "Description: RPD current ip stack\nPossible completions:\n[ipv6_only]", + "options": [], + "type": "string_or_number", + "current_value": "ipv6_only", + "updated_at": 1778223140 + }, + "cable template rpd U6S2O-D32S2O ptp": { + "hint": "Possible completions:\nadmin-state Administrative State of the PTP [default down]\nbmca BMCA state [default on]\ndomain The identifier of administrative domain\ndscp Differentiated services code point value.\nmcast-mac Master multicast MAC address\nprimary-clock Primary PTP Master configuration\nprofile PTP profile\nsecondary-clock Secondary PTP Master configuration", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778223140 + }, + "cable template rpd U6S2O-D32S2O sshd": { + "hint": "Description: Enable/disable ssh daemon on the RPD\nPossible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778223140 + }, + "cable template rpd U6S2O-D32S2O local-user": { + "hint": "Description: Enable/disable local user on rpd\nPossible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778223140 + }, + "cable template rpd U6S2O-D32S2O video-type": { + "hint": "Description: RPD FPGA video type (reboot is required)\nPossible completions:\n[sync-video]", + "options": [], + "type": "string_or_number", + "current_value": "sync-video", + "updated_at": 1778223140 + }, + "cable template rpd U6S2O-D32S2O early-video": { + "hint": "Description: RPD early video feature (reboot is required)\nPossible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778223140 + }, + "cable template rpd U6S2O-D32S2O video-only": { + "hint": "Description: RPD video-only mode\nPossible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778223140 + }, + "cable template rpd U6S2O-D32S2O use-base-target-rx-power": { + "hint": "Description: Enable/disable I08-like US power adjust [default disabed]\nPossible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778223140 + }, + "cable template rpd U6S2O-D32S2O rf-ports": { + "hint": "Possible completions:\ndownstream Ds-rf-ports count\nupstream Us-rf-ports count", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778223140 + }, + "cable template rpd U6S2O-D32S2O ds-rf-template": { + "hint": "Description: reference to ds-rf-port template\nPossible completions:\n[B-D32S2O] A-D2O A-D4O A-D24S4O A-D26 A-D32S2O B-D32S2O B-D32S4O B-D32S40 B-D36S2O", + "options": [ + "A-D2O", + "A-D4O", + "A-D24S4O", + "A-D26", + "A-D32S2O", + "B-D32S2O", + "B-D32S4O", + "B-D32S40", + "B-D36S2O" + ], + "type": "list", + "current_value": "B-D32S2O", + "updated_at": 1778223140 + }, + "cable template rpd U6S2O-D32S2O us-rf-template": { + "hint": "Description: reference to us-rf-port template\nPossible completions:\n[B-U6S2O] A-U2O A-U5 B-U2O B-U6S2O", + "options": [ + "A-U2O", + "A-U5", + "B-U2O", + "B-U6S2O" + ], + "type": "list", + "current_value": "B-U6S2O", + "updated_at": 1778223140 + }, + "cable template rpd U6S2O-D32S2O domain 0 template": { + "hint": "Description: Reference to a mac-domain template\nPossible completions:\n[U6S2O-D32S2O] U2O-D2O U2O-D4O U2O-D24S4O U2O-D32S2O U2O-D32S4O U5-D26 U6S2O-D32S2O U6S2O-D36S2O test", + "options": [ + "U2O-D2O", + "U2O-D4O", + "U2O-D24S4O", + "U2O-D32S2O", + "U2O-D32S4O", + "U5-D26", + "U6S2O-D32S2O", + "U6S2O-D36S2O", + "test" + ], + "type": "list", + "current_value": "U6S2O-D32S2O", + "updated_at": 1778223140 + }, + "cable template rpd U6S2O-D36S2O admin-state": { + "hint": "Description: Administrative State of the slot [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223140 + }, + "cable template rpd U6S2O-D36S2O ip-stack": { + "hint": "Description: RPD current ip stack\nPossible completions:\n[ipv6_only]", + "options": [], + "type": "string_or_number", + "current_value": "ipv6_only", + "updated_at": 1778223140 + }, + "cable template rpd U6S2O-D36S2O ptp": { + "hint": "Possible completions:\nadmin-state Administrative State of the PTP [default down]\nbmca BMCA state [default on]\ndomain The identifier of administrative domain\ndscp Differentiated services code point value.\nmcast-mac Master multicast MAC address\nprimary-clock Primary PTP Master configuration\nprofile PTP profile\nsecondary-clock Secondary PTP Master configuration", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778223140 + }, + "cable template rpd U6S2O-D36S2O sshd": { + "hint": "Description: Enable/disable ssh daemon on the RPD\nPossible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778223140 + }, + "cable template rpd U6S2O-D36S2O local-user": { + "hint": "Description: Enable/disable local user on rpd\nPossible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778223140 + }, + "cable template rpd U6S2O-D36S2O video-type": { + "hint": "Description: RPD FPGA video type (reboot is required)\nPossible completions:\n[sync-video]", + "options": [], + "type": "string_or_number", + "current_value": "sync-video", + "updated_at": 1778223140 + }, + "cable template rpd U6S2O-D36S2O early-video": { + "hint": "Description: RPD early video feature (reboot is required)\nPossible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778223190 + }, + "cable template rpd U6S2O-D36S2O video-only": { + "hint": "Description: RPD video-only mode\nPossible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778223190 + }, + "cable template rpd U6S2O-D36S2O use-base-target-rx-power": { + "hint": "Description: Enable/disable I08-like US power adjust [default disabed]\nPossible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778223190 + }, + "cable template rpd U6S2O-D36S2O rf-ports": { + "hint": "Possible completions:\ndownstream Ds-rf-ports count\nupstream Us-rf-ports count", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778223190 + }, + "cable template rpd U6S2O-D36S2O ds-rf-template": { + "hint": "Description: reference to ds-rf-port template\nPossible completions:\n[B-D36S2O] A-D2O A-D4O A-D24S4O A-D26 A-D32S2O B-D32S2O B-D32S4O B-D32S40 B-D36S2O", + "options": [ + "A-D2O", + "A-D4O", + "A-D24S4O", + "A-D26", + "A-D32S2O", + "B-D32S2O", + "B-D32S4O", + "B-D32S40", + "B-D36S2O" + ], + "type": "list", + "current_value": "B-D36S2O", + "updated_at": 1778223190 + }, + "cable template rpd U6S2O-D36S2O us-rf-template": { + "hint": "Description: reference to us-rf-port template\nPossible completions:\n[B-U6S2O] A-U2O A-U5 B-U2O B-U6S2O", + "options": [ + "A-U2O", + "A-U5", + "B-U2O", + "B-U6S2O" + ], + "type": "list", + "current_value": "B-U6S2O", + "updated_at": 1778223190 + }, + "cable template rpd U6S2O-D36S2O domain 0 template": { + "hint": "Description: Reference to a mac-domain template\nPossible completions:\n[U6S2O-D36S2O] U2O-D2O U2O-D4O U2O-D24S4O U2O-D32S2O U2O-D32S4O U5-D26 U6S2O-D32S2O U6S2O-D36S2O test", + "options": [ + "U2O-D2O", + "U2O-D4O", + "U2O-D24S4O", + "U2O-D32S2O", + "U2O-D32S4O", + "U5-D26", + "U6S2O-D32S2O", + "U6S2O-D36S2O", + "test" + ], + "type": "list", + "current_value": "U6S2O-D36S2O", + "updated_at": 1778223190 + }, + "cable rpd 1:0 mac-address": { + "hint": "Description: RPD MAC address\nPossible completions:\n[00:00:00:00:00:00]", + "options": [], + "type": "string_or_number", + "current_value": "00:00:00:00:00:00", + "updated_at": 1778223190 + }, + "cable rpd 1:0 admin-state": { + "hint": "Description: Administrative State of the slot [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223190 + }, + "cable rpd 1:0 ip-stack": { + "hint": "Description: RPD current ip stack\nPossible completions:\n[ipv6_only]", + "options": [], + "type": "string_or_number", + "current_value": "ipv6_only", + "updated_at": 1778223190 + }, + "cable rpd 1:0 ptp": { + "hint": "Possible completions:\nadmin-state Administrative State of the PTP [default down]\nbmca BMCA state [default on]\ndomain The identifier of administrative domain\ndscp Differentiated services code point value.\nmcast-mac Master multicast MAC address\nprimary-clock Primary PTP Master configuration\nprofile PTP profile\nsecondary-clock Secondary PTP Master configuration", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778223190 + }, + "cable rpd 1:0 use-base-target-rx-power": { + "hint": "Description: Enable/disable I08-like US power adjust [default disabed]\nPossible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778223190 + }, + "cable rpd 1:0 ssd-auto-upgrade": { + "hint": "Description: Enable/Disable RPD automatic upgrade\nPossible completions:\n[disabled]\ndisabled\nenabled\nsw-version SSD SW version\nurl SSD file url", + "options": [ + "disabled", + "enabled", + "sw-version", + "url" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778223190 + }, + "cable rpd 1:0 us-spectrum-capture 0 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[192]", + "options": [], + "type": "string_or_number", + "current_value": "192", + "updated_at": 1778223190 + }, + "cable rpd 1:0 us-spectrum-capture 1 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[193]", + "options": [], + "type": "string_or_number", + "current_value": "193", + "updated_at": 1778223190 + }, + "cable rpd 1:0 us-spectrum-capture 2 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[194]", + "options": [], + "type": "string_or_number", + "current_value": "194", + "updated_at": 1778223190 + }, + "cable rpd 1:0 sfp port 1 shaper": { + "hint": "Description: Enable/Disable shaper\nPossible completions:\n[enabled]\ndisabled\nenabled\nrate rate ranges: 1000 - 10000 (Mb)", + "options": [ + "disabled", + "enabled", + "rate" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778223190 + }, + "cable rpd 1:0 sfp port 1 admin-state": { + "hint": "Description: Administrative State of the Lewis port\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223190 + }, + "cable rpd 2:0 mac-address": { + "hint": "Description: RPD MAC address\nPossible completions:\n[00:20:a3:75:e8:6b]", + "options": [], + "type": "string_or_number", + "current_value": "00:20:a3:75:e8:6b", + "updated_at": 1778223190 + }, + "cable rpd 2:0 admin-state": { + "hint": "Description: Administrative State of the slot [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223190 + }, + "cable rpd 2:0 ip-stack": { + "hint": "Description: RPD current ip stack\nPossible completions:\n[ipv6_only]", + "options": [], + "type": "string_or_number", + "current_value": "ipv6_only", + "updated_at": 1778223190 + }, + "cable rpd 2:0 ptp": { + "hint": "Possible completions:\nadmin-state Administrative State of the PTP [default down]\nbmca BMCA state [default on]\ndomain The identifier of administrative domain\ndscp Differentiated services code point value.\nmcast-mac Master multicast MAC address\nprimary-clock Primary PTP Master configuration\nprofile PTP profile\nsecondary-clock Secondary PTP Master configuration", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778223190 + }, + "cable rpd 2:0 ssd-auto-upgrade": { + "hint": "Description: Enable/Disable RPD automatic upgrade\nPossible completions:\n[disabled]\ndisabled\nenabled\nsw-version SSD SW version\nurl SSD file url", + "options": [ + "disabled", + "enabled", + "sw-version", + "url" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778223190 + }, + "cable rpd 2:0 us-spectrum-capture 0 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[192]", + "options": [], + "type": "string_or_number", + "current_value": "192", + "updated_at": 1778223190 + }, + "cable rpd 2:0 us-spectrum-capture 1 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[193]", + "options": [], + "type": "string_or_number", + "current_value": "193", + "updated_at": 1778223190 + }, + "cable rpd 2:0 us-spectrum-capture 2 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[194]", + "options": [], + "type": "string_or_number", + "current_value": "194", + "updated_at": 1778223190 + }, + "cable rpd 2:0 sfp port 1 shaper": { + "hint": "Description: Enable/Disable shaper\nPossible completions:\n[enabled]\ndisabled\nenabled\nrate rate ranges: 1000 - 10000 (Mb)", + "options": [ + "disabled", + "enabled", + "rate" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778223190 + }, + "cable rpd 2:0 sfp port 1 admin-state": { + "hint": "Description: Administrative State of the Lewis port\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223190 + }, + "cable rpd 3:0 mac-address": { + "hint": "Description: RPD MAC address\nPossible completions:\n[00:20:a3:77:67:5b]", + "options": [], + "type": "string_or_number", + "current_value": "00:20:a3:77:67:5b", + "updated_at": 1778223190 + }, + "cable rpd 3:0 admin-state": { + "hint": "Description: Administrative State of the slot [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223190 + }, + "cable rpd 3:0 ip-stack": { + "hint": "Description: RPD current ip stack\nPossible completions:\n[ipv6_only]", + "options": [], + "type": "string_or_number", + "current_value": "ipv6_only", + "updated_at": 1778223241 + }, + "cable rpd 3:0 ptp": { + "hint": "Possible completions:\nadmin-state Administrative State of the PTP [default down]\nbmca BMCA state [default on]\ndomain The identifier of administrative domain\ndscp Differentiated services code point value.\nmcast-mac Master multicast MAC address\nprimary-clock Primary PTP Master configuration\nprofile PTP profile\nsecondary-clock Secondary PTP Master configuration", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778223241 + }, + "cable rpd 3:0 ssd-auto-upgrade": { + "hint": "Description: Enable/Disable RPD automatic upgrade\nPossible completions:\n[disabled]\ndisabled\nenabled\nsw-version SSD SW version\nurl SSD file url", + "options": [ + "disabled", + "enabled", + "sw-version", + "url" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778223241 + }, + "cable rpd 3:0 us-spectrum-capture 0 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[192]", + "options": [], + "type": "string_or_number", + "current_value": "192", + "updated_at": 1778223241 + }, + "cable rpd 3:0 us-spectrum-capture 1 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[193]", + "options": [], + "type": "string_or_number", + "current_value": "193", + "updated_at": 1778223241 + }, + "cable rpd 3:0 us-spectrum-capture 2 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[194]", + "options": [], + "type": "string_or_number", + "current_value": "194", + "updated_at": 1778223241 + }, + "cable rpd 3:0 sfp port 1 shaper": { + "hint": "Description: Enable/Disable shaper\nPossible completions:\n[enabled]\ndisabled\nenabled\nrate rate ranges: 1000 - 10000 (Mb)", + "options": [ + "disabled", + "enabled", + "rate" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778223241 + }, + "cable rpd 3:0 sfp port 1 admin-state": { + "hint": "Description: Administrative State of the Lewis port\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223241 + }, + "cable rpd 4:0 mac-address": { + "hint": "Description: RPD MAC address\nPossible completions:\n[00:00:00:00:00:00]", + "options": [], + "type": "string_or_number", + "current_value": "00:00:00:00:00:00", + "updated_at": 1778223241 + }, + "cable rpd 4:0 admin-state": { + "hint": "Description: Administrative State of the slot [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223241 + }, + "cable rpd 4:0 ip-stack": { + "hint": "Description: RPD current ip stack\nPossible completions:\n[ipv6_only]", + "options": [], + "type": "string_or_number", + "current_value": "ipv6_only", + "updated_at": 1778223241 + }, + "cable rpd 4:0 ptp": { + "hint": "Possible completions:\nadmin-state Administrative State of the PTP [default down]\nbmca BMCA state [default on]\ndomain The identifier of administrative domain\ndscp Differentiated services code point value.\nmcast-mac Master multicast MAC address\nprimary-clock Primary PTP Master configuration\nprofile PTP profile\nsecondary-clock Secondary PTP Master configuration", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778223241 + }, + "cable rpd 4:0 ssd-auto-upgrade": { + "hint": "Description: Enable/Disable RPD automatic upgrade\nPossible completions:\n[disabled]\ndisabled\nenabled\nsw-version SSD SW version\nurl SSD file url", + "options": [ + "disabled", + "enabled", + "sw-version", + "url" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778223241 + }, + "cable rpd 4:0 us-spectrum-capture 0 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[192]", + "options": [], + "type": "string_or_number", + "current_value": "192", + "updated_at": 1778223241 + }, + "cable rpd 4:0 us-spectrum-capture 1 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[193]", + "options": [], + "type": "string_or_number", + "current_value": "193", + "updated_at": 1778223241 + }, + "cable rpd 4:0 us-spectrum-capture 2 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[194]", + "options": [], + "type": "string_or_number", + "current_value": "194", + "updated_at": 1778223241 + }, + "cable rpd 4:0 sfp port 1 shaper": { + "hint": "Description: Enable/Disable shaper\nPossible completions:\n[enabled]\ndisabled\nenabled\nrate rate ranges: 1000 - 10000 (Mb)", + "options": [ + "disabled", + "enabled", + "rate" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778223241 + }, + "cable rpd 4:0 sfp port 1 admin-state": { + "hint": "Description: Administrative State of the Lewis port\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223241 + }, + "cable rpd 13:0 mac-address": { + "hint": "Description: RPD MAC address\nPossible completions:\n[00:20:a3:84:47:f0]", + "options": [], + "type": "string_or_number", + "current_value": "00:20:a3:84:47:f0", + "updated_at": 1778223241 + }, + "cable rpd 13:0 admin-state": { + "hint": "Description: Administrative State of the slot [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223241 + }, + "cable rpd 13:0 ip-stack": { + "hint": "Description: RPD current ip stack\nPossible completions:\n[ipv6_only]", + "options": [], + "type": "string_or_number", + "current_value": "ipv6_only", + "updated_at": 1778223241 + }, + "cable rpd 13:0 ptp": { + "hint": "Possible completions:\nadmin-state Administrative State of the PTP [default down]\nbmca BMCA state [default on]\ndomain The identifier of administrative domain\ndscp Differentiated services code point value.\nmcast-mac Master multicast MAC address\nprimary-clock Primary PTP Master configuration\nprofile PTP profile\nsecondary-clock Secondary PTP Master configuration", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778223241 + }, + "cable rpd 13:0 use-base-target-rx-power": { + "hint": "Description: Enable/disable I08-like US power adjust [default disabed]\nPossible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778223241 + }, + "cable rpd 13:0 ssd-auto-upgrade": { + "hint": "Description: Enable/Disable RPD automatic upgrade\nPossible completions:\n[disabled]\ndisabled\nenabled\nsw-version SSD SW version\nurl SSD file url", + "options": [ + "disabled", + "enabled", + "sw-version", + "url" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778223241 + }, + "cable rpd 13:0 us-spectrum-capture 0 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[192]", + "options": [], + "type": "string_or_number", + "current_value": "192", + "updated_at": 1778223241 + }, + "cable rpd 13:0 us-spectrum-capture 1 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[193]", + "options": [], + "type": "string_or_number", + "current_value": "193", + "updated_at": 1778223241 + }, + "cable rpd 13:0 us-spectrum-capture 2 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[194]", + "options": [], + "type": "string_or_number", + "current_value": "194", + "updated_at": 1778223241 + }, + "cable rpd 13:0 sfp port 1 shaper": { + "hint": "Description: Enable/Disable shaper\nPossible completions:\n[enabled]\ndisabled\nenabled\nrate rate ranges: 1000 - 10000 (Mb)", + "options": [ + "disabled", + "enabled", + "rate" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778223241 + }, + "cable rpd 13:0 sfp port 1 admin-state": { + "hint": "Description: Administrative State of the Lewis port\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223241 + }, + "cable rpd 14:0 mac-address": { + "hint": "Description: RPD MAC address\nPossible completions:\n[00:20:a3:89:cf:60]", + "options": [], + "type": "string_or_number", + "current_value": "00:20:a3:89:cf:60", + "updated_at": 1778223241 + }, + "cable rpd 14:0 admin-state": { + "hint": "Description: Administrative State of the slot [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223291 + }, + "cable rpd 14:0 ip-stack": { + "hint": "Description: RPD current ip stack\nPossible completions:\n[ipv6_only]", + "options": [], + "type": "string_or_number", + "current_value": "ipv6_only", + "updated_at": 1778223291 + }, + "cable rpd 14:0 ptp": { + "hint": "Possible completions:\nadmin-state Administrative State of the PTP [default down]\nbmca BMCA state [default on]\ndomain The identifier of administrative domain\ndscp Differentiated services code point value.\nmcast-mac Master multicast MAC address\nprimary-clock Primary PTP Master configuration\nprofile PTP profile\nsecondary-clock Secondary PTP Master configuration", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778223291 + }, + "cable rpd 14:0 ssd-auto-upgrade": { + "hint": "Description: Enable/Disable RPD automatic upgrade\nPossible completions:\n[disabled]\ndisabled\nenabled\nsw-version SSD SW version\nurl SSD file url", + "options": [ + "disabled", + "enabled", + "sw-version", + "url" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778223291 + }, + "cable rpd 14:0 us-spectrum-capture 0 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[192]", + "options": [], + "type": "string_or_number", + "current_value": "192", + "updated_at": 1778223291 + }, + "cable rpd 14:0 us-spectrum-capture 1 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[193]", + "options": [], + "type": "string_or_number", + "current_value": "193", + "updated_at": 1778223291 + }, + "cable rpd 14:0 us-spectrum-capture 2 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[194]", + "options": [], + "type": "string_or_number", + "current_value": "194", + "updated_at": 1778223291 + }, + "cable rpd 14:0 sfp port 1 shaper": { + "hint": "Description: Enable/Disable shaper\nPossible completions:\n[enabled]\ndisabled\nenabled\nrate rate ranges: 1000 - 10000 (Mb)", + "options": [ + "disabled", + "enabled", + "rate" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778223291 + }, + "cable rpd 14:0 sfp port 1 admin-state": { + "hint": "Description: Administrative State of the Lewis port\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223291 + }, + "cable rpd 15:0 mac-address": { + "hint": "Description: RPD MAC address\nPossible completions:\n[00:00:00:00:00:00]", + "options": [], + "type": "string_or_number", + "current_value": "00:00:00:00:00:00", + "updated_at": 1778223291 + }, + "cable rpd 15:0 admin-state": { + "hint": "Description: Administrative State of the slot [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223291 + }, + "cable rpd 15:0 ptp": { + "hint": "Possible completions:\nadmin-state Administrative State of the PTP [default down]\nbmca BMCA state [default on]\ndomain The identifier of administrative domain\ndscp Differentiated services code point value.\nmcast-mac Master multicast MAC address\nprimary-clock Primary PTP Master configuration\nprofile PTP profile\nsecondary-clock Secondary PTP Master configuration", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778223291 + }, + "cable rpd 15:0 ssd-auto-upgrade": { + "hint": "Description: Enable/Disable RPD automatic upgrade\nPossible completions:\n[disabled]\ndisabled\nenabled\nsw-version SSD SW version\nurl SSD file url", + "options": [ + "disabled", + "enabled", + "sw-version", + "url" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778223291 + }, + "cable rpd 15:0 us-spectrum-capture 0 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[192]", + "options": [], + "type": "string_or_number", + "current_value": "192", + "updated_at": 1778223291 + }, + "cable rpd 15:0 us-spectrum-capture 1 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[193]", + "options": [], + "type": "string_or_number", + "current_value": "193", + "updated_at": 1778223291 + }, + "cable rpd 15:0 us-spectrum-capture 2 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[194]", + "options": [], + "type": "string_or_number", + "current_value": "194", + "updated_at": 1778223291 + }, + "cable rpd 18:0 mac-address": { + "hint": "Description: RPD MAC address\nPossible completions:\n[00:20:a3:9f:81:50]", + "options": [], + "type": "string_or_number", + "current_value": "00:20:a3:9f:81:50", + "updated_at": 1778223291 + }, + "cable rpd 18:0 admin-state": { + "hint": "Description: Administrative State of the slot [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223291 + }, + "cable rpd 18:0 ip-stack": { + "hint": "Description: RPD current ip stack\nPossible completions:\n[ipv6_only]", + "options": [], + "type": "string_or_number", + "current_value": "ipv6_only", + "updated_at": 1778223291 + }, + "cable rpd 18:0 ptp": { + "hint": "Possible completions:\nadmin-state Administrative State of the PTP [default down]\nbmca BMCA state [default on]\ndomain The identifier of administrative domain\ndscp Differentiated services code point value.\nmcast-mac Master multicast MAC address\nprimary-clock Primary PTP Master configuration\nprofile PTP profile\nsecondary-clock Secondary PTP Master configuration", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778223291 + }, + "cable rpd 18:0 ssd-auto-upgrade": { + "hint": "Description: Enable/Disable RPD automatic upgrade\nPossible completions:\n[disabled]\ndisabled\nenabled\nsw-version SSD SW version\nurl SSD file url", + "options": [ + "disabled", + "enabled", + "sw-version", + "url" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778223291 + }, + "cable rpd 18:0 us-spectrum-capture 0 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[192]", + "options": [], + "type": "string_or_number", + "current_value": "192", + "updated_at": 1778223291 + }, + "cable rpd 18:0 us-spectrum-capture 1 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[193]", + "options": [], + "type": "string_or_number", + "current_value": "193", + "updated_at": 1778223291 + }, + "cable rpd 18:0 us-spectrum-capture 2 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[194]", + "options": [], + "type": "string_or_number", + "current_value": "194", + "updated_at": 1778223291 + }, + "cable rpd 18:0 sfp port 1 shaper": { + "hint": "Description: Enable/Disable shaper\nPossible completions:\n[enabled]\ndisabled\nenabled\nrate rate ranges: 1000 - 10000 (Mb)", + "options": [ + "disabled", + "enabled", + "rate" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778223291 + }, + "cable rpd 18:0 sfp port 1 admin-state": { + "hint": "Description: Administrative State of the Lewis port\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223291 + }, + "cable rpd 19:0 mac-address": { + "hint": "Description: RPD MAC address\nPossible completions:\n[00:20:a3:84:5d:d0]", + "options": [], + "type": "string_or_number", + "current_value": "00:20:a3:84:5d:d0", + "updated_at": 1778223291 + }, + "cable rpd 19:0 admin-state": { + "hint": "Description: Administrative State of the slot [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223291 + }, + "cable rpd 19:0 ip-stack": { + "hint": "Description: RPD current ip stack\nPossible completions:\n[ipv6_only]", + "options": [], + "type": "string_or_number", + "current_value": "ipv6_only", + "updated_at": 1778223291 + }, + "cable rpd 19:0 ptp": { + "hint": "Possible completions:\nadmin-state Administrative State of the PTP [default down]\nbmca BMCA state [default on]\ndomain The identifier of administrative domain\ndscp Differentiated services code point value.\nmcast-mac Master multicast MAC address\nprimary-clock Primary PTP Master configuration\nprofile PTP profile\nsecondary-clock Secondary PTP Master configuration", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778223291 + }, + "cable rpd 19:0 ssd-auto-upgrade": { + "hint": "Description: Enable/Disable RPD automatic upgrade\nPossible completions:\n[disabled]\ndisabled\nenabled\nsw-version SSD SW version\nurl SSD file url", + "options": [ + "disabled", + "enabled", + "sw-version", + "url" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778223342 + }, + "cable rpd 19:0 us-spectrum-capture 0 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[192]", + "options": [], + "type": "string_or_number", + "current_value": "192", + "updated_at": 1778223342 + }, + "cable rpd 19:0 us-spectrum-capture 1 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[193]", + "options": [], + "type": "string_or_number", + "current_value": "193", + "updated_at": 1778223342 + }, + "cable rpd 19:0 us-spectrum-capture 2 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[194]", + "options": [], + "type": "string_or_number", + "current_value": "194", + "updated_at": 1778223342 + }, + "cable rpd 19:0 sfp port 1 shaper": { + "hint": "Description: Enable/Disable shaper\nPossible completions:\n[enabled]\ndisabled\nenabled\nrate rate ranges: 1000 - 10000 (Mb)", + "options": [ + "disabled", + "enabled", + "rate" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778223342 + }, + "cable rpd 19:0 sfp port 1 admin-state": { + "hint": "Description: Administrative State of the Lewis port\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223342 + }, + "cable rpd 21:0 mac-address": { + "hint": "Description: RPD MAC address\nPossible completions:\n[00:20:a3:b6:5f:50]", + "options": [], + "type": "string_or_number", + "current_value": "00:20:a3:b6:5f:50", + "updated_at": 1778223342 + }, + "cable rpd 21:0 admin-state": { + "hint": "Description: Administrative State of the slot [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223342 + }, + "cable rpd 21:0 ip-stack": { + "hint": "Description: RPD current ip stack\nPossible completions:\n[ipv6_only]", + "options": [], + "type": "string_or_number", + "current_value": "ipv6_only", + "updated_at": 1778223342 + }, + "cable rpd 21:0 ptp": { + "hint": "Possible completions:\nadmin-state Administrative State of the PTP [default down]\nbmca BMCA state [default on]\ndomain The identifier of administrative domain\ndscp Differentiated services code point value.\nmcast-mac Master multicast MAC address\nprimary-clock Primary PTP Master configuration\nprofile PTP profile\nsecondary-clock Secondary PTP Master configuration", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778223342 + }, + "cable rpd 21:0 ssd-auto-upgrade": { + "hint": "Description: Enable/Disable RPD automatic upgrade\nPossible completions:\n[disabled]\ndisabled\nenabled\nsw-version SSD SW version\nurl SSD file url", + "options": [ + "disabled", + "enabled", + "sw-version", + "url" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778223342 + }, + "cable rpd 21:0 us-spectrum-capture 0 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[192]", + "options": [], + "type": "string_or_number", + "current_value": "192", + "updated_at": 1778223342 + }, + "cable rpd 21:0 us-spectrum-capture 1 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[193]", + "options": [], + "type": "string_or_number", + "current_value": "193", + "updated_at": 1778223342 + }, + "cable rpd 21:0 us-spectrum-capture 2 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[194]", + "options": [], + "type": "string_or_number", + "current_value": "194", + "updated_at": 1778223342 + }, + "cable rpd 21:0 sfp port 1 shaper": { + "hint": "Description: Enable/Disable shaper\nPossible completions:\n[enabled]\ndisabled\nenabled\nrate rate ranges: 1000 - 10000 (Mb)", + "options": [ + "disabled", + "enabled", + "rate" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778223342 + }, + "cable rpd 21:0 sfp port 1 admin-state": { + "hint": "Description: Administrative State of the Lewis port\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223342 + }, + "cable rpd 31:0 mac-address": { + "hint": "Description: RPD MAC address\nPossible completions:\n[00:20:a3:b4:97:50]", + "options": [], + "type": "string_or_number", + "current_value": "00:20:a3:b4:97:50", + "updated_at": 1778223342 + }, + "cable rpd 31:0 admin-state": { + "hint": "Description: Administrative State of the slot [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223342 + }, + "cable rpd 31:0 ip-stack": { + "hint": "Description: RPD current ip stack\nPossible completions:\n[ipv6_only]", + "options": [], + "type": "string_or_number", + "current_value": "ipv6_only", + "updated_at": 1778223342 + }, + "cable rpd 31:0 ptp": { + "hint": "Possible completions:\nadmin-state Administrative State of the PTP [default down]\nbmca BMCA state [default on]\ndomain The identifier of administrative domain\ndscp Differentiated services code point value.\nmcast-mac Master multicast MAC address\nprimary-clock Primary PTP Master configuration\nprofile PTP profile\nsecondary-clock Secondary PTP Master configuration", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778223342 + }, + "cable rpd 31:0 use-base-target-rx-power": { + "hint": "Description: Enable/disable I08-like US power adjust [default disabed]\nPossible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778223342 + }, + "cable rpd 31:0 ssd-auto-upgrade": { + "hint": "Description: Enable/Disable RPD automatic upgrade\nPossible completions:\n[disabled]\ndisabled\nenabled\nsw-version SSD SW version\nurl SSD file url", + "options": [ + "disabled", + "enabled", + "sw-version", + "url" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778223342 + }, + "cable rpd 31:0 us-spectrum-capture 0 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[192]", + "options": [], + "type": "string_or_number", + "current_value": "192", + "updated_at": 1778223342 + }, + "cable rpd 31:0 us-spectrum-capture 1 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[193]", + "options": [], + "type": "string_or_number", + "current_value": "193", + "updated_at": 1778223342 + }, + "cable rpd 31:0 us-spectrum-capture 2 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[194]", + "options": [], + "type": "string_or_number", + "current_value": "194", + "updated_at": 1778223342 + }, + "cable rpd 31:0 sfp port 1 shaper": { + "hint": "Description: Enable/Disable shaper\nPossible completions:\n[enabled]\ndisabled\nenabled\nrate rate ranges: 1000 - 10000 (Mb)", + "options": [ + "disabled", + "enabled", + "rate" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778223342 + }, + "cable rpd 31:0 sfp port 1 admin-state": { + "hint": "Description: Administrative State of the Lewis port\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223342 + }, + "cable rpd 32:0 mac-address": { + "hint": "Description: RPD MAC address\nPossible completions:\n[00:20:a3:ab:30:a0]", + "options": [], + "type": "string_or_number", + "current_value": "00:20:a3:ab:30:a0", + "updated_at": 1778223342 + }, + "cable rpd 32:0 admin-state": { + "hint": "Description: Administrative State of the slot [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223342 + }, + "cable rpd 32:0 ip-stack": { + "hint": "Description: RPD current ip stack\nPossible completions:\n[ipv6_only]", + "options": [], + "type": "string_or_number", + "current_value": "ipv6_only", + "updated_at": 1778223342 + }, + "cable rpd 32:0 ptp": { + "hint": "Possible completions:\nadmin-state Administrative State of the PTP [default down]\nbmca BMCA state [default on]\ndomain The identifier of administrative domain\ndscp Differentiated services code point value.\nmcast-mac Master multicast MAC address\nprimary-clock Primary PTP Master configuration\nprofile PTP profile\nsecondary-clock Secondary PTP Master configuration", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778223393 + }, + "cable rpd 32:0 use-base-target-rx-power": { + "hint": "Description: Enable/disable I08-like US power adjust [default disabed]\nPossible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778223393 + }, + "cable rpd 32:0 ssd-auto-upgrade": { + "hint": "Description: Enable/Disable RPD automatic upgrade\nPossible completions:\n[disabled]\ndisabled\nenabled\nsw-version SSD SW version\nurl SSD file url", + "options": [ + "disabled", + "enabled", + "sw-version", + "url" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778223393 + }, + "cable rpd 32:0 us-spectrum-capture 0 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[192]", + "options": [], + "type": "string_or_number", + "current_value": "192", + "updated_at": 1778223393 + }, + "cable rpd 32:0 us-spectrum-capture 1 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[193]", + "options": [], + "type": "string_or_number", + "current_value": "193", + "updated_at": 1778223393 + }, + "cable rpd 32:0 us-spectrum-capture 2 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[194]", + "options": [], + "type": "string_or_number", + "current_value": "194", + "updated_at": 1778223393 + }, + "cable rpd 32:0 sfp port 1 shaper": { + "hint": "Description: Enable/Disable shaper\nPossible completions:\n[enabled]\ndisabled\nenabled\nrate rate ranges: 1000 - 10000 (Mb)", + "options": [ + "disabled", + "enabled", + "rate" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778223393 + }, + "cable rpd 32:0 sfp port 1 admin-state": { + "hint": "Description: Administrative State of the Lewis port\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223393 + }, + "cable rpd 33:0 mac-address": { + "hint": "Description: RPD MAC address\nPossible completions:\n[00:20:a3:a1:07:b0]", + "options": [], + "type": "string_or_number", + "current_value": "00:20:a3:a1:07:b0", + "updated_at": 1778223393 + }, + "cable rpd 33:0 admin-state": { + "hint": "Description: Administrative State of the slot [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223393 + }, + "cable rpd 33:0 ip-stack": { + "hint": "Description: RPD current ip stack\nPossible completions:\n[ipv6_only]", + "options": [], + "type": "string_or_number", + "current_value": "ipv6_only", + "updated_at": 1778223393 + }, + "cable rpd 33:0 ptp": { + "hint": "Possible completions:\nadmin-state Administrative State of the PTP [default down]\nbmca BMCA state [default on]\ndomain The identifier of administrative domain\ndscp Differentiated services code point value.\nmcast-mac Master multicast MAC address\nprimary-clock Primary PTP Master configuration\nprofile PTP profile\nsecondary-clock Secondary PTP Master configuration", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778223393 + }, + "cable rpd 33:0 use-base-target-rx-power": { + "hint": "Description: Enable/disable I08-like US power adjust [default disabed]\nPossible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778223393 + }, + "cable rpd 33:0 ssd-auto-upgrade": { + "hint": "Description: Enable/Disable RPD automatic upgrade\nPossible completions:\n[disabled]\ndisabled\nenabled\nsw-version SSD SW version\nurl SSD file url", + "options": [ + "disabled", + "enabled", + "sw-version", + "url" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778223393 + }, + "cable rpd 33:0 us-spectrum-capture 0 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[192]", + "options": [], + "type": "string_or_number", + "current_value": "192", + "updated_at": 1778223393 + }, + "cable rpd 33:0 us-spectrum-capture 1 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[193]", + "options": [], + "type": "string_or_number", + "current_value": "193", + "updated_at": 1778223393 + }, + "cable rpd 33:0 us-spectrum-capture 2 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[194]", + "options": [], + "type": "string_or_number", + "current_value": "194", + "updated_at": 1778223393 + }, + "cable rpd 33:0 sfp port 1 shaper": { + "hint": "Description: Enable/Disable shaper\nPossible completions:\n[enabled]\ndisabled\nenabled\nrate rate ranges: 1000 - 10000 (Mb)", + "options": [ + "disabled", + "enabled", + "rate" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778223393 + }, + "cable rpd 33:0 sfp port 1 admin-state": { + "hint": "Description: Administrative State of the Lewis port\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223393 + }, + "cable rpd 51:0 mac-address": { + "hint": "Description: RPD MAC address\nPossible completions:\n[00:20:a3:cc:aa:ca]", + "options": [], + "type": "string_or_number", + "current_value": "00:20:a3:cc:aa:ca", + "updated_at": 1778223393 + }, + "cable rpd 51:0 description": { + "hint": "Description: Arbitrary text\nPossible completions:\n[XM4-FieledFDX]", + "options": [], + "type": "string_or_number", + "current_value": "XM4-FieledFDX", + "updated_at": 1778223393 + }, + "cable rpd 51:0 name": { + "hint": "Description: RPD name. Used for Remote Phy Shelf only\nPossible completions:\n[XM4-FieledFDX]", + "options": [], + "type": "string_or_number", + "current_value": "XM4-FieledFDX", + "updated_at": 1778223393 + }, + "cable rpd 51:0 admin-state": { + "hint": "Description: Administrative State of the slot [default down]\nPossible completions:\n[down] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "down", + "updated_at": 1778223393 + }, + "cable rpd 51:0 ip-stack": { + "hint": "Description: RPD current ip stack\nPossible completions:\n[ipv6_only]", + "options": [], + "type": "string_or_number", + "current_value": "ipv6_only", + "updated_at": 1778223393 + }, + "cable rpd 51:0 ptp": { + "hint": "Possible completions:\nadmin-state Administrative State of the PTP [default down]\nbmca BMCA state [default on]\ndomain The identifier of administrative domain\ndscp Differentiated services code point value.\nmcast-mac Master multicast MAC address\nprimary-clock Primary PTP Master configuration\nprofile PTP profile\nsecondary-clock Secondary PTP Master configuration", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778223393 + }, + "cable rpd 51:0 use-base-target-rx-power": { + "hint": "Description: Enable/disable I08-like US power adjust [default disabed]\nPossible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778223393 + }, + "cable rpd 51:0 ssd-auto-upgrade": { + "hint": "Description: Enable/Disable RPD automatic upgrade\nPossible completions:\n[disabled]\ndisabled\nenabled\nsw-version SSD SW version\nurl SSD file url", + "options": [ + "disabled", + "enabled", + "sw-version", + "url" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778223393 + }, + "cable rpd 51:0 us-spectrum-capture 0 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[192]", + "options": [], + "type": "string_or_number", + "current_value": "192", + "updated_at": 1778223393 + }, + "cable rpd 51:0 us-spectrum-capture 1 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[193]", + "options": [], + "type": "string_or_number", + "current_value": "193", + "updated_at": 1778223393 + }, + "cable rpd 51:0 us-spectrum-capture 2 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[194]", + "options": [], + "type": "string_or_number", + "current_value": "194", + "updated_at": 1778223393 + }, + "cable rpd 51:0 sfp port 1 shaper": { + "hint": "Description: Enable/Disable shaper\nPossible completions:\n[enabled]\ndisabled\nenabled\nrate rate ranges: 1000 - 10000 (Mb)", + "options": [ + "disabled", + "enabled", + "rate" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778223443 + }, + "cable rpd 51:0 sfp port 1 admin-state": { + "hint": "Description: Administrative State of the Lewis port\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223443 + }, + "cable rpd 52:0 mac-address": { + "hint": "Description: RPD MAC address\nPossible completions:\n[aa:20:a3:ab:31:bb]", + "options": [], + "type": "string_or_number", + "current_value": "aa:20:a3:ab:31:bb", + "updated_at": 1778223443 + }, + "cable rpd 52:0 description": { + "hint": "Description: Arbitrary text\nPossible completions:\n[XM4-FullFDX]", + "options": [], + "type": "string_or_number", + "current_value": "XM4-FullFDX", + "updated_at": 1778223443 + }, + "cable rpd 52:0 name": { + "hint": "Description: RPD name. Used for Remote Phy Shelf only\nPossible completions:\n[FullFDX]", + "options": [], + "type": "string_or_number", + "current_value": "FullFDX", + "updated_at": 1778223443 + }, + "cable rpd 52:0 admin-state": { + "hint": "Description: Administrative State of the slot [default down]\nPossible completions:\n[down] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "down", + "updated_at": 1778223443 + }, + "cable rpd 52:0 ip-stack": { + "hint": "Description: RPD current ip stack\nPossible completions:\n[ipv6_only]", + "options": [], + "type": "string_or_number", + "current_value": "ipv6_only", + "updated_at": 1778223443 + }, + "cable rpd 52:0 ptp": { + "hint": "Possible completions:\nadmin-state Administrative State of the PTP [default down]\nbmca BMCA state [default on]\ndomain The identifier of administrative domain\ndscp Differentiated services code point value.\nmcast-mac Master multicast MAC address\nprimary-clock Primary PTP Master configuration\nprofile PTP profile\nsecondary-clock Secondary PTP Master configuration", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778223443 + }, + "cable rpd 52:0 use-base-target-rx-power": { + "hint": "Description: Enable/disable I08-like US power adjust [default disabed]\nPossible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778223443 + }, + "cable rpd 52:0 ssd-auto-upgrade": { + "hint": "Description: Enable/Disable RPD automatic upgrade\nPossible completions:\n[disabled]\ndisabled\nenabled\nsw-version SSD SW version\nurl SSD file url", + "options": [ + "disabled", + "enabled", + "sw-version", + "url" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778223443 + }, + "cable rpd 52:0 us-spectrum-capture 0 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[192]", + "options": [], + "type": "string_or_number", + "current_value": "192", + "updated_at": 1778223443 + }, + "cable rpd 52:0 us-spectrum-capture 1 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[193]", + "options": [], + "type": "string_or_number", + "current_value": "193", + "updated_at": 1778223443 + }, + "cable rpd 52:0 us-spectrum-capture 2 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[194]", + "options": [], + "type": "string_or_number", + "current_value": "194", + "updated_at": 1778223443 + }, + "cable rpd 52:0 sfp port 1 shaper": { + "hint": "Description: Enable/Disable shaper\nPossible completions:\n[enabled]\ndisabled\nenabled\nrate rate ranges: 1000 - 10000 (Mb)", + "options": [ + "disabled", + "enabled", + "rate" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778223443 + }, + "cable rpd 52:0 sfp port 1 admin-state": { + "hint": "Description: Administrative State of the Lewis port\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223443 + }, + "cable rpd 53:0 mac-address": { + "hint": "Description: RPD MAC address\nPossible completions:\n[00:20:a3:ab:31:50]", + "options": [], + "type": "string_or_number", + "current_value": "00:20:a3:ab:31:50", + "updated_at": 1778223443 + }, + "cable rpd 53:0 description": { + "hint": "Description: Arbitrary text\nPossible completions:\n[XM4-Genesis]", + "options": [], + "type": "string_or_number", + "current_value": "XM4-Genesis", + "updated_at": 1778223443 + }, + "cable rpd 53:0 name": { + "hint": "Description: RPD name. Used for Remote Phy Shelf only\nPossible completions:\n[Genesis]", + "options": [], + "type": "string_or_number", + "current_value": "Genesis", + "updated_at": 1778223443 + }, + "cable rpd 53:0 admin-state": { + "hint": "Description: Administrative State of the slot [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223443 + }, + "cable rpd 53:0 ip-stack": { + "hint": "Description: RPD current ip stack\nPossible completions:\n[ipv6_only]", + "options": [], + "type": "string_or_number", + "current_value": "ipv6_only", + "updated_at": 1778223443 + }, + "cable rpd 53:0 ptp": { + "hint": "Possible completions:\nadmin-state Administrative State of the PTP [default down]\nbmca BMCA state [default on]\ndomain The identifier of administrative domain\ndscp Differentiated services code point value.\nmcast-mac Master multicast MAC address\nprimary-clock Primary PTP Master configuration\nprofile PTP profile\nsecondary-clock Secondary PTP Master configuration", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778223443 + }, + "cable rpd 53:0 use-base-target-rx-power": { + "hint": "Description: Enable/disable I08-like US power adjust [default disabed]\nPossible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778223443 + }, + "cable rpd 53:0 ssd-auto-upgrade": { + "hint": "Description: Enable/Disable RPD automatic upgrade\nPossible completions:\n[disabled]\ndisabled\nenabled\nsw-version SSD SW version\nurl SSD file url", + "options": [ + "disabled", + "enabled", + "sw-version", + "url" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778223443 + }, + "cable rpd 53:0 us-spectrum-capture 0 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[192]", + "options": [], + "type": "string_or_number", + "current_value": "192", + "updated_at": 1778223443 + }, + "cable rpd 53:0 us-spectrum-capture 1 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[193]", + "options": [], + "type": "string_or_number", + "current_value": "193", + "updated_at": 1778223443 + }, + "cable rpd 53:0 us-spectrum-capture 2 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[194]", + "options": [], + "type": "string_or_number", + "current_value": "194", + "updated_at": 1778223443 + }, + "cable rpd 53:0 sfp port 1 shaper": { + "hint": "Description: Enable/Disable shaper\nPossible completions:\n[enabled]\ndisabled\nenabled\nrate rate ranges: 1000 - 10000 (Mb)", + "options": [ + "disabled", + "enabled", + "rate" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778223443 + }, + "cable rpd 53:0 sfp port 1 admin-state": { + "hint": "Description: Administrative State of the Lewis port\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223443 + }, + "cable rpd 61:0 mac-address": { + "hint": "Description: RPD MAC address\nPossible completions:\n[00:20:a3:9d:5a:b0]", + "options": [], + "type": "string_or_number", + "current_value": "00:20:a3:9d:5a:b0", + "updated_at": 1778223443 + }, + "cable rpd 61:0 description": { + "hint": "Description: Arbitrary text\nPossible completions:\n[Viper-Topology-1-Full-FDX]", + "options": [], + "type": "string_or_number", + "current_value": "Viper-Topology-1-Full-FDX", + "updated_at": 1778223443 + }, + "cable rpd 61:0 admin-state": { + "hint": "Description: Administrative State of the slot [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223494 + }, + "cable rpd 61:0 ip-stack": { + "hint": "Description: RPD current ip stack\nPossible completions:\n[ipv6_only]", + "options": [], + "type": "string_or_number", + "current_value": "ipv6_only", + "updated_at": 1778223494 + }, + "cable rpd 61:0 ptp": { + "hint": "Possible completions:\nadmin-state Administrative State of the PTP [default down]\nbmca BMCA state [default on]\ndomain The identifier of administrative domain\ndscp Differentiated services code point value.\nmcast-mac Master multicast MAC address\nprimary-clock Primary PTP Master configuration\nprofile PTP profile\nsecondary-clock Secondary PTP Master configuration", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778223494 + }, + "cable rpd 61:0 ssd-auto-upgrade": { + "hint": "Description: Enable/Disable RPD automatic upgrade\nPossible completions:\n[disabled]\ndisabled\nenabled\nsw-version SSD SW version\nurl SSD file url", + "options": [ + "disabled", + "enabled", + "sw-version", + "url" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778223494 + }, + "cable rpd 61:0 us-spectrum-capture 0 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[192]", + "options": [], + "type": "string_or_number", + "current_value": "192", + "updated_at": 1778223494 + }, + "cable rpd 61:0 us-spectrum-capture 1 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[193]", + "options": [], + "type": "string_or_number", + "current_value": "193", + "updated_at": 1778223494 + }, + "cable rpd 61:0 us-spectrum-capture 2 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[194]", + "options": [], + "type": "string_or_number", + "current_value": "194", + "updated_at": 1778223494 + }, + "cable rpd 61:0 sfp port 1 shaper": { + "hint": "Description: Enable/Disable shaper\nPossible completions:\n[enabled]\ndisabled\nenabled\nrate rate ranges: 1000 - 10000 (Mb)", + "options": [ + "disabled", + "enabled", + "rate" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778223494 + }, + "cable rpd 61:0 sfp port 1 admin-state": { + "hint": "Description: Administrative State of the Lewis port\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223494 + }, + "cable rpd 62:0 mac-address": { + "hint": "Description: RPD MAC address\nPossible completions:\n[00:20:a3:33:55:cc]", + "options": [], + "type": "string_or_number", + "current_value": "00:20:a3:33:55:cc", + "updated_at": 1778223494 + }, + "cable rpd 62:0 description": { + "hint": "Description: Arbitrary text\nPossible completions:\n[Viper-Topology-1-Partial-FDX]", + "options": [], + "type": "string_or_number", + "current_value": "Viper-Topology-1-Partial-FDX", + "updated_at": 1778223494 + }, + "cable rpd 62:0 admin-state": { + "hint": "Description: Administrative State of the slot [default down]\nPossible completions:\n[down] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "down", + "updated_at": 1778223494 + }, + "cable rpd 62:0 ip-stack": { + "hint": "Description: RPD current ip stack\nPossible completions:\n[ipv6_only]", + "options": [], + "type": "string_or_number", + "current_value": "ipv6_only", + "updated_at": 1778223494 + }, + "cable rpd 62:0 ptp": { + "hint": "Possible completions:\nadmin-state Administrative State of the PTP [default down]\nbmca BMCA state [default on]\ndomain The identifier of administrative domain\ndscp Differentiated services code point value.\nmcast-mac Master multicast MAC address\nprimary-clock Primary PTP Master configuration\nprofile PTP profile\nsecondary-clock Secondary PTP Master configuration", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778223494 + }, + "cable rpd 62:0 ssd-auto-upgrade": { + "hint": "Description: Enable/Disable RPD automatic upgrade\nPossible completions:\n[disabled]\ndisabled\nenabled\nsw-version SSD SW version\nurl SSD file url", + "options": [ + "disabled", + "enabled", + "sw-version", + "url" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778223494 + }, + "cable rpd 62:0 us-spectrum-capture 0 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[192]", + "options": [], + "type": "string_or_number", + "current_value": "192", + "updated_at": 1778223494 + }, + "cable rpd 62:0 us-spectrum-capture 1 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[193]", + "options": [], + "type": "string_or_number", + "current_value": "193", + "updated_at": 1778223494 + }, + "cable rpd 62:0 us-spectrum-capture 2 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[194]", + "options": [], + "type": "string_or_number", + "current_value": "194", + "updated_at": 1778223494 + }, + "cable rpd 62:0 sfp port 1 shaper": { + "hint": "Description: Enable/Disable shaper\nPossible completions:\n[enabled]\ndisabled\nenabled\nrate rate ranges: 1000 - 10000 (Mb)", + "options": [ + "disabled", + "enabled", + "rate" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778223494 + }, + "cable rpd 62:0 sfp port 1 admin-state": { + "hint": "Description: Administrative State of the Lewis port\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223494 + }, + "cable rpd 91:0 mac-address": { + "hint": "Description: RPD MAC address\nPossible completions:\n[00:00:00:00:00:00]", + "options": [], + "type": "string_or_number", + "current_value": "00:00:00:00:00:00", + "updated_at": 1778223494 + }, + "cable rpd 91:0 admin-state": { + "hint": "Description: Administrative State of the slot [default down]\nPossible completions:\n[down] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "down", + "updated_at": 1778223494 + }, + "cable rpd 91:0 ptp": { + "hint": "Possible completions:\nadmin-state Administrative State of the PTP [default down]\nbmca BMCA state [default on]\ndomain The identifier of administrative domain\ndscp Differentiated services code point value.\nmcast-mac Master multicast MAC address\nprimary-clock Primary PTP Master configuration\nprofile PTP profile\nsecondary-clock Secondary PTP Master configuration", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778223494 + }, + "cable rpd 91:0 ssd-auto-upgrade": { + "hint": "Description: Enable/Disable RPD automatic upgrade\nPossible completions:\n[disabled]\ndisabled\nenabled\nsw-version SSD SW version\nurl SSD file url", + "options": [ + "disabled", + "enabled", + "sw-version", + "url" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778223494 + }, + "cable rpd 91:0 us-spectrum-capture 0 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[192]", + "options": [], + "type": "string_or_number", + "current_value": "192", + "updated_at": 1778223494 + }, + "cable rpd 91:0 us-spectrum-capture 1 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[193]", + "options": [], + "type": "string_or_number", + "current_value": "193", + "updated_at": 1778223494 + }, + "cable rpd 91:0 us-spectrum-capture 2 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[194]", + "options": [], + "type": "string_or_number", + "current_value": "194", + "updated_at": 1778223494 + }, + "cable rpd 91:0 sfp port 1 shaper": { + "hint": "Description: Enable/Disable shaper\nPossible completions:\n[enabled]\ndisabled\nenabled\nrate rate ranges: 1000 - 10000 (Mb)", + "options": [ + "disabled", + "enabled", + "rate" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778223494 + }, + "cable rpd 91:0 sfp port 1 admin-state": { + "hint": "Description: Administrative State of the Lewis port\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223494 + }, + "cable rpd 93:0 mac-address": { + "hint": "Description: RPD MAC address\nPossible completions:\n[00:20:a1:de:bb:cc]", + "options": [], + "type": "string_or_number", + "current_value": "00:20:a1:de:bb:cc", + "updated_at": 1778223494 + }, + "cable rpd 93:0 description": { + "hint": "Description: Arbitrary text\nPossible completions:\n[GenesisTest]", + "options": [], + "type": "string_or_number", + "current_value": "GenesisTest", + "updated_at": 1778223544 + }, + "cable rpd 93:0 name": { + "hint": "Description: RPD name. Used for Remote Phy Shelf only\nPossible completions:\n[GenesisTest]", + "options": [], + "type": "string_or_number", + "current_value": "GenesisTest", + "updated_at": 1778223544 + }, + "cable rpd 93:0 admin-state": { + "hint": "Description: Administrative State of the slot [default down]\nPossible completions:\n[down] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "down", + "updated_at": 1778223544 + }, + "cable rpd 93:0 ip-stack": { + "hint": "Description: RPD current ip stack\nPossible completions:\n[ipv6_only]", + "options": [], + "type": "string_or_number", + "current_value": "ipv6_only", + "updated_at": 1778223544 + }, + "cable rpd 93:0 ptp": { + "hint": "Possible completions:\nadmin-state Administrative State of the PTP [default down]\nbmca BMCA state [default on]\ndomain The identifier of administrative domain\ndscp Differentiated services code point value.\nmcast-mac Master multicast MAC address\nprimary-clock Primary PTP Master configuration\nprofile PTP profile\nsecondary-clock Secondary PTP Master configuration", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778223544 + }, + "cable rpd 93:0 use-base-target-rx-power": { + "hint": "Description: Enable/disable I08-like US power adjust [default disabed]\nPossible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778223544 + }, + "cable rpd 93:0 ssd-auto-upgrade": { + "hint": "Description: Enable/Disable RPD automatic upgrade\nPossible completions:\n[disabled]\ndisabled\nenabled\nsw-version SSD SW version\nurl SSD file url", + "options": [ + "disabled", + "enabled", + "sw-version", + "url" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778223544 + }, + "cable rpd 93:0 us-spectrum-capture 0 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[192]", + "options": [], + "type": "string_or_number", + "current_value": "192", + "updated_at": 1778223544 + }, + "cable rpd 93:0 us-spectrum-capture 1 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[193]", + "options": [], + "type": "string_or_number", + "current_value": "193", + "updated_at": 1778223544 + }, + "cable rpd 93:0 us-spectrum-capture 2 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[194]", + "options": [], + "type": "string_or_number", + "current_value": "194", + "updated_at": 1778223544 + }, + "cable rpd 93:0 sfp port 1 shaper": { + "hint": "Description: Enable/Disable shaper\nPossible completions:\n[enabled]\ndisabled\nenabled\nrate rate ranges: 1000 - 10000 (Mb)", + "options": [ + "disabled", + "enabled", + "rate" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778223544 + }, + "cable rpd 93:0 sfp port 1 admin-state": { + "hint": "Description: Administrative State of the Lewis port\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223544 + }, + "cable rpd 99:0 mac-address": { + "hint": "Description: RPD MAC address\nPossible completions:\n[00:20:a3:a6:7d:a0]", + "options": [], + "type": "string_or_number", + "current_value": "00:20:a3:a6:7d:a0", + "updated_at": 1778223544 + }, + "cable rpd 99:0 description": { + "hint": "Description: Arbitrary text\nPossible completions:\n[Viper-Genesis-Automation]", + "options": [], + "type": "string_or_number", + "current_value": "Viper-Genesis-Automation", + "updated_at": 1778223544 + }, + "cable rpd 99:0 name": { + "hint": "Description: RPD name. Used for Remote Phy Shelf only\nPossible completions:\n[Genesis]", + "options": [], + "type": "string_or_number", + "current_value": "Genesis", + "updated_at": 1778223544 + }, + "cable rpd 99:0 admin-state": { + "hint": "Description: Administrative State of the slot [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223544 + }, + "cable rpd 99:0 ip-stack": { + "hint": "Description: RPD current ip stack\nPossible completions:\n[ipv6_only]", + "options": [], + "type": "string_or_number", + "current_value": "ipv6_only", + "updated_at": 1778223544 + }, + "cable rpd 99:0 ptp": { + "hint": "Possible completions:\nadmin-state Administrative State of the PTP [default down]\nbmca BMCA state [default on]\ndomain The identifier of administrative domain\ndscp Differentiated services code point value.\nmcast-mac Master multicast MAC address\nprimary-clock Primary PTP Master configuration\nprofile PTP profile\nsecondary-clock Secondary PTP Master configuration", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778223544 + }, + "cable rpd 99:0 use-base-target-rx-power": { + "hint": "Description: Enable/disable I08-like US power adjust [default disabed]\nPossible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778223544 + }, + "cable rpd 99:0 ssd-auto-upgrade": { + "hint": "Description: Enable/Disable RPD automatic upgrade\nPossible completions:\n[disabled]\ndisabled\nenabled\nsw-version SSD SW version\nurl SSD file url", + "options": [ + "disabled", + "enabled", + "sw-version", + "url" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778223544 + }, + "cable rpd 99:0 us-spectrum-capture 0 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[192]", + "options": [], + "type": "string_or_number", + "current_value": "192", + "updated_at": 1778223544 + }, + "cable rpd 99:0 us-spectrum-capture 1 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[193]", + "options": [], + "type": "string_or_number", + "current_value": "193", + "updated_at": 1778223544 + }, + "cable rpd 99:0 us-spectrum-capture 2 session-id": { + "hint": "Description: Session ID to set in l2tp packet header.\nPossible completions:\n[194]", + "options": [], + "type": "string_or_number", + "current_value": "194", + "updated_at": 1778223544 + }, + "cable rpd 99:0 sfp port 1 shaper": { + "hint": "Description: Enable/Disable shaper\nPossible completions:\n[enabled]\ndisabled\nenabled\nrate rate ranges: 1000 - 10000 (Mb)", + "options": [ + "disabled", + "enabled", + "rate" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778223544 + }, + "cable rpd 99:0 sfp port 1 admin-state": { + "hint": "Description: Administrative State of the Lewis port\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223544 + }, + "cable ds-rf-port 1:0/0 admin-state": { + "hint": "Description: Administrative State of the DS RF port [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223544 + }, + "cable ds-rf-port 1:0/0 max-occupied-bw-mhz": { + "hint": "Description: Maximum bandwidth occupied by this port in megahertz\nPossible completions:\n[960.0]", + "options": [], + "type": "string_or_number", + "current_value": "960.0", + "updated_at": 1778223544 + }, + "cable ds-rf-port 1:0/0 tilt-adjust": { + "hint": "Description: tilt-adjustment\nPossible completions:\n[10.0]", + "options": [], + "type": "string_or_number", + "current_value": "10.0", + "updated_at": 1778223544 + }, + "cable ds-rf-port 1:0/0 base-channel-power-dbmv": { + "hint": "Description: Base channel power level in TenthdB\nPossible completions:\n[50.0]", + "options": [], + "type": "string_or_number", + "current_value": "50.0", + "updated_at": 1778223544 + }, + "cable ds-rf-port 1:0/0 down-channel 0 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223544 + }, + "cable ds-rf-port 1:0/0 down-channel 0 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778223595 + }, + "cable ds-rf-port 1:0/0 down-channel 0 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[258.0]", + "options": [], + "type": "string_or_number", + "current_value": "258.0", + "updated_at": 1778223595 + }, + "cable ds-rf-port 1:0/0 down-channel 0 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-34]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-34", + "updated_at": 1778223595 + }, + "cable ds-rf-port 1:0/0 down-channel 1 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223595 + }, + "cable ds-rf-port 1:0/0 down-channel 1 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778223595 + }, + "cable ds-rf-port 1:0/0 down-channel 1 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[266.0]", + "options": [], + "type": "string_or_number", + "current_value": "266.0", + "updated_at": 1778223595 + }, + "cable ds-rf-port 1:0/0 down-channel 1 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-35]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-35", + "updated_at": 1778223595 + }, + "cable ds-rf-port 1:0/0 down-channel 2 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223595 + }, + "cable ds-rf-port 1:0/0 down-channel 2 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778223595 + }, + "cable ds-rf-port 1:0/0 down-channel 2 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[274.0]", + "options": [], + "type": "string_or_number", + "current_value": "274.0", + "updated_at": 1778223595 + }, + "cable ds-rf-port 1:0/0 down-channel 2 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778223595 + }, + "cable ds-rf-port 1:0/0 down-channel 3 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223595 + }, + "cable ds-rf-port 1:0/0 down-channel 3 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778223595 + }, + "cable ds-rf-port 1:0/0 down-channel 3 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[282.0]", + "options": [], + "type": "string_or_number", + "current_value": "282.0", + "updated_at": 1778223595 + }, + "cable ds-rf-port 1:0/0 down-channel 3 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-37]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-37", + "updated_at": 1778223595 + }, + "cable ds-rf-port 1:0/0 down-channel 4 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223595 + }, + "cable ds-rf-port 1:0/0 down-channel 4 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778223595 + }, + "cable ds-rf-port 1:0/0 down-channel 4 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[290.0]", + "options": [], + "type": "string_or_number", + "current_value": "290.0", + "updated_at": 1778223595 + }, + "cable ds-rf-port 1:0/0 down-channel 4 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-38]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-38", + "updated_at": 1778223595 + }, + "cable ds-rf-port 1:0/0 down-channel 5 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223595 + }, + "cable ds-rf-port 1:0/0 down-channel 5 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778223595 + }, + "cable ds-rf-port 1:0/0 down-channel 5 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[298.0]", + "options": [], + "type": "string_or_number", + "current_value": "298.0", + "updated_at": 1778223595 + }, + "cable ds-rf-port 1:0/0 down-channel 5 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-39]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-39", + "updated_at": 1778223595 + }, + "cable ds-rf-port 1:0/0 down-channel 6 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223595 + }, + "cable ds-rf-port 1:0/0 down-channel 6 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778223595 + }, + "cable ds-rf-port 1:0/0 down-channel 6 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[306.0]", + "options": [], + "type": "string_or_number", + "current_value": "306.0", + "updated_at": 1778223595 + }, + "cable ds-rf-port 1:0/0 down-channel 6 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-40]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-40", + "updated_at": 1778223595 + }, + "cable ds-rf-port 1:0/0 down-channel 7 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223595 + }, + "cable ds-rf-port 1:0/0 down-channel 7 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778223595 + }, + "cable ds-rf-port 1:0/0 down-channel 7 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[314.0]", + "options": [], + "type": "string_or_number", + "current_value": "314.0", + "updated_at": 1778223595 + }, + "cable ds-rf-port 1:0/0 down-channel 7 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-41]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-41", + "updated_at": 1778223646 + }, + "cable ds-rf-port 1:0/0 down-channel 8 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223646 + }, + "cable ds-rf-port 1:0/0 down-channel 8 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778223646 + }, + "cable ds-rf-port 1:0/0 down-channel 8 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[322.0]", + "options": [], + "type": "string_or_number", + "current_value": "322.0", + "updated_at": 1778223646 + }, + "cable ds-rf-port 1:0/0 down-channel 8 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-42]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-42", + "updated_at": 1778223646 + }, + "cable ds-rf-port 1:0/0 down-channel 9 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223646 + }, + "cable ds-rf-port 1:0/0 down-channel 9 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778223646 + }, + "cable ds-rf-port 1:0/0 down-channel 9 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[330.0]", + "options": [], + "type": "string_or_number", + "current_value": "330.0", + "updated_at": 1778223646 + }, + "cable ds-rf-port 1:0/0 down-channel 9 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-43]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-43", + "updated_at": 1778223646 + }, + "cable ds-rf-port 1:0/0 down-channel 10 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223646 + }, + "cable ds-rf-port 1:0/0 down-channel 10 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778223646 + }, + "cable ds-rf-port 1:0/0 down-channel 10 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[338.0]", + "options": [], + "type": "string_or_number", + "current_value": "338.0", + "updated_at": 1778223646 + }, + "cable ds-rf-port 1:0/0 down-channel 10 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-44]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-44", + "updated_at": 1778223646 + }, + "cable ds-rf-port 1:0/0 down-channel 11 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223646 + }, + "cable ds-rf-port 1:0/0 down-channel 11 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778223646 + }, + "cable ds-rf-port 1:0/0 down-channel 11 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[346.0]", + "options": [], + "type": "string_or_number", + "current_value": "346.0", + "updated_at": 1778223646 + }, + "cable ds-rf-port 1:0/0 down-channel 11 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-45]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-45", + "updated_at": 1778223646 + }, + "cable ds-rf-port 1:0/0 down-channel 12 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223646 + }, + "cable ds-rf-port 1:0/0 down-channel 12 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778223646 + }, + "cable ds-rf-port 1:0/0 down-channel 12 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[354.0]", + "options": [], + "type": "string_or_number", + "current_value": "354.0", + "updated_at": 1778223646 + }, + "cable ds-rf-port 1:0/0 down-channel 12 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-46]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-46", + "updated_at": 1778223646 + }, + "cable ds-rf-port 1:0/0 down-channel 13 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223646 + }, + "cable ds-rf-port 1:0/0 down-channel 13 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778223646 + }, + "cable ds-rf-port 1:0/0 down-channel 13 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[362.0]", + "options": [], + "type": "string_or_number", + "current_value": "362.0", + "updated_at": 1778223646 + }, + "cable ds-rf-port 1:0/0 down-channel 13 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-47]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-47", + "updated_at": 1778223646 + }, + "cable ds-rf-port 1:0/0 down-channel 14 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223646 + }, + "cable ds-rf-port 1:0/0 down-channel 14 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778223646 + }, + "cable ds-rf-port 1:0/0 down-channel 14 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[370.0]", + "options": [], + "type": "string_or_number", + "current_value": "370.0", + "updated_at": 1778223646 + }, + "cable ds-rf-port 1:0/0 down-channel 14 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-48]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-48", + "updated_at": 1778223646 + }, + "cable ds-rf-port 1:0/0 down-channel 15 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223646 + }, + "cable ds-rf-port 1:0/0 down-channel 15 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778223697 + }, + "cable ds-rf-port 1:0/0 down-channel 15 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[378.0]", + "options": [], + "type": "string_or_number", + "current_value": "378.0", + "updated_at": 1778223697 + }, + "cable ds-rf-port 1:0/0 down-channel 15 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-49]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-49", + "updated_at": 1778223697 + }, + "cable ds-rf-port 1:0/0 down-channel 16 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223697 + }, + "cable ds-rf-port 1:0/0 down-channel 16 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778223697 + }, + "cable ds-rf-port 1:0/0 down-channel 16 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[386.0]", + "options": [], + "type": "string_or_number", + "current_value": "386.0", + "updated_at": 1778223697 + }, + "cable ds-rf-port 1:0/0 down-channel 16 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-50]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-50", + "updated_at": 1778223697 + }, + "cable ds-rf-port 1:0/0 down-channel 17 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223697 + }, + "cable ds-rf-port 1:0/0 down-channel 17 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778223697 + }, + "cable ds-rf-port 1:0/0 down-channel 17 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[394.0]", + "options": [], + "type": "string_or_number", + "current_value": "394.0", + "updated_at": 1778223697 + }, + "cable ds-rf-port 1:0/0 down-channel 17 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-51]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-51", + "updated_at": 1778223697 + }, + "cable ds-rf-port 1:0/0 down-channel 18 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223697 + }, + "cable ds-rf-port 1:0/0 down-channel 18 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778223697 + }, + "cable ds-rf-port 1:0/0 down-channel 18 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[402.0]", + "options": [], + "type": "string_or_number", + "current_value": "402.0", + "updated_at": 1778223697 + }, + "cable ds-rf-port 1:0/0 down-channel 18 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-52]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-52", + "updated_at": 1778223697 + }, + "cable ds-rf-port 1:0/0 down-channel 19 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223697 + }, + "cable ds-rf-port 1:0/0 down-channel 19 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778223697 + }, + "cable ds-rf-port 1:0/0 down-channel 19 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[410.0]", + "options": [], + "type": "string_or_number", + "current_value": "410.0", + "updated_at": 1778223697 + }, + "cable ds-rf-port 1:0/0 down-channel 19 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-53]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-53", + "updated_at": 1778223697 + }, + "cable ds-rf-port 1:0/0 down-channel 20 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223697 + }, + "cable ds-rf-port 1:0/0 down-channel 20 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778223697 + }, + "cable ds-rf-port 1:0/0 down-channel 20 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[418.0]", + "options": [], + "type": "string_or_number", + "current_value": "418.0", + "updated_at": 1778223697 + }, + "cable ds-rf-port 1:0/0 down-channel 20 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-54]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-54", + "updated_at": 1778223697 + }, + "cable ds-rf-port 1:0/0 down-channel 21 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223697 + }, + "cable ds-rf-port 1:0/0 down-channel 21 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778223697 + }, + "cable ds-rf-port 1:0/0 down-channel 21 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[426.0]", + "options": [], + "type": "string_or_number", + "current_value": "426.0", + "updated_at": 1778223697 + }, + "cable ds-rf-port 1:0/0 down-channel 21 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-55]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-55", + "updated_at": 1778223697 + }, + "cable ds-rf-port 1:0/0 down-channel 22 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223697 + }, + "cable ds-rf-port 1:0/0 down-channel 22 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778223697 + }, + "cable ds-rf-port 1:0/0 down-channel 22 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[434.0]", + "options": [], + "type": "string_or_number", + "current_value": "434.0", + "updated_at": 1778223697 + }, + "cable ds-rf-port 1:0/0 down-channel 22 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-56]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-56", + "updated_at": 1778223747 + }, + "cable ds-rf-port 1:0/0 down-channel 23 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223747 + }, + "cable ds-rf-port 1:0/0 down-channel 23 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[1]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778223747 + }, + "cable ds-rf-port 1:0/0 down-channel 23 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[442.0]", + "options": [], + "type": "string_or_number", + "current_value": "442.0", + "updated_at": 1778223747 + }, + "cable ds-rf-port 1:0/0 down-channel 23 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-57]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-57", + "updated_at": 1778223747 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 0 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223747 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 0 cyclic-prefix": { + "hint": "Description: Cyclic prefix configuration\nPossible completions:\n[256]", + "options": [], + "type": "string_or_number", + "current_value": "256", + "updated_at": 1778223747 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 0 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778223747 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 0 query-load-percent": { + "hint": "Description: Define amount of traffic sent on each profile for testing MER.\nPossible completions:\n[0.0]", + "options": [], + "type": "string_or_number", + "current_value": "0.0", + "updated_at": 1778223747 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 0 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778223747 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 0 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778223747 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 0 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [450.0]", + "options": [], + "type": "string_or_number", + "current_value": "450.0", + "updated_at": 1778223747 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 0 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[642.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778223747 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 0 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[546.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778223747 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 0 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778223747 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 0 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778223747 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 0 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778223747 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 0 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778223747 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 0 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778223747 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 0 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778223747 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 1 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223747 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 1 cyclic-prefix": { + "hint": "Description: Cyclic prefix configuration\nPossible completions:\n[256]", + "options": [], + "type": "string_or_number", + "current_value": "256", + "updated_at": 1778223747 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 1 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778223747 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 1 query-load-percent": { + "hint": "Description: Define amount of traffic sent on each profile for testing MER.\nPossible completions:\n[0.0]", + "options": [], + "type": "string_or_number", + "current_value": "0.0", + "updated_at": 1778223747 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 1 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778223747 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 1 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778223747 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 1 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [642.0]", + "options": [], + "type": "string_or_number", + "current_value": "642.0", + "updated_at": 1778223747 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 1 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[834.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778223747 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 1 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[738.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778223747 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 1 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778223747 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 1 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778223798 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 1 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778223798 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 1 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778223798 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 1 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778223798 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 1 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778223798 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 2 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223798 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 2 cyclic-prefix": { + "hint": "Description: Cyclic prefix configuration\nPossible completions:\n[256]", + "options": [], + "type": "string_or_number", + "current_value": "256", + "updated_at": 1778223798 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 2 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778223798 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 2 query-load-percent": { + "hint": "Description: Define amount of traffic sent on each profile for testing MER.\nPossible completions:\n[0.0]", + "options": [], + "type": "string_or_number", + "current_value": "0.0", + "updated_at": 1778223798 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 2 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778223798 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 2 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778223798 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 2 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [834.0]", + "options": [], + "type": "string_or_number", + "current_value": "834.0", + "updated_at": 1778223798 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 2 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[1026.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778223798 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 2 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[930.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778223798 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 2 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778223798 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 2 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778223798 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 2 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778223798 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 2 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778223798 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 2 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778223798 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 2 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778223798 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 3 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223798 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 3 cyclic-prefix": { + "hint": "Description: Cyclic prefix configuration\nPossible completions:\n[256]", + "options": [], + "type": "string_or_number", + "current_value": "256", + "updated_at": 1778223798 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 3 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778223798 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 3 query-load-percent": { + "hint": "Description: Define amount of traffic sent on each profile for testing MER.\nPossible completions:\n[0.0]", + "options": [], + "type": "string_or_number", + "current_value": "0.0", + "updated_at": 1778223798 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 3 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778223798 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 3 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778223798 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 3 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [1026.0]", + "options": [], + "type": "string_or_number", + "current_value": "1026.0", + "updated_at": 1778223798 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 3 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[1218.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778223798 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 3 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[1122.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778223798 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 3 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778223798 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 3 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778223849 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 3 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778223849 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 3 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778223849 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 3 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778223849 + }, + "cable ds-rf-port 1:0/0 ofdm-channel 3 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778223849 + }, + "cable ds-rf-port 2:0/0 admin-state": { + "hint": "Description: Administrative State of the DS RF port [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223849 + }, + "cable ds-rf-port 2:0/0 max-occupied-bw-mhz": { + "hint": "Description: Maximum bandwidth occupied by this port in megahertz\nPossible completions:\n[600.0]", + "options": [], + "type": "string_or_number", + "current_value": "600.0", + "updated_at": 1778223849 + }, + "cable ds-rf-port 2:0/0 tilt-adjust": { + "hint": "Description: tilt-adjustment\nPossible completions:\n[10.0]", + "options": [], + "type": "string_or_number", + "current_value": "10.0", + "updated_at": 1778223849 + }, + "cable ds-rf-port 2:0/0 base-channel-power-dbmv": { + "hint": "Description: Base channel power level in TenthdB\nPossible completions:\n[35.0]", + "options": [], + "type": "string_or_number", + "current_value": "35.0", + "updated_at": 1778223849 + }, + "cable ds-rf-port 2:0/0 down-channel 0 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223849 + }, + "cable ds-rf-port 2:0/0 down-channel 0 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778223849 + }, + "cable ds-rf-port 2:0/0 down-channel 0 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[807.0]", + "options": [], + "type": "string_or_number", + "current_value": "807.0", + "updated_at": 1778223849 + }, + "cable ds-rf-port 2:0/0 down-channel 0 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-34]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-34", + "updated_at": 1778223849 + }, + "cable ds-rf-port 2:0/0 down-channel 1 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778223849 + }, + "cable ds-rf-port 2:0/0 down-channel 1 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778223849 + }, + "cable ds-rf-port 2:0/0 down-channel 1 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[291.0]", + "options": [], + "type": "string_or_number", + "current_value": "291.0", + "updated_at": 1778223849 + }, + "cable ds-rf-port 2:0/0 down-channel 1 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-35]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-35", + "updated_at": 1778223849 + }, + "cable ds-rf-port 2:0/0 down-channel 2 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778223849 + }, + "cable ds-rf-port 2:0/0 down-channel 2 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[297.0]", + "options": [], + "type": "string_or_number", + "current_value": "297.0", + "updated_at": 1778223849 + }, + "cable ds-rf-port 2:0/0 down-channel 2 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778223849 + }, + "cable ds-rf-port 2:0/0 down-channel 3 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778223849 + }, + "cable ds-rf-port 2:0/0 down-channel 3 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[303.0]", + "options": [], + "type": "string_or_number", + "current_value": "303.0", + "updated_at": 1778223849 + }, + "cable ds-rf-port 2:0/0 down-channel 3 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-37]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-37", + "updated_at": 1778223849 + }, + "cable ds-rf-port 2:0/0 down-channel 4 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778223849 + }, + "cable ds-rf-port 2:0/0 down-channel 4 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[309.0]", + "options": [], + "type": "string_or_number", + "current_value": "309.0", + "updated_at": 1778223849 + }, + "cable ds-rf-port 2:0/0 down-channel 4 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-38]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-38", + "updated_at": 1778223849 + }, + "cable ds-rf-port 2:0/0 down-channel 5 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778223849 + }, + "cable ds-rf-port 2:0/0 down-channel 5 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[315.0]", + "options": [], + "type": "string_or_number", + "current_value": "315.0", + "updated_at": 1778223849 + }, + "cable ds-rf-port 2:0/0 down-channel 5 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-39]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-39", + "updated_at": 1778223849 + }, + "cable ds-rf-port 2:0/0 down-channel 6 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778223849 + }, + "cable ds-rf-port 2:0/0 down-channel 6 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[321.0]", + "options": [], + "type": "string_or_number", + "current_value": "321.0", + "updated_at": 1778223900 + }, + "cable ds-rf-port 2:0/0 down-channel 6 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-40]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-40", + "updated_at": 1778223900 + }, + "cable ds-rf-port 2:0/0 down-channel 7 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778223900 + }, + "cable ds-rf-port 2:0/0 down-channel 7 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[327.0]", + "options": [], + "type": "string_or_number", + "current_value": "327.0", + "updated_at": 1778223900 + }, + "cable ds-rf-port 2:0/0 down-channel 7 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-41]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-41", + "updated_at": 1778223900 + }, + "cable ds-rf-port 2:0/0 down-channel 8 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778223900 + }, + "cable ds-rf-port 2:0/0 down-channel 8 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[333.0]", + "options": [], + "type": "string_or_number", + "current_value": "333.0", + "updated_at": 1778223900 + }, + "cable ds-rf-port 2:0/0 down-channel 8 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-42]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-42", + "updated_at": 1778223900 + }, + "cable ds-rf-port 2:0/0 down-channel 9 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778223900 + }, + "cable ds-rf-port 2:0/0 down-channel 9 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[339.0]", + "options": [], + "type": "string_or_number", + "current_value": "339.0", + "updated_at": 1778223900 + }, + "cable ds-rf-port 2:0/0 down-channel 9 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-43]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-43", + "updated_at": 1778223900 + }, + "cable ds-rf-port 2:0/0 down-channel 10 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778223900 + }, + "cable ds-rf-port 2:0/0 down-channel 10 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[345.0]", + "options": [], + "type": "string_or_number", + "current_value": "345.0", + "updated_at": 1778223900 + }, + "cable ds-rf-port 2:0/0 down-channel 10 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-44]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-44", + "updated_at": 1778223900 + }, + "cable ds-rf-port 2:0/0 down-channel 11 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778223900 + }, + "cable ds-rf-port 2:0/0 down-channel 11 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[351.0]", + "options": [], + "type": "string_or_number", + "current_value": "351.0", + "updated_at": 1778223900 + }, + "cable ds-rf-port 2:0/0 down-channel 11 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-45]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-45", + "updated_at": 1778223900 + }, + "cable ds-rf-port 2:0/0 down-channel 12 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778223900 + }, + "cable ds-rf-port 2:0/0 down-channel 12 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[357.0]", + "options": [], + "type": "string_or_number", + "current_value": "357.0", + "updated_at": 1778223900 + }, + "cable ds-rf-port 2:0/0 down-channel 12 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-46]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-46", + "updated_at": 1778223900 + }, + "cable ds-rf-port 2:0/0 down-channel 13 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778223900 + }, + "cable ds-rf-port 2:0/0 down-channel 13 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[363.0]", + "options": [], + "type": "string_or_number", + "current_value": "363.0", + "updated_at": 1778223900 + }, + "cable ds-rf-port 2:0/0 down-channel 13 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-47]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-47", + "updated_at": 1778223900 + }, + "cable ds-rf-port 2:0/0 down-channel 14 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778223900 + }, + "cable ds-rf-port 2:0/0 down-channel 14 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[369.0]", + "options": [], + "type": "string_or_number", + "current_value": "369.0", + "updated_at": 1778223900 + }, + "cable ds-rf-port 2:0/0 down-channel 14 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-48]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-48", + "updated_at": 1778223900 + }, + "cable ds-rf-port 2:0/0 down-channel 15 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778223900 + }, + "cable ds-rf-port 2:0/0 down-channel 15 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[375.0]", + "options": [], + "type": "string_or_number", + "current_value": "375.0", + "updated_at": 1778223900 + }, + "cable ds-rf-port 2:0/0 down-channel 15 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-49]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-49", + "updated_at": 1778223900 + }, + "cable ds-rf-port 2:0/0 down-channel 16 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778223900 + }, + "cable ds-rf-port 2:0/0 down-channel 16 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[381.0]", + "options": [], + "type": "string_or_number", + "current_value": "381.0", + "updated_at": 1778223950 + }, + "cable ds-rf-port 2:0/0 down-channel 16 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-50]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-50", + "updated_at": 1778223950 + }, + "cable ds-rf-port 2:0/0 down-channel 17 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778223950 + }, + "cable ds-rf-port 2:0/0 down-channel 17 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[387.0]", + "options": [], + "type": "string_or_number", + "current_value": "387.0", + "updated_at": 1778223950 + }, + "cable ds-rf-port 2:0/0 down-channel 17 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-51]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-51", + "updated_at": 1778223950 + }, + "cable ds-rf-port 2:0/0 down-channel 18 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778223950 + }, + "cable ds-rf-port 2:0/0 down-channel 18 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[393.0]", + "options": [], + "type": "string_or_number", + "current_value": "393.0", + "updated_at": 1778223950 + }, + "cable ds-rf-port 2:0/0 down-channel 18 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-52]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-52", + "updated_at": 1778223950 + }, + "cable ds-rf-port 2:0/0 down-channel 19 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778223950 + }, + "cable ds-rf-port 2:0/0 down-channel 19 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[399.0]", + "options": [], + "type": "string_or_number", + "current_value": "399.0", + "updated_at": 1778223950 + }, + "cable ds-rf-port 2:0/0 down-channel 19 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-53]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-53", + "updated_at": 1778223950 + }, + "cable ds-rf-port 2:0/0 down-channel 20 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778223950 + }, + "cable ds-rf-port 2:0/0 down-channel 20 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[405.0]", + "options": [], + "type": "string_or_number", + "current_value": "405.0", + "updated_at": 1778223950 + }, + "cable ds-rf-port 2:0/0 down-channel 20 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-54]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-54", + "updated_at": 1778223950 + }, + "cable ds-rf-port 2:0/0 down-channel 21 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778223950 + }, + "cable ds-rf-port 2:0/0 down-channel 21 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[411.0]", + "options": [], + "type": "string_or_number", + "current_value": "411.0", + "updated_at": 1778223950 + }, + "cable ds-rf-port 2:0/0 down-channel 21 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-55]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-55", + "updated_at": 1778223950 + }, + "cable ds-rf-port 2:0/0 down-channel 22 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778223950 + }, + "cable ds-rf-port 2:0/0 down-channel 22 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[417.0]", + "options": [], + "type": "string_or_number", + "current_value": "417.0", + "updated_at": 1778223950 + }, + "cable ds-rf-port 2:0/0 down-channel 22 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-56]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-56", + "updated_at": 1778223950 + }, + "cable ds-rf-port 2:0/0 down-channel 23 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778223950 + }, + "cable ds-rf-port 2:0/0 down-channel 23 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[423.0]", + "options": [], + "type": "string_or_number", + "current_value": "423.0", + "updated_at": 1778223950 + }, + "cable ds-rf-port 2:0/0 down-channel 23 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-57]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-57", + "updated_at": 1778223950 + }, + "cable ds-rf-port 2:0/0 down-channel 24 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778223950 + }, + "cable ds-rf-port 2:0/0 down-channel 24 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[429.0]", + "options": [], + "type": "string_or_number", + "current_value": "429.0", + "updated_at": 1778223950 + }, + "cable ds-rf-port 2:0/0 down-channel 24 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-58]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-58", + "updated_at": 1778223950 + }, + "cable ds-rf-port 2:0/0 down-channel 25 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778223950 + }, + "cable ds-rf-port 2:0/0 down-channel 25 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[435.0]", + "options": [], + "type": "string_or_number", + "current_value": "435.0", + "updated_at": 1778223950 + }, + "cable ds-rf-port 2:0/0 down-channel 25 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-59]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-59", + "updated_at": 1778223950 + }, + "cable ds-rf-port 2:0/0 down-channel 26 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778223950 + }, + "cable ds-rf-port 2:0/0 down-channel 26 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[441.0]", + "options": [], + "type": "string_or_number", + "current_value": "441.0", + "updated_at": 1778224001 + }, + "cable ds-rf-port 2:0/0 down-channel 26 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-60]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-60", + "updated_at": 1778224001 + }, + "cable ds-rf-port 2:0/0 down-channel 27 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224001 + }, + "cable ds-rf-port 2:0/0 down-channel 27 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[447.0]", + "options": [], + "type": "string_or_number", + "current_value": "447.0", + "updated_at": 1778224001 + }, + "cable ds-rf-port 2:0/0 down-channel 27 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-61]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-61", + "updated_at": 1778224001 + }, + "cable ds-rf-port 2:0/0 down-channel 28 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224001 + }, + "cable ds-rf-port 2:0/0 down-channel 28 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[453.0]", + "options": [], + "type": "string_or_number", + "current_value": "453.0", + "updated_at": 1778224001 + }, + "cable ds-rf-port 2:0/0 down-channel 28 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-62]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-62", + "updated_at": 1778224001 + }, + "cable ds-rf-port 2:0/0 down-channel 29 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224001 + }, + "cable ds-rf-port 2:0/0 down-channel 29 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[459.0]", + "options": [], + "type": "string_or_number", + "current_value": "459.0", + "updated_at": 1778224001 + }, + "cable ds-rf-port 2:0/0 down-channel 29 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-63]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-63", + "updated_at": 1778224001 + }, + "cable ds-rf-port 2:0/0 down-channel 30 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224001 + }, + "cable ds-rf-port 2:0/0 down-channel 30 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[465.0]", + "options": [], + "type": "string_or_number", + "current_value": "465.0", + "updated_at": 1778224001 + }, + "cable ds-rf-port 2:0/0 down-channel 30 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-64]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-64", + "updated_at": 1778224001 + }, + "cable ds-rf-port 2:0/0 down-channel 31 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224001 + }, + "cable ds-rf-port 2:0/0 down-channel 31 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[471.0]", + "options": [], + "type": "string_or_number", + "current_value": "471.0", + "updated_at": 1778224001 + }, + "cable ds-rf-port 2:0/0 down-channel 31 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-65]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-65", + "updated_at": 1778224001 + }, + "cable ds-rf-port 2:0/0 down-channel 64 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224001 + }, + "cable ds-rf-port 2:0/0 down-channel 64 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[261.0]", + "options": [], + "type": "string_or_number", + "current_value": "261.0", + "updated_at": 1778224001 + }, + "cable ds-rf-port 2:0/0 down-channel 64 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-30]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-30", + "updated_at": 1778224001 + }, + "cable ds-rf-port 2:0/0 down-channel 65 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224001 + }, + "cable ds-rf-port 2:0/0 down-channel 65 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[267.0]", + "options": [], + "type": "string_or_number", + "current_value": "267.0", + "updated_at": 1778224001 + }, + "cable ds-rf-port 2:0/0 down-channel 65 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-31]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-31", + "updated_at": 1778224001 + }, + "cable ds-rf-port 2:0/0 down-channel 66 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224001 + }, + "cable ds-rf-port 2:0/0 down-channel 66 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[273.0]", + "options": [], + "type": "string_or_number", + "current_value": "273.0", + "updated_at": 1778224001 + }, + "cable ds-rf-port 2:0/0 down-channel 66 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-32]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-32", + "updated_at": 1778224001 + }, + "cable ds-rf-port 2:0/0 down-channel 67 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224001 + }, + "cable ds-rf-port 2:0/0 down-channel 67 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[279.0]", + "options": [], + "type": "string_or_number", + "current_value": "279.0", + "updated_at": 1778224001 + }, + "cable ds-rf-port 2:0/0 down-channel 67 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-33]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-33", + "updated_at": 1778224001 + }, + "cable ds-rf-port 2:0/0 ofdm-channel 0 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[down] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "down", + "updated_at": 1778224001 + }, + "cable ds-rf-port 2:0/0 ofdm-channel 0 cyclic-prefix": { + "hint": "Description: Cyclic prefix configuration\nPossible completions:\n[256]", + "options": [], + "type": "string_or_number", + "current_value": "256", + "updated_at": 1778224052 + }, + "cable ds-rf-port 2:0/0 ofdm-channel 0 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778224052 + }, + "cable ds-rf-port 2:0/0 ofdm-channel 0 query-load-percent": { + "hint": "Description: Define amount of traffic sent on each profile for testing MER.\nPossible completions:\n[0.0]", + "options": [], + "type": "string_or_number", + "current_value": "0.0", + "updated_at": 1778224052 + }, + "cable ds-rf-port 2:0/0 ofdm-channel 0 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778224052 + }, + "cable ds-rf-port 2:0/0 ofdm-channel 0 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778224052 + }, + "cable ds-rf-port 2:0/0 ofdm-channel 0 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [477.0]", + "options": [], + "type": "string_or_number", + "current_value": "477.0", + "updated_at": 1778224052 + }, + "cable ds-rf-port 2:0/0 ofdm-channel 0 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[669.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778224052 + }, + "cable ds-rf-port 2:0/0 ofdm-channel 0 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[573.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778224052 + }, + "cable ds-rf-port 2:0/0 ofdm-channel 0 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778224052 + }, + "cable ds-rf-port 2:0/0 ofdm-channel 0 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778224052 + }, + "cable ds-rf-port 2:0/0 ofdm-channel 0 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778224052 + }, + "cable ds-rf-port 2:0/0 ofdm-channel 0 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778224052 + }, + "cable ds-rf-port 2:0/0 ofdm-channel 0 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778224052 + }, + "cable ds-rf-port 2:0/0 ofdm-channel 0 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778224052 + }, + "cable ds-rf-port 3:0/0 admin-state": { + "hint": "Description: Administrative State of the DS RF port [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224052 + }, + "cable ds-rf-port 3:0/0 max-occupied-bw-mhz": { + "hint": "Description: Maximum bandwidth occupied by this port in megahertz\nPossible completions:\n[960.0]", + "options": [], + "type": "string_or_number", + "current_value": "960.0", + "updated_at": 1778224052 + }, + "cable ds-rf-port 3:0/0 base-channel-power-dbmv": { + "hint": "Description: Base channel power level in TenthdB\nPossible completions:\n[43.0]", + "options": [], + "type": "string_or_number", + "current_value": "43.0", + "updated_at": 1778224052 + }, + "cable ds-rf-port 3:0/0 down-channel 0 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224052 + }, + "cable ds-rf-port 3:0/0 down-channel 0 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224052 + }, + "cable ds-rf-port 3:0/0 down-channel 0 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[258.0]", + "options": [], + "type": "string_or_number", + "current_value": "258.0", + "updated_at": 1778224052 + }, + "cable ds-rf-port 3:0/0 down-channel 0 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-34]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-34", + "updated_at": 1778224052 + }, + "cable ds-rf-port 3:0/0 down-channel 1 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224052 + }, + "cable ds-rf-port 3:0/0 down-channel 1 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224052 + }, + "cable ds-rf-port 3:0/0 down-channel 1 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[264.0]", + "options": [], + "type": "string_or_number", + "current_value": "264.0", + "updated_at": 1778224052 + }, + "cable ds-rf-port 3:0/0 down-channel 1 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-35]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-35", + "updated_at": 1778224052 + }, + "cable ds-rf-port 3:0/0 down-channel 2 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224052 + }, + "cable ds-rf-port 3:0/0 down-channel 2 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224052 + }, + "cable ds-rf-port 3:0/0 down-channel 2 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[270.0]", + "options": [], + "type": "string_or_number", + "current_value": "270.0", + "updated_at": 1778224052 + }, + "cable ds-rf-port 3:0/0 down-channel 2 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778224052 + }, + "cable ds-rf-port 3:0/0 down-channel 3 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224052 + }, + "cable ds-rf-port 3:0/0 down-channel 3 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224102 + }, + "cable ds-rf-port 3:0/0 down-channel 3 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[276.0]", + "options": [], + "type": "string_or_number", + "current_value": "276.0", + "updated_at": 1778224102 + }, + "cable ds-rf-port 3:0/0 down-channel 3 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-37]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-37", + "updated_at": 1778224102 + }, + "cable ds-rf-port 3:0/0 down-channel 4 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224102 + }, + "cable ds-rf-port 3:0/0 down-channel 4 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224102 + }, + "cable ds-rf-port 3:0/0 down-channel 4 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[282.0]", + "options": [], + "type": "string_or_number", + "current_value": "282.0", + "updated_at": 1778224102 + }, + "cable ds-rf-port 3:0/0 down-channel 4 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-38]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-38", + "updated_at": 1778224102 + }, + "cable ds-rf-port 3:0/0 down-channel 5 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224102 + }, + "cable ds-rf-port 3:0/0 down-channel 5 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224102 + }, + "cable ds-rf-port 3:0/0 down-channel 5 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[288.0]", + "options": [], + "type": "string_or_number", + "current_value": "288.0", + "updated_at": 1778224102 + }, + "cable ds-rf-port 3:0/0 down-channel 5 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-39]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-39", + "updated_at": 1778224102 + }, + "cable ds-rf-port 3:0/0 down-channel 6 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224102 + }, + "cable ds-rf-port 3:0/0 down-channel 6 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224102 + }, + "cable ds-rf-port 3:0/0 down-channel 6 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[294.0]", + "options": [], + "type": "string_or_number", + "current_value": "294.0", + "updated_at": 1778224102 + }, + "cable ds-rf-port 3:0/0 down-channel 6 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-40]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-40", + "updated_at": 1778224102 + }, + "cable ds-rf-port 3:0/0 down-channel 7 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224102 + }, + "cable ds-rf-port 3:0/0 down-channel 7 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224102 + }, + "cable ds-rf-port 3:0/0 down-channel 7 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[300.0]", + "options": [], + "type": "string_or_number", + "current_value": "300.0", + "updated_at": 1778224102 + }, + "cable ds-rf-port 3:0/0 down-channel 7 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-41]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-41", + "updated_at": 1778224102 + }, + "cable ds-rf-port 3:0/0 down-channel 8 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224102 + }, + "cable ds-rf-port 3:0/0 down-channel 8 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224102 + }, + "cable ds-rf-port 3:0/0 down-channel 8 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[306.0]", + "options": [], + "type": "string_or_number", + "current_value": "306.0", + "updated_at": 1778224102 + }, + "cable ds-rf-port 3:0/0 down-channel 8 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-42]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-42", + "updated_at": 1778224102 + }, + "cable ds-rf-port 3:0/0 down-channel 9 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224102 + }, + "cable ds-rf-port 3:0/0 down-channel 9 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224102 + }, + "cable ds-rf-port 3:0/0 down-channel 9 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[312.0]", + "options": [], + "type": "string_or_number", + "current_value": "312.0", + "updated_at": 1778224102 + }, + "cable ds-rf-port 3:0/0 down-channel 9 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-43]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-43", + "updated_at": 1778224102 + }, + "cable ds-rf-port 3:0/0 down-channel 10 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224102 + }, + "cable ds-rf-port 3:0/0 down-channel 10 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224102 + }, + "cable ds-rf-port 3:0/0 down-channel 10 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[318.0]", + "options": [], + "type": "string_or_number", + "current_value": "318.0", + "updated_at": 1778224102 + }, + "cable ds-rf-port 3:0/0 down-channel 10 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-44]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-44", + "updated_at": 1778224153 + }, + "cable ds-rf-port 3:0/0 down-channel 11 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224153 + }, + "cable ds-rf-port 3:0/0 down-channel 11 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224153 + }, + "cable ds-rf-port 3:0/0 down-channel 11 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[324.0]", + "options": [], + "type": "string_or_number", + "current_value": "324.0", + "updated_at": 1778224153 + }, + "cable ds-rf-port 3:0/0 down-channel 11 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-45]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-45", + "updated_at": 1778224153 + }, + "cable ds-rf-port 3:0/0 down-channel 12 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224153 + }, + "cable ds-rf-port 3:0/0 down-channel 12 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224153 + }, + "cable ds-rf-port 3:0/0 down-channel 12 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[330.0]", + "options": [], + "type": "string_or_number", + "current_value": "330.0", + "updated_at": 1778224153 + }, + "cable ds-rf-port 3:0/0 down-channel 12 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-46]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-46", + "updated_at": 1778224153 + }, + "cable ds-rf-port 3:0/0 down-channel 13 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224153 + }, + "cable ds-rf-port 3:0/0 down-channel 13 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224153 + }, + "cable ds-rf-port 3:0/0 down-channel 13 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[336.0]", + "options": [], + "type": "string_or_number", + "current_value": "336.0", + "updated_at": 1778224153 + }, + "cable ds-rf-port 3:0/0 down-channel 13 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-47]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-47", + "updated_at": 1778224153 + }, + "cable ds-rf-port 3:0/0 down-channel 14 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224153 + }, + "cable ds-rf-port 3:0/0 down-channel 14 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224153 + }, + "cable ds-rf-port 3:0/0 down-channel 14 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[342.0]", + "options": [], + "type": "string_or_number", + "current_value": "342.0", + "updated_at": 1778224153 + }, + "cable ds-rf-port 3:0/0 down-channel 14 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-48]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-48", + "updated_at": 1778224153 + }, + "cable ds-rf-port 3:0/0 down-channel 15 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224153 + }, + "cable ds-rf-port 3:0/0 down-channel 15 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224153 + }, + "cable ds-rf-port 3:0/0 down-channel 15 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[348.0]", + "options": [], + "type": "string_or_number", + "current_value": "348.0", + "updated_at": 1778224153 + }, + "cable ds-rf-port 3:0/0 down-channel 15 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-49]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-49", + "updated_at": 1778224153 + }, + "cable ds-rf-port 3:0/0 down-channel 16 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224153 + }, + "cable ds-rf-port 3:0/0 down-channel 16 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224153 + }, + "cable ds-rf-port 3:0/0 down-channel 16 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[354.0]", + "options": [], + "type": "string_or_number", + "current_value": "354.0", + "updated_at": 1778224153 + }, + "cable ds-rf-port 3:0/0 down-channel 16 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-50]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-50", + "updated_at": 1778224153 + }, + "cable ds-rf-port 3:0/0 down-channel 17 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224153 + }, + "cable ds-rf-port 3:0/0 down-channel 17 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224153 + }, + "cable ds-rf-port 3:0/0 down-channel 17 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[360.0]", + "options": [], + "type": "string_or_number", + "current_value": "360.0", + "updated_at": 1778224153 + }, + "cable ds-rf-port 3:0/0 down-channel 17 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-51]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-51", + "updated_at": 1778224153 + }, + "cable ds-rf-port 3:0/0 down-channel 18 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224153 + }, + "cable ds-rf-port 3:0/0 down-channel 18 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224204 + }, + "cable ds-rf-port 3:0/0 down-channel 18 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[366.0]", + "options": [], + "type": "string_or_number", + "current_value": "366.0", + "updated_at": 1778224204 + }, + "cable ds-rf-port 3:0/0 down-channel 18 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-52]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-52", + "updated_at": 1778224204 + }, + "cable ds-rf-port 3:0/0 down-channel 19 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224204 + }, + "cable ds-rf-port 3:0/0 down-channel 19 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224204 + }, + "cable ds-rf-port 3:0/0 down-channel 19 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[372.0]", + "options": [], + "type": "string_or_number", + "current_value": "372.0", + "updated_at": 1778224204 + }, + "cable ds-rf-port 3:0/0 down-channel 19 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-53]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-53", + "updated_at": 1778224204 + }, + "cable ds-rf-port 3:0/0 down-channel 20 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224204 + }, + "cable ds-rf-port 3:0/0 down-channel 20 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224204 + }, + "cable ds-rf-port 3:0/0 down-channel 20 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[378.0]", + "options": [], + "type": "string_or_number", + "current_value": "378.0", + "updated_at": 1778224204 + }, + "cable ds-rf-port 3:0/0 down-channel 20 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-54]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-54", + "updated_at": 1778224204 + }, + "cable ds-rf-port 3:0/0 down-channel 21 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224204 + }, + "cable ds-rf-port 3:0/0 down-channel 21 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224204 + }, + "cable ds-rf-port 3:0/0 down-channel 21 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[384.0]", + "options": [], + "type": "string_or_number", + "current_value": "384.0", + "updated_at": 1778224204 + }, + "cable ds-rf-port 3:0/0 down-channel 21 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-55]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-55", + "updated_at": 1778224204 + }, + "cable ds-rf-port 3:0/0 down-channel 22 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224204 + }, + "cable ds-rf-port 3:0/0 down-channel 22 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224204 + }, + "cable ds-rf-port 3:0/0 down-channel 22 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[390.0]", + "options": [], + "type": "string_or_number", + "current_value": "390.0", + "updated_at": 1778224204 + }, + "cable ds-rf-port 3:0/0 down-channel 22 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-56]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-56", + "updated_at": 1778224204 + }, + "cable ds-rf-port 3:0/0 down-channel 23 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224204 + }, + "cable ds-rf-port 3:0/0 down-channel 23 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224204 + }, + "cable ds-rf-port 3:0/0 down-channel 23 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[396.0]", + "options": [], + "type": "string_or_number", + "current_value": "396.0", + "updated_at": 1778224204 + }, + "cable ds-rf-port 3:0/0 down-channel 23 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-57]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-57", + "updated_at": 1778224204 + }, + "cable ds-rf-port 3:0/0 down-channel 24 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224204 + }, + "cable ds-rf-port 3:0/0 down-channel 24 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224204 + }, + "cable ds-rf-port 3:0/0 down-channel 24 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[402.0]", + "options": [], + "type": "string_or_number", + "current_value": "402.0", + "updated_at": 1778224204 + }, + "cable ds-rf-port 3:0/0 down-channel 24 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-58]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-58", + "updated_at": 1778224204 + }, + "cable ds-rf-port 3:0/0 down-channel 25 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224204 + }, + "cable ds-rf-port 3:0/0 down-channel 25 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224204 + }, + "cable ds-rf-port 3:0/0 down-channel 25 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[408.0]", + "options": [], + "type": "string_or_number", + "current_value": "408.0", + "updated_at": 1778224204 + }, + "cable ds-rf-port 3:0/0 down-channel 25 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-59]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-59", + "updated_at": 1778224255 + }, + "cable ds-rf-port 3:0/0 down-channel 26 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224255 + }, + "cable ds-rf-port 3:0/0 down-channel 26 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224255 + }, + "cable ds-rf-port 3:0/0 down-channel 26 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[414.0]", + "options": [], + "type": "string_or_number", + "current_value": "414.0", + "updated_at": 1778224255 + }, + "cable ds-rf-port 3:0/0 down-channel 26 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-60]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-60", + "updated_at": 1778224255 + }, + "cable ds-rf-port 3:0/0 down-channel 27 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224255 + }, + "cable ds-rf-port 3:0/0 down-channel 27 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224255 + }, + "cable ds-rf-port 3:0/0 down-channel 27 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[420.0]", + "options": [], + "type": "string_or_number", + "current_value": "420.0", + "updated_at": 1778224255 + }, + "cable ds-rf-port 3:0/0 down-channel 27 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-61]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-61", + "updated_at": 1778224255 + }, + "cable ds-rf-port 3:0/0 down-channel 28 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224255 + }, + "cable ds-rf-port 3:0/0 down-channel 28 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224255 + }, + "cable ds-rf-port 3:0/0 down-channel 28 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[426.0]", + "options": [], + "type": "string_or_number", + "current_value": "426.0", + "updated_at": 1778224255 + }, + "cable ds-rf-port 3:0/0 down-channel 28 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-62]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-62", + "updated_at": 1778224255 + }, + "cable ds-rf-port 3:0/0 down-channel 29 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224255 + }, + "cable ds-rf-port 3:0/0 down-channel 29 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224255 + }, + "cable ds-rf-port 3:0/0 down-channel 29 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[432.0]", + "options": [], + "type": "string_or_number", + "current_value": "432.0", + "updated_at": 1778224255 + }, + "cable ds-rf-port 3:0/0 down-channel 29 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-63]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-63", + "updated_at": 1778224255 + }, + "cable ds-rf-port 3:0/0 down-channel 30 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224255 + }, + "cable ds-rf-port 3:0/0 down-channel 30 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224255 + }, + "cable ds-rf-port 3:0/0 down-channel 30 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[438.0]", + "options": [], + "type": "string_or_number", + "current_value": "438.0", + "updated_at": 1778224255 + }, + "cable ds-rf-port 3:0/0 down-channel 30 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-64]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-64", + "updated_at": 1778224255 + }, + "cable ds-rf-port 3:0/0 down-channel 31 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224255 + }, + "cable ds-rf-port 3:0/0 down-channel 31 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224255 + }, + "cable ds-rf-port 3:0/0 down-channel 31 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[444.0]", + "options": [], + "type": "string_or_number", + "current_value": "444.0", + "updated_at": 1778224255 + }, + "cable ds-rf-port 3:0/0 down-channel 31 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-65]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-65", + "updated_at": 1778224255 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 0 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224255 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 0 cyclic-prefix": { + "hint": "Description: Cyclic prefix configuration\nPossible completions:\n[256]", + "options": [], + "type": "string_or_number", + "current_value": "256", + "updated_at": 1778224255 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 0 default-profile": { + "hint": "Description: Default OFDM channel profile\nPossible completions:\n[data-4] control data-1 data-2 data-3 data-4 ncp", + "options": [ + "control", + "data-1", + "data-2", + "data-3", + "data-4", + "ncp" + ], + "type": "list", + "current_value": "data-4", + "updated_at": 1778224255 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 0 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778224255 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 0 query-load-percent": { + "hint": "Description: Define amount of traffic sent on each profile for testing MER.\nPossible completions:\n[0.0]", + "options": [], + "type": "string_or_number", + "current_value": "0.0", + "updated_at": 1778224255 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 0 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[25khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "25khz", + "updated_at": 1778224305 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 0 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778224305 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 0 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [450.0]", + "options": [], + "type": "string_or_number", + "current_value": "450.0", + "updated_at": 1778224305 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 0 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[642.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778224305 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 0 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[546.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778224305 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 0 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778224305 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 0 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778224305 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 0 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778224305 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 0 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778224305 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 0 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778224305 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 0 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778224305 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 1 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224305 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 1 cyclic-prefix": { + "hint": "Description: Cyclic prefix configuration\nPossible completions:\n[256]", + "options": [], + "type": "string_or_number", + "current_value": "256", + "updated_at": 1778224305 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 1 default-profile": { + "hint": "Description: Default OFDM channel profile\nPossible completions:\n[data-4] control data-1 data-2 data-3 data-4 ncp", + "options": [ + "control", + "data-1", + "data-2", + "data-3", + "data-4", + "ncp" + ], + "type": "list", + "current_value": "data-4", + "updated_at": 1778224305 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 1 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778224305 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 1 query-load-percent": { + "hint": "Description: Define amount of traffic sent on each profile for testing MER.\nPossible completions:\n[0.0]", + "options": [], + "type": "string_or_number", + "current_value": "0.0", + "updated_at": 1778224305 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 1 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[25khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "25khz", + "updated_at": 1778224305 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 1 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778224305 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 1 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [642.0]", + "options": [], + "type": "string_or_number", + "current_value": "642.0", + "updated_at": 1778224305 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 1 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[834.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778224305 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 1 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[738.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778224305 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 1 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778224305 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 1 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778224305 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 1 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778224305 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 1 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778224305 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 1 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778224305 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 1 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778224305 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 2 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224305 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 2 cyclic-prefix": { + "hint": "Description: Cyclic prefix configuration\nPossible completions:\n[256]", + "options": [], + "type": "string_or_number", + "current_value": "256", + "updated_at": 1778224305 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 2 default-profile": { + "hint": "Description: Default OFDM channel profile\nPossible completions:\n[data-4] control data-1 data-2 data-3 data-4 ncp", + "options": [ + "control", + "data-1", + "data-2", + "data-3", + "data-4", + "ncp" + ], + "type": "list", + "current_value": "data-4", + "updated_at": 1778224305 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 2 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778224357 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 2 query-load-percent": { + "hint": "Description: Define amount of traffic sent on each profile for testing MER.\nPossible completions:\n[0.0]", + "options": [], + "type": "string_or_number", + "current_value": "0.0", + "updated_at": 1778224357 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 2 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[25khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "25khz", + "updated_at": 1778224357 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 2 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778224357 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 2 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [834.0]", + "options": [], + "type": "string_or_number", + "current_value": "834.0", + "updated_at": 1778224357 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 2 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[1026.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778224357 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 2 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[930.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778224357 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 2 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778224357 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 2 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778224357 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 2 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778224357 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 2 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778224357 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 2 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778224357 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 2 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778224357 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 3 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224357 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 3 cyclic-prefix": { + "hint": "Description: Cyclic prefix configuration\nPossible completions:\n[256]", + "options": [], + "type": "string_or_number", + "current_value": "256", + "updated_at": 1778224357 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 3 default-profile": { + "hint": "Description: Default OFDM channel profile\nPossible completions:\n[data-4] control data-1 data-2 data-3 data-4 ncp", + "options": [ + "control", + "data-1", + "data-2", + "data-3", + "data-4", + "ncp" + ], + "type": "list", + "current_value": "data-4", + "updated_at": 1778224357 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 3 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778224357 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 3 query-load-percent": { + "hint": "Description: Define amount of traffic sent on each profile for testing MER.\nPossible completions:\n[0.0]", + "options": [], + "type": "string_or_number", + "current_value": "0.0", + "updated_at": 1778224357 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 3 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[25khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "25khz", + "updated_at": 1778224357 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 3 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778224357 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 3 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [1026.0]", + "options": [], + "type": "string_or_number", + "current_value": "1026.0", + "updated_at": 1778224357 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 3 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[1218.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778224357 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 3 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[1122.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778224357 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 3 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778224357 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 3 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778224357 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 3 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778224357 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 3 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778224357 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 3 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778224357 + }, + "cable ds-rf-port 3:0/0 ofdm-channel 3 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778224357 + }, + "cable ds-rf-port 4:0/0 admin-state": { + "hint": "Description: Administrative State of the DS RF port [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224357 + }, + "cable ds-rf-port 4:0/0 max-occupied-bw-mhz": { + "hint": "Description: Maximum bandwidth occupied by this port in megahertz\nPossible completions:\n[960.0]", + "options": [], + "type": "string_or_number", + "current_value": "960.0", + "updated_at": 1778224409 + }, + "cable ds-rf-port 4:0/0 tilt-adjust": { + "hint": "Description: tilt-adjustment\nPossible completions:\n[10.0]", + "options": [], + "type": "string_or_number", + "current_value": "10.0", + "updated_at": 1778224409 + }, + "cable ds-rf-port 4:0/0 base-channel-power-dbmv": { + "hint": "Description: Base channel power level in TenthdB\nPossible completions:\n[45.0]", + "options": [], + "type": "string_or_number", + "current_value": "45.0", + "updated_at": 1778224409 + }, + "cable ds-rf-port 4:0/0 down-channel 0 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224409 + }, + "cable ds-rf-port 4:0/0 down-channel 0 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224409 + }, + "cable ds-rf-port 4:0/0 down-channel 0 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[258.0]", + "options": [], + "type": "string_or_number", + "current_value": "258.0", + "updated_at": 1778224409 + }, + "cable ds-rf-port 4:0/0 down-channel 0 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-34]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-34", + "updated_at": 1778224409 + }, + "cable ds-rf-port 4:0/0 down-channel 1 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224409 + }, + "cable ds-rf-port 4:0/0 down-channel 1 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224409 + }, + "cable ds-rf-port 4:0/0 down-channel 1 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[264.0]", + "options": [], + "type": "string_or_number", + "current_value": "264.0", + "updated_at": 1778224409 + }, + "cable ds-rf-port 4:0/0 down-channel 1 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-35]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-35", + "updated_at": 1778224409 + }, + "cable ds-rf-port 4:0/0 down-channel 2 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224409 + }, + "cable ds-rf-port 4:0/0 down-channel 2 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B\nSystem message at 2026-05-08 15:13:00...\nCommit performed by admin via ssh using cli.", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "System", + "message", + "at", + "2026-05-08", + "15:13:00...", + "Commit", + "performed", + "by", + "admin", + "via", + "ssh", + "using", + "cli." + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224409 + }, + "cable ds-rf-port 4:0/0 down-channel 2 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[270.0]", + "options": [], + "type": "string_or_number", + "current_value": "270.0", + "updated_at": 1778224409 + }, + "cable ds-rf-port 4:0/0 down-channel 2 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778224409 + }, + "cable ds-rf-port 4:0/0 down-channel 3 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224409 + }, + "cable ds-rf-port 4:0/0 down-channel 3 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224409 + }, + "cable ds-rf-port 4:0/0 down-channel 3 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[276.0]", + "options": [], + "type": "string_or_number", + "current_value": "276.0", + "updated_at": 1778224409 + }, + "cable ds-rf-port 4:0/0 down-channel 3 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-37]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-37", + "updated_at": 1778224409 + }, + "cable ds-rf-port 4:0/0 down-channel 4 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224409 + }, + "cable ds-rf-port 4:0/0 down-channel 4 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224409 + }, + "cable ds-rf-port 4:0/0 down-channel 4 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[282.0]", + "options": [], + "type": "string_or_number", + "current_value": "282.0", + "updated_at": 1778224409 + }, + "cable ds-rf-port 4:0/0 down-channel 4 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-38]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-38", + "updated_at": 1778224409 + }, + "cable ds-rf-port 4:0/0 down-channel 5 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224409 + }, + "cable ds-rf-port 4:0/0 down-channel 5 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224409 + }, + "cable ds-rf-port 4:0/0 down-channel 5 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[288.0]", + "options": [], + "type": "string_or_number", + "current_value": "288.0", + "updated_at": 1778224409 + }, + "cable ds-rf-port 4:0/0 down-channel 5 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-39]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-39", + "updated_at": 1778224409 + }, + "cable ds-rf-port 4:0/0 down-channel 6 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224409 + }, + "cable ds-rf-port 4:0/0 down-channel 6 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224409 + }, + "cable ds-rf-port 4:0/0 down-channel 6 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[294.0]", + "options": [], + "type": "string_or_number", + "current_value": "294.0", + "updated_at": 1778224409 + }, + "cable ds-rf-port 4:0/0 down-channel 6 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-40]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-40", + "updated_at": 1778224459 + }, + "cable ds-rf-port 4:0/0 down-channel 7 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224459 + }, + "cable ds-rf-port 4:0/0 down-channel 7 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224459 + }, + "cable ds-rf-port 4:0/0 down-channel 7 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[300.0]", + "options": [], + "type": "string_or_number", + "current_value": "300.0", + "updated_at": 1778224459 + }, + "cable ds-rf-port 4:0/0 down-channel 7 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-41]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-41", + "updated_at": 1778224459 + }, + "cable ds-rf-port 4:0/0 down-channel 8 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224459 + }, + "cable ds-rf-port 4:0/0 down-channel 8 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224459 + }, + "cable ds-rf-port 4:0/0 down-channel 8 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[306.0]", + "options": [], + "type": "string_or_number", + "current_value": "306.0", + "updated_at": 1778224459 + }, + "cable ds-rf-port 4:0/0 down-channel 8 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-42]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-42", + "updated_at": 1778224459 + }, + "cable ds-rf-port 4:0/0 down-channel 9 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224459 + }, + "cable ds-rf-port 4:0/0 down-channel 9 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224459 + }, + "cable ds-rf-port 4:0/0 down-channel 9 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[312.0]", + "options": [], + "type": "string_or_number", + "current_value": "312.0", + "updated_at": 1778224459 + }, + "cable ds-rf-port 4:0/0 down-channel 9 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-43]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-43", + "updated_at": 1778224459 + }, + "cable ds-rf-port 4:0/0 down-channel 10 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224459 + }, + "cable ds-rf-port 4:0/0 down-channel 10 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224459 + }, + "cable ds-rf-port 4:0/0 down-channel 10 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[318.0]", + "options": [], + "type": "string_or_number", + "current_value": "318.0", + "updated_at": 1778224459 + }, + "cable ds-rf-port 4:0/0 down-channel 10 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-44]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-44", + "updated_at": 1778224459 + }, + "cable ds-rf-port 4:0/0 down-channel 11 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224459 + }, + "cable ds-rf-port 4:0/0 down-channel 11 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224459 + }, + "cable ds-rf-port 4:0/0 down-channel 11 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[324.0]", + "options": [], + "type": "string_or_number", + "current_value": "324.0", + "updated_at": 1778224459 + }, + "cable ds-rf-port 4:0/0 down-channel 11 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-45]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-45", + "updated_at": 1778224459 + }, + "cable ds-rf-port 4:0/0 down-channel 12 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224459 + }, + "cable ds-rf-port 4:0/0 down-channel 12 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224459 + }, + "cable ds-rf-port 4:0/0 down-channel 12 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[330.0]", + "options": [], + "type": "string_or_number", + "current_value": "330.0", + "updated_at": 1778224459 + }, + "cable ds-rf-port 4:0/0 down-channel 12 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-46]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-46", + "updated_at": 1778224459 + }, + "cable ds-rf-port 4:0/0 down-channel 13 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224459 + }, + "cable ds-rf-port 4:0/0 down-channel 13 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224459 + }, + "cable ds-rf-port 4:0/0 down-channel 13 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[336.0]", + "options": [], + "type": "string_or_number", + "current_value": "336.0", + "updated_at": 1778224459 + }, + "cable ds-rf-port 4:0/0 down-channel 13 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-47]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-47", + "updated_at": 1778224459 + }, + "cable ds-rf-port 4:0/0 down-channel 14 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224459 + }, + "cable ds-rf-port 4:0/0 down-channel 14 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224510 + }, + "cable ds-rf-port 4:0/0 down-channel 14 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[342.0]", + "options": [], + "type": "string_or_number", + "current_value": "342.0", + "updated_at": 1778224510 + }, + "cable ds-rf-port 4:0/0 down-channel 14 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-48]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-48", + "updated_at": 1778224510 + }, + "cable ds-rf-port 4:0/0 down-channel 15 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224510 + }, + "cable ds-rf-port 4:0/0 down-channel 15 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224510 + }, + "cable ds-rf-port 4:0/0 down-channel 15 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[348.0]", + "options": [], + "type": "string_or_number", + "current_value": "348.0", + "updated_at": 1778224510 + }, + "cable ds-rf-port 4:0/0 down-channel 15 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-49]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-49", + "updated_at": 1778224510 + }, + "cable ds-rf-port 4:0/0 down-channel 16 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224510 + }, + "cable ds-rf-port 4:0/0 down-channel 16 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224510 + }, + "cable ds-rf-port 4:0/0 down-channel 16 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[354.0]", + "options": [], + "type": "string_or_number", + "current_value": "354.0", + "updated_at": 1778224510 + }, + "cable ds-rf-port 4:0/0 down-channel 16 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-50]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-50", + "updated_at": 1778224510 + }, + "cable ds-rf-port 4:0/0 down-channel 17 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224510 + }, + "cable ds-rf-port 4:0/0 down-channel 17 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224510 + }, + "cable ds-rf-port 4:0/0 down-channel 17 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[360.0]", + "options": [], + "type": "string_or_number", + "current_value": "360.0", + "updated_at": 1778224510 + }, + "cable ds-rf-port 4:0/0 down-channel 17 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-51]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-51", + "updated_at": 1778224510 + }, + "cable ds-rf-port 4:0/0 down-channel 18 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224510 + }, + "cable ds-rf-port 4:0/0 down-channel 18 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224510 + }, + "cable ds-rf-port 4:0/0 down-channel 18 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[366.0]", + "options": [], + "type": "string_or_number", + "current_value": "366.0", + "updated_at": 1778224510 + }, + "cable ds-rf-port 4:0/0 down-channel 18 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-52]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-52", + "updated_at": 1778224510 + }, + "cable ds-rf-port 4:0/0 down-channel 19 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224510 + }, + "cable ds-rf-port 4:0/0 down-channel 19 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224510 + }, + "cable ds-rf-port 4:0/0 down-channel 19 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[372.0]", + "options": [], + "type": "string_or_number", + "current_value": "372.0", + "updated_at": 1778224510 + }, + "cable ds-rf-port 4:0/0 down-channel 19 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-53]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-53", + "updated_at": 1778224510 + }, + "cable ds-rf-port 4:0/0 down-channel 20 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224510 + }, + "cable ds-rf-port 4:0/0 down-channel 20 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224510 + }, + "cable ds-rf-port 4:0/0 down-channel 20 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[378.0]", + "options": [], + "type": "string_or_number", + "current_value": "378.0", + "updated_at": 1778224510 + }, + "cable ds-rf-port 4:0/0 down-channel 20 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-54]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-54", + "updated_at": 1778224510 + }, + "cable ds-rf-port 4:0/0 down-channel 21 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224510 + }, + "cable ds-rf-port 4:0/0 down-channel 21 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224510 + }, + "cable ds-rf-port 4:0/0 down-channel 21 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[384.0]", + "options": [], + "type": "string_or_number", + "current_value": "384.0", + "updated_at": 1778224510 + }, + "cable ds-rf-port 4:0/0 down-channel 21 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-55]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-55", + "updated_at": 1778224561 + }, + "cable ds-rf-port 4:0/0 down-channel 22 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224561 + }, + "cable ds-rf-port 4:0/0 down-channel 22 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224561 + }, + "cable ds-rf-port 4:0/0 down-channel 22 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[390.0]", + "options": [], + "type": "string_or_number", + "current_value": "390.0", + "updated_at": 1778224561 + }, + "cable ds-rf-port 4:0/0 down-channel 22 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-56]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-56", + "updated_at": 1778224561 + }, + "cable ds-rf-port 4:0/0 down-channel 23 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224561 + }, + "cable ds-rf-port 4:0/0 down-channel 23 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224561 + }, + "cable ds-rf-port 4:0/0 down-channel 23 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[396.0]", + "options": [], + "type": "string_or_number", + "current_value": "396.0", + "updated_at": 1778224561 + }, + "cable ds-rf-port 4:0/0 down-channel 23 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-57]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-57", + "updated_at": 1778224561 + }, + "cable ds-rf-port 4:0/0 down-channel 24 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224561 + }, + "cable ds-rf-port 4:0/0 down-channel 24 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224561 + }, + "cable ds-rf-port 4:0/0 down-channel 24 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[402.0]", + "options": [], + "type": "string_or_number", + "current_value": "402.0", + "updated_at": 1778224561 + }, + "cable ds-rf-port 4:0/0 down-channel 24 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-58]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-58", + "updated_at": 1778224561 + }, + "cable ds-rf-port 4:0/0 down-channel 25 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224561 + }, + "cable ds-rf-port 4:0/0 down-channel 25 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224561 + }, + "cable ds-rf-port 4:0/0 down-channel 25 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[408.0]", + "options": [], + "type": "string_or_number", + "current_value": "408.0", + "updated_at": 1778224561 + }, + "cable ds-rf-port 4:0/0 down-channel 25 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-59]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-59", + "updated_at": 1778224561 + }, + "cable ds-rf-port 4:0/0 down-channel 26 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224561 + }, + "cable ds-rf-port 4:0/0 down-channel 26 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224561 + }, + "cable ds-rf-port 4:0/0 down-channel 26 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[414.0]", + "options": [], + "type": "string_or_number", + "current_value": "414.0", + "updated_at": 1778224561 + }, + "cable ds-rf-port 4:0/0 down-channel 26 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-60]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-60", + "updated_at": 1778224561 + }, + "cable ds-rf-port 4:0/0 down-channel 27 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224561 + }, + "cable ds-rf-port 4:0/0 down-channel 27 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224561 + }, + "cable ds-rf-port 4:0/0 down-channel 27 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[420.0]", + "options": [], + "type": "string_or_number", + "current_value": "420.0", + "updated_at": 1778224561 + }, + "cable ds-rf-port 4:0/0 down-channel 27 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-61]\n--------------------------------------------------------------------------------------------------------------------\nFri May 8 07:15:51 2026 Event ID 1061 (RpdConfigValid). RPD 00:20:a3:a6:7d:a0 (vslot: 99:0), configuration valid.\n--------------------------------------------------------------------------------------------------------------------", + "options": [], + "type": "string_or_number", + "current_value": "EIA-61", + "updated_at": 1778224561 + }, + "cable ds-rf-port 4:0/0 down-channel 28 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224561 + }, + "cable ds-rf-port 4:0/0 down-channel 28 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224561 + }, + "cable ds-rf-port 4:0/0 down-channel 28 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[426.0]", + "options": [], + "type": "string_or_number", + "current_value": "426.0", + "updated_at": 1778224561 + }, + "cable ds-rf-port 4:0/0 down-channel 28 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-62]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-62", + "updated_at": 1778224561 + }, + "cable ds-rf-port 4:0/0 down-channel 29 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224561 + }, + "cable ds-rf-port 4:0/0 down-channel 29 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224612 + }, + "cable ds-rf-port 4:0/0 down-channel 29 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[432.0]", + "options": [], + "type": "string_or_number", + "current_value": "432.0", + "updated_at": 1778224612 + }, + "cable ds-rf-port 4:0/0 down-channel 29 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-63]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-63", + "updated_at": 1778224612 + }, + "cable ds-rf-port 4:0/0 down-channel 30 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224612 + }, + "cable ds-rf-port 4:0/0 down-channel 30 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224612 + }, + "cable ds-rf-port 4:0/0 down-channel 30 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[438.0]", + "options": [], + "type": "string_or_number", + "current_value": "438.0", + "updated_at": 1778224612 + }, + "cable ds-rf-port 4:0/0 down-channel 30 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-64]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-64", + "updated_at": 1778224612 + }, + "cable ds-rf-port 4:0/0 down-channel 31 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224612 + }, + "cable ds-rf-port 4:0/0 down-channel 31 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778224612 + }, + "cable ds-rf-port 4:0/0 down-channel 31 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[444.0]", + "options": [], + "type": "string_or_number", + "current_value": "444.0", + "updated_at": 1778224612 + }, + "cable ds-rf-port 4:0/0 down-channel 31 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-65]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-65", + "updated_at": 1778224612 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 0 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224612 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 0 cyclic-prefix": { + "hint": "Description: Cyclic prefix configuration\nPossible completions:\n[256]", + "options": [], + "type": "string_or_number", + "current_value": "256", + "updated_at": 1778224612 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 0 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778224612 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 0 query-load-percent": { + "hint": "Description: Define amount of traffic sent on each profile for testing MER.\nPossible completions:\n[0.0]", + "options": [], + "type": "string_or_number", + "current_value": "0.0", + "updated_at": 1778224612 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 0 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778224612 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 0 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778224612 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 0 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [450.0]", + "options": [], + "type": "string_or_number", + "current_value": "450.0", + "updated_at": 1778224612 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 0 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[642.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778224612 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 0 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[546.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778224612 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 0 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778224612 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 0 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778224612 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 0 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778224612 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 0 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778224612 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 0 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778224612 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 0 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778224612 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 1 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[down] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "down", + "updated_at": 1778224612 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 1 cyclic-prefix": { + "hint": "Description: Cyclic prefix configuration\nPossible completions:\n[256]", + "options": [], + "type": "string_or_number", + "current_value": "256", + "updated_at": 1778224612 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 1 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778224612 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 1 query-load-percent": { + "hint": "Description: Define amount of traffic sent on each profile for testing MER.\nPossible completions:\n[0.0]", + "options": [], + "type": "string_or_number", + "current_value": "0.0", + "updated_at": 1778224612 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 1 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778224662 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 1 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778224662 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 1 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [642.0]", + "options": [], + "type": "string_or_number", + "current_value": "642.0", + "updated_at": 1778224662 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 1 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[834.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778224662 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 1 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[738.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778224662 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 1 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778224662 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 1 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778224662 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 1 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778224662 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 1 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778224662 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 1 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778224662 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 1 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778224662 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 2 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[down] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "down", + "updated_at": 1778224662 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 2 cyclic-prefix": { + "hint": "Description: Cyclic prefix configuration\nPossible completions:\n[256]", + "options": [], + "type": "string_or_number", + "current_value": "256", + "updated_at": 1778224662 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 2 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778224662 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 2 query-load-percent": { + "hint": "Description: Define amount of traffic sent on each profile for testing MER.\nPossible completions:\n[0.0]", + "options": [], + "type": "string_or_number", + "current_value": "0.0", + "updated_at": 1778224662 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 2 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778224662 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 2 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778224662 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 2 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [834.0]", + "options": [], + "type": "string_or_number", + "current_value": "834.0", + "updated_at": 1778224662 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 2 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[1026.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778224662 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 2 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[930.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778224662 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 2 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778224662 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 2 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778224662 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 2 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778224662 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 2 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778224662 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 2 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778224662 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 2 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778224662 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 3 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[down] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "down", + "updated_at": 1778224662 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 3 cyclic-prefix": { + "hint": "Description: Cyclic prefix configuration\nPossible completions:\n[256]", + "options": [], + "type": "string_or_number", + "current_value": "256", + "updated_at": 1778224662 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 3 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778224662 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 3 query-load-percent": { + "hint": "Description: Define amount of traffic sent on each profile for testing MER.\nPossible completions:\n[0.0]", + "options": [], + "type": "string_or_number", + "current_value": "0.0", + "updated_at": 1778224662 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 3 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778224713 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 3 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778224713 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 3 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [1026.0]", + "options": [], + "type": "string_or_number", + "current_value": "1026.0", + "updated_at": 1778224713 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 3 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[1218.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778224713 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 3 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[1122.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778224713 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 3 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778224713 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 3 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778224713 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 3 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778224713 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 3 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778224713 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 3 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778224713 + }, + "cable ds-rf-port 4:0/0 ofdm-channel 3 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778224713 + }, + "cable ds-rf-port 13:0/0 admin-state": { + "hint": "Description: Administrative State of the DS RF port [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224713 + }, + "cable ds-rf-port 13:0/0 max-occupied-bw-mhz": { + "hint": "Description: Maximum bandwidth occupied by this port in megahertz\nPossible completions:\n[1152.0]", + "options": [], + "type": "string_or_number", + "current_value": "1152.0", + "updated_at": 1778224713 + }, + "cable ds-rf-port 13:0/0 base-channel-power-dbmv": { + "hint": "Description: Base channel power level in TenthdB\nPossible completions:\n[45.0]", + "options": [], + "type": "string_or_number", + "current_value": "45.0", + "updated_at": 1778224713 + }, + "cable ds-rf-port 13:0/0 tilt-pivot-freq-mhz": { + "hint": "Description: tilt-pivot-frequency in MHz\nPossible completions:\n[1215.0]", + "options": [], + "type": "string_or_number", + "current_value": "1215.0", + "updated_at": 1778224713 + }, + "cable ds-rf-port 13:0/0 down-channel 0 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224713 + }, + "cable ds-rf-port 13:0/0 down-channel 0 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[0]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "0", + "updated_at": 1778224713 + }, + "cable ds-rf-port 13:0/0 down-channel 0 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[807.0]", + "options": [], + "type": "string_or_number", + "current_value": "807.0", + "updated_at": 1778224713 + }, + "cable ds-rf-port 13:0/0 down-channel 0 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778224713 + }, + "cable ds-rf-port 13:0/0 down-channel 0 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-0]", + "options": [], + "type": "string_or_number", + "current_value": "qam-0", + "updated_at": 1778224713 + }, + "cable ds-rf-port 13:0/0 down-channel 1 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224713 + }, + "cable ds-rf-port 13:0/0 down-channel 1 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[0]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "0", + "updated_at": 1778224713 + }, + "cable ds-rf-port 13:0/0 down-channel 1 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[813.0]", + "options": [], + "type": "string_or_number", + "current_value": "813.0", + "updated_at": 1778224713 + }, + "cable ds-rf-port 13:0/0 down-channel 1 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778224713 + }, + "cable ds-rf-port 13:0/0 down-channel 1 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-1]", + "options": [], + "type": "string_or_number", + "current_value": "qam-1", + "updated_at": 1778224713 + }, + "cable ds-rf-port 13:0/0 down-channel 2 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224713 + }, + "cable ds-rf-port 13:0/0 down-channel 2 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[0]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "0", + "updated_at": 1778224713 + }, + "cable ds-rf-port 13:0/0 down-channel 2 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[819.0]", + "options": [], + "type": "string_or_number", + "current_value": "819.0", + "updated_at": 1778224713 + }, + "cable ds-rf-port 13:0/0 down-channel 2 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778224713 + }, + "cable ds-rf-port 13:0/0 down-channel 2 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-2]", + "options": [], + "type": "string_or_number", + "current_value": "qam-2", + "updated_at": 1778224713 + }, + "cable ds-rf-port 13:0/0 down-channel 3 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224764 + }, + "cable ds-rf-port 13:0/0 down-channel 3 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[0]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "0", + "updated_at": 1778224764 + }, + "cable ds-rf-port 13:0/0 down-channel 3 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[825.0]", + "options": [], + "type": "string_or_number", + "current_value": "825.0", + "updated_at": 1778224764 + }, + "cable ds-rf-port 13:0/0 down-channel 3 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778224764 + }, + "cable ds-rf-port 13:0/0 down-channel 3 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-3]", + "options": [], + "type": "string_or_number", + "current_value": "qam-3", + "updated_at": 1778224764 + }, + "cable ds-rf-port 13:0/0 down-channel 4 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224764 + }, + "cable ds-rf-port 13:0/0 down-channel 4 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[0]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "0", + "updated_at": 1778224764 + }, + "cable ds-rf-port 13:0/0 down-channel 4 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[831.0]", + "options": [], + "type": "string_or_number", + "current_value": "831.0", + "updated_at": 1778224764 + }, + "cable ds-rf-port 13:0/0 down-channel 4 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778224764 + }, + "cable ds-rf-port 13:0/0 down-channel 4 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-4]", + "options": [], + "type": "string_or_number", + "current_value": "qam-4", + "updated_at": 1778224764 + }, + "cable ds-rf-port 13:0/0 down-channel 5 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[0]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "0", + "updated_at": 1778224764 + }, + "cable ds-rf-port 13:0/0 down-channel 5 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[837.0]", + "options": [], + "type": "string_or_number", + "current_value": "837.0", + "updated_at": 1778224764 + }, + "cable ds-rf-port 13:0/0 down-channel 5 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778224764 + }, + "cable ds-rf-port 13:0/0 down-channel 5 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-5]", + "options": [], + "type": "string_or_number", + "current_value": "qam-5", + "updated_at": 1778224764 + }, + "cable ds-rf-port 13:0/0 down-channel 6 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[0]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "0", + "updated_at": 1778224764 + }, + "cable ds-rf-port 13:0/0 down-channel 6 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[843.0]", + "options": [], + "type": "string_or_number", + "current_value": "843.0", + "updated_at": 1778224764 + }, + "cable ds-rf-port 13:0/0 down-channel 6 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778224764 + }, + "cable ds-rf-port 13:0/0 down-channel 6 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-6]", + "options": [], + "type": "string_or_number", + "current_value": "qam-6", + "updated_at": 1778224764 + }, + "cable ds-rf-port 13:0/0 down-channel 7 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[0]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "0", + "updated_at": 1778224764 + }, + "cable ds-rf-port 13:0/0 down-channel 7 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[849.0]", + "options": [], + "type": "string_or_number", + "current_value": "849.0", + "updated_at": 1778224764 + }, + "cable ds-rf-port 13:0/0 down-channel 7 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778224764 + }, + "cable ds-rf-port 13:0/0 down-channel 7 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-7]", + "options": [], + "type": "string_or_number", + "current_value": "qam-7", + "updated_at": 1778224764 + }, + "cable ds-rf-port 13:0/0 down-channel 8 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[0]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "0", + "updated_at": 1778224764 + }, + "cable ds-rf-port 13:0/0 down-channel 8 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[855.0]", + "options": [], + "type": "string_or_number", + "current_value": "855.0", + "updated_at": 1778224764 + }, + "cable ds-rf-port 13:0/0 down-channel 8 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778224764 + }, + "cable ds-rf-port 13:0/0 down-channel 8 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-8]", + "options": [], + "type": "string_or_number", + "current_value": "qam-8", + "updated_at": 1778224764 + }, + "cable ds-rf-port 13:0/0 down-channel 9 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[0]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "0", + "updated_at": 1778224764 + }, + "cable ds-rf-port 13:0/0 down-channel 9 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[861.0]", + "options": [], + "type": "string_or_number", + "current_value": "861.0", + "updated_at": 1778224764 + }, + "cable ds-rf-port 13:0/0 down-channel 9 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778224764 + }, + "cable ds-rf-port 13:0/0 down-channel 9 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-9]", + "options": [], + "type": "string_or_number", + "current_value": "qam-9", + "updated_at": 1778224764 + }, + "cable ds-rf-port 13:0/0 down-channel 10 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[0]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "0", + "updated_at": 1778224815 + }, + "cable ds-rf-port 13:0/0 down-channel 10 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[867.0]", + "options": [], + "type": "string_or_number", + "current_value": "867.0", + "updated_at": 1778224815 + }, + "cable ds-rf-port 13:0/0 down-channel 10 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778224815 + }, + "cable ds-rf-port 13:0/0 down-channel 10 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-10]", + "options": [], + "type": "string_or_number", + "current_value": "qam-10", + "updated_at": 1778224815 + }, + "cable ds-rf-port 13:0/0 down-channel 11 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[0]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "0", + "updated_at": 1778224815 + }, + "cable ds-rf-port 13:0/0 down-channel 11 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[873.0]", + "options": [], + "type": "string_or_number", + "current_value": "873.0", + "updated_at": 1778224815 + }, + "cable ds-rf-port 13:0/0 down-channel 11 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778224815 + }, + "cable ds-rf-port 13:0/0 down-channel 11 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-11]", + "options": [], + "type": "string_or_number", + "current_value": "qam-11", + "updated_at": 1778224815 + }, + "cable ds-rf-port 13:0/0 down-channel 12 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[0]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "0", + "updated_at": 1778224815 + }, + "cable ds-rf-port 13:0/0 down-channel 12 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[879.0]", + "options": [], + "type": "string_or_number", + "current_value": "879.0", + "updated_at": 1778224815 + }, + "cable ds-rf-port 13:0/0 down-channel 12 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778224815 + }, + "cable ds-rf-port 13:0/0 down-channel 12 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-12]", + "options": [], + "type": "string_or_number", + "current_value": "qam-12", + "updated_at": 1778224815 + }, + "cable ds-rf-port 13:0/0 down-channel 13 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[0]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "0", + "updated_at": 1778224815 + }, + "cable ds-rf-port 13:0/0 down-channel 13 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[885.0]", + "options": [], + "type": "string_or_number", + "current_value": "885.0", + "updated_at": 1778224815 + }, + "cable ds-rf-port 13:0/0 down-channel 13 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778224815 + }, + "cable ds-rf-port 13:0/0 down-channel 13 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-13]", + "options": [], + "type": "string_or_number", + "current_value": "qam-13", + "updated_at": 1778224815 + }, + "cable ds-rf-port 13:0/0 down-channel 14 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[0]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "0", + "updated_at": 1778224815 + }, + "cable ds-rf-port 13:0/0 down-channel 14 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[891.0]", + "options": [], + "type": "string_or_number", + "current_value": "891.0", + "updated_at": 1778224815 + }, + "cable ds-rf-port 13:0/0 down-channel 14 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778224815 + }, + "cable ds-rf-port 13:0/0 down-channel 14 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-14]", + "options": [], + "type": "string_or_number", + "current_value": "qam-14", + "updated_at": 1778224815 + }, + "cable ds-rf-port 13:0/0 down-channel 15 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[0]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "0", + "updated_at": 1778224815 + }, + "cable ds-rf-port 13:0/0 down-channel 15 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[897.0]", + "options": [], + "type": "string_or_number", + "current_value": "897.0", + "updated_at": 1778224815 + }, + "cable ds-rf-port 13:0/0 down-channel 15 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778224815 + }, + "cable ds-rf-port 13:0/0 down-channel 15 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-15]", + "options": [], + "type": "string_or_number", + "current_value": "qam-15", + "updated_at": 1778224815 + }, + "cable ds-rf-port 13:0/0 down-channel 16 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[0]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "0", + "updated_at": 1778224815 + }, + "cable ds-rf-port 13:0/0 down-channel 16 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[903.0]", + "options": [], + "type": "string_or_number", + "current_value": "903.0", + "updated_at": 1778224815 + }, + "cable ds-rf-port 13:0/0 down-channel 16 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778224815 + }, + "cable ds-rf-port 13:0/0 down-channel 16 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-16]", + "options": [], + "type": "string_or_number", + "current_value": "qam-16", + "updated_at": 1778224815 + }, + "cable ds-rf-port 13:0/0 down-channel 17 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[0]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "0", + "updated_at": 1778224815 + }, + "cable ds-rf-port 13:0/0 down-channel 17 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[909.0]", + "options": [], + "type": "string_or_number", + "current_value": "909.0", + "updated_at": 1778224815 + }, + "cable ds-rf-port 13:0/0 down-channel 17 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778224866 + }, + "cable ds-rf-port 13:0/0 down-channel 17 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-17]", + "options": [], + "type": "string_or_number", + "current_value": "qam-17", + "updated_at": 1778224866 + }, + "cable ds-rf-port 13:0/0 down-channel 18 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[0]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "0", + "updated_at": 1778224866 + }, + "cable ds-rf-port 13:0/0 down-channel 18 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[915.0]", + "options": [], + "type": "string_or_number", + "current_value": "915.0", + "updated_at": 1778224866 + }, + "cable ds-rf-port 13:0/0 down-channel 18 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778224866 + }, + "cable ds-rf-port 13:0/0 down-channel 18 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-18]", + "options": [], + "type": "string_or_number", + "current_value": "qam-18", + "updated_at": 1778224866 + }, + "cable ds-rf-port 13:0/0 down-channel 19 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[0]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "0", + "updated_at": 1778224866 + }, + "cable ds-rf-port 13:0/0 down-channel 19 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[921.0]", + "options": [], + "type": "string_or_number", + "current_value": "921.0", + "updated_at": 1778224866 + }, + "cable ds-rf-port 13:0/0 down-channel 19 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778224866 + }, + "cable ds-rf-port 13:0/0 down-channel 19 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-19]", + "options": [], + "type": "string_or_number", + "current_value": "qam-19", + "updated_at": 1778224866 + }, + "cable ds-rf-port 13:0/0 down-channel 20 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[0]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "0", + "updated_at": 1778224866 + }, + "cable ds-rf-port 13:0/0 down-channel 20 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[927.0]", + "options": [], + "type": "string_or_number", + "current_value": "927.0", + "updated_at": 1778224866 + }, + "cable ds-rf-port 13:0/0 down-channel 20 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778224866 + }, + "cable ds-rf-port 13:0/0 down-channel 20 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-20]", + "options": [], + "type": "string_or_number", + "current_value": "qam-20", + "updated_at": 1778224866 + }, + "cable ds-rf-port 13:0/0 down-channel 21 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[0]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "0", + "updated_at": 1778224866 + }, + "cable ds-rf-port 13:0/0 down-channel 21 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[933.0]", + "options": [], + "type": "string_or_number", + "current_value": "933.0", + "updated_at": 1778224866 + }, + "cable ds-rf-port 13:0/0 down-channel 21 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778224866 + }, + "cable ds-rf-port 13:0/0 down-channel 21 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-21]", + "options": [], + "type": "string_or_number", + "current_value": "qam-21", + "updated_at": 1778224866 + }, + "cable ds-rf-port 13:0/0 down-channel 22 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[0]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "0", + "updated_at": 1778224866 + }, + "cable ds-rf-port 13:0/0 down-channel 22 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[939.0]", + "options": [], + "type": "string_or_number", + "current_value": "939.0", + "updated_at": 1778224866 + }, + "cable ds-rf-port 13:0/0 down-channel 22 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778224866 + }, + "cable ds-rf-port 13:0/0 down-channel 22 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-22]", + "options": [], + "type": "string_or_number", + "current_value": "qam-22", + "updated_at": 1778224866 + }, + "cable ds-rf-port 13:0/0 down-channel 23 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[0]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "0", + "updated_at": 1778224866 + }, + "cable ds-rf-port 13:0/0 down-channel 23 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[945.0]", + "options": [], + "type": "string_or_number", + "current_value": "945.0", + "updated_at": 1778224866 + }, + "cable ds-rf-port 13:0/0 down-channel 23 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778224866 + }, + "cable ds-rf-port 13:0/0 down-channel 23 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-23]", + "options": [], + "type": "string_or_number", + "current_value": "qam-23", + "updated_at": 1778224866 + }, + "cable ds-rf-port 13:0/0 down-channel 24 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[0]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "0", + "updated_at": 1778224866 + }, + "cable ds-rf-port 13:0/0 down-channel 24 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[951.0]", + "options": [], + "type": "string_or_number", + "current_value": "951.0", + "updated_at": 1778224866 + }, + "cable ds-rf-port 13:0/0 down-channel 24 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778224866 + }, + "cable ds-rf-port 13:0/0 down-channel 24 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-24]", + "options": [], + "type": "string_or_number", + "current_value": "qam-24", + "updated_at": 1778224866 + }, + "cable ds-rf-port 13:0/0 down-channel 25 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[0]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "0", + "updated_at": 1778224916 + }, + "cable ds-rf-port 13:0/0 down-channel 25 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[957.0]", + "options": [], + "type": "string_or_number", + "current_value": "957.0", + "updated_at": 1778224916 + }, + "cable ds-rf-port 13:0/0 down-channel 25 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778224916 + }, + "cable ds-rf-port 13:0/0 down-channel 25 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-25]", + "options": [], + "type": "string_or_number", + "current_value": "qam-25", + "updated_at": 1778224916 + }, + "cable ds-rf-port 13:0/0 down-channel 26 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[0]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "0", + "updated_at": 1778224916 + }, + "cable ds-rf-port 13:0/0 down-channel 26 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[963.0]", + "options": [], + "type": "string_or_number", + "current_value": "963.0", + "updated_at": 1778224916 + }, + "cable ds-rf-port 13:0/0 down-channel 26 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778224916 + }, + "cable ds-rf-port 13:0/0 down-channel 26 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-26]", + "options": [], + "type": "string_or_number", + "current_value": "qam-26", + "updated_at": 1778224916 + }, + "cable ds-rf-port 13:0/0 down-channel 27 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[0]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "0", + "updated_at": 1778224916 + }, + "cable ds-rf-port 13:0/0 down-channel 27 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[969.0]", + "options": [], + "type": "string_or_number", + "current_value": "969.0", + "updated_at": 1778224916 + }, + "cable ds-rf-port 13:0/0 down-channel 27 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778224916 + }, + "cable ds-rf-port 13:0/0 down-channel 27 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-27]", + "options": [], + "type": "string_or_number", + "current_value": "qam-27", + "updated_at": 1778224916 + }, + "cable ds-rf-port 13:0/0 down-channel 28 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[0]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "0", + "updated_at": 1778224916 + }, + "cable ds-rf-port 13:0/0 down-channel 28 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[975.0]", + "options": [], + "type": "string_or_number", + "current_value": "975.0", + "updated_at": 1778224916 + }, + "cable ds-rf-port 13:0/0 down-channel 28 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778224916 + }, + "cable ds-rf-port 13:0/0 down-channel 28 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-28]", + "options": [], + "type": "string_or_number", + "current_value": "qam-28", + "updated_at": 1778224916 + }, + "cable ds-rf-port 13:0/0 down-channel 29 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[0]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "0", + "updated_at": 1778224916 + }, + "cable ds-rf-port 13:0/0 down-channel 29 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[981.0]", + "options": [], + "type": "string_or_number", + "current_value": "981.0", + "updated_at": 1778224916 + }, + "cable ds-rf-port 13:0/0 down-channel 29 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778224916 + }, + "cable ds-rf-port 13:0/0 down-channel 29 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-29]", + "options": [], + "type": "string_or_number", + "current_value": "qam-29", + "updated_at": 1778224916 + }, + "cable ds-rf-port 13:0/0 down-channel 30 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[0]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "0", + "updated_at": 1778224916 + }, + "cable ds-rf-port 13:0/0 down-channel 30 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[987.0]", + "options": [], + "type": "string_or_number", + "current_value": "987.0", + "updated_at": 1778224916 + }, + "cable ds-rf-port 13:0/0 down-channel 30 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778224916 + }, + "cable ds-rf-port 13:0/0 down-channel 30 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-30]", + "options": [], + "type": "string_or_number", + "current_value": "qam-30", + "updated_at": 1778224916 + }, + "cable ds-rf-port 13:0/0 down-channel 31 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[0]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "0", + "updated_at": 1778224916 + }, + "cable ds-rf-port 13:0/0 down-channel 31 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[993.0]", + "options": [], + "type": "string_or_number", + "current_value": "993.0", + "updated_at": 1778224916 + }, + "cable ds-rf-port 13:0/0 down-channel 31 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778224916 + }, + "cable ds-rf-port 13:0/0 down-channel 31 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-31]", + "options": [], + "type": "string_or_number", + "current_value": "qam-31", + "updated_at": 1778224916 + }, + "cable ds-rf-port 13:0/0 ofdm-channel 0 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224916 + }, + "cable ds-rf-port 13:0/0 ofdm-channel 0 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778224916 + }, + "cable ds-rf-port 13:0/0 ofdm-channel 0 query-period-sec": { + "hint": "Description: Define period at which modems are queried for MER on each profile.\nPossible completions:\n[100]", + "options": [], + "type": "string_or_number", + "current_value": "100", + "updated_at": 1778224967 + }, + "cable ds-rf-port 13:0/0 ofdm-channel 0 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778224967 + }, + "cable ds-rf-port 13:0/0 ofdm-channel 0 unfit-profile-mins": { + "hint": "Description: Defines how long the modulation profile will be unavailable for selection.\nPossible completions:\n[0]", + "options": [], + "type": "string_or_number", + "current_value": "0", + "updated_at": 1778224967 + }, + "cable ds-rf-port 13:0/0 ofdm-channel 0 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[2] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "2", + "updated_at": 1778224967 + }, + "cable ds-rf-port 13:0/0 ofdm-channel 0 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [834.0]", + "options": [], + "type": "string_or_number", + "current_value": "834.0", + "updated_at": 1778224967 + }, + "cable ds-rf-port 13:0/0 ofdm-channel 0 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[1026.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778224967 + }, + "cable ds-rf-port 13:0/0 ofdm-channel 0 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[930.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778224967 + }, + "cable ds-rf-port 13:0/0 ofdm-channel 0 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778224967 + }, + "cable ds-rf-port 13:0/0 ofdm-channel 0 profile control hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778224967 + }, + "cable ds-rf-port 13:0/0 ofdm-channel 0 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778224967 + }, + "cable ds-rf-port 13:0/0 ofdm-channel 0 profile data-1 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778224967 + }, + "cable ds-rf-port 13:0/0 ofdm-channel 0 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778224967 + }, + "cable ds-rf-port 13:0/0 ofdm-channel 0 profile data-2 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778224967 + }, + "cable ds-rf-port 13:0/0 ofdm-channel 0 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778224967 + }, + "cable ds-rf-port 13:0/0 ofdm-channel 0 profile data-3 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778224967 + }, + "cable ds-rf-port 13:0/0 ofdm-channel 0 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778224967 + }, + "cable ds-rf-port 13:0/0 ofdm-channel 0 profile data-4 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778224967 + }, + "cable ds-rf-port 13:0/0 ofdm-channel 0 profile data-5 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778224967 + }, + "cable ds-rf-port 13:0/0 ofdm-channel 0 profile data-5 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778224967 + }, + "cable ds-rf-port 13:0/0 ofdm-channel 0 profile data-6 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam64] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam64", + "updated_at": 1778224967 + }, + "cable ds-rf-port 13:0/0 ofdm-channel 0 profile data-6 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778224967 + }, + "cable ds-rf-port 13:0/0 ofdm-channel 0 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778224967 + }, + "cable ds-rf-port 13:0/0 ofdm-channel 0 profile ncp hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778224967 + }, + "cable ds-rf-port 13:0/0 ofdm-channel 1 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778224967 + }, + "cable ds-rf-port 13:0/0 ofdm-channel 1 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778224967 + }, + "cable ds-rf-port 13:0/0 ofdm-channel 1 query-period-sec": { + "hint": "Description: Define period at which modems are queried for MER on each profile.\nPossible completions:\n[100]", + "options": [], + "type": "string_or_number", + "current_value": "100", + "updated_at": 1778224967 + }, + "cable ds-rf-port 13:0/0 ofdm-channel 1 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778224967 + }, + "cable ds-rf-port 13:0/0 ofdm-channel 1 unfit-profile-mins": { + "hint": "Description: Defines how long the modulation profile will be unavailable for selection.\nPossible completions:\n[0]", + "options": [], + "type": "string_or_number", + "current_value": "0", + "updated_at": 1778224967 + }, + "cable ds-rf-port 13:0/0 ofdm-channel 1 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[2] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "2", + "updated_at": 1778224967 + }, + "cable ds-rf-port 13:0/0 ofdm-channel 1 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [1026.0]", + "options": [], + "type": "string_or_number", + "current_value": "1026.0", + "updated_at": 1778224967 + }, + "cable ds-rf-port 13:0/0 ofdm-channel 1 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[1218.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778225018 + }, + "cable ds-rf-port 13:0/0 ofdm-channel 1 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[1122.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778225018 + }, + "cable ds-rf-port 13:0/0 ofdm-channel 1 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778225018 + }, + "cable ds-rf-port 13:0/0 ofdm-channel 1 profile control hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225018 + }, + "cable ds-rf-port 13:0/0 ofdm-channel 1 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778225018 + }, + "cable ds-rf-port 13:0/0 ofdm-channel 1 profile data-1 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225018 + }, + "cable ds-rf-port 13:0/0 ofdm-channel 1 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778225018 + }, + "cable ds-rf-port 13:0/0 ofdm-channel 1 profile data-2 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225018 + }, + "cable ds-rf-port 13:0/0 ofdm-channel 1 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778225018 + }, + "cable ds-rf-port 13:0/0 ofdm-channel 1 profile data-3 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225018 + }, + "cable ds-rf-port 13:0/0 ofdm-channel 1 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778225018 + }, + "cable ds-rf-port 13:0/0 ofdm-channel 1 profile data-4 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225018 + }, + "cable ds-rf-port 13:0/0 ofdm-channel 1 profile data-5 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778225018 + }, + "cable ds-rf-port 13:0/0 ofdm-channel 1 profile data-5 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225018 + }, + "cable ds-rf-port 13:0/0 ofdm-channel 1 profile data-6 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam64] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam64", + "updated_at": 1778225018 + }, + "cable ds-rf-port 13:0/0 ofdm-channel 1 profile data-6 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225018 + }, + "cable ds-rf-port 13:0/0 ofdm-channel 1 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778225018 + }, + "cable ds-rf-port 13:0/0 ofdm-channel 1 profile ncp hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225018 + }, + "cable ds-rf-port 14:0/0 admin-state": { + "hint": "Description: Administrative State of the DS RF port [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778225018 + }, + "cable ds-rf-port 14:0/0 max-occupied-bw-mhz": { + "hint": "Description: Maximum bandwidth occupied by this port in megahertz\nPossible completions:\n[1152.0]", + "options": [], + "type": "string_or_number", + "current_value": "1152.0", + "updated_at": 1778225018 + }, + "cable ds-rf-port 14:0/0 base-channel-power-dbmv": { + "hint": "Description: Base channel power level in TenthdB\nPossible completions:\n[48.5]", + "options": [], + "type": "string_or_number", + "current_value": "48.5", + "updated_at": 1778225018 + }, + "cable ds-rf-port 14:0/0 tilt-pivot-freq-mhz": { + "hint": "Description: tilt-pivot-frequency in MHz\nPossible completions:\n[1215.0]", + "options": [], + "type": "string_or_number", + "current_value": "1215.0", + "updated_at": 1778225018 + }, + "cable ds-rf-port 14:0/0 down-channel 0 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778225018 + }, + "cable ds-rf-port 14:0/0 down-channel 0 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[0]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "0", + "updated_at": 1778225018 + }, + "cable ds-rf-port 14:0/0 down-channel 0 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[983.0]", + "options": [], + "type": "string_or_number", + "current_value": "983.0", + "updated_at": 1778225018 + }, + "cable ds-rf-port 14:0/0 down-channel 0 power-adjust-db": { + "hint": "Description: Power gain for channel relative to port base-channel-power-dbMv, negative values reduce channel output power.\nPossible completions:\n[-6.5]", + "options": [], + "type": "string_or_number", + "current_value": "-6.5", + "updated_at": 1778225018 + }, + "cable ds-rf-port 14:0/0 down-channel 0 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778225018 + }, + "cable ds-rf-port 14:0/0 down-channel 1 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778225018 + }, + "cable ds-rf-port 14:0/0 down-channel 1 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[0]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "0", + "updated_at": 1778225018 + }, + "cable ds-rf-port 14:0/0 down-channel 1 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[989.0]", + "options": [], + "type": "string_or_number", + "current_value": "989.0", + "updated_at": 1778225018 + }, + "cable ds-rf-port 14:0/0 down-channel 1 power-adjust-db": { + "hint": "Description: Power gain for channel relative to port base-channel-power-dbMv, negative values reduce channel output power.\nPossible completions:\n[-6.5]", + "options": [], + "type": "string_or_number", + "current_value": "-6.5", + "updated_at": 1778225069 + }, + "cable ds-rf-port 14:0/0 down-channel 1 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778225069 + }, + "cable ds-rf-port 14:0/0 down-channel 2 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778225069 + }, + "cable ds-rf-port 14:0/0 down-channel 2 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[0]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "0", + "updated_at": 1778225069 + }, + "cable ds-rf-port 14:0/0 down-channel 2 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[995.0]", + "options": [], + "type": "string_or_number", + "current_value": "995.0", + "updated_at": 1778225069 + }, + "cable ds-rf-port 14:0/0 down-channel 2 power-adjust-db": { + "hint": "Description: Power gain for channel relative to port base-channel-power-dbMv, negative values reduce channel output power.\nPossible completions:\n[-6.5]", + "options": [], + "type": "string_or_number", + "current_value": "-6.5", + "updated_at": 1778225069 + }, + "cable ds-rf-port 14:0/0 down-channel 2 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778225069 + }, + "cable ds-rf-port 14:0/0 down-channel 3 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[0]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "0", + "updated_at": 1778225069 + }, + "cable ds-rf-port 14:0/0 down-channel 3 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[998.0]", + "options": [], + "type": "string_or_number", + "current_value": "998.0", + "updated_at": 1778225069 + }, + "cable ds-rf-port 14:0/0 down-channel 3 power-adjust-db": { + "hint": "Description: Power gain for channel relative to port base-channel-power-dbMv, negative values reduce channel output power.\nPossible completions:\n[-6.5]", + "options": [], + "type": "string_or_number", + "current_value": "-6.5", + "updated_at": 1778225069 + }, + "cable ds-rf-port 14:0/0 down-channel 3 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778225069 + }, + "cable ds-rf-port 14:0/0 down-channel 4 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[0]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "0", + "updated_at": 1778225069 + }, + "cable ds-rf-port 14:0/0 down-channel 4 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[831.0]", + "options": [], + "type": "string_or_number", + "current_value": "831.0", + "updated_at": 1778225069 + }, + "cable ds-rf-port 14:0/0 down-channel 4 power-adjust-db": { + "hint": "Description: Power gain for channel relative to port base-channel-power-dbMv, negative values reduce channel output power.\nPossible completions:\n[-7.0]", + "options": [], + "type": "string_or_number", + "current_value": "-7.0", + "updated_at": 1778225069 + }, + "cable ds-rf-port 14:0/0 down-channel 4 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778225069 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 0 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778225069 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 0 auto-profile-change": { + "hint": "Description: Enable/disable automatic profile changes\nPossible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778225069 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 0 default-profile": { + "hint": "Description: Default OFDM channel profile\nPossible completions:\n[data-1] control data-1 data-2 data-3 data-4 data-5 data-6 ncp", + "options": [ + "control", + "data-1", + "data-2", + "data-3", + "data-4", + "data-5", + "data-6", + "ncp" + ], + "type": "list", + "current_value": "data-1", + "updated_at": 1778225069 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 0 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778225069 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 0 query-period-sec": { + "hint": "Description: Define period at which modems are queried for MER on each profile.\nPossible completions:\n[100]", + "options": [], + "type": "string_or_number", + "current_value": "100", + "updated_at": 1778225069 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 0 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778225069 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 0 unfit-profile-mins": { + "hint": "Description: Defines how long the modulation profile will be unavailable for selection.\nPossible completions:\n[0]", + "options": [], + "type": "string_or_number", + "current_value": "0", + "updated_at": 1778225069 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 0 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[2] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "2", + "updated_at": 1778225069 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 0 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [1010.0]", + "options": [], + "type": "string_or_number", + "current_value": "1010.0", + "updated_at": 1778225069 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 0 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[1140.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778225069 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 0 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[1050.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778225069 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 0 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778225069 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 0 profile control hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225069 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 0 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778225069 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 0 profile data-1 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225069 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 0 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778225120 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 0 profile data-2 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225120 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 0 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778225120 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 0 profile data-3 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225120 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 0 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778225120 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 0 profile data-4 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225120 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 0 profile data-5 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778225120 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 0 profile data-5 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225120 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 0 profile data-6 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam64] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam64", + "updated_at": 1778225120 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 0 profile data-6 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225120 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 0 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778225120 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 0 profile ncp hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225120 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 1 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778225120 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 1 auto-profile-change": { + "hint": "Description: Enable/disable automatic profile changes\nPossible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778225120 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 1 default-profile": { + "hint": "Description: Default OFDM channel profile\nPossible completions:\n[data-1] control data-1 data-2 data-3 data-4 data-5 data-6 ncp", + "options": [ + "control", + "data-1", + "data-2", + "data-3", + "data-4", + "data-5", + "data-6", + "ncp" + ], + "type": "list", + "current_value": "data-1", + "updated_at": 1778225120 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 1 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778225120 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 1 query-period-sec": { + "hint": "Description: Define period at which modems are queried for MER on each profile.\nPossible completions:\n[100]", + "options": [], + "type": "string_or_number", + "current_value": "100", + "updated_at": 1778225120 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 1 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778225120 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 1 unfit-profile-mins": { + "hint": "Description: Defines how long the modulation profile will be unavailable for selection.\nPossible completions:\n[0]", + "options": [], + "type": "string_or_number", + "current_value": "0", + "updated_at": 1778225120 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 1 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[2] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "2", + "updated_at": 1778225120 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 1 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [1150.0]", + "options": [], + "type": "string_or_number", + "current_value": "1150.0", + "updated_at": 1778225120 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 1 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[1218.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778225120 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 1 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[1175.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778225120 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 1 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778225120 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 1 profile control hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225120 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 1 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778225120 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 1 profile data-1 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225120 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 1 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778225120 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 1 profile data-2 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225120 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 1 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778225120 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 1 profile data-3 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225171 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 1 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778225171 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 1 profile data-4 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225171 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 1 profile data-5 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778225171 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 1 profile data-5 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225171 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 1 profile data-6 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam64] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam64", + "updated_at": 1778225171 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 1 profile data-6 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225171 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 1 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778225171 + }, + "cable ds-rf-port 14:0/0 ofdm-channel 1 profile ncp hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225171 + }, + "cable ds-rf-port 18:0/0 admin-state": { + "hint": "Description: Administrative State of the DS RF port [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778225171 + }, + "cable ds-rf-port 18:0/0 max-occupied-bw-mhz": { + "hint": "Description: Maximum bandwidth occupied by this port in megahertz\nPossible completions:\n[1152.0]", + "options": [], + "type": "string_or_number", + "current_value": "1152.0", + "updated_at": 1778225171 + }, + "cable ds-rf-port 18:0/0 base-channel-power-dbmv": { + "hint": "Description: Base channel power level in TenthdB\nPossible completions:\n[41.0]", + "options": [], + "type": "string_or_number", + "current_value": "41.0", + "updated_at": 1778225171 + }, + "cable ds-rf-port 18:0/0 tilt-pivot-freq-mhz": { + "hint": "Description: tilt-pivot-frequency in MHz\nPossible completions:\n[1215.0]", + "options": [], + "type": "string_or_number", + "current_value": "1215.0", + "updated_at": 1778225171 + }, + "cable ds-rf-port 18:0/0 down-channel 0 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778225171 + }, + "cable ds-rf-port 18:0/0 down-channel 0 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[0]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "0", + "updated_at": 1778225171 + }, + "cable ds-rf-port 18:0/0 down-channel 0 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[807.0]", + "options": [], + "type": "string_or_number", + "current_value": "807.0", + "updated_at": 1778225171 + }, + "cable ds-rf-port 18:0/0 down-channel 0 power-adjust-db": { + "hint": "Description: Power gain for channel relative to port base-channel-power-dbMv, negative values reduce channel output power.\nPossible completions:\n[-0.2]", + "options": [], + "type": "string_or_number", + "current_value": "-0.2", + "updated_at": 1778225171 + }, + "cable ds-rf-port 18:0/0 down-channel 0 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778225171 + }, + "cable ds-rf-port 18:0/0 down-channel 0 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-0]", + "options": [], + "type": "string_or_number", + "current_value": "qam-0", + "updated_at": 1778225171 + }, + "cable ds-rf-port 18:0/0 down-channel 1 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778225171 + }, + "cable ds-rf-port 18:0/0 down-channel 1 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[0]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "0", + "updated_at": 1778225171 + }, + "cable ds-rf-port 18:0/0 down-channel 1 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[813.0]", + "options": [], + "type": "string_or_number", + "current_value": "813.0", + "updated_at": 1778225171 + }, + "cable ds-rf-port 18:0/0 down-channel 1 power-adjust-db": { + "hint": "Description: Power gain for channel relative to port base-channel-power-dbMv, negative values reduce channel output power.\nPossible completions:\n[-0.5]", + "options": [], + "type": "string_or_number", + "current_value": "-0.5", + "updated_at": 1778225171 + }, + "cable ds-rf-port 18:0/0 down-channel 1 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778225171 + }, + "cable ds-rf-port 18:0/0 down-channel 1 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-1]", + "options": [], + "type": "string_or_number", + "current_value": "qam-1", + "updated_at": 1778225171 + }, + "cable ds-rf-port 18:0/0 down-channel 2 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778225171 + }, + "cable ds-rf-port 18:0/0 down-channel 2 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[0]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "0", + "updated_at": 1778225171 + }, + "cable ds-rf-port 18:0/0 down-channel 2 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[819.0]", + "options": [], + "type": "string_or_number", + "current_value": "819.0", + "updated_at": 1778225171 + }, + "cable ds-rf-port 18:0/0 down-channel 2 power-adjust-db": { + "hint": "Description: Power gain for channel relative to port base-channel-power-dbMv, negative values reduce channel output power.\nPossible completions:\n[-0.2]", + "options": [], + "type": "string_or_number", + "current_value": "-0.2", + "updated_at": 1778225171 + }, + "cable ds-rf-port 18:0/0 down-channel 2 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778225171 + }, + "cable ds-rf-port 18:0/0 down-channel 2 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-2]", + "options": [], + "type": "string_or_number", + "current_value": "qam-2", + "updated_at": 1778225222 + }, + "cable ds-rf-port 18:0/0 down-channel 3 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778225222 + }, + "cable ds-rf-port 18:0/0 down-channel 3 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[0]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "0", + "updated_at": 1778225222 + }, + "cable ds-rf-port 18:0/0 down-channel 3 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[825.0]", + "options": [], + "type": "string_or_number", + "current_value": "825.0", + "updated_at": 1778225222 + }, + "cable ds-rf-port 18:0/0 down-channel 3 power-adjust-db": { + "hint": "Description: Power gain for channel relative to port base-channel-power-dbMv, negative values reduce channel output power.\nPossible completions:\n[-0.3]", + "options": [], + "type": "string_or_number", + "current_value": "-0.3", + "updated_at": 1778225222 + }, + "cable ds-rf-port 18:0/0 down-channel 3 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778225222 + }, + "cable ds-rf-port 18:0/0 down-channel 3 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-3]", + "options": [], + "type": "string_or_number", + "current_value": "qam-3", + "updated_at": 1778225222 + }, + "cable ds-rf-port 18:0/0 down-channel 4 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778225222 + }, + "cable ds-rf-port 18:0/0 down-channel 4 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[0]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "0", + "updated_at": 1778225222 + }, + "cable ds-rf-port 18:0/0 down-channel 4 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[831.0]", + "options": [], + "type": "string_or_number", + "current_value": "831.0", + "updated_at": 1778225222 + }, + "cable ds-rf-port 18:0/0 down-channel 4 power-adjust-db": { + "hint": "Description: Power gain for channel relative to port base-channel-power-dbMv, negative values reduce channel output power.\nPossible completions:\n[-0.3]", + "options": [], + "type": "string_or_number", + "current_value": "-0.3", + "updated_at": 1778225222 + }, + "cable ds-rf-port 18:0/0 down-channel 4 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778225222 + }, + "cable ds-rf-port 18:0/0 down-channel 4 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-4]", + "options": [], + "type": "string_or_number", + "current_value": "qam-4", + "updated_at": 1778225222 + }, + "cable ds-rf-port 18:0/0 ofdm-channel 0 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778225222 + }, + "cable ds-rf-port 18:0/0 ofdm-channel 0 auto-profile-change": { + "hint": "Description: Enable/disable automatic profile changes\nPossible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778225222 + }, + "cable ds-rf-port 18:0/0 ofdm-channel 0 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778225222 + }, + "cable ds-rf-port 18:0/0 ofdm-channel 0 power-adjust-db": { + "hint": "Description: Adjustments to channel power in steps of 0.1 dB\nPossible completions:\n<-16.0..10.0> Adjustments to channel power in steps of 0.1 dB[-2.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778225222 + }, + "cable ds-rf-port 18:0/0 ofdm-channel 0 query-period-sec": { + "hint": "Description: Define period at which modems are queried for MER on each profile.\nPossible completions:\n[100]", + "options": [], + "type": "string_or_number", + "current_value": "100", + "updated_at": 1778225222 + }, + "cable ds-rf-port 18:0/0 ofdm-channel 0 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778225222 + }, + "cable ds-rf-port 18:0/0 ofdm-channel 0 unfit-profile-mins": { + "hint": "Description: Defines how long the modulation profile will be unavailable for selection.\nPossible completions:\n[0]", + "options": [], + "type": "string_or_number", + "current_value": "0", + "updated_at": 1778225222 + }, + "cable ds-rf-port 18:0/0 ofdm-channel 0 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[2] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "2", + "updated_at": 1778225222 + }, + "cable ds-rf-port 18:0/0 ofdm-channel 0 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [834.0]", + "options": [], + "type": "string_or_number", + "current_value": "834.0", + "updated_at": 1778225222 + }, + "cable ds-rf-port 18:0/0 ofdm-channel 0 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[1026.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778225222 + }, + "cable ds-rf-port 18:0/0 ofdm-channel 0 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[928.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778225222 + }, + "cable ds-rf-port 18:0/0 ofdm-channel 0 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778225222 + }, + "cable ds-rf-port 18:0/0 ofdm-channel 0 profile control hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225222 + }, + "cable ds-rf-port 18:0/0 ofdm-channel 0 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778225222 + }, + "cable ds-rf-port 18:0/0 ofdm-channel 0 profile data-1 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225222 + }, + "cable ds-rf-port 18:0/0 ofdm-channel 0 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778225222 + }, + "cable ds-rf-port 18:0/0 ofdm-channel 0 profile data-2 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225222 + }, + "cable ds-rf-port 18:0/0 ofdm-channel 0 profile data-5 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778225273 + }, + "cable ds-rf-port 18:0/0 ofdm-channel 0 profile data-5 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225273 + }, + "cable ds-rf-port 18:0/0 ofdm-channel 0 profile data-6 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam64] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam64", + "updated_at": 1778225273 + }, + "cable ds-rf-port 18:0/0 ofdm-channel 0 profile data-6 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225273 + }, + "cable ds-rf-port 18:0/0 ofdm-channel 0 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778225273 + }, + "cable ds-rf-port 18:0/0 ofdm-channel 0 profile ncp hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225273 + }, + "cable ds-rf-port 18:0/0 ofdm-channel 1 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778225273 + }, + "cable ds-rf-port 18:0/0 ofdm-channel 1 auto-profile-change": { + "hint": "Description: Enable/disable automatic profile changes\nPossible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778225273 + }, + "cable ds-rf-port 18:0/0 ofdm-channel 1 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778225273 + }, + "cable ds-rf-port 18:0/0 ofdm-channel 1 power-adjust-db": { + "hint": "Description: Adjustments to channel power in steps of 0.1 dB\nPossible completions:\n<-16.0..10.0> Adjustments to channel power in steps of 0.1 dB[-3.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778225273 + }, + "cable ds-rf-port 18:0/0 ofdm-channel 1 query-period-sec": { + "hint": "Description: Define period at which modems are queried for MER on each profile.\nPossible completions:\n[100]", + "options": [], + "type": "string_or_number", + "current_value": "100", + "updated_at": 1778225273 + }, + "cable ds-rf-port 18:0/0 ofdm-channel 1 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778225273 + }, + "cable ds-rf-port 18:0/0 ofdm-channel 1 unfit-profile-mins": { + "hint": "Description: Defines how long the modulation profile will be unavailable for selection.\nPossible completions:\n[0]", + "options": [], + "type": "string_or_number", + "current_value": "0", + "updated_at": 1778225273 + }, + "cable ds-rf-port 18:0/0 ofdm-channel 1 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[2] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "2", + "updated_at": 1778225273 + }, + "cable ds-rf-port 18:0/0 ofdm-channel 1 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [1026.0]", + "options": [], + "type": "string_or_number", + "current_value": "1026.0", + "updated_at": 1778225273 + }, + "cable ds-rf-port 18:0/0 ofdm-channel 1 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[1218.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778225273 + }, + "cable ds-rf-port 18:0/0 ofdm-channel 1 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[1150.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778225273 + }, + "cable ds-rf-port 18:0/0 ofdm-channel 1 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778225273 + }, + "cable ds-rf-port 18:0/0 ofdm-channel 1 profile control hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225273 + }, + "cable ds-rf-port 18:0/0 ofdm-channel 1 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778225273 + }, + "cable ds-rf-port 18:0/0 ofdm-channel 1 profile data-1 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225273 + }, + "cable ds-rf-port 18:0/0 ofdm-channel 1 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778225273 + }, + "cable ds-rf-port 18:0/0 ofdm-channel 1 profile data-2 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225273 + }, + "cable ds-rf-port 18:0/0 ofdm-channel 1 profile data-5 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778225273 + }, + "cable ds-rf-port 18:0/0 ofdm-channel 1 profile data-5 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225273 + }, + "cable ds-rf-port 18:0/0 ofdm-channel 1 profile data-6 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam64] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam64", + "updated_at": 1778225273 + }, + "cable ds-rf-port 18:0/0 ofdm-channel 1 profile data-6 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225273 + }, + "cable ds-rf-port 18:0/0 ofdm-channel 1 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778225273 + }, + "cable ds-rf-port 18:0/0 ofdm-channel 1 profile ncp hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225273 + }, + "cable ds-rf-port 19:0/0 admin-state": { + "hint": "Description: Administrative State of the DS RF port [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778225273 + }, + "cable ds-rf-port 19:0/0 max-occupied-bw-mhz": { + "hint": "Description: Maximum bandwidth occupied by this port in megahertz\nPossible completions:\n[1152.0]", + "options": [], + "type": "string_or_number", + "current_value": "1152.0", + "updated_at": 1778225323 + }, + "cable ds-rf-port 19:0/0 base-channel-power-dbmv": { + "hint": "Description: Base channel power level in TenthdB\nPossible completions:\n[46.0]", + "options": [], + "type": "string_or_number", + "current_value": "46.0", + "updated_at": 1778225323 + }, + "cable ds-rf-port 19:0/0 tilt-pivot-freq-mhz": { + "hint": "Description: tilt-pivot-frequency in MHz\nPossible completions:\n[1215.0]", + "options": [], + "type": "string_or_number", + "current_value": "1215.0", + "updated_at": 1778225323 + }, + "cable ds-rf-port 19:0/0 down-channel 0 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778225323 + }, + "cable ds-rf-port 19:0/0 down-channel 0 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[0]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "0", + "updated_at": 1778225323 + }, + "cable ds-rf-port 19:0/0 down-channel 0 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[807.0]", + "options": [], + "type": "string_or_number", + "current_value": "807.0", + "updated_at": 1778225323 + }, + "cable ds-rf-port 19:0/0 down-channel 0 power-adjust-db": { + "hint": "Description: Power gain for channel relative to port base-channel-power-dbMv, negative values reduce channel output power.\nPossible completions:\n[-8.0]", + "options": [], + "type": "string_or_number", + "current_value": "-8.0", + "updated_at": 1778225323 + }, + "cable ds-rf-port 19:0/0 down-channel 0 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778225323 + }, + "cable ds-rf-port 19:0/0 down-channel 0 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-0]", + "options": [], + "type": "string_or_number", + "current_value": "qam-0", + "updated_at": 1778225323 + }, + "cable ds-rf-port 19:0/0 down-channel 1 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778225323 + }, + "cable ds-rf-port 19:0/0 down-channel 1 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[0]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "0", + "updated_at": 1778225323 + }, + "cable ds-rf-port 19:0/0 down-channel 1 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[813.0]", + "options": [], + "type": "string_or_number", + "current_value": "813.0", + "updated_at": 1778225323 + }, + "cable ds-rf-port 19:0/0 down-channel 1 power-adjust-db": { + "hint": "Description: Power gain for channel relative to port base-channel-power-dbMv, negative values reduce channel output power.\nPossible completions:\n[-8.0]", + "options": [], + "type": "string_or_number", + "current_value": "-8.0", + "updated_at": 1778225323 + }, + "cable ds-rf-port 19:0/0 down-channel 1 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778225323 + }, + "cable ds-rf-port 19:0/0 down-channel 1 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-1]", + "options": [], + "type": "string_or_number", + "current_value": "qam-1", + "updated_at": 1778225323 + }, + "cable ds-rf-port 19:0/0 down-channel 2 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778225323 + }, + "cable ds-rf-port 19:0/0 down-channel 2 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[0]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "0", + "updated_at": 1778225323 + }, + "cable ds-rf-port 19:0/0 down-channel 2 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[819.0]", + "options": [], + "type": "string_or_number", + "current_value": "819.0", + "updated_at": 1778225323 + }, + "cable ds-rf-port 19:0/0 down-channel 2 power-adjust-db": { + "hint": "Description: Power gain for channel relative to port base-channel-power-dbMv, negative values reduce channel output power.\nPossible completions:\n[-8.0]", + "options": [], + "type": "string_or_number", + "current_value": "-8.0", + "updated_at": 1778225323 + }, + "cable ds-rf-port 19:0/0 down-channel 2 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778225323 + }, + "cable ds-rf-port 19:0/0 down-channel 2 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-2]", + "options": [], + "type": "string_or_number", + "current_value": "qam-2", + "updated_at": 1778225323 + }, + "cable ds-rf-port 19:0/0 down-channel 3 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778225323 + }, + "cable ds-rf-port 19:0/0 down-channel 3 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[0]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "0", + "updated_at": 1778225323 + }, + "cable ds-rf-port 19:0/0 down-channel 3 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[825.0]", + "options": [], + "type": "string_or_number", + "current_value": "825.0", + "updated_at": 1778225323 + }, + "cable ds-rf-port 19:0/0 down-channel 3 power-adjust-db": { + "hint": "Description: Power gain for channel relative to port base-channel-power-dbMv, negative values reduce channel output power.\nPossible completions:\n[-8.0]", + "options": [], + "type": "string_or_number", + "current_value": "-8.0", + "updated_at": 1778225323 + }, + "cable ds-rf-port 19:0/0 down-channel 3 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778225323 + }, + "cable ds-rf-port 19:0/0 down-channel 3 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-3]", + "options": [], + "type": "string_or_number", + "current_value": "qam-3", + "updated_at": 1778225323 + }, + "cable ds-rf-port 19:0/0 down-channel 4 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778225323 + }, + "cable ds-rf-port 19:0/0 down-channel 4 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[0]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "0", + "updated_at": 1778225323 + }, + "cable ds-rf-port 19:0/0 down-channel 4 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[831.0]", + "options": [], + "type": "string_or_number", + "current_value": "831.0", + "updated_at": 1778225323 + }, + "cable ds-rf-port 19:0/0 down-channel 4 power-adjust-db": { + "hint": "Description: Power gain for channel relative to port base-channel-power-dbMv, negative values reduce channel output power.\nPossible completions:\n[-8.0]", + "options": [], + "type": "string_or_number", + "current_value": "-8.0", + "updated_at": 1778225374 + }, + "cable ds-rf-port 19:0/0 down-channel 4 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778225374 + }, + "cable ds-rf-port 19:0/0 down-channel 4 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-4]", + "options": [], + "type": "string_or_number", + "current_value": "qam-4", + "updated_at": 1778225374 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 0 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778225374 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 0 auto-profile-change": { + "hint": "Description: Enable/disable automatic profile changes\nPossible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778225374 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 0 default-profile": { + "hint": "Description: Default OFDM channel profile\nPossible completions:\n[data-1] control data-1 data-2 data-3 data-4 data-5 data-6 ncp", + "options": [ + "control", + "data-1", + "data-2", + "data-3", + "data-4", + "data-5", + "data-6", + "ncp" + ], + "type": "list", + "current_value": "data-1", + "updated_at": 1778225374 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 0 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778225374 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 0 power-adjust-db": { + "hint": "Description: Adjustments to channel power in steps of 0.1 dB\nPossible completions:\n<-16.0..10.0> Adjustments to channel power in steps of 0.1 dB[-8.5]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778225374 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 0 query-period-sec": { + "hint": "Description: Define period at which modems are queried for MER on each profile.\nPossible completions:\n[100]", + "options": [], + "type": "string_or_number", + "current_value": "100", + "updated_at": 1778225374 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 0 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778225374 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 0 unfit-profile-mins": { + "hint": "Description: Defines how long the modulation profile will be unavailable for selection.\nPossible completions:\n[0]", + "options": [], + "type": "string_or_number", + "current_value": "0", + "updated_at": 1778225374 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 0 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[2] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "2", + "updated_at": 1778225374 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 0 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [834.0]", + "options": [], + "type": "string_or_number", + "current_value": "834.0", + "updated_at": 1778225374 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 0 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[1026.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778225374 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 0 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[980.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778225374 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 0 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778225374 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 0 profile control hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225374 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 0 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778225374 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 0 profile data-1 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225374 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 0 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778225374 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 0 profile data-2 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225374 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 0 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778225374 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 0 profile data-3 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225374 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 0 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778225374 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 0 profile data-4 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225374 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 0 profile data-5 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778225374 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 0 profile data-5 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225374 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 0 profile data-6 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam64] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam64", + "updated_at": 1778225374 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 0 profile data-6 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225374 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 0 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778225374 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 0 profile ncp hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225425 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 1 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778225425 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 1 auto-profile-change": { + "hint": "Description: Enable/disable automatic profile changes\nPossible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778225425 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 1 default-profile": { + "hint": "Description: Default OFDM channel profile\nPossible completions:\n[data-1] control data-1 data-2 data-3 data-4 data-5 data-6 ncp", + "options": [ + "control", + "data-1", + "data-2", + "data-3", + "data-4", + "data-5", + "data-6", + "ncp" + ], + "type": "list", + "current_value": "data-1", + "updated_at": 1778225425 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 1 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778225425 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 1 power-adjust-db": { + "hint": "Description: Adjustments to channel power in steps of 0.1 dB\nPossible completions:\n<-16.0..10.0> Adjustments to channel power in steps of 0.1 dB[-9.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778225425 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 1 query-period-sec": { + "hint": "Description: Define period at which modems are queried for MER on each profile.\nPossible completions:\n[100]", + "options": [], + "type": "string_or_number", + "current_value": "100", + "updated_at": 1778225425 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 1 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778225425 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 1 unfit-profile-mins": { + "hint": "Description: Defines how long the modulation profile will be unavailable for selection.\nPossible completions:\n[0]", + "options": [], + "type": "string_or_number", + "current_value": "0", + "updated_at": 1778225425 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 1 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[2] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "2", + "updated_at": 1778225425 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 1 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [1026.0]", + "options": [], + "type": "string_or_number", + "current_value": "1026.0", + "updated_at": 1778225425 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 1 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[1218.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778225425 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 1 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[1150.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778225425 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 1 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778225425 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 1 profile control hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225425 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 1 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778225425 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 1 profile data-1 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225425 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 1 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778225425 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 1 profile data-2 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225425 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 1 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778225425 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 1 profile data-3 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225425 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 1 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778225425 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 1 profile data-4 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225425 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 1 profile data-5 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778225425 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 1 profile data-5 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225425 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 1 profile data-6 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam64] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam64", + "updated_at": 1778225425 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 1 profile data-6 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225425 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 1 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778225425 + }, + "cable ds-rf-port 19:0/0 ofdm-channel 1 profile ncp hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225425 + }, + "cable ds-rf-port 21:0/0 admin-state": { + "hint": "Description: Administrative State of the DS RF port [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778225425 + }, + "cable ds-rf-port 21:0/0 max-occupied-bw-mhz": { + "hint": "Description: Maximum bandwidth occupied by this port in megahertz\nPossible completions:\n[1152.0]", + "options": [], + "type": "string_or_number", + "current_value": "1152.0", + "updated_at": 1778225476 + }, + "cable ds-rf-port 21:0/0 base-channel-power-dbmv": { + "hint": "Description: Base channel power level in TenthdB\nPossible completions:\n[43.0]", + "options": [], + "type": "string_or_number", + "current_value": "43.0", + "updated_at": 1778225476 + }, + "cable ds-rf-port 21:0/0 tilt-pivot-freq-mhz": { + "hint": "Description: tilt-pivot-frequency in MHz\nPossible completions:\n[1215.0]", + "options": [], + "type": "string_or_number", + "current_value": "1215.0", + "updated_at": 1778225476 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 0 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778225476 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 0 auto-profile-change": { + "hint": "Description: Enable/disable automatic profile changes\nPossible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778225476 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 0 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778225476 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 0 query-period-sec": { + "hint": "Description: Define period at which modems are queried for MER on each profile.\nPossible completions:\n[100]", + "options": [], + "type": "string_or_number", + "current_value": "100", + "updated_at": 1778225476 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 0 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778225476 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 0 unfit-profile-mins": { + "hint": "Description: Defines how long the modulation profile will be unavailable for selection.\nPossible completions:\n[0]", + "options": [], + "type": "string_or_number", + "current_value": "0", + "updated_at": 1778225476 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 0 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[2] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "2", + "updated_at": 1778225476 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 0 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [834.0]", + "options": [], + "type": "string_or_number", + "current_value": "834.0", + "updated_at": 1778225476 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 0 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[1026.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778225476 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 0 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[930.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778225476 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 0 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778225476 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 0 profile control hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225476 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 0 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778225476 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 0 profile data-1 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225476 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 0 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778225476 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 0 profile data-2 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225476 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 0 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778225476 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 0 profile data-3 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225476 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 0 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778225476 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 0 profile data-4 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225476 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 0 profile data-5 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778225476 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 0 profile data-5 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225476 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 0 profile data-6 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam64] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam64", + "updated_at": 1778225476 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 0 profile data-6 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225476 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 0 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778225476 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 0 profile ncp hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225476 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 1 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[down] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "down", + "updated_at": 1778225476 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 1 auto-profile-change": { + "hint": "Description: Enable/disable automatic profile changes\nPossible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778225527 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 1 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778225527 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 1 query-period-sec": { + "hint": "Description: Define period at which modems are queried for MER on each profile.\nPossible completions:\n[100]", + "options": [], + "type": "string_or_number", + "current_value": "100", + "updated_at": 1778225527 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 1 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778225527 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 1 unfit-profile-mins": { + "hint": "Description: Defines how long the modulation profile will be unavailable for selection.\nPossible completions:\n[0]", + "options": [], + "type": "string_or_number", + "current_value": "0", + "updated_at": 1778225527 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 1 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[2] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "2", + "updated_at": 1778225527 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 1 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [1026.0]", + "options": [], + "type": "string_or_number", + "current_value": "1026.0", + "updated_at": 1778225527 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 1 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[1218.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778225527 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 1 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[1122.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778225527 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 1 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778225527 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 1 profile control hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225527 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 1 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778225527 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 1 profile data-1 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225527 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 1 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778225527 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 1 profile data-2 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225527 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 1 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778225527 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 1 profile data-3 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225527 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 1 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778225527 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 1 profile data-4 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225527 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 1 profile data-5 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778225527 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 1 profile data-5 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225527 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 1 profile data-6 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam64] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam64", + "updated_at": 1778225527 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 1 profile data-6 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225527 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 1 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778225527 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 1 profile ncp hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225527 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 2 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778225527 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 2 auto-profile-change": { + "hint": "Description: Enable/disable automatic profile changes\nPossible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778225527 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 2 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778225527 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 2 query-period-sec": { + "hint": "Description: Define period at which modems are queried for MER on each profile.\nPossible completions:\n[100]", + "options": [], + "type": "string_or_number", + "current_value": "100", + "updated_at": 1778225527 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 2 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778225527 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 2 unfit-profile-mins": { + "hint": "Description: Defines how long the modulation profile will be unavailable for selection.\nPossible completions:\n[0]", + "options": [], + "type": "string_or_number", + "current_value": "0", + "updated_at": 1778225578 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 2 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[2] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "2", + "updated_at": 1778225578 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 2 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [1218.0]", + "options": [], + "type": "string_or_number", + "current_value": "1218.0", + "updated_at": 1778225578 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 2 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[1410.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778225578 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 2 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[1314.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778225578 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 2 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778225578 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 2 profile control hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225578 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 2 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778225578 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 2 profile data-1 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225578 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 2 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778225578 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 2 profile data-2 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225578 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 2 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778225578 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 2 profile data-3 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225578 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 2 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778225578 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 2 profile data-4 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225578 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 2 profile data-5 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778225578 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 2 profile data-5 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225578 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 2 profile data-6 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam64] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam64", + "updated_at": 1778225578 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 2 profile data-6 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225578 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 2 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778225578 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 2 profile ncp hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225578 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 3 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778225578 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 3 auto-profile-change": { + "hint": "Description: Enable/disable automatic profile changes\nPossible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778225578 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 3 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778225578 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 3 query-period-sec": { + "hint": "Description: Define period at which modems are queried for MER on each profile.\nPossible completions:\n[100]", + "options": [], + "type": "string_or_number", + "current_value": "100", + "updated_at": 1778225578 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 3 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778225578 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 3 unfit-profile-mins": { + "hint": "Description: Defines how long the modulation profile will be unavailable for selection.\nPossible completions:\n[0]", + "options": [], + "type": "string_or_number", + "current_value": "0", + "updated_at": 1778225578 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 3 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[2] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "2", + "updated_at": 1778225578 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 3 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [1410.0]", + "options": [], + "type": "string_or_number", + "current_value": "1410.0", + "updated_at": 1778225578 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 3 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[1602.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778225578 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 3 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[1506.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778225629 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 3 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778225629 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 3 profile control hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225629 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 3 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778225629 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 3 profile data-1 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225629 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 3 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778225629 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 3 profile data-2 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225629 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 3 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778225629 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 3 profile data-3 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225629 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 3 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778225629 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 3 profile data-4 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225629 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 3 profile data-5 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778225629 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 3 profile data-5 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225629 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 3 profile data-6 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam64] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam64", + "updated_at": 1778225629 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 3 profile data-6 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225629 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 3 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778225629 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 3 profile ncp hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225629 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 4 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778225629 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 4 auto-profile-change": { + "hint": "Description: Enable/disable automatic profile changes\nPossible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778225629 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 4 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778225629 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 4 query-period-sec": { + "hint": "Description: Define period at which modems are queried for MER on each profile.\nPossible completions:\n[100]", + "options": [], + "type": "string_or_number", + "current_value": "100", + "updated_at": 1778225629 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 4 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778225629 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 4 unfit-profile-mins": { + "hint": "Description: Defines how long the modulation profile will be unavailable for selection.\nPossible completions:\n[0]", + "options": [], + "type": "string_or_number", + "current_value": "0", + "updated_at": 1778225629 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 4 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[2] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "2", + "updated_at": 1778225629 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 4 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [1602.0]", + "options": [], + "type": "string_or_number", + "current_value": "1602.0", + "updated_at": 1778225629 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 4 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[1794.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778225629 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 4 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[1698.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778225629 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 4 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778225629 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 4 profile control hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225629 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 4 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778225629 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 4 profile data-1 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225680 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 4 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778225680 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 4 profile data-2 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225680 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 4 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778225680 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 4 profile data-3 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225680 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 4 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778225680 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 4 profile data-4 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225680 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 4 profile data-5 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778225680 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 4 profile data-5 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225680 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 4 profile data-6 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam64] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam64", + "updated_at": 1778225680 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 4 profile data-6 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225680 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 4 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778225680 + }, + "cable ds-rf-port 21:0/0 ofdm-channel 4 profile ncp hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225680 + }, + "cable ds-rf-port 31:0/0 admin-state": { + "hint": "Description: Administrative State of the DS RF port [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778225680 + }, + "cable ds-rf-port 31:0/0 max-occupied-bw-mhz": { + "hint": "Description: Maximum bandwidth occupied by this port in megahertz\nPossible completions:\n[1152.0]", + "options": [], + "type": "string_or_number", + "current_value": "1152.0", + "updated_at": 1778225680 + }, + "cable ds-rf-port 31:0/0 tilt-adjust": { + "hint": "Description: tilt-adjustment\nPossible completions:\n[7.0]", + "options": [], + "type": "string_or_number", + "current_value": "7.0", + "updated_at": 1778225680 + }, + "cable ds-rf-port 31:0/0 base-channel-power-dbmv": { + "hint": "Description: Base channel power level in TenthdB\nPossible completions:\n[46.0]", + "options": [], + "type": "string_or_number", + "current_value": "46.0", + "updated_at": 1778225680 + }, + "cable ds-rf-port 31:0/0 tilt-pivot-freq-mhz": { + "hint": "Description: tilt-pivot-frequency in MHz\nPossible completions:\n[1218.0]", + "options": [], + "type": "string_or_number", + "current_value": "1218.0", + "updated_at": 1778225680 + }, + "cable ds-rf-port 31:0/0 tilt-minimum-freq-mhz": { + "hint": "Description: tilt-minimum-frequency in MHz\nPossible completions:\n[492.0]", + "options": [], + "type": "string_or_number", + "current_value": "492.0", + "updated_at": 1778225680 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 0 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778225680 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 0 cyclic-prefix": { + "hint": "Description: Cyclic prefix configuration\nPossible completions:\n[256]", + "options": [], + "type": "string_or_number", + "current_value": "256", + "updated_at": 1778225680 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 0 default-profile": { + "hint": "Description: Default OFDM channel profile\nPossible completions:\n[data-1] control data-1 data-2 data-3 ncp", + "options": [ + "control", + "data-1", + "data-2", + "data-3", + "ncp" + ], + "type": "list", + "current_value": "data-1", + "updated_at": 1778225680 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 0 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778225680 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 0 query-load-percent": { + "hint": "Description: Define amount of traffic sent on each profile for testing MER.\nPossible completions:\n[0.0]", + "options": [], + "type": "string_or_number", + "current_value": "0.0", + "updated_at": 1778225680 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 0 query-period-sec": { + "hint": "Description: Define period at which modems are queried for MER on each profile.\nPossible completions:\n[1000]", + "options": [], + "type": "string_or_number", + "current_value": "1000", + "updated_at": 1778225680 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 0 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778225680 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 0 unfit-profile-mins": { + "hint": "Description: Defines how long the modulation profile will be unavailable for selection.\nPossible completions:\n[0]", + "options": [], + "type": "string_or_number", + "current_value": "0", + "updated_at": 1778225680 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 0 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778225680 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 0 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [690.0]", + "options": [], + "type": "string_or_number", + "current_value": "690.0", + "updated_at": 1778225680 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 0 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[882.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778225680 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 0 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[786.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778225731 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 0 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778225731 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 0 profile control hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225731 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 0 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778225731 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 0 profile data-1 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225731 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 0 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778225731 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 0 profile data-2 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225731 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 0 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778225731 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 0 profile data-3 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225731 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 0 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778225731 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 0 profile ncp hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225731 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 1 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778225731 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 1 cyclic-prefix": { + "hint": "Description: Cyclic prefix configuration\nPossible completions:\n[256]", + "options": [], + "type": "string_or_number", + "current_value": "256", + "updated_at": 1778225731 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 1 default-profile": { + "hint": "Description: Default OFDM channel profile\nPossible completions:\n[data-1] control data-1 data-2 data-3 ncp", + "options": [ + "control", + "data-1", + "data-2", + "data-3", + "ncp" + ], + "type": "list", + "current_value": "data-1", + "updated_at": 1778225731 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 1 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778225731 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 1 query-load-percent": { + "hint": "Description: Define amount of traffic sent on each profile for testing MER.\nPossible completions:\n[0.0]", + "options": [], + "type": "string_or_number", + "current_value": "0.0", + "updated_at": 1778225731 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 1 query-period-sec": { + "hint": "Description: Define period at which modems are queried for MER on each profile.\nPossible completions:\n[1000]", + "options": [], + "type": "string_or_number", + "current_value": "1000", + "updated_at": 1778225731 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 1 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778225731 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 1 unfit-profile-mins": { + "hint": "Description: Defines how long the modulation profile will be unavailable for selection.\nPossible completions:\n[0]", + "options": [], + "type": "string_or_number", + "current_value": "0", + "updated_at": 1778225731 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 1 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778225731 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 1 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [888.0]", + "options": [], + "type": "string_or_number", + "current_value": "888.0", + "updated_at": 1778225731 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 1 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[1080.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778225731 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 1 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[984.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778225731 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 1 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778225731 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 1 profile control hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225731 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 1 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778225731 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 1 profile data-1 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225731 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 1 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778225731 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 1 profile data-2 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225731 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 1 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778225731 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 1 profile data-3 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225782 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 1 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778225782 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 1 profile ncp hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225782 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 2 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778225782 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 2 cyclic-prefix": { + "hint": "Description: Cyclic prefix configuration\nPossible completions:\n[256]", + "options": [], + "type": "string_or_number", + "current_value": "256", + "updated_at": 1778225782 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 2 default-profile": { + "hint": "Description: Default OFDM channel profile\nPossible completions:\n[data-1] control data-1 data-2 data-3 ncp", + "options": [ + "control", + "data-1", + "data-2", + "data-3", + "ncp" + ], + "type": "list", + "current_value": "data-1", + "updated_at": 1778225782 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 2 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778225782 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 2 power-adjust-db": { + "hint": "Description: Adjustments to channel power in steps of 0.1 dB\nPossible completions:\n<-16.0..10.0> Adjustments to channel power in steps of 0.1 dB[-6.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778225782 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 2 query-load-percent": { + "hint": "Description: Define amount of traffic sent on each profile for testing MER.\nPossible completions:\n[0.0]", + "options": [], + "type": "string_or_number", + "current_value": "0.0", + "updated_at": 1778225782 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 2 query-period-sec": { + "hint": "Description: Define period at which modems are queried for MER on each profile.\nPossible completions:\n[1000]", + "options": [], + "type": "string_or_number", + "current_value": "1000", + "updated_at": 1778225782 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 2 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778225782 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 2 unfit-profile-mins": { + "hint": "Description: Defines how long the modulation profile will be unavailable for selection.\nPossible completions:\n[0]", + "options": [], + "type": "string_or_number", + "current_value": "0", + "updated_at": 1778225782 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 2 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778225782 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 2 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [1086.0]", + "options": [], + "type": "string_or_number", + "current_value": "1086.0", + "updated_at": 1778225782 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 2 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[1278.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778225782 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 2 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[1182.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778225782 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 2 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778225782 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 2 profile control hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225782 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 2 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778225782 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 2 profile data-1 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225782 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 2 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778225782 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 2 profile data-2 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225782 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 2 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778225782 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 2 profile data-3 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225782 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 2 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778225782 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 2 profile ncp hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225782 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 3 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778225782 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 3 cyclic-prefix": { + "hint": "Description: Cyclic prefix configuration\nPossible completions:\n[256]", + "options": [], + "type": "string_or_number", + "current_value": "256", + "updated_at": 1778225782 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 3 default-profile": { + "hint": "Description: Default OFDM channel profile\nPossible completions:\n[data-1] control data-1 data-2 data-3 ncp", + "options": [ + "control", + "data-1", + "data-2", + "data-3", + "ncp" + ], + "type": "list", + "current_value": "data-1", + "updated_at": 1778225782 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 3 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778225782 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 3 power-adjust-db": { + "hint": "Description: Adjustments to channel power in steps of 0.1 dB\nPossible completions:\n<-16.0..10.0> Adjustments to channel power in steps of 0.1 dB[-6.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778225833 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 3 query-load-percent": { + "hint": "Description: Define amount of traffic sent on each profile for testing MER.\nPossible completions:\n[0.0]", + "options": [], + "type": "string_or_number", + "current_value": "0.0", + "updated_at": 1778225833 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 3 query-period-sec": { + "hint": "Description: Define period at which modems are queried for MER on each profile.\nPossible completions:\n[1000]", + "options": [], + "type": "string_or_number", + "current_value": "1000", + "updated_at": 1778225833 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 3 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778225833 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 3 unfit-profile-mins": { + "hint": "Description: Defines how long the modulation profile will be unavailable for selection.\nPossible completions:\n[0]", + "options": [], + "type": "string_or_number", + "current_value": "0", + "updated_at": 1778225833 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 3 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778225833 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 3 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [1284.0]", + "options": [], + "type": "string_or_number", + "current_value": "1284.0", + "updated_at": 1778225833 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 3 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[1476.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778225833 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 3 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[1380.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778225833 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 3 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778225833 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 3 profile control hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225833 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 3 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778225833 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 3 profile data-1 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225833 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 3 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778225833 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 3 profile data-2 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225833 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 3 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778225833 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 3 profile data-3 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225833 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 3 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778225833 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 3 profile ncp hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225833 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 4 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778225833 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 4 cyclic-prefix": { + "hint": "Description: Cyclic prefix configuration\nPossible completions:\n[256]", + "options": [], + "type": "string_or_number", + "current_value": "256", + "updated_at": 1778225833 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 4 default-profile": { + "hint": "Description: Default OFDM channel profile\nPossible completions:\n[data-1] control data-1 data-2 data-3 ncp", + "options": [ + "control", + "data-1", + "data-2", + "data-3", + "ncp" + ], + "type": "list", + "current_value": "data-1", + "updated_at": 1778225833 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 4 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778225833 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 4 power-adjust-db": { + "hint": "Description: Adjustments to channel power in steps of 0.1 dB\nPossible completions:\n<-16.0..10.0> Adjustments to channel power in steps of 0.1 dB[-6.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778225833 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 4 query-period-sec": { + "hint": "Description: Define period at which modems are queried for MER on each profile.\nPossible completions:\n[1000]", + "options": [], + "type": "string_or_number", + "current_value": "1000", + "updated_at": 1778225833 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 4 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778225833 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 4 unfit-profile-mins": { + "hint": "Description: Defines how long the modulation profile will be unavailable for selection.\nPossible completions:\n[0]", + "options": [], + "type": "string_or_number", + "current_value": "0", + "updated_at": 1778225833 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 4 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778225833 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 4 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [1482.0]", + "options": [], + "type": "string_or_number", + "current_value": "1482.0", + "updated_at": 1778225833 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 4 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[1674.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778225833 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 4 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[1578.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778225883 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 4 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778225883 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 4 profile control hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225883 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 4 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778225883 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 4 profile data-1 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225883 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 4 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778225883 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 4 profile data-2 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225883 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 4 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778225883 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 4 profile data-3 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225883 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 4 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778225883 + }, + "cable ds-rf-port 31:0/0 ofdm-channel 4 profile ncp hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225883 + }, + "cable ds-rf-port 32:0/0 admin-state": { + "hint": "Description: Administrative State of the DS RF port [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778225883 + }, + "cable ds-rf-port 32:0/0 max-occupied-bw-mhz": { + "hint": "Description: Maximum bandwidth occupied by this port in megahertz\nPossible completions:\n[1152.0]", + "options": [], + "type": "string_or_number", + "current_value": "1152.0", + "updated_at": 1778225883 + }, + "cable ds-rf-port 32:0/0 tilt-adjust": { + "hint": "Description: tilt-adjustment\nPossible completions:\n[8.0]", + "options": [], + "type": "string_or_number", + "current_value": "8.0", + "updated_at": 1778225883 + }, + "cable ds-rf-port 32:0/0 base-channel-power-dbmv": { + "hint": "Description: Base channel power level in TenthdB\nPossible completions:\n[38.0]", + "options": [], + "type": "string_or_number", + "current_value": "38.0", + "updated_at": 1778225883 + }, + "cable ds-rf-port 32:0/0 tilt-pivot-freq-mhz": { + "hint": "Description: tilt-pivot-frequency in MHz\nPossible completions:\n[1794.0]", + "options": [], + "type": "string_or_number", + "current_value": "1794.0", + "updated_at": 1778225883 + }, + "cable ds-rf-port 32:0/0 tilt-minimum-freq-mhz": { + "hint": "Description: tilt-minimum-frequency in MHz\nPossible completions:\n[492.0]", + "options": [], + "type": "string_or_number", + "current_value": "492.0", + "updated_at": 1778225883 + }, + "cable ds-rf-port 32:0/0 down-channel 0 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778225883 + }, + "cable ds-rf-port 32:0/0 down-channel 0 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778225883 + }, + "cable ds-rf-port 32:0/0 down-channel 0 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[495.0]", + "options": [], + "type": "string_or_number", + "current_value": "495.0", + "updated_at": 1778225883 + }, + "cable ds-rf-port 32:0/0 down-channel 0 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778225883 + }, + "cable ds-rf-port 32:0/0 down-channel 0 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-1]", + "options": [], + "type": "string_or_number", + "current_value": "qam-1", + "updated_at": 1778225883 + }, + "cable ds-rf-port 32:0/0 down-channel 1 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778225883 + }, + "cable ds-rf-port 32:0/0 down-channel 1 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778225883 + }, + "cable ds-rf-port 32:0/0 down-channel 1 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[501.0]", + "options": [], + "type": "string_or_number", + "current_value": "501.0", + "updated_at": 1778225883 + }, + "cable ds-rf-port 32:0/0 down-channel 1 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778225883 + }, + "cable ds-rf-port 32:0/0 down-channel 1 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-2]", + "options": [], + "type": "string_or_number", + "current_value": "qam-2", + "updated_at": 1778225883 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 0 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778225883 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 0 cyclic-prefix": { + "hint": "Description: Cyclic prefix configuration\nPossible completions:\n[256]", + "options": [], + "type": "string_or_number", + "current_value": "256", + "updated_at": 1778225883 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 0 default-profile": { + "hint": "Description: Default OFDM channel profile\nPossible completions:\n[data-2] control data-1 data-2 data-3 data-4 ncp", + "options": [ + "control", + "data-1", + "data-2", + "data-3", + "data-4", + "ncp" + ], + "type": "list", + "current_value": "data-2", + "updated_at": 1778225883 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 0 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778225935 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 0 query-period-sec": { + "hint": "Description: Define period at which modems are queried for MER on each profile.\nPossible completions:\n[1000]", + "options": [], + "type": "string_or_number", + "current_value": "1000", + "updated_at": 1778225935 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 0 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[25khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "25khz", + "updated_at": 1778225935 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 0 unfit-profile-mins": { + "hint": "Description: Defines how long the modulation profile will be unavailable for selection.\nPossible completions:\n[0]", + "options": [], + "type": "string_or_number", + "current_value": "0", + "updated_at": 1778225935 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 0 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778225935 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 0 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [834.0]", + "options": [], + "type": "string_or_number", + "current_value": "834.0", + "updated_at": 1778225935 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 0 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[1026.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778225935 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 0 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[882.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778225935 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 0 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778225935 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 0 profile control hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225935 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 0 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778225935 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 0 profile data-1 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225935 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 0 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778225935 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 0 profile data-2 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225935 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 0 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778225935 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 0 profile data-3 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225935 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 0 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam128] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam128", + "updated_at": 1778225935 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 0 profile data-4 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225935 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 0 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778225935 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 0 profile ncp hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225935 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 1 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778225935 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 1 cyclic-prefix": { + "hint": "Description: Cyclic prefix configuration\nPossible completions:\n[256]", + "options": [], + "type": "string_or_number", + "current_value": "256", + "updated_at": 1778225935 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 1 default-profile": { + "hint": "Description: Default OFDM channel profile\nPossible completions:\n[data-2] control data-1 data-2 data-3 data-4 ncp", + "options": [ + "control", + "data-1", + "data-2", + "data-3", + "data-4", + "ncp" + ], + "type": "list", + "current_value": "data-2", + "updated_at": 1778225935 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 1 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778225935 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 1 query-period-sec": { + "hint": "Description: Define period at which modems are queried for MER on each profile.\nPossible completions:\n[1000]", + "options": [], + "type": "string_or_number", + "current_value": "1000", + "updated_at": 1778225935 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 1 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[25khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "25khz", + "updated_at": 1778225935 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 1 unfit-profile-mins": { + "hint": "Description: Defines how long the modulation profile will be unavailable for selection.\nPossible completions:\n[0]", + "options": [], + "type": "string_or_number", + "current_value": "0", + "updated_at": 1778225935 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 1 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[2] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "2", + "updated_at": 1778225935 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 1 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [1026.0]", + "options": [], + "type": "string_or_number", + "current_value": "1026.0", + "updated_at": 1778225935 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 1 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[1218.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778225935 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 1 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[1074.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778225985 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 1 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778225985 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 1 profile control hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225985 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 1 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778225985 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 1 profile data-1 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225985 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 1 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778225985 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 1 profile data-2 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225985 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 1 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778225985 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 1 profile data-3 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225985 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 1 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam128] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam128", + "updated_at": 1778225985 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 1 profile data-4 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225985 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 1 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778225985 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 1 profile ncp hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225985 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 2 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778225985 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 2 cyclic-prefix": { + "hint": "Description: Cyclic prefix configuration\nPossible completions:\n[256]", + "options": [], + "type": "string_or_number", + "current_value": "256", + "updated_at": 1778225985 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 2 default-profile": { + "hint": "Description: Default OFDM channel profile\nPossible completions:\n[data-2] control data-1 data-2 data-3 data-4 ncp", + "options": [ + "control", + "data-1", + "data-2", + "data-3", + "data-4", + "ncp" + ], + "type": "list", + "current_value": "data-2", + "updated_at": 1778225985 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 2 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778225985 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 2 query-period-sec": { + "hint": "Description: Define period at which modems are queried for MER on each profile.\nPossible completions:\n[1000]", + "options": [], + "type": "string_or_number", + "current_value": "1000", + "updated_at": 1778225985 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 2 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[25khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "25khz", + "updated_at": 1778225985 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 2 unfit-profile-mins": { + "hint": "Description: Defines how long the modulation profile will be unavailable for selection.\nPossible completions:\n[0]", + "options": [], + "type": "string_or_number", + "current_value": "0", + "updated_at": 1778225985 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 2 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778225985 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 2 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [1218.0]", + "options": [], + "type": "string_or_number", + "current_value": "1218.0", + "updated_at": 1778225985 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 2 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[1410.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778225985 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 2 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[1266.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778225985 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 2 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778225985 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 2 profile control hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225985 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 2 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778225985 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 2 profile data-1 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225985 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 2 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778225985 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 2 profile data-2 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778225985 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 2 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778226036 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 2 profile data-3 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778226036 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 2 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam128] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam128", + "updated_at": 1778226036 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 2 profile data-4 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778226036 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 2 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778226036 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 2 profile ncp hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778226036 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 3 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226036 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 3 cyclic-prefix": { + "hint": "Description: Cyclic prefix configuration\nPossible completions:\n[256]", + "options": [], + "type": "string_or_number", + "current_value": "256", + "updated_at": 1778226036 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 3 default-profile": { + "hint": "Description: Default OFDM channel profile\nPossible completions:\n[data-2] control data-1 data-2 data-3 data-4 ncp", + "options": [ + "control", + "data-1", + "data-2", + "data-3", + "data-4", + "ncp" + ], + "type": "list", + "current_value": "data-2", + "updated_at": 1778226036 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 3 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778226036 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 3 query-period-sec": { + "hint": "Description: Define period at which modems are queried for MER on each profile.\nPossible completions:\n[1000]", + "options": [], + "type": "string_or_number", + "current_value": "1000", + "updated_at": 1778226036 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 3 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[25khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "25khz", + "updated_at": 1778226036 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 3 unfit-profile-mins": { + "hint": "Description: Defines how long the modulation profile will be unavailable for selection.\nPossible completions:\n[0]", + "options": [], + "type": "string_or_number", + "current_value": "0", + "updated_at": 1778226036 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 3 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[2] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "2", + "updated_at": 1778226036 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 3 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [1410.0]", + "options": [], + "type": "string_or_number", + "current_value": "1410.0", + "updated_at": 1778226036 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 3 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[1602.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778226036 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 3 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[1458.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778226036 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 3 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778226036 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 3 profile control hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778226036 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 3 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778226036 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 3 profile data-1 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778226036 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 3 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778226036 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 3 profile data-2 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778226036 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 3 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778226036 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 3 profile data-3 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778226036 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 3 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam128] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam128", + "updated_at": 1778226036 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 3 profile data-4 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778226036 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 3 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778226036 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 3 profile ncp hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778226036 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 4 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226036 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 4 cyclic-prefix": { + "hint": "Description: Cyclic prefix configuration\nPossible completions:\n[256]", + "options": [], + "type": "string_or_number", + "current_value": "256", + "updated_at": 1778226087 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 4 default-profile": { + "hint": "Description: Default OFDM channel profile\nPossible completions:\n[data-2] control data-1 data-2 data-3 data-4 ncp", + "options": [ + "control", + "data-1", + "data-2", + "data-3", + "data-4", + "ncp" + ], + "type": "list", + "current_value": "data-2", + "updated_at": 1778226087 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 4 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778226087 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 4 query-period-sec": { + "hint": "Description: Define period at which modems are queried for MER on each profile.\nPossible completions:\n[1000]", + "options": [], + "type": "string_or_number", + "current_value": "1000", + "updated_at": 1778226087 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 4 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[25khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "25khz", + "updated_at": 1778226087 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 4 unfit-profile-mins": { + "hint": "Description: Defines how long the modulation profile will be unavailable for selection.\nPossible completions:\n[0]", + "options": [], + "type": "string_or_number", + "current_value": "0", + "updated_at": 1778226087 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 4 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[2] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "2", + "updated_at": 1778226087 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 4 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [1602.0]", + "options": [], + "type": "string_or_number", + "current_value": "1602.0", + "updated_at": 1778226087 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 4 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[1794.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778226087 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 4 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[1698.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778226087 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 4 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778226087 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 4 profile control hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778226087 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 4 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778226087 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 4 profile data-1 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778226087 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 4 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778226087 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 4 profile data-2 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778226087 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 4 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778226087 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 4 profile data-3 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778226087 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 4 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam128] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam128", + "updated_at": 1778226087 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 4 profile data-4 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778226087 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 4 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778226087 + }, + "cable ds-rf-port 32:0/0 ofdm-channel 4 profile ncp hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778226087 + }, + "cable ds-rf-port 33:0/0 admin-state": { + "hint": "Description: Administrative State of the DS RF port [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226087 + }, + "cable ds-rf-port 33:0/0 max-occupied-bw-mhz": { + "hint": "Description: Maximum bandwidth occupied by this port in megahertz\nPossible completions:\n[1152.0]", + "options": [], + "type": "string_or_number", + "current_value": "1152.0", + "updated_at": 1778226087 + }, + "cable ds-rf-port 33:0/0 tilt-adjust": { + "hint": "Description: tilt-adjustment\nPossible completions:\n[5.0]", + "options": [], + "type": "string_or_number", + "current_value": "5.0", + "updated_at": 1778226087 + }, + "cable ds-rf-port 33:0/0 base-channel-power-dbmv": { + "hint": "Description: Base channel power level in TenthdB\nPossible completions:\n[20.0]", + "options": [], + "type": "string_or_number", + "current_value": "20.0", + "updated_at": 1778226087 + }, + "cable ds-rf-port 33:0/0 tilt-pivot-freq-mhz": { + "hint": "Description: tilt-pivot-frequency in MHz\nPossible completions:\n[1218.0]", + "options": [], + "type": "string_or_number", + "current_value": "1218.0", + "updated_at": 1778226087 + }, + "cable ds-rf-port 33:0/0 tilt-minimum-freq-mhz": { + "hint": "Description: tilt-minimum-frequency in MHz\nPossible completions:\n[492.0]", + "options": [], + "type": "string_or_number", + "current_value": "492.0", + "updated_at": 1778226087 + }, + "cable ds-rf-port 33:0/0 down-channel 0 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226087 + }, + "cable ds-rf-port 33:0/0 down-channel 0 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226087 + }, + "cable ds-rf-port 33:0/0 down-channel 0 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[495.0]", + "options": [], + "type": "string_or_number", + "current_value": "495.0", + "updated_at": 1778226138 + }, + "cable ds-rf-port 33:0/0 down-channel 0 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778226138 + }, + "cable ds-rf-port 33:0/0 down-channel 0 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-1]", + "options": [], + "type": "string_or_number", + "current_value": "qam-1", + "updated_at": 1778226138 + }, + "cable ds-rf-port 33:0/0 down-channel 1 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226138 + }, + "cable ds-rf-port 33:0/0 down-channel 1 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226138 + }, + "cable ds-rf-port 33:0/0 down-channel 1 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[501.0]", + "options": [], + "type": "string_or_number", + "current_value": "501.0", + "updated_at": 1778226138 + }, + "cable ds-rf-port 33:0/0 down-channel 1 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778226138 + }, + "cable ds-rf-port 33:0/0 down-channel 1 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-2]", + "options": [], + "type": "string_or_number", + "current_value": "qam-2", + "updated_at": 1778226138 + }, + "cable ds-rf-port 33:0/0 down-channel 2 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226138 + }, + "cable ds-rf-port 33:0/0 down-channel 2 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226138 + }, + "cable ds-rf-port 33:0/0 down-channel 2 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[507.0]", + "options": [], + "type": "string_or_number", + "current_value": "507.0", + "updated_at": 1778226138 + }, + "cable ds-rf-port 33:0/0 down-channel 2 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778226138 + }, + "cable ds-rf-port 33:0/0 down-channel 2 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-3]", + "options": [], + "type": "string_or_number", + "current_value": "qam-3", + "updated_at": 1778226138 + }, + "cable ds-rf-port 33:0/0 down-channel 3 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226138 + }, + "cable ds-rf-port 33:0/0 down-channel 3 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226138 + }, + "cable ds-rf-port 33:0/0 down-channel 3 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[513.0]", + "options": [], + "type": "string_or_number", + "current_value": "513.0", + "updated_at": 1778226138 + }, + "cable ds-rf-port 33:0/0 down-channel 3 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778226138 + }, + "cable ds-rf-port 33:0/0 down-channel 3 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-4]", + "options": [], + "type": "string_or_number", + "current_value": "qam-4", + "updated_at": 1778226138 + }, + "cable ds-rf-port 33:0/0 down-channel 4 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226138 + }, + "cable ds-rf-port 33:0/0 down-channel 4 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226138 + }, + "cable ds-rf-port 33:0/0 down-channel 4 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[519.0]", + "options": [], + "type": "string_or_number", + "current_value": "519.0", + "updated_at": 1778226138 + }, + "cable ds-rf-port 33:0/0 down-channel 4 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778226138 + }, + "cable ds-rf-port 33:0/0 down-channel 4 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-5]", + "options": [], + "type": "string_or_number", + "current_value": "qam-5", + "updated_at": 1778226138 + }, + "cable ds-rf-port 33:0/0 down-channel 5 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226138 + }, + "cable ds-rf-port 33:0/0 down-channel 5 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226138 + }, + "cable ds-rf-port 33:0/0 down-channel 5 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[525.0]", + "options": [], + "type": "string_or_number", + "current_value": "525.0", + "updated_at": 1778226138 + }, + "cable ds-rf-port 33:0/0 down-channel 5 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778226138 + }, + "cable ds-rf-port 33:0/0 down-channel 5 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-6]", + "options": [], + "type": "string_or_number", + "current_value": "qam-6", + "updated_at": 1778226138 + }, + "cable ds-rf-port 33:0/0 down-channel 6 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226138 + }, + "cable ds-rf-port 33:0/0 down-channel 6 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226138 + }, + "cable ds-rf-port 33:0/0 down-channel 6 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[531.0]", + "options": [], + "type": "string_or_number", + "current_value": "531.0", + "updated_at": 1778226189 + }, + "cable ds-rf-port 33:0/0 down-channel 6 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778226189 + }, + "cable ds-rf-port 33:0/0 down-channel 6 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-7]", + "options": [], + "type": "string_or_number", + "current_value": "qam-7", + "updated_at": 1778226189 + }, + "cable ds-rf-port 33:0/0 down-channel 7 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226189 + }, + "cable ds-rf-port 33:0/0 down-channel 7 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226189 + }, + "cable ds-rf-port 33:0/0 down-channel 7 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[537.0]", + "options": [], + "type": "string_or_number", + "current_value": "537.0", + "updated_at": 1778226189 + }, + "cable ds-rf-port 33:0/0 down-channel 7 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778226189 + }, + "cable ds-rf-port 33:0/0 down-channel 7 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-8]", + "options": [], + "type": "string_or_number", + "current_value": "qam-8", + "updated_at": 1778226189 + }, + "cable ds-rf-port 33:0/0 down-channel 8 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226189 + }, + "cable ds-rf-port 33:0/0 down-channel 8 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226189 + }, + "cable ds-rf-port 33:0/0 down-channel 8 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[543.0]", + "options": [], + "type": "string_or_number", + "current_value": "543.0", + "updated_at": 1778226189 + }, + "cable ds-rf-port 33:0/0 down-channel 8 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778226189 + }, + "cable ds-rf-port 33:0/0 down-channel 8 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-9]", + "options": [], + "type": "string_or_number", + "current_value": "qam-9", + "updated_at": 1778226189 + }, + "cable ds-rf-port 33:0/0 down-channel 9 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226189 + }, + "cable ds-rf-port 33:0/0 down-channel 9 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226189 + }, + "cable ds-rf-port 33:0/0 down-channel 9 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[549.0]", + "options": [], + "type": "string_or_number", + "current_value": "549.0", + "updated_at": 1778226189 + }, + "cable ds-rf-port 33:0/0 down-channel 9 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778226189 + }, + "cable ds-rf-port 33:0/0 down-channel 9 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-10]", + "options": [], + "type": "string_or_number", + "current_value": "qam-10", + "updated_at": 1778226189 + }, + "cable ds-rf-port 33:0/0 down-channel 10 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226189 + }, + "cable ds-rf-port 33:0/0 down-channel 10 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226189 + }, + "cable ds-rf-port 33:0/0 down-channel 10 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[555.0]", + "options": [], + "type": "string_or_number", + "current_value": "555.0", + "updated_at": 1778226189 + }, + "cable ds-rf-port 33:0/0 down-channel 10 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778226189 + }, + "cable ds-rf-port 33:0/0 down-channel 10 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-11]", + "options": [], + "type": "string_or_number", + "current_value": "qam-11", + "updated_at": 1778226189 + }, + "cable ds-rf-port 33:0/0 down-channel 11 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226189 + }, + "cable ds-rf-port 33:0/0 down-channel 11 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226189 + }, + "cable ds-rf-port 33:0/0 down-channel 11 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[561.0]", + "options": [], + "type": "string_or_number", + "current_value": "561.0", + "updated_at": 1778226189 + }, + "cable ds-rf-port 33:0/0 down-channel 11 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778226189 + }, + "cable ds-rf-port 33:0/0 down-channel 11 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-12]", + "options": [], + "type": "string_or_number", + "current_value": "qam-12", + "updated_at": 1778226189 + }, + "cable ds-rf-port 33:0/0 down-channel 12 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226189 + }, + "cable ds-rf-port 33:0/0 down-channel 12 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226189 + }, + "cable ds-rf-port 33:0/0 down-channel 12 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[567.0]", + "options": [], + "type": "string_or_number", + "current_value": "567.0", + "updated_at": 1778226240 + }, + "cable ds-rf-port 33:0/0 down-channel 12 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778226240 + }, + "cable ds-rf-port 33:0/0 down-channel 12 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-13]", + "options": [], + "type": "string_or_number", + "current_value": "qam-13", + "updated_at": 1778226240 + }, + "cable ds-rf-port 33:0/0 down-channel 13 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226240 + }, + "cable ds-rf-port 33:0/0 down-channel 13 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226240 + }, + "cable ds-rf-port 33:0/0 down-channel 13 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[573.0]", + "options": [], + "type": "string_or_number", + "current_value": "573.0", + "updated_at": 1778226240 + }, + "cable ds-rf-port 33:0/0 down-channel 13 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778226240 + }, + "cable ds-rf-port 33:0/0 down-channel 13 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-14]", + "options": [], + "type": "string_or_number", + "current_value": "qam-14", + "updated_at": 1778226240 + }, + "cable ds-rf-port 33:0/0 down-channel 14 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226240 + }, + "cable ds-rf-port 33:0/0 down-channel 14 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226240 + }, + "cable ds-rf-port 33:0/0 down-channel 14 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[579.0]", + "options": [], + "type": "string_or_number", + "current_value": "579.0", + "updated_at": 1778226240 + }, + "cable ds-rf-port 33:0/0 down-channel 14 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778226240 + }, + "cable ds-rf-port 33:0/0 down-channel 14 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-15]", + "options": [], + "type": "string_or_number", + "current_value": "qam-15", + "updated_at": 1778226240 + }, + "cable ds-rf-port 33:0/0 down-channel 15 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226240 + }, + "cable ds-rf-port 33:0/0 down-channel 15 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226240 + }, + "cable ds-rf-port 33:0/0 down-channel 15 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[585.0]", + "options": [], + "type": "string_or_number", + "current_value": "585.0", + "updated_at": 1778226240 + }, + "cable ds-rf-port 33:0/0 down-channel 15 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778226240 + }, + "cable ds-rf-port 33:0/0 down-channel 15 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-16]", + "options": [], + "type": "string_or_number", + "current_value": "qam-16", + "updated_at": 1778226240 + }, + "cable ds-rf-port 33:0/0 down-channel 16 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226240 + }, + "cable ds-rf-port 33:0/0 down-channel 16 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226240 + }, + "cable ds-rf-port 33:0/0 down-channel 16 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[591.0]", + "options": [], + "type": "string_or_number", + "current_value": "591.0", + "updated_at": 1778226240 + }, + "cable ds-rf-port 33:0/0 down-channel 16 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778226240 + }, + "cable ds-rf-port 33:0/0 down-channel 16 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-17]", + "options": [], + "type": "string_or_number", + "current_value": "qam-17", + "updated_at": 1778226240 + }, + "cable ds-rf-port 33:0/0 down-channel 17 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226240 + }, + "cable ds-rf-port 33:0/0 down-channel 17 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226240 + }, + "cable ds-rf-port 33:0/0 down-channel 17 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[597.0]", + "options": [], + "type": "string_or_number", + "current_value": "597.0", + "updated_at": 1778226240 + }, + "cable ds-rf-port 33:0/0 down-channel 17 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778226240 + }, + "cable ds-rf-port 33:0/0 down-channel 17 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-18]", + "options": [], + "type": "string_or_number", + "current_value": "qam-18", + "updated_at": 1778226240 + }, + "cable ds-rf-port 33:0/0 down-channel 18 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226240 + }, + "cable ds-rf-port 33:0/0 down-channel 18 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226240 + }, + "cable ds-rf-port 33:0/0 down-channel 18 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[603.0]", + "options": [], + "type": "string_or_number", + "current_value": "603.0", + "updated_at": 1778226291 + }, + "cable ds-rf-port 33:0/0 down-channel 18 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778226291 + }, + "cable ds-rf-port 33:0/0 down-channel 18 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-19]", + "options": [], + "type": "string_or_number", + "current_value": "qam-19", + "updated_at": 1778226291 + }, + "cable ds-rf-port 33:0/0 down-channel 19 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226291 + }, + "cable ds-rf-port 33:0/0 down-channel 19 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226291 + }, + "cable ds-rf-port 33:0/0 down-channel 19 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[609.0]", + "options": [], + "type": "string_or_number", + "current_value": "609.0", + "updated_at": 1778226291 + }, + "cable ds-rf-port 33:0/0 down-channel 19 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778226291 + }, + "cable ds-rf-port 33:0/0 down-channel 19 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-20]", + "options": [], + "type": "string_or_number", + "current_value": "qam-20", + "updated_at": 1778226291 + }, + "cable ds-rf-port 33:0/0 down-channel 20 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226291 + }, + "cable ds-rf-port 33:0/0 down-channel 20 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226291 + }, + "cable ds-rf-port 33:0/0 down-channel 20 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[615.0]", + "options": [], + "type": "string_or_number", + "current_value": "615.0", + "updated_at": 1778226291 + }, + "cable ds-rf-port 33:0/0 down-channel 20 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778226291 + }, + "cable ds-rf-port 33:0/0 down-channel 20 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-21]", + "options": [], + "type": "string_or_number", + "current_value": "qam-21", + "updated_at": 1778226291 + }, + "cable ds-rf-port 33:0/0 down-channel 21 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226291 + }, + "cable ds-rf-port 33:0/0 down-channel 21 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226291 + }, + "cable ds-rf-port 33:0/0 down-channel 21 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[621.0]", + "options": [], + "type": "string_or_number", + "current_value": "621.0", + "updated_at": 1778226291 + }, + "cable ds-rf-port 33:0/0 down-channel 21 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778226291 + }, + "cable ds-rf-port 33:0/0 down-channel 21 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-21]", + "options": [], + "type": "string_or_number", + "current_value": "qam-21", + "updated_at": 1778226291 + }, + "cable ds-rf-port 33:0/0 down-channel 22 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226291 + }, + "cable ds-rf-port 33:0/0 down-channel 22 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226291 + }, + "cable ds-rf-port 33:0/0 down-channel 22 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[627.0]", + "options": [], + "type": "string_or_number", + "current_value": "627.0", + "updated_at": 1778226291 + }, + "cable ds-rf-port 33:0/0 down-channel 22 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778226291 + }, + "cable ds-rf-port 33:0/0 down-channel 22 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-22]", + "options": [], + "type": "string_or_number", + "current_value": "qam-22", + "updated_at": 1778226291 + }, + "cable ds-rf-port 33:0/0 down-channel 23 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226291 + }, + "cable ds-rf-port 33:0/0 down-channel 23 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226291 + }, + "cable ds-rf-port 33:0/0 down-channel 23 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[633.0]", + "options": [], + "type": "string_or_number", + "current_value": "633.0", + "updated_at": 1778226291 + }, + "cable ds-rf-port 33:0/0 down-channel 23 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778226291 + }, + "cable ds-rf-port 33:0/0 down-channel 23 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-23]", + "options": [], + "type": "string_or_number", + "current_value": "qam-23", + "updated_at": 1778226291 + }, + "cable ds-rf-port 33:0/0 down-channel 24 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226291 + }, + "cable ds-rf-port 33:0/0 down-channel 24 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226291 + }, + "cable ds-rf-port 33:0/0 down-channel 24 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[639.0]", + "options": [], + "type": "string_or_number", + "current_value": "639.0", + "updated_at": 1778226342 + }, + "cable ds-rf-port 33:0/0 down-channel 24 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778226342 + }, + "cable ds-rf-port 33:0/0 down-channel 24 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-24]", + "options": [], + "type": "string_or_number", + "current_value": "qam-24", + "updated_at": 1778226342 + }, + "cable ds-rf-port 33:0/0 down-channel 25 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226342 + }, + "cable ds-rf-port 33:0/0 down-channel 25 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226342 + }, + "cable ds-rf-port 33:0/0 down-channel 25 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[645.0]", + "options": [], + "type": "string_or_number", + "current_value": "645.0", + "updated_at": 1778226342 + }, + "cable ds-rf-port 33:0/0 down-channel 25 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778226342 + }, + "cable ds-rf-port 33:0/0 down-channel 25 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-25]", + "options": [], + "type": "string_or_number", + "current_value": "qam-25", + "updated_at": 1778226342 + }, + "cable ds-rf-port 33:0/0 down-channel 26 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226342 + }, + "cable ds-rf-port 33:0/0 down-channel 26 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226342 + }, + "cable ds-rf-port 33:0/0 down-channel 26 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[651.0]", + "options": [], + "type": "string_or_number", + "current_value": "651.0", + "updated_at": 1778226342 + }, + "cable ds-rf-port 33:0/0 down-channel 26 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778226342 + }, + "cable ds-rf-port 33:0/0 down-channel 26 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-26]", + "options": [], + "type": "string_or_number", + "current_value": "qam-26", + "updated_at": 1778226342 + }, + "cable ds-rf-port 33:0/0 down-channel 27 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226342 + }, + "cable ds-rf-port 33:0/0 down-channel 27 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226342 + }, + "cable ds-rf-port 33:0/0 down-channel 27 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[657.0]", + "options": [], + "type": "string_or_number", + "current_value": "657.0", + "updated_at": 1778226342 + }, + "cable ds-rf-port 33:0/0 down-channel 27 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778226342 + }, + "cable ds-rf-port 33:0/0 down-channel 27 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-27]", + "options": [], + "type": "string_or_number", + "current_value": "qam-27", + "updated_at": 1778226342 + }, + "cable ds-rf-port 33:0/0 down-channel 28 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226342 + }, + "cable ds-rf-port 33:0/0 down-channel 28 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226342 + }, + "cable ds-rf-port 33:0/0 down-channel 28 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[663.0]", + "options": [], + "type": "string_or_number", + "current_value": "663.0", + "updated_at": 1778226342 + }, + "cable ds-rf-port 33:0/0 down-channel 28 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778226342 + }, + "cable ds-rf-port 33:0/0 down-channel 28 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-28]", + "options": [], + "type": "string_or_number", + "current_value": "qam-28", + "updated_at": 1778226342 + }, + "cable ds-rf-port 33:0/0 down-channel 29 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226342 + }, + "cable ds-rf-port 33:0/0 down-channel 29 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226342 + }, + "cable ds-rf-port 33:0/0 down-channel 29 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[669.0]", + "options": [], + "type": "string_or_number", + "current_value": "669.0", + "updated_at": 1778226342 + }, + "cable ds-rf-port 33:0/0 down-channel 29 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778226342 + }, + "cable ds-rf-port 33:0/0 down-channel 29 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-29]", + "options": [], + "type": "string_or_number", + "current_value": "qam-29", + "updated_at": 1778226342 + }, + "cable ds-rf-port 33:0/0 down-channel 30 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226342 + }, + "cable ds-rf-port 33:0/0 down-channel 30 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226342 + }, + "cable ds-rf-port 33:0/0 down-channel 30 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[675.0]", + "options": [], + "type": "string_or_number", + "current_value": "675.0", + "updated_at": 1778226393 + }, + "cable ds-rf-port 33:0/0 down-channel 30 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778226393 + }, + "cable ds-rf-port 33:0/0 down-channel 30 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-30]", + "options": [], + "type": "string_or_number", + "current_value": "qam-30", + "updated_at": 1778226393 + }, + "cable ds-rf-port 33:0/0 down-channel 31 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226393 + }, + "cable ds-rf-port 33:0/0 down-channel 31 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226393 + }, + "cable ds-rf-port 33:0/0 down-channel 31 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[681.0]", + "options": [], + "type": "string_or_number", + "current_value": "681.0", + "updated_at": 1778226393 + }, + "cable ds-rf-port 33:0/0 down-channel 31 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[bonded,low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19\noperator-20 operator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27\noperator-28 operator-29 operator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6\nreserved-7 reserved-8 reserved-9 reserved-10 reserved-11 reserved-12 reserved-13 reserved-14\nreserved-15", + "options": [ + "bonded", + "operator-20", + "operator-28", + "reserved-7", + "reserved-15", + "bonded,low-latency" + ], + "type": "list", + "current_value": "bonded,low-latency", + "updated_at": 1778226393 + }, + "cable ds-rf-port 33:0/0 down-channel 31 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[qam-31]", + "options": [], + "type": "string_or_number", + "current_value": "qam-31", + "updated_at": 1778226393 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 0 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226393 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 0 auto-profile-change": { + "hint": "Description: Enable/disable automatic profile changes\nPossible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778226393 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 0 cyclic-prefix": { + "hint": "Description: Cyclic prefix configuration\nPossible completions:\n[192]", + "options": [], + "type": "string_or_number", + "current_value": "192", + "updated_at": 1778226393 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 0 default-profile": { + "hint": "Description: Default OFDM channel profile\nPossible completions:\n[data-1] control data-1 data-2 ncp", + "options": [ + "control", + "data-1", + "data-2", + "ncp" + ], + "type": "list", + "current_value": "data-1", + "updated_at": 1778226393 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 0 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778226393 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 0 query-period-sec": { + "hint": "Description: Define period at which modems are queried for MER on each profile.\nPossible completions:\n[1000]", + "options": [], + "type": "string_or_number", + "current_value": "1000", + "updated_at": 1778226393 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 0 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[25khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "25khz", + "updated_at": 1778226393 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 0 time-interleaver-depth": { + "hint": "Description: The number of samples for the channel. Max limit is 16 and 32 samples for 4k and 8k FFT respectively\nPossible completions:\n[1]", + "options": [], + "type": "string_or_number", + "current_value": "1", + "updated_at": 1778226393 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 0 unfit-profile-mins": { + "hint": "Description: Defines how long the modulation profile will be unavailable for selection.\nPossible completions:\n[0]", + "options": [], + "type": "string_or_number", + "current_value": "0", + "updated_at": 1778226393 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 0 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778226393 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 0 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [684.0]", + "options": [], + "type": "string_or_number", + "current_value": "684.0", + "updated_at": 1778226393 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 0 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[876.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778226393 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 0 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[786.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778226393 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 0 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778226393 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 0 profile control hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778226393 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 0 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778226393 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 0 profile data-1 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778226393 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 0 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778226393 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 0 profile data-2 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778226393 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 0 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778226393 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 0 profile ncp hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778226393 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 1 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226393 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 1 auto-profile-change": { + "hint": "Description: Enable/disable automatic profile changes\nPossible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778226443 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 1 cyclic-prefix": { + "hint": "Description: Cyclic prefix configuration\nPossible completions:\n[192]", + "options": [], + "type": "string_or_number", + "current_value": "192", + "updated_at": 1778226443 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 1 default-profile": { + "hint": "Description: Default OFDM channel profile\nPossible completions:\n[data-1] control data-1 data-2 ncp", + "options": [ + "control", + "data-1", + "data-2", + "ncp" + ], + "type": "list", + "current_value": "data-1", + "updated_at": 1778226443 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 1 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778226443 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 1 query-period-sec": { + "hint": "Description: Define period at which modems are queried for MER on each profile.\nPossible completions:\n[1000]", + "options": [], + "type": "string_or_number", + "current_value": "1000", + "updated_at": 1778226443 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 1 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[25khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "25khz", + "updated_at": 1778226443 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 1 time-interleaver-depth": { + "hint": "Description: The number of samples for the channel. Max limit is 16 and 32 samples for 4k and 8k FFT respectively\nPossible completions:\n[1]", + "options": [], + "type": "string_or_number", + "current_value": "1", + "updated_at": 1778226443 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 1 unfit-profile-mins": { + "hint": "Description: Defines how long the modulation profile will be unavailable for selection.\nPossible completions:\n[0]", + "options": [], + "type": "string_or_number", + "current_value": "0", + "updated_at": 1778226443 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 1 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[2] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "2", + "updated_at": 1778226443 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 1 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [876.0]", + "options": [], + "type": "string_or_number", + "current_value": "876.0", + "updated_at": 1778226443 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 1 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[1068.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778226443 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 1 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[978.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778226443 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 1 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778226443 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 1 profile control hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778226443 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 1 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778226443 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 1 profile data-1 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778226443 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 1 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778226443 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 1 profile data-2 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778226443 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 1 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778226443 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 1 profile ncp hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778226443 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 2 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226443 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 2 auto-profile-change": { + "hint": "Description: Enable/disable automatic profile changes\nPossible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778226443 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 2 cyclic-prefix": { + "hint": "Description: Cyclic prefix configuration\nPossible completions:\n[192]", + "options": [], + "type": "string_or_number", + "current_value": "192", + "updated_at": 1778226443 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 2 default-profile": { + "hint": "Description: Default OFDM channel profile\nPossible completions:\n[data-1] control data-1 data-2 ncp", + "options": [ + "control", + "data-1", + "data-2", + "ncp" + ], + "type": "list", + "current_value": "data-1", + "updated_at": 1778226443 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 2 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778226443 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 2 power-adjust-db": { + "hint": "Description: Adjustments to channel power in steps of 0.1 dB\nPossible completions:\n<-16.0..10.0> Adjustments to channel power in steps of 0.1 dB[-3.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778226443 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 2 query-period-sec": { + "hint": "Description: Define period at which modems are queried for MER on each profile.\nPossible completions:\n[1000]", + "options": [], + "type": "string_or_number", + "current_value": "1000", + "updated_at": 1778226443 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 2 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[25khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "25khz", + "updated_at": 1778226443 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 2 time-interleaver-depth": { + "hint": "Description: The number of samples for the channel. Max limit is 16 and 32 samples for 4k and 8k FFT respectively\nPossible completions:\n[1]", + "options": [], + "type": "string_or_number", + "current_value": "1", + "updated_at": 1778226443 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 2 unfit-profile-mins": { + "hint": "Description: Defines how long the modulation profile will be unavailable for selection.\nPossible completions:\n[0]", + "options": [], + "type": "string_or_number", + "current_value": "0", + "updated_at": 1778226443 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 2 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778226495 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 2 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [1068.0]", + "options": [], + "type": "string_or_number", + "current_value": "1068.0", + "updated_at": 1778226495 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 2 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[1260.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778226495 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 2 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[1170.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778226495 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 2 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778226495 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 2 profile control hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778226495 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 2 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778226495 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 2 profile data-1 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778226495 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 2 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778226495 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 2 profile data-2 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778226495 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 2 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778226495 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 2 profile ncp hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778226495 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 3 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226495 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 3 auto-profile-change": { + "hint": "Description: Enable/disable automatic profile changes\nPossible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778226495 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 3 cyclic-prefix": { + "hint": "Description: Cyclic prefix configuration\nPossible completions:\n[192]", + "options": [], + "type": "string_or_number", + "current_value": "192", + "updated_at": 1778226495 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 3 default-profile": { + "hint": "Description: Default OFDM channel profile\nPossible completions:\n[data-1] control data-1 data-2 ncp", + "options": [ + "control", + "data-1", + "data-2", + "ncp" + ], + "type": "list", + "current_value": "data-1", + "updated_at": 1778226495 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 3 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778226495 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 3 power-adjust-db": { + "hint": "Description: Adjustments to channel power in steps of 0.1 dB\nPossible completions:\n<-16.0..10.0> Adjustments to channel power in steps of 0.1 dB[-3.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778226495 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 3 query-period-sec": { + "hint": "Description: Define period at which modems are queried for MER on each profile.\nPossible completions:\n[1000]", + "options": [], + "type": "string_or_number", + "current_value": "1000", + "updated_at": 1778226495 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 3 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[25khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "25khz", + "updated_at": 1778226495 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 3 time-interleaver-depth": { + "hint": "Description: The number of samples for the channel. Max limit is 16 and 32 samples for 4k and 8k FFT respectively\nPossible completions:\n[1]", + "options": [], + "type": "string_or_number", + "current_value": "1", + "updated_at": 1778226495 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 3 unfit-profile-mins": { + "hint": "Description: Defines how long the modulation profile will be unavailable for selection.\nPossible completions:\n[0]", + "options": [], + "type": "string_or_number", + "current_value": "0", + "updated_at": 1778226495 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 3 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[2] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "2", + "updated_at": 1778226495 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 3 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [1260.0]", + "options": [], + "type": "string_or_number", + "current_value": "1260.0", + "updated_at": 1778226495 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 3 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[1452.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778226495 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 3 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[1362.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778226495 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 3 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778226495 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 3 profile control hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778226495 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 3 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778226495 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 3 profile data-1 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778226495 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 3 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778226548 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 3 profile data-2 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778226548 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 3 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778226548 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 3 profile ncp hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778226548 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 4 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226548 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 4 auto-profile-change": { + "hint": "Description: Enable/disable automatic profile changes\nPossible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778226548 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 4 cyclic-prefix": { + "hint": "Description: Cyclic prefix configuration\nPossible completions:\n[192]", + "options": [], + "type": "string_or_number", + "current_value": "192", + "updated_at": 1778226548 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 4 default-profile": { + "hint": "Description: Default OFDM channel profile\nPossible completions:\n[data-1] control data-1 data-2 ncp", + "options": [ + "control", + "data-1", + "data-2", + "ncp" + ], + "type": "list", + "current_value": "data-1", + "updated_at": 1778226548 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 4 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778226548 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 4 power-adjust-db": { + "hint": "Description: Adjustments to channel power in steps of 0.1 dB\nPossible completions:\n<-16.0..10.0> Adjustments to channel power in steps of 0.1 dB[-3.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778226548 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 4 query-period-sec": { + "hint": "Description: Define period at which modems are queried for MER on each profile.\nPossible completions:\n[1000]", + "options": [], + "type": "string_or_number", + "current_value": "1000", + "updated_at": 1778226548 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 4 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[25khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "25khz", + "updated_at": 1778226548 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 4 time-interleaver-depth": { + "hint": "Description: The number of samples for the channel. Max limit is 16 and 32 samples for 4k and 8k FFT respectively\nPossible completions:\n[1]", + "options": [], + "type": "string_or_number", + "current_value": "1", + "updated_at": 1778226548 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 4 unfit-profile-mins": { + "hint": "Description: Defines how long the modulation profile will be unavailable for selection.\nPossible completions:\n[0]", + "options": [], + "type": "string_or_number", + "current_value": "0", + "updated_at": 1778226548 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 4 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[2] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "2", + "updated_at": 1778226548 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 4 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [1452.0]", + "options": [], + "type": "string_or_number", + "current_value": "1452.0", + "updated_at": 1778226548 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 4 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[1644.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778226548 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 4 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[1554.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778226548 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 4 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778226548 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 4 profile control hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778226548 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 4 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778226548 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 4 profile data-1 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778226548 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 4 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778226548 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 4 profile data-2 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778226548 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 4 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778226548 + }, + "cable ds-rf-port 33:0/0 ofdm-channel 4 profile ncp hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778226548 + }, + "cable ds-rf-port 51:0/0 admin-state": { + "hint": "Description: Administrative State of the DS RF port [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226548 + }, + "cable ds-rf-port 51:0/0 max-occupied-bw-mhz": { + "hint": "Description: Maximum bandwidth occupied by this port in megahertz\nPossible completions:\n[1118.0]", + "options": [], + "type": "string_or_number", + "current_value": "1118.0", + "updated_at": 1778226548 + }, + "cable ds-rf-port 51:0/0 tilt-adjust": { + "hint": "Description: tilt-adjustment\nPossible completions:\n[16.0]", + "options": [], + "type": "string_or_number", + "current_value": "16.0", + "updated_at": 1778226548 + }, + "cable ds-rf-port 51:0/0 base-channel-power-dbmv": { + "hint": "Description: Base channel power level in TenthdB\nPossible completions:\n[48.0]", + "options": [], + "type": "string_or_number", + "current_value": "48.0", + "updated_at": 1778226548 + }, + "cable ds-rf-port 51:0/0 down-channel 0 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226599 + }, + "cable ds-rf-port 51:0/0 down-channel 0 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226599 + }, + "cable ds-rf-port 51:0/0 down-channel 0 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[387.0]", + "options": [], + "type": "string_or_number", + "current_value": "387.0", + "updated_at": 1778226599 + }, + "cable ds-rf-port 51:0/0 down-channel 0 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226599 + }, + "cable ds-rf-port 51:0/0 down-channel 1 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226599 + }, + "cable ds-rf-port 51:0/0 down-channel 1 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226599 + }, + "cable ds-rf-port 51:0/0 down-channel 1 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[393.0]", + "options": [], + "type": "string_or_number", + "current_value": "393.0", + "updated_at": 1778226599 + }, + "cable ds-rf-port 51:0/0 down-channel 1 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226599 + }, + "cable ds-rf-port 51:0/0 down-channel 2 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226599 + }, + "cable ds-rf-port 51:0/0 down-channel 2 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226599 + }, + "cable ds-rf-port 51:0/0 down-channel 2 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[399.0]", + "options": [], + "type": "string_or_number", + "current_value": "399.0", + "updated_at": 1778226599 + }, + "cable ds-rf-port 51:0/0 down-channel 2 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226599 + }, + "cable ds-rf-port 51:0/0 down-channel 3 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226599 + }, + "cable ds-rf-port 51:0/0 down-channel 3 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226599 + }, + "cable ds-rf-port 51:0/0 down-channel 3 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[405.0]", + "options": [], + "type": "string_or_number", + "current_value": "405.0", + "updated_at": 1778226599 + }, + "cable ds-rf-port 51:0/0 down-channel 3 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226599 + }, + "cable ds-rf-port 51:0/0 down-channel 4 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226599 + }, + "cable ds-rf-port 51:0/0 down-channel 4 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226599 + }, + "cable ds-rf-port 51:0/0 down-channel 4 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[411.0]", + "options": [], + "type": "string_or_number", + "current_value": "411.0", + "updated_at": 1778226599 + }, + "cable ds-rf-port 51:0/0 down-channel 4 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226599 + }, + "cable ds-rf-port 51:0/0 down-channel 5 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226599 + }, + "cable ds-rf-port 51:0/0 down-channel 5 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226599 + }, + "cable ds-rf-port 51:0/0 down-channel 5 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[417.0]", + "options": [], + "type": "string_or_number", + "current_value": "417.0", + "updated_at": 1778226599 + }, + "cable ds-rf-port 51:0/0 down-channel 5 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226599 + }, + "cable ds-rf-port 51:0/0 down-channel 6 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226599 + }, + "cable ds-rf-port 51:0/0 down-channel 6 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226599 + }, + "cable ds-rf-port 51:0/0 down-channel 6 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[423.0]", + "options": [], + "type": "string_or_number", + "current_value": "423.0", + "updated_at": 1778226599 + }, + "cable ds-rf-port 51:0/0 down-channel 6 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226599 + }, + "cable ds-rf-port 51:0/0 down-channel 7 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226599 + }, + "cable ds-rf-port 51:0/0 down-channel 7 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226599 + }, + "cable ds-rf-port 51:0/0 down-channel 7 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[429.0]", + "options": [], + "type": "string_or_number", + "current_value": "429.0", + "updated_at": 1778226650 + }, + "cable ds-rf-port 51:0/0 down-channel 7 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226650 + }, + "cable ds-rf-port 51:0/0 down-channel 8 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226650 + }, + "cable ds-rf-port 51:0/0 down-channel 8 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226650 + }, + "cable ds-rf-port 51:0/0 down-channel 8 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[435.0]", + "options": [], + "type": "string_or_number", + "current_value": "435.0", + "updated_at": 1778226650 + }, + "cable ds-rf-port 51:0/0 down-channel 8 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226650 + }, + "cable ds-rf-port 51:0/0 down-channel 9 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226650 + }, + "cable ds-rf-port 51:0/0 down-channel 9 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226650 + }, + "cable ds-rf-port 51:0/0 down-channel 9 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[441.0]", + "options": [], + "type": "string_or_number", + "current_value": "441.0", + "updated_at": 1778226650 + }, + "cable ds-rf-port 51:0/0 down-channel 9 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226650 + }, + "cable ds-rf-port 51:0/0 down-channel 10 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226650 + }, + "cable ds-rf-port 51:0/0 down-channel 10 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226650 + }, + "cable ds-rf-port 51:0/0 down-channel 10 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[447.0]", + "options": [], + "type": "string_or_number", + "current_value": "447.0", + "updated_at": 1778226650 + }, + "cable ds-rf-port 51:0/0 down-channel 10 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226650 + }, + "cable ds-rf-port 51:0/0 down-channel 11 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226650 + }, + "cable ds-rf-port 51:0/0 down-channel 11 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226650 + }, + "cable ds-rf-port 51:0/0 down-channel 11 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[453.0]", + "options": [], + "type": "string_or_number", + "current_value": "453.0", + "updated_at": 1778226650 + }, + "cable ds-rf-port 51:0/0 down-channel 11 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226650 + }, + "cable ds-rf-port 51:0/0 down-channel 12 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226650 + }, + "cable ds-rf-port 51:0/0 down-channel 12 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226650 + }, + "cable ds-rf-port 51:0/0 down-channel 12 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[459.0]", + "options": [], + "type": "string_or_number", + "current_value": "459.0", + "updated_at": 1778226650 + }, + "cable ds-rf-port 51:0/0 down-channel 12 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226650 + }, + "cable ds-rf-port 51:0/0 down-channel 13 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226650 + }, + "cable ds-rf-port 51:0/0 down-channel 13 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226650 + }, + "cable ds-rf-port 51:0/0 down-channel 13 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[465.0]", + "options": [], + "type": "string_or_number", + "current_value": "465.0", + "updated_at": 1778226650 + }, + "cable ds-rf-port 51:0/0 down-channel 13 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226650 + }, + "cable ds-rf-port 51:0/0 down-channel 14 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226650 + }, + "cable ds-rf-port 51:0/0 down-channel 14 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226650 + }, + "cable ds-rf-port 51:0/0 down-channel 14 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[471.0]", + "options": [], + "type": "string_or_number", + "current_value": "471.0", + "updated_at": 1778226650 + }, + "cable ds-rf-port 51:0/0 down-channel 14 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226650 + }, + "cable ds-rf-port 51:0/0 down-channel 15 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226701 + }, + "cable ds-rf-port 51:0/0 down-channel 15 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226701 + }, + "cable ds-rf-port 51:0/0 down-channel 15 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[477.0]", + "options": [], + "type": "string_or_number", + "current_value": "477.0", + "updated_at": 1778226701 + }, + "cable ds-rf-port 51:0/0 down-channel 15 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226701 + }, + "cable ds-rf-port 51:0/0 down-channel 16 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226701 + }, + "cable ds-rf-port 51:0/0 down-channel 16 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226701 + }, + "cable ds-rf-port 51:0/0 down-channel 16 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[957.0]", + "options": [], + "type": "string_or_number", + "current_value": "957.0", + "updated_at": 1778226701 + }, + "cable ds-rf-port 51:0/0 down-channel 16 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226701 + }, + "cable ds-rf-port 51:0/0 down-channel 17 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226701 + }, + "cable ds-rf-port 51:0/0 down-channel 17 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226701 + }, + "cable ds-rf-port 51:0/0 down-channel 17 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[963.0]", + "options": [], + "type": "string_or_number", + "current_value": "963.0", + "updated_at": 1778226701 + }, + "cable ds-rf-port 51:0/0 down-channel 17 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226701 + }, + "cable ds-rf-port 51:0/0 down-channel 18 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226701 + }, + "cable ds-rf-port 51:0/0 down-channel 18 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226701 + }, + "cable ds-rf-port 51:0/0 down-channel 18 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[969.0]", + "options": [], + "type": "string_or_number", + "current_value": "969.0", + "updated_at": 1778226701 + }, + "cable ds-rf-port 51:0/0 down-channel 18 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226701 + }, + "cable ds-rf-port 51:0/0 down-channel 19 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226701 + }, + "cable ds-rf-port 51:0/0 down-channel 19 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226701 + }, + "cable ds-rf-port 51:0/0 down-channel 19 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[975.0]", + "options": [], + "type": "string_or_number", + "current_value": "975.0", + "updated_at": 1778226701 + }, + "cable ds-rf-port 51:0/0 down-channel 19 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226701 + }, + "cable ds-rf-port 51:0/0 down-channel 20 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226701 + }, + "cable ds-rf-port 51:0/0 down-channel 20 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226701 + }, + "cable ds-rf-port 51:0/0 down-channel 20 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[981.0]", + "options": [], + "type": "string_or_number", + "current_value": "981.0", + "updated_at": 1778226701 + }, + "cable ds-rf-port 51:0/0 down-channel 20 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226701 + }, + "cable ds-rf-port 51:0/0 down-channel 21 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226701 + }, + "cable ds-rf-port 51:0/0 down-channel 21 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226701 + }, + "cable ds-rf-port 51:0/0 down-channel 21 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[987.0]", + "options": [], + "type": "string_or_number", + "current_value": "987.0", + "updated_at": 1778226701 + }, + "cable ds-rf-port 51:0/0 down-channel 21 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226701 + }, + "cable ds-rf-port 51:0/0 down-channel 22 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226701 + }, + "cable ds-rf-port 51:0/0 down-channel 22 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226701 + }, + "cable ds-rf-port 51:0/0 down-channel 22 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[993.0]", + "options": [], + "type": "string_or_number", + "current_value": "993.0", + "updated_at": 1778226753 + }, + "cable ds-rf-port 51:0/0 down-channel 22 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226753 + }, + "cable ds-rf-port 51:0/0 down-channel 23 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226753 + }, + "cable ds-rf-port 51:0/0 down-channel 23 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778226753 + }, + "cable ds-rf-port 51:0/0 down-channel 23 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[999.0]", + "options": [], + "type": "string_or_number", + "current_value": "999.0", + "updated_at": 1778226753 + }, + "cable ds-rf-port 51:0/0 down-channel 23 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226753 + }, + "cable ds-rf-port 51:0/0 down-channel 51 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226753 + }, + "cable ds-rf-port 51:0/0 down-channel 51 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[5]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "5", + "updated_at": 1778226753 + }, + "cable ds-rf-port 51:0/0 down-channel 51 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[507.0]", + "options": [], + "type": "string_or_number", + "current_value": "507.0", + "updated_at": 1778226753 + }, + "cable ds-rf-port 51:0/0 down-channel 51 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226753 + }, + "cable ds-rf-port 51:0/0 down-channel 52 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226753 + }, + "cable ds-rf-port 51:0/0 down-channel 52 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[5]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "5", + "updated_at": 1778226753 + }, + "cable ds-rf-port 51:0/0 down-channel 52 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[513.0]", + "options": [], + "type": "string_or_number", + "current_value": "513.0", + "updated_at": 1778226753 + }, + "cable ds-rf-port 51:0/0 down-channel 52 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226753 + }, + "cable ds-rf-port 51:0/0 down-channel 53 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226753 + }, + "cable ds-rf-port 51:0/0 down-channel 53 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[5]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "5", + "updated_at": 1778226753 + }, + "cable ds-rf-port 51:0/0 down-channel 53 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[519.0]", + "options": [], + "type": "string_or_number", + "current_value": "519.0", + "updated_at": 1778226753 + }, + "cable ds-rf-port 51:0/0 down-channel 53 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226753 + }, + "cable ds-rf-port 51:0/0 down-channel 54 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226753 + }, + "cable ds-rf-port 51:0/0 down-channel 54 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[5]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "5", + "updated_at": 1778226753 + }, + "cable ds-rf-port 51:0/0 down-channel 54 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[525.0]", + "options": [], + "type": "string_or_number", + "current_value": "525.0", + "updated_at": 1778226753 + }, + "cable ds-rf-port 51:0/0 down-channel 54 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226753 + }, + "cable ds-rf-port 51:0/0 down-channel 55 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226753 + }, + "cable ds-rf-port 51:0/0 down-channel 55 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[5]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "5", + "updated_at": 1778226753 + }, + "cable ds-rf-port 51:0/0 down-channel 55 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[531.0]", + "options": [], + "type": "string_or_number", + "current_value": "531.0", + "updated_at": 1778226753 + }, + "cable ds-rf-port 51:0/0 down-channel 55 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226753 + }, + "cable ds-rf-port 51:0/0 down-channel 56 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226753 + }, + "cable ds-rf-port 51:0/0 down-channel 56 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[5]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "5", + "updated_at": 1778226753 + }, + "cable ds-rf-port 51:0/0 down-channel 56 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[537.0]", + "options": [], + "type": "string_or_number", + "current_value": "537.0", + "updated_at": 1778226753 + }, + "cable ds-rf-port 51:0/0 down-channel 56 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226753 + }, + "cable ds-rf-port 51:0/0 down-channel 57 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226804 + }, + "cable ds-rf-port 51:0/0 down-channel 57 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[5]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "5", + "updated_at": 1778226804 + }, + "cable ds-rf-port 51:0/0 down-channel 57 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[543.0]", + "options": [], + "type": "string_or_number", + "current_value": "543.0", + "updated_at": 1778226804 + }, + "cable ds-rf-port 51:0/0 down-channel 57 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226804 + }, + "cable ds-rf-port 51:0/0 down-channel 58 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226804 + }, + "cable ds-rf-port 51:0/0 down-channel 58 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[5]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "5", + "updated_at": 1778226804 + }, + "cable ds-rf-port 51:0/0 down-channel 58 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[549.0]", + "options": [], + "type": "string_or_number", + "current_value": "549.0", + "updated_at": 1778226804 + }, + "cable ds-rf-port 51:0/0 down-channel 58 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226804 + }, + "cable ds-rf-port 51:0/0 down-channel 59 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226804 + }, + "cable ds-rf-port 51:0/0 down-channel 59 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[5]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "5", + "updated_at": 1778226804 + }, + "cable ds-rf-port 51:0/0 down-channel 59 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[555.0]", + "options": [], + "type": "string_or_number", + "current_value": "555.0", + "updated_at": 1778226804 + }, + "cable ds-rf-port 51:0/0 down-channel 59 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226804 + }, + "cable ds-rf-port 51:0/0 down-channel 60 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226804 + }, + "cable ds-rf-port 51:0/0 down-channel 60 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[5]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "5", + "updated_at": 1778226804 + }, + "cable ds-rf-port 51:0/0 down-channel 60 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[561.0]", + "options": [], + "type": "string_or_number", + "current_value": "561.0", + "updated_at": 1778226804 + }, + "cable ds-rf-port 51:0/0 down-channel 60 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226804 + }, + "cable ds-rf-port 51:0/0 down-channel 61 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226804 + }, + "cable ds-rf-port 51:0/0 down-channel 61 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[5]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "5", + "updated_at": 1778226804 + }, + "cable ds-rf-port 51:0/0 down-channel 61 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[567.0]", + "options": [], + "type": "string_or_number", + "current_value": "567.0", + "updated_at": 1778226804 + }, + "cable ds-rf-port 51:0/0 down-channel 61 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226804 + }, + "cable ds-rf-port 51:0/0 down-channel 62 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226804 + }, + "cable ds-rf-port 51:0/0 down-channel 62 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[5]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "5", + "updated_at": 1778226804 + }, + "cable ds-rf-port 51:0/0 down-channel 62 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[573.0]", + "options": [], + "type": "string_or_number", + "current_value": "573.0", + "updated_at": 1778226804 + }, + "cable ds-rf-port 51:0/0 down-channel 62 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226804 + }, + "cable ds-rf-port 51:0/0 down-channel 63 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226804 + }, + "cable ds-rf-port 51:0/0 down-channel 63 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[5]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "5", + "updated_at": 1778226804 + }, + "cable ds-rf-port 51:0/0 down-channel 63 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[579.0]", + "options": [], + "type": "string_or_number", + "current_value": "579.0", + "updated_at": 1778226804 + }, + "cable ds-rf-port 51:0/0 down-channel 63 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226804 + }, + "cable ds-rf-port 51:0/0 down-channel 64 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226804 + }, + "cable ds-rf-port 51:0/0 down-channel 64 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[5]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "5", + "updated_at": 1778226804 + }, + "cable ds-rf-port 51:0/0 down-channel 64 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[585.0]", + "options": [], + "type": "string_or_number", + "current_value": "585.0", + "updated_at": 1778226855 + }, + "cable ds-rf-port 51:0/0 down-channel 64 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226855 + }, + "cable ds-rf-port 51:0/0 down-channel 65 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226855 + }, + "cable ds-rf-port 51:0/0 down-channel 65 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[5]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "5", + "updated_at": 1778226855 + }, + "cable ds-rf-port 51:0/0 down-channel 65 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[591.0]", + "options": [], + "type": "string_or_number", + "current_value": "591.0", + "updated_at": 1778226855 + }, + "cable ds-rf-port 51:0/0 down-channel 65 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226855 + }, + "cable ds-rf-port 51:0/0 down-channel 66 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226855 + }, + "cable ds-rf-port 51:0/0 down-channel 66 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[5]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "5", + "updated_at": 1778226855 + }, + "cable ds-rf-port 51:0/0 down-channel 66 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[597.0]", + "options": [], + "type": "string_or_number", + "current_value": "597.0", + "updated_at": 1778226855 + }, + "cable ds-rf-port 51:0/0 down-channel 66 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226855 + }, + "cable ds-rf-port 51:0/0 down-channel 67 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226855 + }, + "cable ds-rf-port 51:0/0 down-channel 67 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[5]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "5", + "updated_at": 1778226855 + }, + "cable ds-rf-port 51:0/0 down-channel 67 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[603.0]", + "options": [], + "type": "string_or_number", + "current_value": "603.0", + "updated_at": 1778226855 + }, + "cable ds-rf-port 51:0/0 down-channel 67 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226855 + }, + "cable ds-rf-port 51:0/0 down-channel 68 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226855 + }, + "cable ds-rf-port 51:0/0 down-channel 68 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[5]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "5", + "updated_at": 1778226855 + }, + "cable ds-rf-port 51:0/0 down-channel 68 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[609.0]", + "options": [], + "type": "string_or_number", + "current_value": "609.0", + "updated_at": 1778226855 + }, + "cable ds-rf-port 51:0/0 down-channel 68 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226855 + }, + "cable ds-rf-port 51:0/0 down-channel 69 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226855 + }, + "cable ds-rf-port 51:0/0 down-channel 69 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[5]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "5", + "updated_at": 1778226855 + }, + "cable ds-rf-port 51:0/0 down-channel 69 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[615.0]", + "options": [], + "type": "string_or_number", + "current_value": "615.0", + "updated_at": 1778226855 + }, + "cable ds-rf-port 51:0/0 down-channel 69 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226855 + }, + "cable ds-rf-port 51:0/0 down-channel 70 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226855 + }, + "cable ds-rf-port 51:0/0 down-channel 70 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[5]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "5", + "updated_at": 1778226855 + }, + "cable ds-rf-port 51:0/0 down-channel 70 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[621.0]", + "options": [], + "type": "string_or_number", + "current_value": "621.0", + "updated_at": 1778226855 + }, + "cable ds-rf-port 51:0/0 down-channel 70 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226855 + }, + "cable ds-rf-port 51:0/0 down-channel 71 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[5]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "5", + "updated_at": 1778226855 + }, + "cable ds-rf-port 51:0/0 down-channel 71 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[627.0]", + "options": [], + "type": "string_or_number", + "current_value": "627.0", + "updated_at": 1778226855 + }, + "cable ds-rf-port 51:0/0 down-channel 71 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226855 + }, + "cable ds-rf-port 51:0/0 down-channel 72 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226855 + }, + "cable ds-rf-port 51:0/0 down-channel 72 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[5]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "5", + "updated_at": 1778226906 + }, + "cable ds-rf-port 51:0/0 down-channel 72 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[633.0]", + "options": [], + "type": "string_or_number", + "current_value": "633.0", + "updated_at": 1778226906 + }, + "cable ds-rf-port 51:0/0 down-channel 72 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226906 + }, + "cable ds-rf-port 51:0/0 down-channel 73 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226906 + }, + "cable ds-rf-port 51:0/0 down-channel 73 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[5]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "5", + "updated_at": 1778226906 + }, + "cable ds-rf-port 51:0/0 down-channel 73 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[639.0]", + "options": [], + "type": "string_or_number", + "current_value": "639.0", + "updated_at": 1778226906 + }, + "cable ds-rf-port 51:0/0 down-channel 73 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226906 + }, + "cable ds-rf-port 51:0/0 down-channel 74 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226906 + }, + "cable ds-rf-port 51:0/0 down-channel 74 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[5]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "5", + "updated_at": 1778226906 + }, + "cable ds-rf-port 51:0/0 down-channel 74 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[645.0]", + "options": [], + "type": "string_or_number", + "current_value": "645.0", + "updated_at": 1778226906 + }, + "cable ds-rf-port 51:0/0 down-channel 74 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226906 + }, + "cable ds-rf-port 51:0/0 down-channel 75 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226906 + }, + "cable ds-rf-port 51:0/0 down-channel 75 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[5]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "5", + "updated_at": 1778226906 + }, + "cable ds-rf-port 51:0/0 down-channel 75 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[651.0]", + "options": [], + "type": "string_or_number", + "current_value": "651.0", + "updated_at": 1778226906 + }, + "cable ds-rf-port 51:0/0 down-channel 75 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226906 + }, + "cable ds-rf-port 51:0/0 down-channel 76 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226906 + }, + "cable ds-rf-port 51:0/0 down-channel 76 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[5]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "5", + "updated_at": 1778226906 + }, + "cable ds-rf-port 51:0/0 down-channel 76 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[657.0]", + "options": [], + "type": "string_or_number", + "current_value": "657.0", + "updated_at": 1778226906 + }, + "cable ds-rf-port 51:0/0 down-channel 76 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226906 + }, + "cable ds-rf-port 51:0/0 down-channel 77 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226906 + }, + "cable ds-rf-port 51:0/0 down-channel 77 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[5]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "5", + "updated_at": 1778226906 + }, + "cable ds-rf-port 51:0/0 down-channel 77 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[663.0]", + "options": [], + "type": "string_or_number", + "current_value": "663.0", + "updated_at": 1778226906 + }, + "cable ds-rf-port 51:0/0 down-channel 77 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226906 + }, + "cable ds-rf-port 51:0/0 down-channel 78 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226906 + }, + "cable ds-rf-port 51:0/0 down-channel 78 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[5]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "5", + "updated_at": 1778226906 + }, + "cable ds-rf-port 51:0/0 down-channel 78 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[669.0]", + "options": [], + "type": "string_or_number", + "current_value": "669.0", + "updated_at": 1778226906 + }, + "cable ds-rf-port 51:0/0 down-channel 78 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226906 + }, + "cable ds-rf-port 51:0/0 down-channel 79 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226906 + }, + "cable ds-rf-port 51:0/0 down-channel 79 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[5]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "5", + "updated_at": 1778226906 + }, + "cable ds-rf-port 51:0/0 down-channel 79 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[675.0]", + "options": [], + "type": "string_or_number", + "current_value": "675.0", + "updated_at": 1778226906 + }, + "cable ds-rf-port 51:0/0 down-channel 79 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226957 + }, + "cable ds-rf-port 51:0/0 down-channel 80 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226957 + }, + "cable ds-rf-port 51:0/0 down-channel 80 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[5]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "5", + "updated_at": 1778226957 + }, + "cable ds-rf-port 51:0/0 down-channel 80 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[681.0]", + "options": [], + "type": "string_or_number", + "current_value": "681.0", + "updated_at": 1778226957 + }, + "cable ds-rf-port 51:0/0 down-channel 80 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226957 + }, + "cable ds-rf-port 51:0/0 down-channel 81 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226957 + }, + "cable ds-rf-port 51:0/0 down-channel 81 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[5]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "5", + "updated_at": 1778226957 + }, + "cable ds-rf-port 51:0/0 down-channel 81 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[687.0]", + "options": [], + "type": "string_or_number", + "current_value": "687.0", + "updated_at": 1778226957 + }, + "cable ds-rf-port 51:0/0 down-channel 81 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226957 + }, + "cable ds-rf-port 51:0/0 down-channel 82 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226957 + }, + "cable ds-rf-port 51:0/0 down-channel 82 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[5]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "5", + "updated_at": 1778226957 + }, + "cable ds-rf-port 51:0/0 down-channel 82 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[693.0]", + "options": [], + "type": "string_or_number", + "current_value": "693.0", + "updated_at": 1778226957 + }, + "cable ds-rf-port 51:0/0 down-channel 82 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226957 + }, + "cable ds-rf-port 51:0/0 down-channel 83 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226957 + }, + "cable ds-rf-port 51:0/0 down-channel 83 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[5]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "5", + "updated_at": 1778226957 + }, + "cable ds-rf-port 51:0/0 down-channel 83 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[699.0]", + "options": [], + "type": "string_or_number", + "current_value": "699.0", + "updated_at": 1778226957 + }, + "cable ds-rf-port 51:0/0 down-channel 83 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226957 + }, + "cable ds-rf-port 51:0/0 down-channel 84 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226957 + }, + "cable ds-rf-port 51:0/0 down-channel 84 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[5]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "5", + "updated_at": 1778226957 + }, + "cable ds-rf-port 51:0/0 down-channel 84 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[705.0]", + "options": [], + "type": "string_or_number", + "current_value": "705.0", + "updated_at": 1778226957 + }, + "cable ds-rf-port 51:0/0 down-channel 84 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226957 + }, + "cable ds-rf-port 51:0/0 down-channel 85 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226957 + }, + "cable ds-rf-port 51:0/0 down-channel 85 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[5]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "5", + "updated_at": 1778226957 + }, + "cable ds-rf-port 51:0/0 down-channel 85 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[711.0]", + "options": [], + "type": "string_or_number", + "current_value": "711.0", + "updated_at": 1778226957 + }, + "cable ds-rf-port 51:0/0 down-channel 85 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226957 + }, + "cable ds-rf-port 51:0/0 down-channel 87 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226957 + }, + "cable ds-rf-port 51:0/0 down-channel 87 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[5]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "5", + "updated_at": 1778226957 + }, + "cable ds-rf-port 51:0/0 down-channel 87 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[717.0]", + "options": [], + "type": "string_or_number", + "current_value": "717.0", + "updated_at": 1778226957 + }, + "cable ds-rf-port 51:0/0 down-channel 87 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778226957 + }, + "cable ds-rf-port 51:0/0 down-channel 88 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778226957 + }, + "cable ds-rf-port 51:0/0 down-channel 88 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[5]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "5", + "updated_at": 1778227008 + }, + "cable ds-rf-port 51:0/0 down-channel 88 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[723.0]", + "options": [], + "type": "string_or_number", + "current_value": "723.0", + "updated_at": 1778227008 + }, + "cable ds-rf-port 51:0/0 down-channel 88 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227008 + }, + "cable ds-rf-port 51:0/0 down-channel 89 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227008 + }, + "cable ds-rf-port 51:0/0 down-channel 89 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[5]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "5", + "updated_at": 1778227008 + }, + "cable ds-rf-port 51:0/0 down-channel 89 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[729.0]", + "options": [], + "type": "string_or_number", + "current_value": "729.0", + "updated_at": 1778227008 + }, + "cable ds-rf-port 51:0/0 down-channel 89 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227008 + }, + "cable ds-rf-port 51:0/0 down-channel 90 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227008 + }, + "cable ds-rf-port 51:0/0 down-channel 90 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[5]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "5", + "updated_at": 1778227008 + }, + "cable ds-rf-port 51:0/0 down-channel 90 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[735.0]", + "options": [], + "type": "string_or_number", + "current_value": "735.0", + "updated_at": 1778227008 + }, + "cable ds-rf-port 51:0/0 down-channel 90 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227008 + }, + "cable ds-rf-port 51:0/0 down-channel 91 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227008 + }, + "cable ds-rf-port 51:0/0 down-channel 91 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[5]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "5", + "updated_at": 1778227008 + }, + "cable ds-rf-port 51:0/0 down-channel 91 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[741.0]", + "options": [], + "type": "string_or_number", + "current_value": "741.0", + "updated_at": 1778227008 + }, + "cable ds-rf-port 51:0/0 down-channel 91 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227008 + }, + "cable ds-rf-port 51:0/0 down-channel 92 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227008 + }, + "cable ds-rf-port 51:0/0 down-channel 92 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[5]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "5", + "updated_at": 1778227008 + }, + "cable ds-rf-port 51:0/0 down-channel 92 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[747.0]", + "options": [], + "type": "string_or_number", + "current_value": "747.0", + "updated_at": 1778227008 + }, + "cable ds-rf-port 51:0/0 down-channel 92 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227008 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 0 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227008 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 0 auto-profile-change": { + "hint": "Description: Enable/disable automatic profile changes\nPossible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778227008 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 0 default-profile": { + "hint": "Description: Default OFDM channel profile\nPossible completions:\n[data-1] control data-1 data-2 data-3 data-4 data-5 data-6 ncp", + "options": [ + "control", + "data-1", + "data-2", + "data-3", + "data-4", + "data-5", + "data-6", + "ncp" + ], + "type": "list", + "current_value": "data-1", + "updated_at": 1778227008 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 0 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778227008 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 0 query-period-sec": { + "hint": "Description: Define period at which modems are queried for MER on each profile.\nPossible completions:\n[100]", + "options": [], + "type": "string_or_number", + "current_value": "100", + "updated_at": 1778227008 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 0 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778227008 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 0 unfit-profile-mins": { + "hint": "Description: Defines how long the modulation profile will be unavailable for selection.\nPossible completions:\n[0]", + "options": [], + "type": "string_or_number", + "current_value": "0", + "updated_at": 1778227008 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 0 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[2] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "2", + "updated_at": 1778227008 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 0 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [762.0]", + "options": [], + "type": "string_or_number", + "current_value": "762.0", + "updated_at": 1778227008 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 0 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[954.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778227008 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 0 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[774.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778227008 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 0 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778227059 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 0 profile control hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778227059 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 0 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778227059 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 0 profile data-1 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778227059 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 0 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778227059 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 0 profile data-2 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778227059 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 0 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778227059 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 0 profile data-3 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778227059 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 0 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778227059 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 0 profile data-4 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778227059 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 0 profile data-5 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778227059 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 0 profile data-5 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778227059 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 0 profile data-6 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam64] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam64", + "updated_at": 1778227059 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 0 profile data-6 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778227059 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 0 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778227059 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 0 profile ncp hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778227059 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 1 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227059 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 1 default-profile": { + "hint": "Description: Default OFDM channel profile\nPossible completions:\n[data-1] control data-1 data-2 data-3 data-4 data-5 data-6 ncp", + "options": [ + "control", + "data-1", + "data-2", + "data-3", + "data-4", + "data-5", + "data-6", + "ncp" + ], + "type": "list", + "current_value": "data-1", + "updated_at": 1778227059 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 1 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778227059 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 1 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778227059 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 1 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778227059 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 1 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [1002.0]", + "options": [], + "type": "string_or_number", + "current_value": "1002.0", + "updated_at": 1778227059 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 1 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[1098.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778227059 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 1 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[1086.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778227059 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 1 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778227059 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 1 profile control hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778227059 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 1 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778227059 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 1 profile data-1 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778227059 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 1 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778227059 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 1 profile data-2 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778227059 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 1 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778227110 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 1 profile data-3 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778227110 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 1 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778227110 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 1 profile data-4 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778227110 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 1 profile data-5 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778227110 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 1 profile data-5 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778227110 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 1 profile data-6 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam64] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam64", + "updated_at": 1778227110 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 1 profile data-6 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778227110 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 1 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778227110 + }, + "cable ds-rf-port 51:0/0 ofdm-channel 1 profile ncp hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778227110 + }, + "cable ds-rf-port 52:0/0 admin-state": { + "hint": "Description: Administrative State of the DS RF port [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227110 + }, + "cable ds-rf-port 52:0/0 tilt-adjust": { + "hint": "Description: tilt-adjustment\nPossible completions:\n[16.0]", + "options": [], + "type": "string_or_number", + "current_value": "16.0", + "updated_at": 1778227110 + }, + "cable ds-rf-port 52:0/0 base-channel-power-dbmv": { + "hint": "Description: Base channel power level in TenthdB\nPossible completions:\n[48.0]", + "options": [], + "type": "string_or_number", + "current_value": "48.0", + "updated_at": 1778227110 + }, + "cable ds-rf-port 52:0/0 ofdm-exclusion-block-mhz": { + "hint": "Possible completions:\n108.000..1794.000 Lower boundary of the exclusion zone in MHz\n200.0", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778227110 + }, + "cable ds-rf-port 52:0/0 down-channel 0 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227110 + }, + "cable ds-rf-port 52:0/0 down-channel 0 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227110 + }, + "cable ds-rf-port 52:0/0 down-channel 0 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[825.0]", + "options": [], + "type": "string_or_number", + "current_value": "825.0", + "updated_at": 1778227110 + }, + "cable ds-rf-port 52:0/0 down-channel 0 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227110 + }, + "cable ds-rf-port 52:0/0 down-channel 1 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227110 + }, + "cable ds-rf-port 52:0/0 down-channel 1 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227110 + }, + "cable ds-rf-port 52:0/0 down-channel 1 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[759.0]", + "options": [], + "type": "string_or_number", + "current_value": "759.0", + "updated_at": 1778227110 + }, + "cable ds-rf-port 52:0/0 down-channel 1 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227110 + }, + "cable ds-rf-port 52:0/0 down-channel 2 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227110 + }, + "cable ds-rf-port 52:0/0 down-channel 2 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227110 + }, + "cable ds-rf-port 52:0/0 down-channel 2 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[765.0]", + "options": [], + "type": "string_or_number", + "current_value": "765.0", + "updated_at": 1778227110 + }, + "cable ds-rf-port 52:0/0 down-channel 2 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227110 + }, + "cable ds-rf-port 52:0/0 down-channel 3 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227110 + }, + "cable ds-rf-port 52:0/0 down-channel 3 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227110 + }, + "cable ds-rf-port 52:0/0 down-channel 3 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[771.0]", + "options": [], + "type": "string_or_number", + "current_value": "771.0", + "updated_at": 1778227110 + }, + "cable ds-rf-port 52:0/0 down-channel 3 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227110 + }, + "cable ds-rf-port 52:0/0 down-channel 4 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227161 + }, + "cable ds-rf-port 52:0/0 down-channel 4 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227161 + }, + "cable ds-rf-port 52:0/0 down-channel 4 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[777.0]", + "options": [], + "type": "string_or_number", + "current_value": "777.0", + "updated_at": 1778227161 + }, + "cable ds-rf-port 52:0/0 down-channel 4 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227161 + }, + "cable ds-rf-port 52:0/0 down-channel 5 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227161 + }, + "cable ds-rf-port 52:0/0 down-channel 5 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227161 + }, + "cable ds-rf-port 52:0/0 down-channel 5 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[783.0]", + "options": [], + "type": "string_or_number", + "current_value": "783.0", + "updated_at": 1778227161 + }, + "cable ds-rf-port 52:0/0 down-channel 5 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227161 + }, + "cable ds-rf-port 52:0/0 down-channel 6 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227161 + }, + "cable ds-rf-port 52:0/0 down-channel 6 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227161 + }, + "cable ds-rf-port 52:0/0 down-channel 6 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[789.0]", + "options": [], + "type": "string_or_number", + "current_value": "789.0", + "updated_at": 1778227161 + }, + "cable ds-rf-port 52:0/0 down-channel 6 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227161 + }, + "cable ds-rf-port 52:0/0 down-channel 7 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227161 + }, + "cable ds-rf-port 52:0/0 down-channel 7 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227161 + }, + "cable ds-rf-port 52:0/0 down-channel 7 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[795.0]", + "options": [], + "type": "string_or_number", + "current_value": "795.0", + "updated_at": 1778227161 + }, + "cable ds-rf-port 52:0/0 down-channel 7 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227161 + }, + "cable ds-rf-port 52:0/0 down-channel 8 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227161 + }, + "cable ds-rf-port 52:0/0 down-channel 8 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227161 + }, + "cable ds-rf-port 52:0/0 down-channel 8 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[801.0]", + "options": [], + "type": "string_or_number", + "current_value": "801.0", + "updated_at": 1778227161 + }, + "cable ds-rf-port 52:0/0 down-channel 8 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227161 + }, + "cable ds-rf-port 52:0/0 down-channel 9 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227161 + }, + "cable ds-rf-port 52:0/0 down-channel 9 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227161 + }, + "cable ds-rf-port 52:0/0 down-channel 9 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[807.0]", + "options": [], + "type": "string_or_number", + "current_value": "807.0", + "updated_at": 1778227161 + }, + "cable ds-rf-port 52:0/0 down-channel 9 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227161 + }, + "cable ds-rf-port 52:0/0 down-channel 10 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227161 + }, + "cable ds-rf-port 52:0/0 down-channel 10 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227161 + }, + "cable ds-rf-port 52:0/0 down-channel 10 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[813.0]", + "options": [], + "type": "string_or_number", + "current_value": "813.0", + "updated_at": 1778227161 + }, + "cable ds-rf-port 52:0/0 down-channel 10 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227161 + }, + "cable ds-rf-port 52:0/0 down-channel 11 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227161 + }, + "cable ds-rf-port 52:0/0 down-channel 11 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227161 + }, + "cable ds-rf-port 52:0/0 down-channel 11 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[819.0]", + "options": [], + "type": "string_or_number", + "current_value": "819.0", + "updated_at": 1778227212 + }, + "cable ds-rf-port 52:0/0 down-channel 11 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227212 + }, + "cable ds-rf-port 52:0/0 down-channel 12 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227212 + }, + "cable ds-rf-port 52:0/0 down-channel 12 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227212 + }, + "cable ds-rf-port 52:0/0 down-channel 12 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[711.0]", + "options": [], + "type": "string_or_number", + "current_value": "711.0", + "updated_at": 1778227212 + }, + "cable ds-rf-port 52:0/0 down-channel 12 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227212 + }, + "cable ds-rf-port 52:0/0 ofdm-channel 0 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227212 + }, + "cable ds-rf-port 52:0/0 ofdm-channel 0 auto-profile-change": { + "hint": "Description: Enable/disable automatic profile changes\nPossible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778227212 + }, + "cable ds-rf-port 52:0/0 ofdm-channel 0 default-profile": { + "hint": "Description: Default OFDM channel profile\nPossible completions:\n[data-1] control data-1 data-2 data-3 data-4 data-5 data-6 ncp", + "options": [ + "control", + "data-1", + "data-2", + "data-3", + "data-4", + "data-5", + "data-6", + "ncp" + ], + "type": "list", + "current_value": "data-1", + "updated_at": 1778227212 + }, + "cable ds-rf-port 52:0/0 ofdm-channel 0 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778227212 + }, + "cable ds-rf-port 52:0/0 ofdm-channel 0 query-period-sec": { + "hint": "Description: Define period at which modems are queried for MER on each profile.\nPossible completions:\n[100]", + "options": [], + "type": "string_or_number", + "current_value": "100", + "updated_at": 1778227212 + }, + "cable ds-rf-port 52:0/0 ofdm-channel 0 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778227212 + }, + "cable ds-rf-port 52:0/0 ofdm-channel 0 unfit-profile-mins": { + "hint": "Description: Defines how long the modulation profile will be unavailable for selection.\nPossible completions:\n[0]", + "options": [], + "type": "string_or_number", + "current_value": "0", + "updated_at": 1778227212 + }, + "cable ds-rf-port 52:0/0 ofdm-channel 0 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[2] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "2", + "updated_at": 1778227212 + }, + "cable ds-rf-port 52:0/0 ofdm-channel 0 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [833.0]", + "options": [], + "type": "string_or_number", + "current_value": "833.0", + "updated_at": 1778227212 + }, + "cable ds-rf-port 52:0/0 ofdm-channel 0 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[1025.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778227212 + }, + "cable ds-rf-port 52:0/0 ofdm-channel 0 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[860.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778227212 + }, + "cable ds-rf-port 52:0/0 ofdm-channel 0 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778227212 + }, + "cable ds-rf-port 52:0/0 ofdm-channel 0 profile control hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778227212 + }, + "cable ds-rf-port 52:0/0 ofdm-channel 0 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778227212 + }, + "cable ds-rf-port 52:0/0 ofdm-channel 0 profile data-1 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778227212 + }, + "cable ds-rf-port 52:0/0 ofdm-channel 0 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778227212 + }, + "cable ds-rf-port 52:0/0 ofdm-channel 0 profile data-2 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778227212 + }, + "cable ds-rf-port 52:0/0 ofdm-channel 0 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778227212 + }, + "cable ds-rf-port 52:0/0 ofdm-channel 0 profile data-3 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778227212 + }, + "cable ds-rf-port 52:0/0 ofdm-channel 0 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778227212 + }, + "cable ds-rf-port 52:0/0 ofdm-channel 0 profile data-4 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778227212 + }, + "cable ds-rf-port 52:0/0 ofdm-channel 0 profile data-5 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778227212 + }, + "cable ds-rf-port 52:0/0 ofdm-channel 0 profile data-5 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778227212 + }, + "cable ds-rf-port 52:0/0 ofdm-channel 0 profile data-6 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam64] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam64", + "updated_at": 1778227212 + }, + "cable ds-rf-port 52:0/0 ofdm-channel 0 profile data-6 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778227263 + }, + "cable ds-rf-port 52:0/0 ofdm-channel 0 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778227263 + }, + "cable ds-rf-port 52:0/0 ofdm-channel 0 profile ncp hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778227263 + }, + "cable ds-rf-port 52:0/0 ofdm-channel 1 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227263 + }, + "cable ds-rf-port 52:0/0 ofdm-channel 1 default-profile": { + "hint": "Description: Default OFDM channel profile\nPossible completions:\n[data-1] control data-1 ncp", + "options": [ + "control", + "data-1", + "ncp" + ], + "type": "list", + "current_value": "data-1", + "updated_at": 1778227263 + }, + "cable ds-rf-port 52:0/0 ofdm-channel 1 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778227263 + }, + "cable ds-rf-port 52:0/0 ofdm-channel 1 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778227263 + }, + "cable ds-rf-port 52:0/0 ofdm-channel 1 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778227263 + }, + "cable ds-rf-port 52:0/0 ofdm-channel 1 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [1026.0]", + "options": [], + "type": "string_or_number", + "current_value": "1026.0", + "updated_at": 1778227263 + }, + "cable ds-rf-port 52:0/0 ofdm-channel 1 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[1218.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778227263 + }, + "cable ds-rf-port 52:0/0 ofdm-channel 1 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[1086.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778227263 + }, + "cable ds-rf-port 52:0/0 ofdm-channel 1 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778227263 + }, + "cable ds-rf-port 52:0/0 ofdm-channel 1 profile control hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778227263 + }, + "cable ds-rf-port 52:0/0 ofdm-channel 1 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778227263 + }, + "cable ds-rf-port 52:0/0 ofdm-channel 1 profile data-1 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[0.0]", + "options": [], + "type": "string_or_number", + "current_value": "0.0", + "updated_at": 1778227263 + }, + "cable ds-rf-port 52:0/0 ofdm-channel 1 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778227263 + }, + "cable ds-rf-port 52:0/0 ofdm-channel 1 profile ncp hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778227263 + }, + "cable ds-rf-port 52:0/0 oob-channel 0 frequency-mhz": { + "hint": "Description: OOB channel center frequency\nPossible completions:\n[104.2]", + "options": [], + "type": "string_or_number", + "current_value": "104.2", + "updated_at": 1778227263 + }, + "cable ds-rf-port 52:0/0 oob-channel 0 bandwidth-mhz": { + "hint": "Description: Bandwidth of the OOB channel\nPossible completions:\n[1.28] 0.16 0.32 0.64 1.28 2.56 5.12 25.6", + "options": [ + "0.16", + "0.32", + "0.64", + "1.28", + "2.56", + "5.12", + "25.6" + ], + "type": "list", + "current_value": "1.28", + "updated_at": 1778227263 + }, + "cable ds-rf-port 52:0/0 oob-channel 0 type": { + "hint": "Description: Type of OOB channel\nPossible completions:\n[55-1] 55-1 ndf", + "options": [ + "55-1", + "ndf" + ], + "type": "list", + "current_value": "55-1", + "updated_at": 1778227263 + }, + "cable ds-rf-port 52:0/0 oob-channel 0 oob-core-id": { + "hint": "Description: The OOB Core Id\nPossible completions:\n [0] 0", + "options": [], + "type": "string_or_number", + "current_value": "0", + "updated_at": 1778227263 + }, + "cable ds-rf-port 52:0/0 oob-channel 0 controller": { + "hint": "Possible completions:\nbuffer Buffer levels in word(8 bytes) 0..1024", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778227263 + }, + "cable ds-rf-port 53:0/0 admin-state": { + "hint": "Description: Administrative State of the DS RF port [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227263 + }, + "cable ds-rf-port 53:0/0 max-occupied-bw-mhz": { + "hint": "Description: Maximum bandwidth occupied by this port in megahertz\nPossible completions:\n[1118.0]", + "options": [], + "type": "string_or_number", + "current_value": "1118.0", + "updated_at": 1778227263 + }, + "cable ds-rf-port 53:0/0 tilt-adjust": { + "hint": "Description: tilt-adjustment\nPossible completions:\n[21.0]", + "options": [], + "type": "string_or_number", + "current_value": "21.0", + "updated_at": 1778227263 + }, + "cable ds-rf-port 53:0/0 base-channel-power-dbmv": { + "hint": "Description: Base channel power level in TenthdB\nPossible completions:\n[53.0]", + "options": [], + "type": "string_or_number", + "current_value": "53.0", + "updated_at": 1778227263 + }, + "cable ds-rf-port 53:0/0 down-channel 0 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227263 + }, + "cable ds-rf-port 53:0/0 down-channel 0 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227263 + }, + "cable ds-rf-port 53:0/0 down-channel 0 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[399.0]", + "options": [], + "type": "string_or_number", + "current_value": "399.0", + "updated_at": 1778227263 + }, + "cable ds-rf-port 53:0/0 down-channel 0 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227263 + }, + "cable ds-rf-port 53:0/0 down-channel 1 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227313 + }, + "cable ds-rf-port 53:0/0 down-channel 1 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227313 + }, + "cable ds-rf-port 53:0/0 down-channel 1 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[405.0]", + "options": [], + "type": "string_or_number", + "current_value": "405.0", + "updated_at": 1778227313 + }, + "cable ds-rf-port 53:0/0 down-channel 1 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227313 + }, + "cable ds-rf-port 53:0/0 down-channel 2 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227313 + }, + "cable ds-rf-port 53:0/0 down-channel 2 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227313 + }, + "cable ds-rf-port 53:0/0 down-channel 2 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[411.0]", + "options": [], + "type": "string_or_number", + "current_value": "411.0", + "updated_at": 1778227313 + }, + "cable ds-rf-port 53:0/0 down-channel 2 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227313 + }, + "cable ds-rf-port 53:0/0 down-channel 3 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227313 + }, + "cable ds-rf-port 53:0/0 down-channel 3 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227313 + }, + "cable ds-rf-port 53:0/0 down-channel 3 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[417.0]", + "options": [], + "type": "string_or_number", + "current_value": "417.0", + "updated_at": 1778227313 + }, + "cable ds-rf-port 53:0/0 down-channel 3 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227313 + }, + "cable ds-rf-port 53:0/0 down-channel 4 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227313 + }, + "cable ds-rf-port 53:0/0 down-channel 4 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227313 + }, + "cable ds-rf-port 53:0/0 down-channel 4 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[423.0]", + "options": [], + "type": "string_or_number", + "current_value": "423.0", + "updated_at": 1778227313 + }, + "cable ds-rf-port 53:0/0 down-channel 4 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227313 + }, + "cable ds-rf-port 53:0/0 down-channel 5 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227313 + }, + "cable ds-rf-port 53:0/0 down-channel 5 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227313 + }, + "cable ds-rf-port 53:0/0 down-channel 5 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[429.0]", + "options": [], + "type": "string_or_number", + "current_value": "429.0", + "updated_at": 1778227313 + }, + "cable ds-rf-port 53:0/0 down-channel 5 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227313 + }, + "cable ds-rf-port 53:0/0 down-channel 6 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227313 + }, + "cable ds-rf-port 53:0/0 down-channel 6 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227313 + }, + "cable ds-rf-port 53:0/0 down-channel 6 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[435.0]", + "options": [], + "type": "string_or_number", + "current_value": "435.0", + "updated_at": 1778227313 + }, + "cable ds-rf-port 53:0/0 down-channel 6 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227313 + }, + "cable ds-rf-port 53:0/0 down-channel 7 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227313 + }, + "cable ds-rf-port 53:0/0 down-channel 7 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227313 + }, + "cable ds-rf-port 53:0/0 down-channel 7 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[441.0]", + "options": [], + "type": "string_or_number", + "current_value": "441.0", + "updated_at": 1778227313 + }, + "cable ds-rf-port 53:0/0 down-channel 7 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227313 + }, + "cable ds-rf-port 53:0/0 down-channel 8 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227313 + }, + "cable ds-rf-port 53:0/0 down-channel 8 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227313 + }, + "cable ds-rf-port 53:0/0 down-channel 8 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[447.0]", + "options": [], + "type": "string_or_number", + "current_value": "447.0", + "updated_at": 1778227364 + }, + "cable ds-rf-port 53:0/0 down-channel 8 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227364 + }, + "cable ds-rf-port 53:0/0 down-channel 9 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227364 + }, + "cable ds-rf-port 53:0/0 down-channel 9 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227364 + }, + "cable ds-rf-port 53:0/0 down-channel 9 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[453.0]", + "options": [], + "type": "string_or_number", + "current_value": "453.0", + "updated_at": 1778227364 + }, + "cable ds-rf-port 53:0/0 down-channel 9 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227364 + }, + "cable ds-rf-port 53:0/0 down-channel 10 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227364 + }, + "cable ds-rf-port 53:0/0 down-channel 10 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227364 + }, + "cable ds-rf-port 53:0/0 down-channel 10 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[459.0]", + "options": [], + "type": "string_or_number", + "current_value": "459.0", + "updated_at": 1778227364 + }, + "cable ds-rf-port 53:0/0 down-channel 10 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227364 + }, + "cable ds-rf-port 53:0/0 down-channel 11 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227364 + }, + "cable ds-rf-port 53:0/0 down-channel 11 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227364 + }, + "cable ds-rf-port 53:0/0 down-channel 11 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[465.0]", + "options": [], + "type": "string_or_number", + "current_value": "465.0", + "updated_at": 1778227364 + }, + "cable ds-rf-port 53:0/0 down-channel 11 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227364 + }, + "cable ds-rf-port 53:0/0 down-channel 12 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227364 + }, + "cable ds-rf-port 53:0/0 down-channel 12 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227364 + }, + "cable ds-rf-port 53:0/0 down-channel 12 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[471.0]", + "options": [], + "type": "string_or_number", + "current_value": "471.0", + "updated_at": 1778227364 + }, + "cable ds-rf-port 53:0/0 down-channel 12 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227364 + }, + "cable ds-rf-port 53:0/0 down-channel 13 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227364 + }, + "cable ds-rf-port 53:0/0 down-channel 13 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227364 + }, + "cable ds-rf-port 53:0/0 down-channel 13 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[477.0]", + "options": [], + "type": "string_or_number", + "current_value": "477.0", + "updated_at": 1778227364 + }, + "cable ds-rf-port 53:0/0 down-channel 13 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227364 + }, + "cable ds-rf-port 53:0/0 down-channel 14 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227364 + }, + "cable ds-rf-port 53:0/0 down-channel 14 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227364 + }, + "cable ds-rf-port 53:0/0 down-channel 14 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[483.0]", + "options": [], + "type": "string_or_number", + "current_value": "483.0", + "updated_at": 1778227364 + }, + "cable ds-rf-port 53:0/0 down-channel 14 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227364 + }, + "cable ds-rf-port 53:0/0 down-channel 15 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227364 + }, + "cable ds-rf-port 53:0/0 down-channel 15 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227364 + }, + "cable ds-rf-port 53:0/0 down-channel 15 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[489.0]", + "options": [], + "type": "string_or_number", + "current_value": "489.0", + "updated_at": 1778227364 + }, + "cable ds-rf-port 53:0/0 down-channel 15 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227364 + }, + "cable ds-rf-port 53:0/0 down-channel 16 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227415 + }, + "cable ds-rf-port 53:0/0 down-channel 16 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227415 + }, + "cable ds-rf-port 53:0/0 down-channel 16 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[495.0]", + "options": [], + "type": "string_or_number", + "current_value": "495.0", + "updated_at": 1778227415 + }, + "cable ds-rf-port 53:0/0 down-channel 16 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227415 + }, + "cable ds-rf-port 53:0/0 down-channel 17 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227415 + }, + "cable ds-rf-port 53:0/0 down-channel 17 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227415 + }, + "cable ds-rf-port 53:0/0 down-channel 17 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[501.0]", + "options": [], + "type": "string_or_number", + "current_value": "501.0", + "updated_at": 1778227415 + }, + "cable ds-rf-port 53:0/0 down-channel 17 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227415 + }, + "cable ds-rf-port 53:0/0 down-channel 18 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227415 + }, + "cable ds-rf-port 53:0/0 down-channel 18 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227415 + }, + "cable ds-rf-port 53:0/0 down-channel 18 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[507.0]", + "options": [], + "type": "string_or_number", + "current_value": "507.0", + "updated_at": 1778227415 + }, + "cable ds-rf-port 53:0/0 down-channel 18 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227415 + }, + "cable ds-rf-port 53:0/0 down-channel 19 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227415 + }, + "cable ds-rf-port 53:0/0 down-channel 19 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227415 + }, + "cable ds-rf-port 53:0/0 down-channel 19 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[513.0]", + "options": [], + "type": "string_or_number", + "current_value": "513.0", + "updated_at": 1778227415 + }, + "cable ds-rf-port 53:0/0 down-channel 19 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227415 + }, + "cable ds-rf-port 53:0/0 down-channel 20 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227415 + }, + "cable ds-rf-port 53:0/0 down-channel 20 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227415 + }, + "cable ds-rf-port 53:0/0 down-channel 20 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[519.0]", + "options": [], + "type": "string_or_number", + "current_value": "519.0", + "updated_at": 1778227415 + }, + "cable ds-rf-port 53:0/0 down-channel 20 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227415 + }, + "cable ds-rf-port 53:0/0 down-channel 21 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227415 + }, + "cable ds-rf-port 53:0/0 down-channel 21 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227415 + }, + "cable ds-rf-port 53:0/0 down-channel 21 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[525.0]", + "options": [], + "type": "string_or_number", + "current_value": "525.0", + "updated_at": 1778227415 + }, + "cable ds-rf-port 53:0/0 down-channel 21 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227415 + }, + "cable ds-rf-port 53:0/0 down-channel 22 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227415 + }, + "cable ds-rf-port 53:0/0 down-channel 22 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227415 + }, + "cable ds-rf-port 53:0/0 down-channel 22 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[531.0]", + "options": [], + "type": "string_or_number", + "current_value": "531.0", + "updated_at": 1778227415 + }, + "cable ds-rf-port 53:0/0 down-channel 22 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227415 + }, + "cable ds-rf-port 53:0/0 down-channel 23 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227415 + }, + "cable ds-rf-port 53:0/0 down-channel 23 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227415 + }, + "cable ds-rf-port 53:0/0 down-channel 23 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[537.0]", + "options": [], + "type": "string_or_number", + "current_value": "537.0", + "updated_at": 1778227466 + }, + "cable ds-rf-port 53:0/0 down-channel 23 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227466 + }, + "cable ds-rf-port 53:0/0 down-channel 24 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227466 + }, + "cable ds-rf-port 53:0/0 down-channel 24 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227466 + }, + "cable ds-rf-port 53:0/0 down-channel 24 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[543.0]", + "options": [], + "type": "string_or_number", + "current_value": "543.0", + "updated_at": 1778227466 + }, + "cable ds-rf-port 53:0/0 down-channel 24 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227466 + }, + "cable ds-rf-port 53:0/0 down-channel 25 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227466 + }, + "cable ds-rf-port 53:0/0 down-channel 25 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227466 + }, + "cable ds-rf-port 53:0/0 down-channel 25 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[549.0]", + "options": [], + "type": "string_or_number", + "current_value": "549.0", + "updated_at": 1778227466 + }, + "cable ds-rf-port 53:0/0 down-channel 25 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227466 + }, + "cable ds-rf-port 53:0/0 down-channel 26 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227466 + }, + "cable ds-rf-port 53:0/0 down-channel 26 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227466 + }, + "cable ds-rf-port 53:0/0 down-channel 26 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[555.0]", + "options": [], + "type": "string_or_number", + "current_value": "555.0", + "updated_at": 1778227466 + }, + "cable ds-rf-port 53:0/0 down-channel 26 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227466 + }, + "cable ds-rf-port 53:0/0 down-channel 27 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227466 + }, + "cable ds-rf-port 53:0/0 down-channel 27 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227466 + }, + "cable ds-rf-port 53:0/0 down-channel 27 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[561.0]", + "options": [], + "type": "string_or_number", + "current_value": "561.0", + "updated_at": 1778227466 + }, + "cable ds-rf-port 53:0/0 down-channel 27 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227466 + }, + "cable ds-rf-port 53:0/0 down-channel 28 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227466 + }, + "cable ds-rf-port 53:0/0 down-channel 28 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227466 + }, + "cable ds-rf-port 53:0/0 down-channel 28 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[567.0]", + "options": [], + "type": "string_or_number", + "current_value": "567.0", + "updated_at": 1778227466 + }, + "cable ds-rf-port 53:0/0 down-channel 28 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227466 + }, + "cable ds-rf-port 53:0/0 down-channel 29 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227466 + }, + "cable ds-rf-port 53:0/0 down-channel 29 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227466 + }, + "cable ds-rf-port 53:0/0 down-channel 29 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[573.0]", + "options": [], + "type": "string_or_number", + "current_value": "573.0", + "updated_at": 1778227466 + }, + "cable ds-rf-port 53:0/0 down-channel 29 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227466 + }, + "cable ds-rf-port 53:0/0 down-channel 30 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227466 + }, + "cable ds-rf-port 53:0/0 down-channel 30 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227466 + }, + "cable ds-rf-port 53:0/0 down-channel 30 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[579.0]", + "options": [], + "type": "string_or_number", + "current_value": "579.0", + "updated_at": 1778227466 + }, + "cable ds-rf-port 53:0/0 down-channel 30 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227466 + }, + "cable ds-rf-port 53:0/0 down-channel 31 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227517 + }, + "cable ds-rf-port 53:0/0 down-channel 31 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227517 + }, + "cable ds-rf-port 53:0/0 down-channel 31 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[585.0]", + "options": [], + "type": "string_or_number", + "current_value": "585.0", + "updated_at": 1778227517 + }, + "cable ds-rf-port 53:0/0 down-channel 31 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227517 + }, + "cable ds-rf-port 53:0/0 down-channel 32 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227517 + }, + "cable ds-rf-port 53:0/0 down-channel 32 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227517 + }, + "cable ds-rf-port 53:0/0 down-channel 32 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[591.0]", + "options": [], + "type": "string_or_number", + "current_value": "591.0", + "updated_at": 1778227517 + }, + "cable ds-rf-port 53:0/0 down-channel 32 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227517 + }, + "cable ds-rf-port 53:0/0 down-channel 33 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227517 + }, + "cable ds-rf-port 53:0/0 down-channel 33 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227517 + }, + "cable ds-rf-port 53:0/0 down-channel 33 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[597.0]", + "options": [], + "type": "string_or_number", + "current_value": "597.0", + "updated_at": 1778227517 + }, + "cable ds-rf-port 53:0/0 down-channel 33 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227517 + }, + "cable ds-rf-port 53:0/0 down-channel 34 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227517 + }, + "cable ds-rf-port 53:0/0 down-channel 34 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227517 + }, + "cable ds-rf-port 53:0/0 down-channel 34 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[603.0]", + "options": [], + "type": "string_or_number", + "current_value": "603.0", + "updated_at": 1778227517 + }, + "cable ds-rf-port 53:0/0 down-channel 34 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227517 + }, + "cable ds-rf-port 53:0/0 down-channel 35 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227517 + }, + "cable ds-rf-port 53:0/0 down-channel 35 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227517 + }, + "cable ds-rf-port 53:0/0 down-channel 35 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[609.0]", + "options": [], + "type": "string_or_number", + "current_value": "609.0", + "updated_at": 1778227517 + }, + "cable ds-rf-port 53:0/0 down-channel 35 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227517 + }, + "cable ds-rf-port 53:0/0 down-channel 36 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227517 + }, + "cable ds-rf-port 53:0/0 down-channel 36 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227517 + }, + "cable ds-rf-port 53:0/0 down-channel 36 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[615.0]", + "options": [], + "type": "string_or_number", + "current_value": "615.0", + "updated_at": 1778227517 + }, + "cable ds-rf-port 53:0/0 down-channel 36 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227517 + }, + "cable ds-rf-port 53:0/0 down-channel 37 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227517 + }, + "cable ds-rf-port 53:0/0 down-channel 37 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227517 + }, + "cable ds-rf-port 53:0/0 down-channel 37 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[621.0]", + "options": [], + "type": "string_or_number", + "current_value": "621.0", + "updated_at": 1778227517 + }, + "cable ds-rf-port 53:0/0 down-channel 37 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227517 + }, + "cable ds-rf-port 53:0/0 down-channel 38 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227517 + }, + "cable ds-rf-port 53:0/0 down-channel 38 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227517 + }, + "cable ds-rf-port 53:0/0 down-channel 38 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[627.0]", + "options": [], + "type": "string_or_number", + "current_value": "627.0", + "updated_at": 1778227568 + }, + "cable ds-rf-port 53:0/0 down-channel 38 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227568 + }, + "cable ds-rf-port 53:0/0 down-channel 39 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227568 + }, + "cable ds-rf-port 53:0/0 down-channel 39 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227568 + }, + "cable ds-rf-port 53:0/0 down-channel 39 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[633.0]", + "options": [], + "type": "string_or_number", + "current_value": "633.0", + "updated_at": 1778227568 + }, + "cable ds-rf-port 53:0/0 down-channel 39 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227568 + }, + "cable ds-rf-port 53:0/0 down-channel 40 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227568 + }, + "cable ds-rf-port 53:0/0 down-channel 40 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227568 + }, + "cable ds-rf-port 53:0/0 down-channel 40 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[639.0]", + "options": [], + "type": "string_or_number", + "current_value": "639.0", + "updated_at": 1778227568 + }, + "cable ds-rf-port 53:0/0 down-channel 40 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227568 + }, + "cable ds-rf-port 53:0/0 down-channel 41 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227568 + }, + "cable ds-rf-port 53:0/0 down-channel 41 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227568 + }, + "cable ds-rf-port 53:0/0 down-channel 41 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[645.0]", + "options": [], + "type": "string_or_number", + "current_value": "645.0", + "updated_at": 1778227568 + }, + "cable ds-rf-port 53:0/0 down-channel 41 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227568 + }, + "cable ds-rf-port 53:0/0 down-channel 42 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227568 + }, + "cable ds-rf-port 53:0/0 down-channel 42 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227568 + }, + "cable ds-rf-port 53:0/0 down-channel 42 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[651.0]", + "options": [], + "type": "string_or_number", + "current_value": "651.0", + "updated_at": 1778227568 + }, + "cable ds-rf-port 53:0/0 down-channel 42 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227568 + }, + "cable ds-rf-port 53:0/0 down-channel 43 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227568 + }, + "cable ds-rf-port 53:0/0 down-channel 43 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227568 + }, + "cable ds-rf-port 53:0/0 down-channel 43 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[657.0]", + "options": [], + "type": "string_or_number", + "current_value": "657.0", + "updated_at": 1778227568 + }, + "cable ds-rf-port 53:0/0 down-channel 43 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227568 + }, + "cable ds-rf-port 53:0/0 down-channel 51 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227568 + }, + "cable ds-rf-port 53:0/0 down-channel 51 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227568 + }, + "cable ds-rf-port 53:0/0 down-channel 51 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[177.0]", + "options": [], + "type": "string_or_number", + "current_value": "177.0", + "updated_at": 1778227568 + }, + "cable ds-rf-port 53:0/0 down-channel 51 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227568 + }, + "cable ds-rf-port 53:0/0 down-channel 52 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227568 + }, + "cable ds-rf-port 53:0/0 down-channel 52 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227568 + }, + "cable ds-rf-port 53:0/0 down-channel 52 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[183.0]", + "options": [], + "type": "string_or_number", + "current_value": "183.0", + "updated_at": 1778227568 + }, + "cable ds-rf-port 53:0/0 down-channel 52 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227568 + }, + "cable ds-rf-port 53:0/0 down-channel 53 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227619 + }, + "cable ds-rf-port 53:0/0 down-channel 53 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227619 + }, + "cable ds-rf-port 53:0/0 down-channel 53 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[189.0]", + "options": [], + "type": "string_or_number", + "current_value": "189.0", + "updated_at": 1778227619 + }, + "cable ds-rf-port 53:0/0 down-channel 53 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227619 + }, + "cable ds-rf-port 53:0/0 down-channel 54 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227619 + }, + "cable ds-rf-port 53:0/0 down-channel 54 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227619 + }, + "cable ds-rf-port 53:0/0 down-channel 54 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[195.0]", + "options": [], + "type": "string_or_number", + "current_value": "195.0", + "updated_at": 1778227619 + }, + "cable ds-rf-port 53:0/0 down-channel 54 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227619 + }, + "cable ds-rf-port 53:0/0 down-channel 55 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227619 + }, + "cable ds-rf-port 53:0/0 down-channel 55 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227619 + }, + "cable ds-rf-port 53:0/0 down-channel 55 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[201.0]", + "options": [], + "type": "string_or_number", + "current_value": "201.0", + "updated_at": 1778227619 + }, + "cable ds-rf-port 53:0/0 down-channel 55 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227619 + }, + "cable ds-rf-port 53:0/0 down-channel 56 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227619 + }, + "cable ds-rf-port 53:0/0 down-channel 56 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227619 + }, + "cable ds-rf-port 53:0/0 down-channel 56 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[207.0]", + "options": [], + "type": "string_or_number", + "current_value": "207.0", + "updated_at": 1778227619 + }, + "cable ds-rf-port 53:0/0 down-channel 56 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227619 + }, + "cable ds-rf-port 53:0/0 down-channel 57 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227619 + }, + "cable ds-rf-port 53:0/0 down-channel 57 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227619 + }, + "cable ds-rf-port 53:0/0 down-channel 57 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[213.0]", + "options": [], + "type": "string_or_number", + "current_value": "213.0", + "updated_at": 1778227619 + }, + "cable ds-rf-port 53:0/0 down-channel 57 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227619 + }, + "cable ds-rf-port 53:0/0 down-channel 58 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227619 + }, + "cable ds-rf-port 53:0/0 down-channel 58 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227619 + }, + "cable ds-rf-port 53:0/0 down-channel 58 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[129.0]", + "options": [], + "type": "string_or_number", + "current_value": "129.0", + "updated_at": 1778227619 + }, + "cable ds-rf-port 53:0/0 down-channel 58 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227619 + }, + "cable ds-rf-port 53:0/0 down-channel 59 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227619 + }, + "cable ds-rf-port 53:0/0 down-channel 59 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227619 + }, + "cable ds-rf-port 53:0/0 down-channel 59 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[135.0]", + "options": [], + "type": "string_or_number", + "current_value": "135.0", + "updated_at": 1778227619 + }, + "cable ds-rf-port 53:0/0 down-channel 59 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227619 + }, + "cable ds-rf-port 53:0/0 down-channel 60 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227619 + }, + "cable ds-rf-port 53:0/0 down-channel 60 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227619 + }, + "cable ds-rf-port 53:0/0 down-channel 60 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[357.0]", + "options": [], + "type": "string_or_number", + "current_value": "357.0", + "updated_at": 1778227670 + }, + "cable ds-rf-port 53:0/0 down-channel 60 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227670 + }, + "cable ds-rf-port 53:0/0 down-channel 61 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227670 + }, + "cable ds-rf-port 53:0/0 down-channel 61 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227670 + }, + "cable ds-rf-port 53:0/0 down-channel 61 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[147.0]", + "options": [], + "type": "string_or_number", + "current_value": "147.0", + "updated_at": 1778227670 + }, + "cable ds-rf-port 53:0/0 down-channel 61 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227670 + }, + "cable ds-rf-port 53:0/0 down-channel 62 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227670 + }, + "cable ds-rf-port 53:0/0 down-channel 62 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227670 + }, + "cable ds-rf-port 53:0/0 down-channel 62 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[153.0]", + "options": [], + "type": "string_or_number", + "current_value": "153.0", + "updated_at": 1778227670 + }, + "cable ds-rf-port 53:0/0 down-channel 62 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227670 + }, + "cable ds-rf-port 53:0/0 down-channel 63 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227670 + }, + "cable ds-rf-port 53:0/0 down-channel 63 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227670 + }, + "cable ds-rf-port 53:0/0 down-channel 63 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[159.0]", + "options": [], + "type": "string_or_number", + "current_value": "159.0", + "updated_at": 1778227670 + }, + "cable ds-rf-port 53:0/0 down-channel 63 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227670 + }, + "cable ds-rf-port 53:0/0 down-channel 64 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227670 + }, + "cable ds-rf-port 53:0/0 down-channel 64 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227670 + }, + "cable ds-rf-port 53:0/0 down-channel 64 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[165.0]", + "options": [], + "type": "string_or_number", + "current_value": "165.0", + "updated_at": 1778227670 + }, + "cable ds-rf-port 53:0/0 down-channel 64 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227670 + }, + "cable ds-rf-port 53:0/0 down-channel 65 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227670 + }, + "cable ds-rf-port 53:0/0 down-channel 65 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227670 + }, + "cable ds-rf-port 53:0/0 down-channel 65 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[171.0]", + "options": [], + "type": "string_or_number", + "current_value": "171.0", + "updated_at": 1778227670 + }, + "cable ds-rf-port 53:0/0 down-channel 65 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227670 + }, + "cable ds-rf-port 53:0/0 down-channel 66 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227670 + }, + "cable ds-rf-port 53:0/0 down-channel 66 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227670 + }, + "cable ds-rf-port 53:0/0 down-channel 66 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[219.0]", + "options": [], + "type": "string_or_number", + "current_value": "219.0", + "updated_at": 1778227670 + }, + "cable ds-rf-port 53:0/0 down-channel 66 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227670 + }, + "cable ds-rf-port 53:0/0 down-channel 67 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227670 + }, + "cable ds-rf-port 53:0/0 down-channel 67 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227670 + }, + "cable ds-rf-port 53:0/0 down-channel 67 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[225.0]", + "options": [], + "type": "string_or_number", + "current_value": "225.0", + "updated_at": 1778227670 + }, + "cable ds-rf-port 53:0/0 down-channel 67 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227670 + }, + "cable ds-rf-port 53:0/0 down-channel 68 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227721 + }, + "cable ds-rf-port 53:0/0 down-channel 68 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227721 + }, + "cable ds-rf-port 53:0/0 down-channel 68 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[231.0]", + "options": [], + "type": "string_or_number", + "current_value": "231.0", + "updated_at": 1778227721 + }, + "cable ds-rf-port 53:0/0 down-channel 68 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227721 + }, + "cable ds-rf-port 53:0/0 down-channel 69 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227721 + }, + "cable ds-rf-port 53:0/0 down-channel 69 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227721 + }, + "cable ds-rf-port 53:0/0 down-channel 69 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[237.0]", + "options": [], + "type": "string_or_number", + "current_value": "237.0", + "updated_at": 1778227721 + }, + "cable ds-rf-port 53:0/0 down-channel 69 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227721 + }, + "cable ds-rf-port 53:0/0 down-channel 70 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227721 + }, + "cable ds-rf-port 53:0/0 down-channel 70 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227721 + }, + "cable ds-rf-port 53:0/0 down-channel 70 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[243.0]", + "options": [], + "type": "string_or_number", + "current_value": "243.0", + "updated_at": 1778227721 + }, + "cable ds-rf-port 53:0/0 down-channel 70 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227721 + }, + "cable ds-rf-port 53:0/0 down-channel 71 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227721 + }, + "cable ds-rf-port 53:0/0 down-channel 71 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227721 + }, + "cable ds-rf-port 53:0/0 down-channel 71 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[249.0]", + "options": [], + "type": "string_or_number", + "current_value": "249.0", + "updated_at": 1778227721 + }, + "cable ds-rf-port 53:0/0 down-channel 71 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227721 + }, + "cable ds-rf-port 53:0/0 down-channel 72 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227721 + }, + "cable ds-rf-port 53:0/0 down-channel 72 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227721 + }, + "cable ds-rf-port 53:0/0 down-channel 72 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[255.0]", + "options": [], + "type": "string_or_number", + "current_value": "255.0", + "updated_at": 1778227721 + }, + "cable ds-rf-port 53:0/0 down-channel 72 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227721 + }, + "cable ds-rf-port 53:0/0 down-channel 73 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227721 + }, + "cable ds-rf-port 53:0/0 down-channel 73 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227721 + }, + "cable ds-rf-port 53:0/0 down-channel 73 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[261.0]", + "options": [], + "type": "string_or_number", + "current_value": "261.0", + "updated_at": 1778227721 + }, + "cable ds-rf-port 53:0/0 down-channel 73 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227721 + }, + "cable ds-rf-port 53:0/0 down-channel 74 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227721 + }, + "cable ds-rf-port 53:0/0 down-channel 74 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227721 + }, + "cable ds-rf-port 53:0/0 down-channel 74 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[267.0]", + "options": [], + "type": "string_or_number", + "current_value": "267.0", + "updated_at": 1778227721 + }, + "cable ds-rf-port 53:0/0 down-channel 74 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227721 + }, + "cable ds-rf-port 53:0/0 down-channel 75 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227721 + }, + "cable ds-rf-port 53:0/0 down-channel 75 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227721 + }, + "cable ds-rf-port 53:0/0 down-channel 75 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[273.0]", + "options": [], + "type": "string_or_number", + "current_value": "273.0", + "updated_at": 1778227772 + }, + "cable ds-rf-port 53:0/0 down-channel 75 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227772 + }, + "cable ds-rf-port 53:0/0 down-channel 76 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227772 + }, + "cable ds-rf-port 53:0/0 down-channel 76 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227772 + }, + "cable ds-rf-port 53:0/0 down-channel 76 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[279.0]", + "options": [], + "type": "string_or_number", + "current_value": "279.0", + "updated_at": 1778227772 + }, + "cable ds-rf-port 53:0/0 down-channel 76 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227772 + }, + "cable ds-rf-port 53:0/0 down-channel 77 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227772 + }, + "cable ds-rf-port 53:0/0 down-channel 77 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227772 + }, + "cable ds-rf-port 53:0/0 down-channel 77 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[285.0]", + "options": [], + "type": "string_or_number", + "current_value": "285.0", + "updated_at": 1778227772 + }, + "cable ds-rf-port 53:0/0 down-channel 77 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227772 + }, + "cable ds-rf-port 53:0/0 down-channel 78 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227772 + }, + "cable ds-rf-port 53:0/0 down-channel 78 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227772 + }, + "cable ds-rf-port 53:0/0 down-channel 78 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[291.0]", + "options": [], + "type": "string_or_number", + "current_value": "291.0", + "updated_at": 1778227772 + }, + "cable ds-rf-port 53:0/0 down-channel 78 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227772 + }, + "cable ds-rf-port 53:0/0 down-channel 79 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227772 + }, + "cable ds-rf-port 53:0/0 down-channel 79 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227772 + }, + "cable ds-rf-port 53:0/0 down-channel 79 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[297.0]", + "options": [], + "type": "string_or_number", + "current_value": "297.0", + "updated_at": 1778227772 + }, + "cable ds-rf-port 53:0/0 down-channel 79 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227772 + }, + "cable ds-rf-port 53:0/0 down-channel 80 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227772 + }, + "cable ds-rf-port 53:0/0 down-channel 80 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227772 + }, + "cable ds-rf-port 53:0/0 down-channel 80 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[303.0]", + "options": [], + "type": "string_or_number", + "current_value": "303.0", + "updated_at": 1778227772 + }, + "cable ds-rf-port 53:0/0 down-channel 80 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227772 + }, + "cable ds-rf-port 53:0/0 down-channel 81 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227772 + }, + "cable ds-rf-port 53:0/0 down-channel 81 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227772 + }, + "cable ds-rf-port 53:0/0 down-channel 81 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[309.0]", + "options": [], + "type": "string_or_number", + "current_value": "309.0", + "updated_at": 1778227772 + }, + "cable ds-rf-port 53:0/0 down-channel 81 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227772 + }, + "cable ds-rf-port 53:0/0 down-channel 82 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227772 + }, + "cable ds-rf-port 53:0/0 down-channel 82 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227772 + }, + "cable ds-rf-port 53:0/0 down-channel 82 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[315.0]", + "options": [], + "type": "string_or_number", + "current_value": "315.0", + "updated_at": 1778227772 + }, + "cable ds-rf-port 53:0/0 down-channel 82 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227772 + }, + "cable ds-rf-port 53:0/0 down-channel 83 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227822 + }, + "cable ds-rf-port 53:0/0 down-channel 83 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227822 + }, + "cable ds-rf-port 53:0/0 down-channel 83 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[321.0]", + "options": [], + "type": "string_or_number", + "current_value": "321.0", + "updated_at": 1778227822 + }, + "cable ds-rf-port 53:0/0 down-channel 83 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227822 + }, + "cable ds-rf-port 53:0/0 down-channel 84 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227822 + }, + "cable ds-rf-port 53:0/0 down-channel 84 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227822 + }, + "cable ds-rf-port 53:0/0 down-channel 84 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[327.0]", + "options": [], + "type": "string_or_number", + "current_value": "327.0", + "updated_at": 1778227822 + }, + "cable ds-rf-port 53:0/0 down-channel 84 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227822 + }, + "cable ds-rf-port 53:0/0 down-channel 85 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227822 + }, + "cable ds-rf-port 53:0/0 down-channel 85 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227822 + }, + "cable ds-rf-port 53:0/0 down-channel 85 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[333.0]", + "options": [], + "type": "string_or_number", + "current_value": "333.0", + "updated_at": 1778227822 + }, + "cable ds-rf-port 53:0/0 down-channel 85 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227822 + }, + "cable ds-rf-port 53:0/0 down-channel 86 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227822 + }, + "cable ds-rf-port 53:0/0 down-channel 86 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227822 + }, + "cable ds-rf-port 53:0/0 down-channel 86 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[339.0]", + "options": [], + "type": "string_or_number", + "current_value": "339.0", + "updated_at": 1778227822 + }, + "cable ds-rf-port 53:0/0 down-channel 86 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227822 + }, + "cable ds-rf-port 53:0/0 down-channel 87 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227822 + }, + "cable ds-rf-port 53:0/0 down-channel 87 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227822 + }, + "cable ds-rf-port 53:0/0 down-channel 87 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[345.0]", + "options": [], + "type": "string_or_number", + "current_value": "345.0", + "updated_at": 1778227822 + }, + "cable ds-rf-port 53:0/0 down-channel 87 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227822 + }, + "cable ds-rf-port 53:0/0 down-channel 88 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227822 + }, + "cable ds-rf-port 53:0/0 down-channel 88 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227822 + }, + "cable ds-rf-port 53:0/0 down-channel 88 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[351.0]", + "options": [], + "type": "string_or_number", + "current_value": "351.0", + "updated_at": 1778227822 + }, + "cable ds-rf-port 53:0/0 down-channel 88 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227822 + }, + "cable ds-rf-port 53:0/0 down-channel 89 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227822 + }, + "cable ds-rf-port 53:0/0 down-channel 89 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227822 + }, + "cable ds-rf-port 53:0/0 down-channel 89 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[375.0]", + "options": [], + "type": "string_or_number", + "current_value": "375.0", + "updated_at": 1778227822 + }, + "cable ds-rf-port 53:0/0 down-channel 89 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227822 + }, + "cable ds-rf-port 53:0/0 down-channel 90 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227822 + }, + "cable ds-rf-port 53:0/0 down-channel 90 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227822 + }, + "cable ds-rf-port 53:0/0 down-channel 90 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[363.0]", + "options": [], + "type": "string_or_number", + "current_value": "363.0", + "updated_at": 1778227873 + }, + "cable ds-rf-port 53:0/0 down-channel 90 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227873 + }, + "cable ds-rf-port 53:0/0 down-channel 91 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227873 + }, + "cable ds-rf-port 53:0/0 down-channel 91 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227873 + }, + "cable ds-rf-port 53:0/0 down-channel 91 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[369.0]", + "options": [], + "type": "string_or_number", + "current_value": "369.0", + "updated_at": 1778227873 + }, + "cable ds-rf-port 53:0/0 down-channel 91 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227873 + }, + "cable ds-rf-port 53:0/0 down-channel 93 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227873 + }, + "cable ds-rf-port 53:0/0 down-channel 93 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227873 + }, + "cable ds-rf-port 53:0/0 down-channel 93 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[381.0]", + "options": [], + "type": "string_or_number", + "current_value": "381.0", + "updated_at": 1778227873 + }, + "cable ds-rf-port 53:0/0 down-channel 93 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227873 + }, + "cable ds-rf-port 53:0/0 down-channel 94 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227873 + }, + "cable ds-rf-port 53:0/0 down-channel 94 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227873 + }, + "cable ds-rf-port 53:0/0 down-channel 94 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[387.0]", + "options": [], + "type": "string_or_number", + "current_value": "387.0", + "updated_at": 1778227873 + }, + "cable ds-rf-port 53:0/0 down-channel 94 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227873 + }, + "cable ds-rf-port 53:0/0 down-channel 95 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227873 + }, + "cable ds-rf-port 53:0/0 down-channel 95 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227873 + }, + "cable ds-rf-port 53:0/0 down-channel 95 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[393.0]", + "options": [], + "type": "string_or_number", + "current_value": "393.0", + "updated_at": 1778227873 + }, + "cable ds-rf-port 53:0/0 down-channel 95 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227873 + }, + "cable ds-rf-port 53:0/0 down-channel 96 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227873 + }, + "cable ds-rf-port 53:0/0 down-channel 96 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227873 + }, + "cable ds-rf-port 53:0/0 down-channel 96 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[117.0]", + "options": [], + "type": "string_or_number", + "current_value": "117.0", + "updated_at": 1778227873 + }, + "cable ds-rf-port 53:0/0 down-channel 96 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227873 + }, + "cable ds-rf-port 53:0/0 ofdm-channel 0 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227873 + }, + "cable ds-rf-port 53:0/0 ofdm-channel 0 default-profile": { + "hint": "Description: Default OFDM channel profile\nPossible completions:\n[data-1] control data-1 ncp", + "options": [ + "control", + "data-1", + "ncp" + ], + "type": "list", + "current_value": "data-1", + "updated_at": 1778227873 + }, + "cable ds-rf-port 53:0/0 ofdm-channel 0 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778227873 + }, + "cable ds-rf-port 53:0/0 ofdm-channel 0 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778227873 + }, + "cable ds-rf-port 53:0/0 ofdm-channel 0 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778227873 + }, + "cable ds-rf-port 53:0/0 ofdm-channel 0 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [660.0]", + "options": [], + "type": "string_or_number", + "current_value": "660.0", + "updated_at": 1778227873 + }, + "cable ds-rf-port 53:0/0 ofdm-channel 0 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[810.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778227873 + }, + "cable ds-rf-port 53:0/0 ofdm-channel 0 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[690.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778227873 + }, + "cable ds-rf-port 53:0/0 ofdm-channel 0 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778227924 + }, + "cable ds-rf-port 53:0/0 ofdm-channel 0 profile control hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778227924 + }, + "cable ds-rf-port 53:0/0 ofdm-channel 0 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778227924 + }, + "cable ds-rf-port 53:0/0 ofdm-channel 0 profile data-1 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[0.0]", + "options": [], + "type": "string_or_number", + "current_value": "0.0", + "updated_at": 1778227924 + }, + "cable ds-rf-port 53:0/0 ofdm-channel 0 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778227924 + }, + "cable ds-rf-port 53:0/0 ofdm-channel 0 profile ncp hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778227924 + }, + "cable ds-rf-port 53:0/0 ofdm-channel 1 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227924 + }, + "cable ds-rf-port 53:0/0 ofdm-channel 1 auto-profile-change": { + "hint": "Description: Enable/disable automatic profile changes\nPossible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778227924 + }, + "cable ds-rf-port 53:0/0 ofdm-channel 1 default-profile": { + "hint": "Description: Default OFDM channel profile\nPossible completions:\n[data-1] control data-1 data-2 data-3 data-4 data-5 data-6 ncp", + "options": [ + "control", + "data-1", + "data-2", + "data-3", + "data-4", + "data-5", + "data-6", + "ncp" + ], + "type": "list", + "current_value": "data-1", + "updated_at": 1778227924 + }, + "cable ds-rf-port 53:0/0 ofdm-channel 1 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778227924 + }, + "cable ds-rf-port 53:0/0 ofdm-channel 1 query-period-sec": { + "hint": "Description: Define period at which modems are queried for MER on each profile.\nPossible completions:\n[100]", + "options": [], + "type": "string_or_number", + "current_value": "100", + "updated_at": 1778227924 + }, + "cable ds-rf-port 53:0/0 ofdm-channel 1 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778227924 + }, + "cable ds-rf-port 53:0/0 ofdm-channel 1 unfit-profile-mins": { + "hint": "Description: Defines how long the modulation profile will be unavailable for selection.\nPossible completions:\n[0]", + "options": [], + "type": "string_or_number", + "current_value": "0", + "updated_at": 1778227924 + }, + "cable ds-rf-port 53:0/0 ofdm-channel 1 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[2] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "2", + "updated_at": 1778227924 + }, + "cable ds-rf-port 53:0/0 ofdm-channel 1 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [810.0]", + "options": [], + "type": "string_or_number", + "current_value": "810.0", + "updated_at": 1778227924 + }, + "cable ds-rf-port 53:0/0 ofdm-channel 1 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[1002.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778227924 + }, + "cable ds-rf-port 53:0/0 ofdm-channel 1 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[957.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778227924 + }, + "cable ds-rf-port 53:0/0 ofdm-channel 1 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778227924 + }, + "cable ds-rf-port 53:0/0 ofdm-channel 1 profile control hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778227924 + }, + "cable ds-rf-port 53:0/0 ofdm-channel 1 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778227924 + }, + "cable ds-rf-port 53:0/0 ofdm-channel 1 profile data-1 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778227924 + }, + "cable ds-rf-port 53:0/0 ofdm-channel 1 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778227924 + }, + "cable ds-rf-port 53:0/0 ofdm-channel 1 profile data-2 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778227924 + }, + "cable ds-rf-port 53:0/0 ofdm-channel 1 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778227924 + }, + "cable ds-rf-port 53:0/0 ofdm-channel 1 profile data-3 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778227924 + }, + "cable ds-rf-port 53:0/0 ofdm-channel 1 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778227924 + }, + "cable ds-rf-port 53:0/0 ofdm-channel 1 profile data-4 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778227924 + }, + "cable ds-rf-port 53:0/0 ofdm-channel 1 profile data-5 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778227924 + }, + "cable ds-rf-port 53:0/0 ofdm-channel 1 profile data-5 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778227924 + }, + "cable ds-rf-port 53:0/0 ofdm-channel 1 profile data-6 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam64] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam64", + "updated_at": 1778227924 + }, + "cable ds-rf-port 53:0/0 ofdm-channel 1 profile data-6 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778227975 + }, + "cable ds-rf-port 53:0/0 ofdm-channel 1 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778227975 + }, + "cable ds-rf-port 53:0/0 ofdm-channel 1 profile ncp hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778227975 + }, + "cable ds-rf-port 53:0/0 oob-channel 0 frequency-mhz": { + "hint": "Description: OOB channel center frequency\nPossible completions:\n[104.2]", + "options": [], + "type": "string_or_number", + "current_value": "104.2", + "updated_at": 1778227975 + }, + "cable ds-rf-port 53:0/0 oob-channel 0 type": { + "hint": "Description: Type of OOB channel\nPossible completions:\n[55-1] 55-1 ndf", + "options": [ + "55-1", + "ndf" + ], + "type": "list", + "current_value": "55-1", + "updated_at": 1778227975 + }, + "cable ds-rf-port 53:0/0 oob-channel 0 oob-core-id": { + "hint": "Description: The OOB Core Id\nPossible completions:\n [0] 0", + "options": [], + "type": "string_or_number", + "current_value": "0", + "updated_at": 1778227975 + }, + "cable ds-rf-port 53:0/0 oob-channel 0 controller": { + "hint": "Possible completions:\nbuffer Buffer levels in word(8 bytes) 0..1024", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778227975 + }, + "cable ds-rf-port 61:0/0 admin-state": { + "hint": "Description: Administrative State of the DS RF port [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778227975 + }, + "cable ds-rf-port 61:0/0 max-occupied-bw-mhz": { + "hint": "Description: Maximum bandwidth occupied by this port in megahertz\nPossible completions:\n[1118.0]", + "options": [], + "type": "string_or_number", + "current_value": "1118.0", + "updated_at": 1778227975 + }, + "cable ds-rf-port 61:0/0 tilt-adjust": { + "hint": "Description: tilt-adjustment\nPossible completions:\n[15.0]", + "options": [], + "type": "string_or_number", + "current_value": "15.0", + "updated_at": 1778227975 + }, + "cable ds-rf-port 61:0/0 base-channel-power-dbmv": { + "hint": "Description: Base channel power level in TenthdB\nPossible completions:\n[47.0]", + "options": [], + "type": "string_or_number", + "current_value": "47.0", + "updated_at": 1778227975 + }, + "cable ds-rf-port 61:0/0 down-channel 0 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227975 + }, + "cable ds-rf-port 61:0/0 down-channel 0 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[687.0]", + "options": [], + "type": "string_or_number", + "current_value": "687.0", + "updated_at": 1778227975 + }, + "cable ds-rf-port 61:0/0 down-channel 0 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227975 + }, + "cable ds-rf-port 61:0/0 down-channel 1 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227975 + }, + "cable ds-rf-port 61:0/0 down-channel 1 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[693.0]", + "options": [], + "type": "string_or_number", + "current_value": "693.0", + "updated_at": 1778227975 + }, + "cable ds-rf-port 61:0/0 down-channel 1 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227975 + }, + "cable ds-rf-port 61:0/0 down-channel 2 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227975 + }, + "cable ds-rf-port 61:0/0 down-channel 2 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[699.0]", + "options": [], + "type": "string_or_number", + "current_value": "699.0", + "updated_at": 1778227975 + }, + "cable ds-rf-port 61:0/0 down-channel 2 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227975 + }, + "cable ds-rf-port 61:0/0 down-channel 3 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227975 + }, + "cable ds-rf-port 61:0/0 down-channel 3 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[705.0]", + "options": [], + "type": "string_or_number", + "current_value": "705.0", + "updated_at": 1778227975 + }, + "cable ds-rf-port 61:0/0 down-channel 3 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227975 + }, + "cable ds-rf-port 61:0/0 down-channel 4 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227975 + }, + "cable ds-rf-port 61:0/0 down-channel 4 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[711.0]", + "options": [], + "type": "string_or_number", + "current_value": "711.0", + "updated_at": 1778227975 + }, + "cable ds-rf-port 61:0/0 down-channel 4 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227975 + }, + "cable ds-rf-port 61:0/0 down-channel 5 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227975 + }, + "cable ds-rf-port 61:0/0 down-channel 5 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[717.0]", + "options": [], + "type": "string_or_number", + "current_value": "717.0", + "updated_at": 1778227975 + }, + "cable ds-rf-port 61:0/0 down-channel 5 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778227975 + }, + "cable ds-rf-port 61:0/0 down-channel 6 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778227975 + }, + "cable ds-rf-port 61:0/0 down-channel 6 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[723.0]", + "options": [], + "type": "string_or_number", + "current_value": "723.0", + "updated_at": 1778228026 + }, + "cable ds-rf-port 61:0/0 down-channel 6 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228026 + }, + "cable ds-rf-port 61:0/0 down-channel 7 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228026 + }, + "cable ds-rf-port 61:0/0 down-channel 7 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[729.0]", + "options": [], + "type": "string_or_number", + "current_value": "729.0", + "updated_at": 1778228026 + }, + "cable ds-rf-port 61:0/0 down-channel 7 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228026 + }, + "cable ds-rf-port 61:0/0 down-channel 8 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228026 + }, + "cable ds-rf-port 61:0/0 down-channel 8 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[735.0]", + "options": [], + "type": "string_or_number", + "current_value": "735.0", + "updated_at": 1778228026 + }, + "cable ds-rf-port 61:0/0 down-channel 8 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228026 + }, + "cable ds-rf-port 61:0/0 down-channel 9 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228026 + }, + "cable ds-rf-port 61:0/0 down-channel 9 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[741.0]", + "options": [], + "type": "string_or_number", + "current_value": "741.0", + "updated_at": 1778228026 + }, + "cable ds-rf-port 61:0/0 down-channel 9 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228026 + }, + "cable ds-rf-port 61:0/0 down-channel 10 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228026 + }, + "cable ds-rf-port 61:0/0 down-channel 10 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[747.0]", + "options": [], + "type": "string_or_number", + "current_value": "747.0", + "updated_at": 1778228026 + }, + "cable ds-rf-port 61:0/0 down-channel 10 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228026 + }, + "cable ds-rf-port 61:0/0 down-channel 11 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228026 + }, + "cable ds-rf-port 61:0/0 down-channel 11 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[753.0]", + "options": [], + "type": "string_or_number", + "current_value": "753.0", + "updated_at": 1778228026 + }, + "cable ds-rf-port 61:0/0 down-channel 11 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228026 + }, + "cable ds-rf-port 61:0/0 down-channel 12 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228026 + }, + "cable ds-rf-port 61:0/0 down-channel 12 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[783.0]", + "options": [], + "type": "string_or_number", + "current_value": "783.0", + "updated_at": 1778228026 + }, + "cable ds-rf-port 61:0/0 down-channel 12 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228026 + }, + "cable ds-rf-port 61:0/0 down-channel 13 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228026 + }, + "cable ds-rf-port 61:0/0 down-channel 13 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[789.0]", + "options": [], + "type": "string_or_number", + "current_value": "789.0", + "updated_at": 1778228026 + }, + "cable ds-rf-port 61:0/0 down-channel 13 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228026 + }, + "cable ds-rf-port 61:0/0 down-channel 14 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228026 + }, + "cable ds-rf-port 61:0/0 down-channel 14 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[795.0]", + "options": [], + "type": "string_or_number", + "current_value": "795.0", + "updated_at": 1778228026 + }, + "cable ds-rf-port 61:0/0 down-channel 14 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228026 + }, + "cable ds-rf-port 61:0/0 down-channel 15 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228026 + }, + "cable ds-rf-port 61:0/0 down-channel 15 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[801.0]", + "options": [], + "type": "string_or_number", + "current_value": "801.0", + "updated_at": 1778228026 + }, + "cable ds-rf-port 61:0/0 down-channel 15 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228026 + }, + "cable ds-rf-port 61:0/0 down-channel 16 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228026 + }, + "cable ds-rf-port 61:0/0 down-channel 16 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[807.0]", + "options": [], + "type": "string_or_number", + "current_value": "807.0", + "updated_at": 1778228077 + }, + "cable ds-rf-port 61:0/0 down-channel 16 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228077 + }, + "cable ds-rf-port 61:0/0 down-channel 17 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228077 + }, + "cable ds-rf-port 61:0/0 down-channel 17 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[813.0]", + "options": [], + "type": "string_or_number", + "current_value": "813.0", + "updated_at": 1778228077 + }, + "cable ds-rf-port 61:0/0 down-channel 17 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228077 + }, + "cable ds-rf-port 61:0/0 down-channel 18 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228077 + }, + "cable ds-rf-port 61:0/0 down-channel 18 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[819.0]", + "options": [], + "type": "string_or_number", + "current_value": "819.0", + "updated_at": 1778228077 + }, + "cable ds-rf-port 61:0/0 down-channel 18 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228077 + }, + "cable ds-rf-port 61:0/0 down-channel 19 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228077 + }, + "cable ds-rf-port 61:0/0 down-channel 19 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[825.0]", + "options": [], + "type": "string_or_number", + "current_value": "825.0", + "updated_at": 1778228077 + }, + "cable ds-rf-port 61:0/0 down-channel 19 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228077 + }, + "cable ds-rf-port 61:0/0 down-channel 20 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228077 + }, + "cable ds-rf-port 61:0/0 down-channel 20 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[831.0]", + "options": [], + "type": "string_or_number", + "current_value": "831.0", + "updated_at": 1778228077 + }, + "cable ds-rf-port 61:0/0 down-channel 20 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228077 + }, + "cable ds-rf-port 61:0/0 down-channel 21 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228077 + }, + "cable ds-rf-port 61:0/0 down-channel 21 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228077 + }, + "cable ds-rf-port 61:0/0 down-channel 21 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[837.0]", + "options": [], + "type": "string_or_number", + "current_value": "837.0", + "updated_at": 1778228077 + }, + "cable ds-rf-port 61:0/0 down-channel 21 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228077 + }, + "cable ds-rf-port 61:0/0 down-channel 22 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228077 + }, + "cable ds-rf-port 61:0/0 down-channel 22 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228077 + }, + "cable ds-rf-port 61:0/0 down-channel 22 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[843.0]", + "options": [], + "type": "string_or_number", + "current_value": "843.0", + "updated_at": 1778228077 + }, + "cable ds-rf-port 61:0/0 down-channel 22 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228077 + }, + "cable ds-rf-port 61:0/0 down-channel 23 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228077 + }, + "cable ds-rf-port 61:0/0 down-channel 23 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228077 + }, + "cable ds-rf-port 61:0/0 down-channel 23 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[849.0]", + "options": [], + "type": "string_or_number", + "current_value": "849.0", + "updated_at": 1778228077 + }, + "cable ds-rf-port 61:0/0 down-channel 23 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228077 + }, + "cable ds-rf-port 61:0/0 down-channel 24 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228077 + }, + "cable ds-rf-port 61:0/0 down-channel 24 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228077 + }, + "cable ds-rf-port 61:0/0 down-channel 24 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[855.0]", + "options": [], + "type": "string_or_number", + "current_value": "855.0", + "updated_at": 1778228077 + }, + "cable ds-rf-port 61:0/0 down-channel 24 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228077 + }, + "cable ds-rf-port 61:0/0 down-channel 25 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228128 + }, + "cable ds-rf-port 61:0/0 down-channel 25 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228128 + }, + "cable ds-rf-port 61:0/0 down-channel 25 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[861.0]", + "options": [], + "type": "string_or_number", + "current_value": "861.0", + "updated_at": 1778228128 + }, + "cable ds-rf-port 61:0/0 down-channel 25 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228128 + }, + "cable ds-rf-port 61:0/0 down-channel 26 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228128 + }, + "cable ds-rf-port 61:0/0 down-channel 26 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228128 + }, + "cable ds-rf-port 61:0/0 down-channel 26 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[867.0]", + "options": [], + "type": "string_or_number", + "current_value": "867.0", + "updated_at": 1778228128 + }, + "cable ds-rf-port 61:0/0 down-channel 26 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228128 + }, + "cable ds-rf-port 61:0/0 down-channel 27 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228128 + }, + "cable ds-rf-port 61:0/0 down-channel 27 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228128 + }, + "cable ds-rf-port 61:0/0 down-channel 27 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[873.0]", + "options": [], + "type": "string_or_number", + "current_value": "873.0", + "updated_at": 1778228128 + }, + "cable ds-rf-port 61:0/0 down-channel 27 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228128 + }, + "cable ds-rf-port 61:0/0 down-channel 28 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228128 + }, + "cable ds-rf-port 61:0/0 down-channel 28 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228128 + }, + "cable ds-rf-port 61:0/0 down-channel 28 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[879.0]", + "options": [], + "type": "string_or_number", + "current_value": "879.0", + "updated_at": 1778228128 + }, + "cable ds-rf-port 61:0/0 down-channel 28 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228128 + }, + "cable ds-rf-port 61:0/0 down-channel 29 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228128 + }, + "cable ds-rf-port 61:0/0 down-channel 29 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228128 + }, + "cable ds-rf-port 61:0/0 down-channel 29 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[885.0]", + "options": [], + "type": "string_or_number", + "current_value": "885.0", + "updated_at": 1778228128 + }, + "cable ds-rf-port 61:0/0 down-channel 29 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228128 + }, + "cable ds-rf-port 61:0/0 down-channel 30 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228128 + }, + "cable ds-rf-port 61:0/0 down-channel 30 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228128 + }, + "cable ds-rf-port 61:0/0 down-channel 30 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[891.0]", + "options": [], + "type": "string_or_number", + "current_value": "891.0", + "updated_at": 1778228128 + }, + "cable ds-rf-port 61:0/0 down-channel 30 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228128 + }, + "cable ds-rf-port 61:0/0 down-channel 31 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228128 + }, + "cable ds-rf-port 61:0/0 down-channel 31 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228128 + }, + "cable ds-rf-port 61:0/0 down-channel 31 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[897.0]", + "options": [], + "type": "string_or_number", + "current_value": "897.0", + "updated_at": 1778228128 + }, + "cable ds-rf-port 61:0/0 down-channel 31 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228128 + }, + "cable ds-rf-port 61:0/0 down-channel 32 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228128 + }, + "cable ds-rf-port 61:0/0 down-channel 32 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228128 + }, + "cable ds-rf-port 61:0/0 down-channel 32 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[903.0]", + "options": [], + "type": "string_or_number", + "current_value": "903.0", + "updated_at": 1778228179 + }, + "cable ds-rf-port 61:0/0 down-channel 32 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228179 + }, + "cable ds-rf-port 61:0/0 down-channel 33 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228179 + }, + "cable ds-rf-port 61:0/0 down-channel 33 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228179 + }, + "cable ds-rf-port 61:0/0 down-channel 33 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[909.0]", + "options": [], + "type": "string_or_number", + "current_value": "909.0", + "updated_at": 1778228179 + }, + "cable ds-rf-port 61:0/0 down-channel 33 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228179 + }, + "cable ds-rf-port 61:0/0 down-channel 34 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228179 + }, + "cable ds-rf-port 61:0/0 down-channel 34 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228179 + }, + "cable ds-rf-port 61:0/0 down-channel 34 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[915.0]", + "options": [], + "type": "string_or_number", + "current_value": "915.0", + "updated_at": 1778228179 + }, + "cable ds-rf-port 61:0/0 down-channel 34 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228179 + }, + "cable ds-rf-port 61:0/0 down-channel 35 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228179 + }, + "cable ds-rf-port 61:0/0 down-channel 35 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228179 + }, + "cable ds-rf-port 61:0/0 down-channel 35 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[921.0]", + "options": [], + "type": "string_or_number", + "current_value": "921.0", + "updated_at": 1778228179 + }, + "cable ds-rf-port 61:0/0 down-channel 35 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228179 + }, + "cable ds-rf-port 61:0/0 down-channel 36 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228179 + }, + "cable ds-rf-port 61:0/0 down-channel 36 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228179 + }, + "cable ds-rf-port 61:0/0 down-channel 36 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[927.0]", + "options": [], + "type": "string_or_number", + "current_value": "927.0", + "updated_at": 1778228179 + }, + "cable ds-rf-port 61:0/0 down-channel 36 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228179 + }, + "cable ds-rf-port 61:0/0 down-channel 37 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228179 + }, + "cable ds-rf-port 61:0/0 down-channel 37 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228179 + }, + "cable ds-rf-port 61:0/0 down-channel 37 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[933.0]", + "options": [], + "type": "string_or_number", + "current_value": "933.0", + "updated_at": 1778228179 + }, + "cable ds-rf-port 61:0/0 down-channel 37 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228179 + }, + "cable ds-rf-port 61:0/0 down-channel 38 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228179 + }, + "cable ds-rf-port 61:0/0 down-channel 38 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228179 + }, + "cable ds-rf-port 61:0/0 down-channel 38 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[939.0]", + "options": [], + "type": "string_or_number", + "current_value": "939.0", + "updated_at": 1778228179 + }, + "cable ds-rf-port 61:0/0 down-channel 38 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228179 + }, + "cable ds-rf-port 61:0/0 down-channel 39 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228179 + }, + "cable ds-rf-port 61:0/0 down-channel 39 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228179 + }, + "cable ds-rf-port 61:0/0 down-channel 39 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[945.0]", + "options": [], + "type": "string_or_number", + "current_value": "945.0", + "updated_at": 1778228179 + }, + "cable ds-rf-port 61:0/0 down-channel 39 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228179 + }, + "cable ds-rf-port 61:0/0 down-channel 40 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228230 + }, + "cable ds-rf-port 61:0/0 down-channel 40 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228230 + }, + "cable ds-rf-port 61:0/0 down-channel 40 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[951.0]", + "options": [], + "type": "string_or_number", + "current_value": "951.0", + "updated_at": 1778228230 + }, + "cable ds-rf-port 61:0/0 down-channel 40 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228230 + }, + "cable ds-rf-port 61:0/0 down-channel 41 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228230 + }, + "cable ds-rf-port 61:0/0 down-channel 41 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228230 + }, + "cable ds-rf-port 61:0/0 down-channel 41 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[957.0]", + "options": [], + "type": "string_or_number", + "current_value": "957.0", + "updated_at": 1778228230 + }, + "cable ds-rf-port 61:0/0 down-channel 41 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228230 + }, + "cable ds-rf-port 61:0/0 down-channel 42 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228230 + }, + "cable ds-rf-port 61:0/0 down-channel 42 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228230 + }, + "cable ds-rf-port 61:0/0 down-channel 42 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[963.0]", + "options": [], + "type": "string_or_number", + "current_value": "963.0", + "updated_at": 1778228230 + }, + "cable ds-rf-port 61:0/0 down-channel 42 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228230 + }, + "cable ds-rf-port 61:0/0 down-channel 43 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228230 + }, + "cable ds-rf-port 61:0/0 down-channel 43 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228230 + }, + "cable ds-rf-port 61:0/0 down-channel 43 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[969.0]", + "options": [], + "type": "string_or_number", + "current_value": "969.0", + "updated_at": 1778228230 + }, + "cable ds-rf-port 61:0/0 down-channel 43 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228230 + }, + "cable ds-rf-port 61:0/0 down-channel 44 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228230 + }, + "cable ds-rf-port 61:0/0 down-channel 44 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228230 + }, + "cable ds-rf-port 61:0/0 down-channel 44 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[975.0]", + "options": [], + "type": "string_or_number", + "current_value": "975.0", + "updated_at": 1778228230 + }, + "cable ds-rf-port 61:0/0 down-channel 44 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228230 + }, + "cable ds-rf-port 61:0/0 down-channel 45 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228230 + }, + "cable ds-rf-port 61:0/0 down-channel 45 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228230 + }, + "cable ds-rf-port 61:0/0 down-channel 45 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[981.0]", + "options": [], + "type": "string_or_number", + "current_value": "981.0", + "updated_at": 1778228230 + }, + "cable ds-rf-port 61:0/0 down-channel 45 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228230 + }, + "cable ds-rf-port 61:0/0 down-channel 46 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228230 + }, + "cable ds-rf-port 61:0/0 down-channel 46 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228230 + }, + "cable ds-rf-port 61:0/0 down-channel 46 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[987.0]", + "options": [], + "type": "string_or_number", + "current_value": "987.0", + "updated_at": 1778228230 + }, + "cable ds-rf-port 61:0/0 down-channel 46 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228230 + }, + "cable ds-rf-port 61:0/0 down-channel 47 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228230 + }, + "cable ds-rf-port 61:0/0 down-channel 47 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228230 + }, + "cable ds-rf-port 61:0/0 down-channel 47 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[993.0]", + "options": [], + "type": "string_or_number", + "current_value": "993.0", + "updated_at": 1778228281 + }, + "cable ds-rf-port 61:0/0 down-channel 47 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228281 + }, + "cable ds-rf-port 61:0/0 down-channel 48 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228281 + }, + "cable ds-rf-port 61:0/0 down-channel 48 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228281 + }, + "cable ds-rf-port 61:0/0 down-channel 48 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[999.0]", + "options": [], + "type": "string_or_number", + "current_value": "999.0", + "updated_at": 1778228281 + }, + "cable ds-rf-port 61:0/0 down-channel 48 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228281 + }, + "cable ds-rf-port 61:0/0 down-channel 49 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228281 + }, + "cable ds-rf-port 61:0/0 down-channel 49 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[759.0]", + "options": [], + "type": "string_or_number", + "current_value": "759.0", + "updated_at": 1778228281 + }, + "cable ds-rf-port 61:0/0 down-channel 49 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228281 + }, + "cable ds-rf-port 61:0/0 down-channel 50 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228281 + }, + "cable ds-rf-port 61:0/0 down-channel 50 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[765.0]", + "options": [], + "type": "string_or_number", + "current_value": "765.0", + "updated_at": 1778228281 + }, + "cable ds-rf-port 61:0/0 down-channel 50 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228281 + }, + "cable ds-rf-port 61:0/0 down-channel 51 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228281 + }, + "cable ds-rf-port 61:0/0 down-channel 51 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[771.0]", + "options": [], + "type": "string_or_number", + "current_value": "771.0", + "updated_at": 1778228281 + }, + "cable ds-rf-port 61:0/0 down-channel 51 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228281 + }, + "cable ds-rf-port 61:0/0 down-channel 52 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228281 + }, + "cable ds-rf-port 61:0/0 down-channel 52 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[777.0]", + "options": [], + "type": "string_or_number", + "current_value": "777.0", + "updated_at": 1778228281 + }, + "cable ds-rf-port 61:0/0 down-channel 52 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228281 + }, + "cable ds-rf-port 61:0/0 ofdm-channel 0 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228281 + }, + "cable ds-rf-port 61:0/0 ofdm-channel 0 cyclic-prefix": { + "hint": "Description: Cyclic prefix configuration\nPossible completions:\n[256]", + "options": [], + "type": "string_or_number", + "current_value": "256", + "updated_at": 1778228281 + }, + "cable ds-rf-port 61:0/0 ofdm-channel 0 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778228281 + }, + "cable ds-rf-port 61:0/0 ofdm-channel 0 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778228281 + }, + "cable ds-rf-port 61:0/0 ofdm-channel 0 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778228281 + }, + "cable ds-rf-port 61:0/0 ofdm-channel 0 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [1002.0]", + "options": [], + "type": "string_or_number", + "current_value": "1002.0", + "updated_at": 1778228281 + }, + "cable ds-rf-port 61:0/0 ofdm-channel 0 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[1194.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778228281 + }, + "cable ds-rf-port 61:0/0 ofdm-channel 0 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[1011.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778228281 + }, + "cable ds-rf-port 61:0/0 ofdm-channel 0 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778228281 + }, + "cable ds-rf-port 61:0/0 ofdm-channel 0 profile control hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778228281 + }, + "cable ds-rf-port 61:0/0 ofdm-channel 0 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778228281 + }, + "cable ds-rf-port 61:0/0 ofdm-channel 0 profile data-1 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[0.0]", + "options": [], + "type": "string_or_number", + "current_value": "0.0", + "updated_at": 1778228281 + }, + "cable ds-rf-port 61:0/0 ofdm-channel 0 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778228332 + }, + "cable ds-rf-port 61:0/0 ofdm-channel 0 profile ncp hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778228332 + }, + "cable ds-rf-port 61:0/0 ofdm-channel 1 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[down] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "down", + "updated_at": 1778228332 + }, + "cable ds-rf-port 61:0/0 ofdm-channel 1 auto-profile-change": { + "hint": "Description: Enable/disable automatic profile changes\nPossible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778228332 + }, + "cable ds-rf-port 61:0/0 ofdm-channel 1 default-profile": { + "hint": "Description: Default OFDM channel profile\nPossible completions:\n[data-1] control data-1 data-2 data-3 data-4 data-5 data-6 ncp", + "options": [ + "control", + "data-1", + "data-2", + "data-3", + "data-4", + "data-5", + "data-6", + "ncp" + ], + "type": "list", + "current_value": "data-1", + "updated_at": 1778228332 + }, + "cable ds-rf-port 61:0/0 ofdm-channel 1 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778228332 + }, + "cable ds-rf-port 61:0/0 ofdm-channel 1 query-period-sec": { + "hint": "Description: Define period at which modems are queried for MER on each profile.\nPossible completions:\n[100]", + "options": [], + "type": "string_or_number", + "current_value": "100", + "updated_at": 1778228332 + }, + "cable ds-rf-port 61:0/0 ofdm-channel 1 rf-mute": { + "hint": "Description: Enable/disable RF power output\nPossible completions:\n[enabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "enabled", + "updated_at": 1778228332 + }, + "cable ds-rf-port 61:0/0 ofdm-channel 1 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778228332 + }, + "cable ds-rf-port 61:0/0 ofdm-channel 1 unfit-profile-mins": { + "hint": "Description: Defines how long the modulation profile will be unavailable for selection.\nPossible completions:\n[0]", + "options": [], + "type": "string_or_number", + "current_value": "0", + "updated_at": 1778228332 + }, + "cable ds-rf-port 61:0/0 ofdm-channel 1 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[2] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "2", + "updated_at": 1778228332 + }, + "cable ds-rf-port 61:0/0 ofdm-channel 1 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [684.0]", + "options": [], + "type": "string_or_number", + "current_value": "684.0", + "updated_at": 1778228332 + }, + "cable ds-rf-port 61:0/0 ofdm-channel 1 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[834.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778228332 + }, + "cable ds-rf-port 61:0/0 ofdm-channel 1 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[759.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778228332 + }, + "cable ds-rf-port 61:0/0 ofdm-channel 1 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778228332 + }, + "cable ds-rf-port 61:0/0 ofdm-channel 1 profile control hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778228332 + }, + "cable ds-rf-port 61:0/0 ofdm-channel 1 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778228332 + }, + "cable ds-rf-port 61:0/0 ofdm-channel 1 profile data-1 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778228332 + }, + "cable ds-rf-port 61:0/0 ofdm-channel 1 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778228332 + }, + "cable ds-rf-port 61:0/0 ofdm-channel 1 profile data-2 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778228332 + }, + "cable ds-rf-port 61:0/0 ofdm-channel 1 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778228332 + }, + "cable ds-rf-port 61:0/0 ofdm-channel 1 profile data-3 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778228332 + }, + "cable ds-rf-port 61:0/0 ofdm-channel 1 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778228332 + }, + "cable ds-rf-port 61:0/0 ofdm-channel 1 profile data-4 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778228332 + }, + "cable ds-rf-port 61:0/0 ofdm-channel 1 profile data-5 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778228332 + }, + "cable ds-rf-port 61:0/0 ofdm-channel 1 profile data-5 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778228332 + }, + "cable ds-rf-port 61:0/0 ofdm-channel 1 profile data-6 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam64] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam64", + "updated_at": 1778228332 + }, + "cable ds-rf-port 61:0/0 ofdm-channel 1 profile data-6 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778228332 + }, + "cable ds-rf-port 61:0/0 ofdm-channel 1 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778228332 + }, + "cable ds-rf-port 61:0/0 ofdm-channel 1 profile ncp hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778228332 + }, + "cable ds-rf-port 62:0/0 admin-state": { + "hint": "Description: Administrative State of the DS RF port [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228383 + }, + "cable ds-rf-port 62:0/0 max-occupied-bw-mhz": { + "hint": "Description: Maximum bandwidth occupied by this port in megahertz\nPossible completions:\n[1118.0]", + "options": [], + "type": "string_or_number", + "current_value": "1118.0", + "updated_at": 1778228383 + }, + "cable ds-rf-port 62:0/0 tilt-adjust": { + "hint": "Description: tilt-adjustment\nPossible completions:\n[16.5]", + "options": [], + "type": "string_or_number", + "current_value": "16.5", + "updated_at": 1778228383 + }, + "cable ds-rf-port 62:0/0 base-channel-power-dbmv": { + "hint": "Description: Base channel power level in TenthdB\nPossible completions:\n[48.0]", + "options": [], + "type": "string_or_number", + "current_value": "48.0", + "updated_at": 1778228383 + }, + "cable ds-rf-port 62:0/0 tilt-pivot-freq-mhz": { + "hint": "Description: tilt-pivot-frequency in MHz\nPossible completions:\n[1218.0]", + "options": [], + "type": "string_or_number", + "current_value": "1218.0", + "updated_at": 1778228383 + }, + "cable ds-rf-port 62:0/0 down-channel 0 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228383 + }, + "cable ds-rf-port 62:0/0 down-channel 0 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228383 + }, + "cable ds-rf-port 62:0/0 down-channel 0 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[399.0]", + "options": [], + "type": "string_or_number", + "current_value": "399.0", + "updated_at": 1778228383 + }, + "cable ds-rf-port 62:0/0 down-channel 0 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228383 + }, + "cable ds-rf-port 62:0/0 down-channel 1 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228383 + }, + "cable ds-rf-port 62:0/0 down-channel 1 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228383 + }, + "cable ds-rf-port 62:0/0 down-channel 1 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[405.0]", + "options": [], + "type": "string_or_number", + "current_value": "405.0", + "updated_at": 1778228383 + }, + "cable ds-rf-port 62:0/0 down-channel 1 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228383 + }, + "cable ds-rf-port 62:0/0 down-channel 2 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228383 + }, + "cable ds-rf-port 62:0/0 down-channel 2 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228383 + }, + "cable ds-rf-port 62:0/0 down-channel 2 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[411.0]", + "options": [], + "type": "string_or_number", + "current_value": "411.0", + "updated_at": 1778228383 + }, + "cable ds-rf-port 62:0/0 down-channel 2 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228383 + }, + "cable ds-rf-port 62:0/0 down-channel 3 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228383 + }, + "cable ds-rf-port 62:0/0 down-channel 3 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228383 + }, + "cable ds-rf-port 62:0/0 down-channel 3 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[417.0]", + "options": [], + "type": "string_or_number", + "current_value": "417.0", + "updated_at": 1778228383 + }, + "cable ds-rf-port 62:0/0 down-channel 3 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228383 + }, + "cable ds-rf-port 62:0/0 down-channel 4 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228383 + }, + "cable ds-rf-port 62:0/0 down-channel 4 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228383 + }, + "cable ds-rf-port 62:0/0 down-channel 4 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[423.0]", + "options": [], + "type": "string_or_number", + "current_value": "423.0", + "updated_at": 1778228383 + }, + "cable ds-rf-port 62:0/0 down-channel 4 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228383 + }, + "cable ds-rf-port 62:0/0 down-channel 5 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228383 + }, + "cable ds-rf-port 62:0/0 down-channel 5 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228383 + }, + "cable ds-rf-port 62:0/0 down-channel 5 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[429.0]", + "options": [], + "type": "string_or_number", + "current_value": "429.0", + "updated_at": 1778228383 + }, + "cable ds-rf-port 62:0/0 down-channel 5 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228383 + }, + "cable ds-rf-port 62:0/0 down-channel 6 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228383 + }, + "cable ds-rf-port 62:0/0 down-channel 6 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228434 + }, + "cable ds-rf-port 62:0/0 down-channel 6 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[435.0]", + "options": [], + "type": "string_or_number", + "current_value": "435.0", + "updated_at": 1778228434 + }, + "cable ds-rf-port 62:0/0 down-channel 6 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228434 + }, + "cable ds-rf-port 62:0/0 down-channel 7 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228434 + }, + "cable ds-rf-port 62:0/0 down-channel 7 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228434 + }, + "cable ds-rf-port 62:0/0 down-channel 7 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[441.0]", + "options": [], + "type": "string_or_number", + "current_value": "441.0", + "updated_at": 1778228434 + }, + "cable ds-rf-port 62:0/0 down-channel 7 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228434 + }, + "cable ds-rf-port 62:0/0 down-channel 8 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228434 + }, + "cable ds-rf-port 62:0/0 down-channel 8 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228434 + }, + "cable ds-rf-port 62:0/0 down-channel 8 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[447.0]", + "options": [], + "type": "string_or_number", + "current_value": "447.0", + "updated_at": 1778228434 + }, + "cable ds-rf-port 62:0/0 down-channel 8 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228434 + }, + "cable ds-rf-port 62:0/0 down-channel 9 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228434 + }, + "cable ds-rf-port 62:0/0 down-channel 9 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228434 + }, + "cable ds-rf-port 62:0/0 down-channel 9 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[453.0]", + "options": [], + "type": "string_or_number", + "current_value": "453.0", + "updated_at": 1778228434 + }, + "cable ds-rf-port 62:0/0 down-channel 9 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228434 + }, + "cable ds-rf-port 62:0/0 down-channel 10 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228434 + }, + "cable ds-rf-port 62:0/0 down-channel 10 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228434 + }, + "cable ds-rf-port 62:0/0 down-channel 10 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[459.0]", + "options": [], + "type": "string_or_number", + "current_value": "459.0", + "updated_at": 1778228434 + }, + "cable ds-rf-port 62:0/0 down-channel 10 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228434 + }, + "cable ds-rf-port 62:0/0 down-channel 11 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228434 + }, + "cable ds-rf-port 62:0/0 down-channel 11 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228434 + }, + "cable ds-rf-port 62:0/0 down-channel 11 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[465.0]", + "options": [], + "type": "string_or_number", + "current_value": "465.0", + "updated_at": 1778228434 + }, + "cable ds-rf-port 62:0/0 down-channel 11 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228434 + }, + "cable ds-rf-port 62:0/0 down-channel 12 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228434 + }, + "cable ds-rf-port 62:0/0 down-channel 12 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228434 + }, + "cable ds-rf-port 62:0/0 down-channel 12 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[471.0]", + "options": [], + "type": "string_or_number", + "current_value": "471.0", + "updated_at": 1778228434 + }, + "cable ds-rf-port 62:0/0 down-channel 12 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228434 + }, + "cable ds-rf-port 62:0/0 down-channel 13 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228434 + }, + "cable ds-rf-port 62:0/0 down-channel 13 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228434 + }, + "cable ds-rf-port 62:0/0 down-channel 13 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[477.0]", + "options": [], + "type": "string_or_number", + "current_value": "477.0", + "updated_at": 1778228434 + }, + "cable ds-rf-port 62:0/0 down-channel 13 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228485 + }, + "cable ds-rf-port 62:0/0 down-channel 14 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228485 + }, + "cable ds-rf-port 62:0/0 down-channel 14 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228485 + }, + "cable ds-rf-port 62:0/0 down-channel 14 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[897.0]", + "options": [], + "type": "string_or_number", + "current_value": "897.0", + "updated_at": 1778228485 + }, + "cable ds-rf-port 62:0/0 down-channel 14 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228485 + }, + "cable ds-rf-port 62:0/0 down-channel 15 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228485 + }, + "cable ds-rf-port 62:0/0 down-channel 15 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228485 + }, + "cable ds-rf-port 62:0/0 down-channel 15 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[903.0]", + "options": [], + "type": "string_or_number", + "current_value": "903.0", + "updated_at": 1778228485 + }, + "cable ds-rf-port 62:0/0 down-channel 15 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228485 + }, + "cable ds-rf-port 62:0/0 down-channel 16 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228485 + }, + "cable ds-rf-port 62:0/0 down-channel 16 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228485 + }, + "cable ds-rf-port 62:0/0 down-channel 16 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[909.0]", + "options": [], + "type": "string_or_number", + "current_value": "909.0", + "updated_at": 1778228485 + }, + "cable ds-rf-port 62:0/0 down-channel 16 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228485 + }, + "cable ds-rf-port 62:0/0 down-channel 17 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228485 + }, + "cable ds-rf-port 62:0/0 down-channel 17 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228485 + }, + "cable ds-rf-port 62:0/0 down-channel 17 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[915.0]", + "options": [], + "type": "string_or_number", + "current_value": "915.0", + "updated_at": 1778228485 + }, + "cable ds-rf-port 62:0/0 down-channel 17 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228485 + }, + "cable ds-rf-port 62:0/0 down-channel 18 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228485 + }, + "cable ds-rf-port 62:0/0 down-channel 18 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228485 + }, + "cable ds-rf-port 62:0/0 down-channel 18 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[921.0]", + "options": [], + "type": "string_or_number", + "current_value": "921.0", + "updated_at": 1778228485 + }, + "cable ds-rf-port 62:0/0 down-channel 18 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228485 + }, + "cable ds-rf-port 62:0/0 down-channel 19 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228485 + }, + "cable ds-rf-port 62:0/0 down-channel 19 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228485 + }, + "cable ds-rf-port 62:0/0 down-channel 19 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[927.0]", + "options": [], + "type": "string_or_number", + "current_value": "927.0", + "updated_at": 1778228485 + }, + "cable ds-rf-port 62:0/0 down-channel 19 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228485 + }, + "cable ds-rf-port 62:0/0 down-channel 20 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228485 + }, + "cable ds-rf-port 62:0/0 down-channel 20 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228485 + }, + "cable ds-rf-port 62:0/0 down-channel 20 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[933.0]", + "options": [], + "type": "string_or_number", + "current_value": "933.0", + "updated_at": 1778228485 + }, + "cable ds-rf-port 62:0/0 down-channel 20 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228485 + }, + "cable ds-rf-port 62:0/0 down-channel 21 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228485 + }, + "cable ds-rf-port 62:0/0 down-channel 21 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228536 + }, + "cable ds-rf-port 62:0/0 down-channel 21 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[939.0]", + "options": [], + "type": "string_or_number", + "current_value": "939.0", + "updated_at": 1778228536 + }, + "cable ds-rf-port 62:0/0 down-channel 21 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228536 + }, + "cable ds-rf-port 62:0/0 down-channel 22 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228536 + }, + "cable ds-rf-port 62:0/0 down-channel 22 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228536 + }, + "cable ds-rf-port 62:0/0 down-channel 22 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[945.0]", + "options": [], + "type": "string_or_number", + "current_value": "945.0", + "updated_at": 1778228536 + }, + "cable ds-rf-port 62:0/0 down-channel 22 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228536 + }, + "cable ds-rf-port 62:0/0 down-channel 23 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228536 + }, + "cable ds-rf-port 62:0/0 down-channel 23 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228536 + }, + "cable ds-rf-port 62:0/0 down-channel 23 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[951.0]", + "options": [], + "type": "string_or_number", + "current_value": "951.0", + "updated_at": 1778228536 + }, + "cable ds-rf-port 62:0/0 down-channel 23 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228536 + }, + "cable ds-rf-port 62:0/0 down-channel 24 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228536 + }, + "cable ds-rf-port 62:0/0 down-channel 24 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228536 + }, + "cable ds-rf-port 62:0/0 down-channel 24 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[957.0]", + "options": [], + "type": "string_or_number", + "current_value": "957.0", + "updated_at": 1778228536 + }, + "cable ds-rf-port 62:0/0 down-channel 24 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228536 + }, + "cable ds-rf-port 62:0/0 down-channel 25 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228536 + }, + "cable ds-rf-port 62:0/0 down-channel 25 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228536 + }, + "cable ds-rf-port 62:0/0 down-channel 25 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[963.0]", + "options": [], + "type": "string_or_number", + "current_value": "963.0", + "updated_at": 1778228536 + }, + "cable ds-rf-port 62:0/0 down-channel 25 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228536 + }, + "cable ds-rf-port 62:0/0 down-channel 26 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228536 + }, + "cable ds-rf-port 62:0/0 down-channel 26 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228536 + }, + "cable ds-rf-port 62:0/0 down-channel 26 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[969.0]", + "options": [], + "type": "string_or_number", + "current_value": "969.0", + "updated_at": 1778228536 + }, + "cable ds-rf-port 62:0/0 down-channel 26 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228536 + }, + "cable ds-rf-port 62:0/0 down-channel 27 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228536 + }, + "cable ds-rf-port 62:0/0 down-channel 27 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228536 + }, + "cable ds-rf-port 62:0/0 down-channel 27 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[975.0]", + "options": [], + "type": "string_or_number", + "current_value": "975.0", + "updated_at": 1778228536 + }, + "cable ds-rf-port 62:0/0 down-channel 27 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228536 + }, + "cable ds-rf-port 62:0/0 down-channel 28 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228536 + }, + "cable ds-rf-port 62:0/0 down-channel 28 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228536 + }, + "cable ds-rf-port 62:0/0 down-channel 28 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[981.0]", + "options": [], + "type": "string_or_number", + "current_value": "981.0", + "updated_at": 1778228536 + }, + "cable ds-rf-port 62:0/0 down-channel 28 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228586 + }, + "cable ds-rf-port 62:0/0 down-channel 29 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228586 + }, + "cable ds-rf-port 62:0/0 down-channel 29 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228586 + }, + "cable ds-rf-port 62:0/0 down-channel 29 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[987.0]", + "options": [], + "type": "string_or_number", + "current_value": "987.0", + "updated_at": 1778228586 + }, + "cable ds-rf-port 62:0/0 down-channel 29 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228586 + }, + "cable ds-rf-port 62:0/0 down-channel 30 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228586 + }, + "cable ds-rf-port 62:0/0 down-channel 30 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228586 + }, + "cable ds-rf-port 62:0/0 down-channel 30 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[993.0]", + "options": [], + "type": "string_or_number", + "current_value": "993.0", + "updated_at": 1778228586 + }, + "cable ds-rf-port 62:0/0 down-channel 30 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228586 + }, + "cable ds-rf-port 62:0/0 down-channel 31 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228586 + }, + "cable ds-rf-port 62:0/0 down-channel 31 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228586 + }, + "cable ds-rf-port 62:0/0 down-channel 31 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[999.0]", + "options": [], + "type": "string_or_number", + "current_value": "999.0", + "updated_at": 1778228586 + }, + "cable ds-rf-port 62:0/0 down-channel 31 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228586 + }, + "cable ds-rf-port 62:0/0 down-channel 51 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228586 + }, + "cable ds-rf-port 62:0/0 down-channel 51 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228586 + }, + "cable ds-rf-port 62:0/0 down-channel 51 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[513.0]", + "options": [], + "type": "string_or_number", + "current_value": "513.0", + "updated_at": 1778228586 + }, + "cable ds-rf-port 62:0/0 down-channel 51 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778228586 + }, + "cable ds-rf-port 62:0/0 down-channel 52 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228586 + }, + "cable ds-rf-port 62:0/0 down-channel 52 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228586 + }, + "cable ds-rf-port 62:0/0 down-channel 52 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[519.0]", + "options": [], + "type": "string_or_number", + "current_value": "519.0", + "updated_at": 1778228586 + }, + "cable ds-rf-port 62:0/0 down-channel 52 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778228586 + }, + "cable ds-rf-port 62:0/0 down-channel 53 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228586 + }, + "cable ds-rf-port 62:0/0 down-channel 53 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228586 + }, + "cable ds-rf-port 62:0/0 down-channel 53 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[525.0]", + "options": [], + "type": "string_or_number", + "current_value": "525.0", + "updated_at": 1778228586 + }, + "cable ds-rf-port 62:0/0 down-channel 53 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778228586 + }, + "cable ds-rf-port 62:0/0 down-channel 54 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228586 + }, + "cable ds-rf-port 62:0/0 down-channel 54 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228586 + }, + "cable ds-rf-port 62:0/0 down-channel 54 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[531.0]", + "options": [], + "type": "string_or_number", + "current_value": "531.0", + "updated_at": 1778228586 + }, + "cable ds-rf-port 62:0/0 down-channel 54 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778228586 + }, + "cable ds-rf-port 62:0/0 down-channel 55 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228586 + }, + "cable ds-rf-port 62:0/0 down-channel 55 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228637 + }, + "cable ds-rf-port 62:0/0 down-channel 55 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[537.0]", + "options": [], + "type": "string_or_number", + "current_value": "537.0", + "updated_at": 1778228637 + }, + "cable ds-rf-port 62:0/0 down-channel 55 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778228637 + }, + "cable ds-rf-port 62:0/0 down-channel 56 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228637 + }, + "cable ds-rf-port 62:0/0 down-channel 56 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228637 + }, + "cable ds-rf-port 62:0/0 down-channel 56 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[543.0]", + "options": [], + "type": "string_or_number", + "current_value": "543.0", + "updated_at": 1778228637 + }, + "cable ds-rf-port 62:0/0 down-channel 56 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778228637 + }, + "cable ds-rf-port 62:0/0 down-channel 57 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228637 + }, + "cable ds-rf-port 62:0/0 down-channel 57 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228637 + }, + "cable ds-rf-port 62:0/0 down-channel 57 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[549.0]", + "options": [], + "type": "string_or_number", + "current_value": "549.0", + "updated_at": 1778228637 + }, + "cable ds-rf-port 62:0/0 down-channel 57 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778228637 + }, + "cable ds-rf-port 62:0/0 down-channel 58 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228637 + }, + "cable ds-rf-port 62:0/0 down-channel 58 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228637 + }, + "cable ds-rf-port 62:0/0 down-channel 58 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[555.0]", + "options": [], + "type": "string_or_number", + "current_value": "555.0", + "updated_at": 1778228637 + }, + "cable ds-rf-port 62:0/0 down-channel 58 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778228637 + }, + "cable ds-rf-port 62:0/0 down-channel 59 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228637 + }, + "cable ds-rf-port 62:0/0 down-channel 59 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228637 + }, + "cable ds-rf-port 62:0/0 down-channel 59 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[561.0]", + "options": [], + "type": "string_or_number", + "current_value": "561.0", + "updated_at": 1778228637 + }, + "cable ds-rf-port 62:0/0 down-channel 59 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778228637 + }, + "cable ds-rf-port 62:0/0 down-channel 60 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228637 + }, + "cable ds-rf-port 62:0/0 down-channel 60 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228637 + }, + "cable ds-rf-port 62:0/0 down-channel 60 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[567.0]", + "options": [], + "type": "string_or_number", + "current_value": "567.0", + "updated_at": 1778228637 + }, + "cable ds-rf-port 62:0/0 down-channel 60 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778228637 + }, + "cable ds-rf-port 62:0/0 down-channel 61 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228637 + }, + "cable ds-rf-port 62:0/0 down-channel 61 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228637 + }, + "cable ds-rf-port 62:0/0 down-channel 61 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[573.0]", + "options": [], + "type": "string_or_number", + "current_value": "573.0", + "updated_at": 1778228637 + }, + "cable ds-rf-port 62:0/0 down-channel 61 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778228637 + }, + "cable ds-rf-port 62:0/0 down-channel 62 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228637 + }, + "cable ds-rf-port 62:0/0 down-channel 62 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228637 + }, + "cable ds-rf-port 62:0/0 down-channel 62 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[579.0]", + "options": [], + "type": "string_or_number", + "current_value": "579.0", + "updated_at": 1778228637 + }, + "cable ds-rf-port 62:0/0 down-channel 62 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778228688 + }, + "cable ds-rf-port 62:0/0 down-channel 63 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228688 + }, + "cable ds-rf-port 62:0/0 down-channel 63 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228688 + }, + "cable ds-rf-port 62:0/0 down-channel 63 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[585.0]", + "options": [], + "type": "string_or_number", + "current_value": "585.0", + "updated_at": 1778228688 + }, + "cable ds-rf-port 62:0/0 down-channel 63 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778228688 + }, + "cable ds-rf-port 62:0/0 down-channel 64 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228688 + }, + "cable ds-rf-port 62:0/0 down-channel 64 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228688 + }, + "cable ds-rf-port 62:0/0 down-channel 64 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[591.0]", + "options": [], + "type": "string_or_number", + "current_value": "591.0", + "updated_at": 1778228688 + }, + "cable ds-rf-port 62:0/0 down-channel 64 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778228688 + }, + "cable ds-rf-port 62:0/0 down-channel 65 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228688 + }, + "cable ds-rf-port 62:0/0 down-channel 65 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228688 + }, + "cable ds-rf-port 62:0/0 down-channel 65 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[597.0]", + "options": [], + "type": "string_or_number", + "current_value": "597.0", + "updated_at": 1778228688 + }, + "cable ds-rf-port 62:0/0 down-channel 65 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778228688 + }, + "cable ds-rf-port 62:0/0 down-channel 66 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228688 + }, + "cable ds-rf-port 62:0/0 down-channel 66 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228688 + }, + "cable ds-rf-port 62:0/0 down-channel 66 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[603.0]", + "options": [], + "type": "string_or_number", + "current_value": "603.0", + "updated_at": 1778228688 + }, + "cable ds-rf-port 62:0/0 down-channel 66 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778228688 + }, + "cable ds-rf-port 62:0/0 down-channel 67 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228688 + }, + "cable ds-rf-port 62:0/0 down-channel 67 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228688 + }, + "cable ds-rf-port 62:0/0 down-channel 67 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[609.0]", + "options": [], + "type": "string_or_number", + "current_value": "609.0", + "updated_at": 1778228688 + }, + "cable ds-rf-port 62:0/0 down-channel 67 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778228688 + }, + "cable ds-rf-port 62:0/0 down-channel 68 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228688 + }, + "cable ds-rf-port 62:0/0 down-channel 68 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228688 + }, + "cable ds-rf-port 62:0/0 down-channel 68 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[615.0]", + "options": [], + "type": "string_or_number", + "current_value": "615.0", + "updated_at": 1778228688 + }, + "cable ds-rf-port 62:0/0 down-channel 68 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778228688 + }, + "cable ds-rf-port 62:0/0 down-channel 69 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228688 + }, + "cable ds-rf-port 62:0/0 down-channel 69 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228688 + }, + "cable ds-rf-port 62:0/0 down-channel 69 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[621.0]", + "options": [], + "type": "string_or_number", + "current_value": "621.0", + "updated_at": 1778228688 + }, + "cable ds-rf-port 62:0/0 down-channel 69 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778228688 + }, + "cable ds-rf-port 62:0/0 down-channel 70 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228688 + }, + "cable ds-rf-port 62:0/0 down-channel 70 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228739 + }, + "cable ds-rf-port 62:0/0 down-channel 70 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[627.0]", + "options": [], + "type": "string_or_number", + "current_value": "627.0", + "updated_at": 1778228739 + }, + "cable ds-rf-port 62:0/0 down-channel 70 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778228739 + }, + "cable ds-rf-port 62:0/0 down-channel 71 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228739 + }, + "cable ds-rf-port 62:0/0 down-channel 71 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228739 + }, + "cable ds-rf-port 62:0/0 down-channel 71 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[633.0]", + "options": [], + "type": "string_or_number", + "current_value": "633.0", + "updated_at": 1778228739 + }, + "cable ds-rf-port 62:0/0 down-channel 71 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778228739 + }, + "cable ds-rf-port 62:0/0 down-channel 72 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228739 + }, + "cable ds-rf-port 62:0/0 down-channel 72 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228739 + }, + "cable ds-rf-port 62:0/0 down-channel 72 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[639.0]", + "options": [], + "type": "string_or_number", + "current_value": "639.0", + "updated_at": 1778228739 + }, + "cable ds-rf-port 62:0/0 down-channel 72 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778228739 + }, + "cable ds-rf-port 62:0/0 down-channel 73 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228739 + }, + "cable ds-rf-port 62:0/0 down-channel 73 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228739 + }, + "cable ds-rf-port 62:0/0 down-channel 73 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[645.0]", + "options": [], + "type": "string_or_number", + "current_value": "645.0", + "updated_at": 1778228739 + }, + "cable ds-rf-port 62:0/0 down-channel 73 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778228739 + }, + "cable ds-rf-port 62:0/0 down-channel 74 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228739 + }, + "cable ds-rf-port 62:0/0 down-channel 74 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228739 + }, + "cable ds-rf-port 62:0/0 down-channel 74 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[651.0]", + "options": [], + "type": "string_or_number", + "current_value": "651.0", + "updated_at": 1778228739 + }, + "cable ds-rf-port 62:0/0 down-channel 74 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778228739 + }, + "cable ds-rf-port 62:0/0 down-channel 75 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228739 + }, + "cable ds-rf-port 62:0/0 down-channel 75 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228739 + }, + "cable ds-rf-port 62:0/0 down-channel 75 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[657.0]", + "options": [], + "type": "string_or_number", + "current_value": "657.0", + "updated_at": 1778228739 + }, + "cable ds-rf-port 62:0/0 down-channel 75 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778228739 + }, + "cable ds-rf-port 62:0/0 down-channel 76 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228739 + }, + "cable ds-rf-port 62:0/0 down-channel 76 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228739 + }, + "cable ds-rf-port 62:0/0 down-channel 76 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[663.0]", + "options": [], + "type": "string_or_number", + "current_value": "663.0", + "updated_at": 1778228739 + }, + "cable ds-rf-port 62:0/0 down-channel 76 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778228739 + }, + "cable ds-rf-port 62:0/0 down-channel 77 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228739 + }, + "cable ds-rf-port 62:0/0 down-channel 77 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228739 + }, + "cable ds-rf-port 62:0/0 down-channel 77 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[669.0]", + "options": [], + "type": "string_or_number", + "current_value": "669.0", + "updated_at": 1778228739 + }, + "cable ds-rf-port 62:0/0 down-channel 77 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778228790 + }, + "cable ds-rf-port 62:0/0 down-channel 78 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228790 + }, + "cable ds-rf-port 62:0/0 down-channel 78 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228790 + }, + "cable ds-rf-port 62:0/0 down-channel 78 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[675.0]", + "options": [], + "type": "string_or_number", + "current_value": "675.0", + "updated_at": 1778228790 + }, + "cable ds-rf-port 62:0/0 down-channel 78 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778228790 + }, + "cable ds-rf-port 62:0/0 down-channel 79 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228790 + }, + "cable ds-rf-port 62:0/0 down-channel 79 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228790 + }, + "cable ds-rf-port 62:0/0 down-channel 79 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[681.0]", + "options": [], + "type": "string_or_number", + "current_value": "681.0", + "updated_at": 1778228790 + }, + "cable ds-rf-port 62:0/0 down-channel 79 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778228790 + }, + "cable ds-rf-port 62:0/0 down-channel 80 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228790 + }, + "cable ds-rf-port 62:0/0 down-channel 80 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228790 + }, + "cable ds-rf-port 62:0/0 down-channel 80 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[687.0]", + "options": [], + "type": "string_or_number", + "current_value": "687.0", + "updated_at": 1778228790 + }, + "cable ds-rf-port 62:0/0 down-channel 80 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778228790 + }, + "cable ds-rf-port 62:0/0 down-channel 81 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228790 + }, + "cable ds-rf-port 62:0/0 down-channel 81 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228790 + }, + "cable ds-rf-port 62:0/0 down-channel 81 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[693.0]", + "options": [], + "type": "string_or_number", + "current_value": "693.0", + "updated_at": 1778228790 + }, + "cable ds-rf-port 62:0/0 down-channel 81 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778228790 + }, + "cable ds-rf-port 62:0/0 down-channel 82 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228790 + }, + "cable ds-rf-port 62:0/0 down-channel 82 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228790 + }, + "cable ds-rf-port 62:0/0 down-channel 82 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[699.0]", + "options": [], + "type": "string_or_number", + "current_value": "699.0", + "updated_at": 1778228790 + }, + "cable ds-rf-port 62:0/0 down-channel 82 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778228790 + }, + "cable ds-rf-port 62:0/0 down-channel 83 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228790 + }, + "cable ds-rf-port 62:0/0 down-channel 83 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228790 + }, + "cable ds-rf-port 62:0/0 down-channel 83 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[705.0]", + "options": [], + "type": "string_or_number", + "current_value": "705.0", + "updated_at": 1778228790 + }, + "cable ds-rf-port 62:0/0 down-channel 83 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778228790 + }, + "cable ds-rf-port 62:0/0 down-channel 84 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228790 + }, + "cable ds-rf-port 62:0/0 down-channel 84 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228790 + }, + "cable ds-rf-port 62:0/0 down-channel 84 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[711.0]", + "options": [], + "type": "string_or_number", + "current_value": "711.0", + "updated_at": 1778228790 + }, + "cable ds-rf-port 62:0/0 down-channel 84 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778228790 + }, + "cable ds-rf-port 62:0/0 down-channel 85 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228790 + }, + "cable ds-rf-port 62:0/0 down-channel 85 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228841 + }, + "cable ds-rf-port 62:0/0 down-channel 85 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[717.0]", + "options": [], + "type": "string_or_number", + "current_value": "717.0", + "updated_at": 1778228841 + }, + "cable ds-rf-port 62:0/0 down-channel 85 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778228841 + }, + "cable ds-rf-port 62:0/0 down-channel 86 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228841 + }, + "cable ds-rf-port 62:0/0 down-channel 86 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228841 + }, + "cable ds-rf-port 62:0/0 down-channel 86 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[723.0]", + "options": [], + "type": "string_or_number", + "current_value": "723.0", + "updated_at": 1778228841 + }, + "cable ds-rf-port 62:0/0 down-channel 86 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778228841 + }, + "cable ds-rf-port 62:0/0 down-channel 87 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228841 + }, + "cable ds-rf-port 62:0/0 down-channel 87 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228841 + }, + "cable ds-rf-port 62:0/0 down-channel 87 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[729.0]", + "options": [], + "type": "string_or_number", + "current_value": "729.0", + "updated_at": 1778228841 + }, + "cable ds-rf-port 62:0/0 down-channel 87 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778228841 + }, + "cable ds-rf-port 62:0/0 down-channel 88 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228841 + }, + "cable ds-rf-port 62:0/0 down-channel 88 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228841 + }, + "cable ds-rf-port 62:0/0 down-channel 88 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[735.0]", + "options": [], + "type": "string_or_number", + "current_value": "735.0", + "updated_at": 1778228841 + }, + "cable ds-rf-port 62:0/0 down-channel 88 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778228841 + }, + "cable ds-rf-port 62:0/0 down-channel 89 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228841 + }, + "cable ds-rf-port 62:0/0 down-channel 89 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228841 + }, + "cable ds-rf-port 62:0/0 down-channel 89 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[741.0]", + "options": [], + "type": "string_or_number", + "current_value": "741.0", + "updated_at": 1778228841 + }, + "cable ds-rf-port 62:0/0 down-channel 89 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778228841 + }, + "cable ds-rf-port 62:0/0 down-channel 90 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228841 + }, + "cable ds-rf-port 62:0/0 down-channel 90 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228841 + }, + "cable ds-rf-port 62:0/0 down-channel 90 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[747.0]", + "options": [], + "type": "string_or_number", + "current_value": "747.0", + "updated_at": 1778228841 + }, + "cable ds-rf-port 62:0/0 down-channel 90 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778228841 + }, + "cable ds-rf-port 62:0/0 down-channel 91 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228841 + }, + "cable ds-rf-port 62:0/0 down-channel 91 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228841 + }, + "cable ds-rf-port 62:0/0 down-channel 91 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[753.0]", + "options": [], + "type": "string_or_number", + "current_value": "753.0", + "updated_at": 1778228841 + }, + "cable ds-rf-port 62:0/0 down-channel 91 qam-alias": { + "hint": "Description: The name of the QAM channel for ifAlias in the if-MIB\nPossible completions:\n[EIA-36]", + "options": [], + "type": "string_or_number", + "current_value": "EIA-36", + "updated_at": 1778228841 + }, + "cable ds-rf-port 62:0/0 ofdm-channel 0 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228841 + }, + "cable ds-rf-port 62:0/0 ofdm-channel 0 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778228841 + }, + "cable ds-rf-port 62:0/0 ofdm-channel 0 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778228841 + }, + "cable ds-rf-port 62:0/0 ofdm-channel 0 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778228892 + }, + "cable ds-rf-port 62:0/0 ofdm-channel 0 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [762.0]", + "options": [], + "type": "string_or_number", + "current_value": "762.0", + "updated_at": 1778228892 + }, + "cable ds-rf-port 62:0/0 ofdm-channel 0 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[894.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778228892 + }, + "cable ds-rf-port 62:0/0 ofdm-channel 0 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[774.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778228892 + }, + "cable ds-rf-port 62:0/0 ofdm-channel 0 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778228892 + }, + "cable ds-rf-port 62:0/0 ofdm-channel 0 profile control hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778228892 + }, + "cable ds-rf-port 62:0/0 ofdm-channel 0 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778228892 + }, + "cable ds-rf-port 62:0/0 ofdm-channel 0 profile data-1 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778228892 + }, + "cable ds-rf-port 62:0/0 ofdm-channel 0 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778228892 + }, + "cable ds-rf-port 62:0/0 ofdm-channel 0 profile data-2 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778228892 + }, + "cable ds-rf-port 62:0/0 ofdm-channel 0 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778228892 + }, + "cable ds-rf-port 62:0/0 ofdm-channel 0 profile data-3 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778228892 + }, + "cable ds-rf-port 62:0/0 ofdm-channel 0 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778228892 + }, + "cable ds-rf-port 62:0/0 ofdm-channel 0 profile data-4 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778228892 + }, + "cable ds-rf-port 62:0/0 ofdm-channel 0 profile data-5 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778228892 + }, + "cable ds-rf-port 62:0/0 ofdm-channel 0 profile data-5 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778228892 + }, + "cable ds-rf-port 62:0/0 ofdm-channel 0 profile data-6 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam64] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam64", + "updated_at": 1778228892 + }, + "cable ds-rf-port 62:0/0 ofdm-channel 0 profile data-6 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778228892 + }, + "cable ds-rf-port 62:0/0 ofdm-channel 0 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778228892 + }, + "cable ds-rf-port 62:0/0 ofdm-channel 0 profile ncp hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778228892 + }, + "cable ds-rf-port 62:0/0 ofdm-channel 1 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228892 + }, + "cable ds-rf-port 62:0/0 ofdm-channel 1 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778228892 + }, + "cable ds-rf-port 62:0/0 ofdm-channel 1 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778228892 + }, + "cable ds-rf-port 62:0/0 ofdm-channel 1 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778228892 + }, + "cable ds-rf-port 62:0/0 ofdm-channel 1 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [1026.0]", + "options": [], + "type": "string_or_number", + "current_value": "1026.0", + "updated_at": 1778228892 + }, + "cable ds-rf-port 62:0/0 ofdm-channel 1 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[1218.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778228892 + }, + "cable ds-rf-port 62:0/0 ofdm-channel 1 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[1086.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778228892 + }, + "cable ds-rf-port 62:0/0 ofdm-channel 1 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778228892 + }, + "cable ds-rf-port 62:0/0 ofdm-channel 1 profile control hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778228892 + }, + "cable ds-rf-port 62:0/0 ofdm-channel 1 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778228892 + }, + "cable ds-rf-port 62:0/0 ofdm-channel 1 profile data-1 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778228943 + }, + "cable ds-rf-port 62:0/0 ofdm-channel 1 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778228943 + }, + "cable ds-rf-port 62:0/0 ofdm-channel 1 profile data-2 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778228943 + }, + "cable ds-rf-port 62:0/0 ofdm-channel 1 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778228943 + }, + "cable ds-rf-port 62:0/0 ofdm-channel 1 profile data-3 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778228943 + }, + "cable ds-rf-port 62:0/0 ofdm-channel 1 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778228943 + }, + "cable ds-rf-port 62:0/0 ofdm-channel 1 profile data-4 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778228943 + }, + "cable ds-rf-port 62:0/0 ofdm-channel 1 profile data-5 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778228943 + }, + "cable ds-rf-port 62:0/0 ofdm-channel 1 profile data-5 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778228943 + }, + "cable ds-rf-port 62:0/0 ofdm-channel 1 profile data-6 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam64] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam64", + "updated_at": 1778228943 + }, + "cable ds-rf-port 62:0/0 ofdm-channel 1 profile data-6 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778228943 + }, + "cable ds-rf-port 62:0/0 ofdm-channel 1 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778228943 + }, + "cable ds-rf-port 62:0/0 ofdm-channel 1 profile ncp hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778228943 + }, + "cable ds-rf-port 93:0/0 admin-state": { + "hint": "Description: Administrative State of the DS RF port [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228943 + }, + "cable ds-rf-port 93:0/0 max-occupied-bw-mhz": { + "hint": "Description: Maximum bandwidth occupied by this port in megahertz\nPossible completions:\n[1118.0]", + "options": [], + "type": "string_or_number", + "current_value": "1118.0", + "updated_at": 1778228943 + }, + "cable ds-rf-port 93:0/0 tilt-adjust": { + "hint": "Description: tilt-adjustment\nPossible completions:\n[15.0]", + "options": [], + "type": "string_or_number", + "current_value": "15.0", + "updated_at": 1778228943 + }, + "cable ds-rf-port 93:0/0 base-channel-power-dbmv": { + "hint": "Description: Base channel power level in TenthdB\nPossible completions:\n[47.5]", + "options": [], + "type": "string_or_number", + "current_value": "47.5", + "updated_at": 1778228943 + }, + "cable ds-rf-port 93:0/0 down-channel 0 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228943 + }, + "cable ds-rf-port 93:0/0 down-channel 0 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228943 + }, + "cable ds-rf-port 93:0/0 down-channel 0 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[399.0]", + "options": [], + "type": "string_or_number", + "current_value": "399.0", + "updated_at": 1778228943 + }, + "cable ds-rf-port 93:0/0 down-channel 0 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228943 + }, + "cable ds-rf-port 93:0/0 down-channel 1 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228943 + }, + "cable ds-rf-port 93:0/0 down-channel 1 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228943 + }, + "cable ds-rf-port 93:0/0 down-channel 1 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[405.0]", + "options": [], + "type": "string_or_number", + "current_value": "405.0", + "updated_at": 1778228943 + }, + "cable ds-rf-port 93:0/0 down-channel 1 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228943 + }, + "cable ds-rf-port 93:0/0 down-channel 2 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228943 + }, + "cable ds-rf-port 93:0/0 down-channel 2 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228943 + }, + "cable ds-rf-port 93:0/0 down-channel 2 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[411.0]", + "options": [], + "type": "string_or_number", + "current_value": "411.0", + "updated_at": 1778228943 + }, + "cable ds-rf-port 93:0/0 down-channel 2 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228943 + }, + "cable ds-rf-port 93:0/0 down-channel 3 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228943 + }, + "cable ds-rf-port 93:0/0 down-channel 3 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228994 + }, + "cable ds-rf-port 93:0/0 down-channel 3 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[417.0]", + "options": [], + "type": "string_or_number", + "current_value": "417.0", + "updated_at": 1778228994 + }, + "cable ds-rf-port 93:0/0 down-channel 3 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228994 + }, + "cable ds-rf-port 93:0/0 down-channel 4 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228994 + }, + "cable ds-rf-port 93:0/0 down-channel 4 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228994 + }, + "cable ds-rf-port 93:0/0 down-channel 4 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[423.0]", + "options": [], + "type": "string_or_number", + "current_value": "423.0", + "updated_at": 1778228994 + }, + "cable ds-rf-port 93:0/0 down-channel 4 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228994 + }, + "cable ds-rf-port 93:0/0 down-channel 5 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228994 + }, + "cable ds-rf-port 93:0/0 down-channel 5 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228994 + }, + "cable ds-rf-port 93:0/0 down-channel 5 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[429.0]", + "options": [], + "type": "string_or_number", + "current_value": "429.0", + "updated_at": 1778228994 + }, + "cable ds-rf-port 93:0/0 down-channel 5 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228994 + }, + "cable ds-rf-port 93:0/0 down-channel 6 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228994 + }, + "cable ds-rf-port 93:0/0 down-channel 6 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228994 + }, + "cable ds-rf-port 93:0/0 down-channel 6 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[435.0]", + "options": [], + "type": "string_or_number", + "current_value": "435.0", + "updated_at": 1778228994 + }, + "cable ds-rf-port 93:0/0 down-channel 6 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228994 + }, + "cable ds-rf-port 93:0/0 down-channel 7 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228994 + }, + "cable ds-rf-port 93:0/0 down-channel 7 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228994 + }, + "cable ds-rf-port 93:0/0 down-channel 7 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[441.0]", + "options": [], + "type": "string_or_number", + "current_value": "441.0", + "updated_at": 1778228994 + }, + "cable ds-rf-port 93:0/0 down-channel 7 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228994 + }, + "cable ds-rf-port 93:0/0 down-channel 8 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228994 + }, + "cable ds-rf-port 93:0/0 down-channel 8 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228994 + }, + "cable ds-rf-port 93:0/0 down-channel 8 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[447.0]", + "options": [], + "type": "string_or_number", + "current_value": "447.0", + "updated_at": 1778228994 + }, + "cable ds-rf-port 93:0/0 down-channel 8 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228994 + }, + "cable ds-rf-port 93:0/0 down-channel 9 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228994 + }, + "cable ds-rf-port 93:0/0 down-channel 9 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228994 + }, + "cable ds-rf-port 93:0/0 down-channel 9 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[453.0]", + "options": [], + "type": "string_or_number", + "current_value": "453.0", + "updated_at": 1778228994 + }, + "cable ds-rf-port 93:0/0 down-channel 9 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778228994 + }, + "cable ds-rf-port 93:0/0 down-channel 10 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778228994 + }, + "cable ds-rf-port 93:0/0 down-channel 10 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778228994 + }, + "cable ds-rf-port 93:0/0 down-channel 10 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[459.0]", + "options": [], + "type": "string_or_number", + "current_value": "459.0", + "updated_at": 1778228994 + }, + "cable ds-rf-port 93:0/0 down-channel 10 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229045 + }, + "cable ds-rf-port 93:0/0 down-channel 11 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229045 + }, + "cable ds-rf-port 93:0/0 down-channel 11 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229045 + }, + "cable ds-rf-port 93:0/0 down-channel 11 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[465.0]", + "options": [], + "type": "string_or_number", + "current_value": "465.0", + "updated_at": 1778229045 + }, + "cable ds-rf-port 93:0/0 down-channel 11 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229045 + }, + "cable ds-rf-port 93:0/0 down-channel 12 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229045 + }, + "cable ds-rf-port 93:0/0 down-channel 12 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229045 + }, + "cable ds-rf-port 93:0/0 down-channel 12 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[471.0]", + "options": [], + "type": "string_or_number", + "current_value": "471.0", + "updated_at": 1778229045 + }, + "cable ds-rf-port 93:0/0 down-channel 12 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229045 + }, + "cable ds-rf-port 93:0/0 down-channel 13 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229045 + }, + "cable ds-rf-port 93:0/0 down-channel 13 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229045 + }, + "cable ds-rf-port 93:0/0 down-channel 13 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[477.0]", + "options": [], + "type": "string_or_number", + "current_value": "477.0", + "updated_at": 1778229045 + }, + "cable ds-rf-port 93:0/0 down-channel 13 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229045 + }, + "cable ds-rf-port 93:0/0 down-channel 14 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229045 + }, + "cable ds-rf-port 93:0/0 down-channel 14 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229045 + }, + "cable ds-rf-port 93:0/0 down-channel 14 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[483.0]", + "options": [], + "type": "string_or_number", + "current_value": "483.0", + "updated_at": 1778229045 + }, + "cable ds-rf-port 93:0/0 down-channel 14 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229045 + }, + "cable ds-rf-port 93:0/0 down-channel 15 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229045 + }, + "cable ds-rf-port 93:0/0 down-channel 15 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229045 + }, + "cable ds-rf-port 93:0/0 down-channel 15 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[489.0]", + "options": [], + "type": "string_or_number", + "current_value": "489.0", + "updated_at": 1778229045 + }, + "cable ds-rf-port 93:0/0 down-channel 15 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229045 + }, + "cable ds-rf-port 93:0/0 down-channel 16 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229045 + }, + "cable ds-rf-port 93:0/0 down-channel 16 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229045 + }, + "cable ds-rf-port 93:0/0 down-channel 16 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[495.0]", + "options": [], + "type": "string_or_number", + "current_value": "495.0", + "updated_at": 1778229045 + }, + "cable ds-rf-port 93:0/0 down-channel 16 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229045 + }, + "cable ds-rf-port 93:0/0 down-channel 17 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229045 + }, + "cable ds-rf-port 93:0/0 down-channel 17 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229045 + }, + "cable ds-rf-port 93:0/0 down-channel 17 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[501.0]", + "options": [], + "type": "string_or_number", + "current_value": "501.0", + "updated_at": 1778229045 + }, + "cable ds-rf-port 93:0/0 down-channel 17 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229045 + }, + "cable ds-rf-port 93:0/0 down-channel 18 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229045 + }, + "cable ds-rf-port 93:0/0 down-channel 18 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229096 + }, + "cable ds-rf-port 93:0/0 down-channel 18 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[507.0]", + "options": [], + "type": "string_or_number", + "current_value": "507.0", + "updated_at": 1778229096 + }, + "cable ds-rf-port 93:0/0 down-channel 18 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229096 + }, + "cable ds-rf-port 93:0/0 down-channel 19 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229096 + }, + "cable ds-rf-port 93:0/0 down-channel 19 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229096 + }, + "cable ds-rf-port 93:0/0 down-channel 19 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[513.0]", + "options": [], + "type": "string_or_number", + "current_value": "513.0", + "updated_at": 1778229096 + }, + "cable ds-rf-port 93:0/0 down-channel 19 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229096 + }, + "cable ds-rf-port 93:0/0 down-channel 20 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229096 + }, + "cable ds-rf-port 93:0/0 down-channel 20 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229096 + }, + "cable ds-rf-port 93:0/0 down-channel 20 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[519.0]", + "options": [], + "type": "string_or_number", + "current_value": "519.0", + "updated_at": 1778229096 + }, + "cable ds-rf-port 93:0/0 down-channel 20 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229096 + }, + "cable ds-rf-port 93:0/0 down-channel 21 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229096 + }, + "cable ds-rf-port 93:0/0 down-channel 21 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229096 + }, + "cable ds-rf-port 93:0/0 down-channel 21 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[525.0]", + "options": [], + "type": "string_or_number", + "current_value": "525.0", + "updated_at": 1778229096 + }, + "cable ds-rf-port 93:0/0 down-channel 21 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229096 + }, + "cable ds-rf-port 93:0/0 down-channel 22 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229096 + }, + "cable ds-rf-port 93:0/0 down-channel 22 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229096 + }, + "cable ds-rf-port 93:0/0 down-channel 22 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[531.0]", + "options": [], + "type": "string_or_number", + "current_value": "531.0", + "updated_at": 1778229096 + }, + "cable ds-rf-port 93:0/0 down-channel 22 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229096 + }, + "cable ds-rf-port 93:0/0 down-channel 23 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229096 + }, + "cable ds-rf-port 93:0/0 down-channel 23 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229096 + }, + "cable ds-rf-port 93:0/0 down-channel 23 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[537.0]", + "options": [], + "type": "string_or_number", + "current_value": "537.0", + "updated_at": 1778229096 + }, + "cable ds-rf-port 93:0/0 down-channel 23 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229096 + }, + "cable ds-rf-port 93:0/0 down-channel 24 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229096 + }, + "cable ds-rf-port 93:0/0 down-channel 24 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229096 + }, + "cable ds-rf-port 93:0/0 down-channel 24 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[543.0]", + "options": [], + "type": "string_or_number", + "current_value": "543.0", + "updated_at": 1778229096 + }, + "cable ds-rf-port 93:0/0 down-channel 24 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229096 + }, + "cable ds-rf-port 93:0/0 down-channel 25 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229096 + }, + "cable ds-rf-port 93:0/0 down-channel 25 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229096 + }, + "cable ds-rf-port 93:0/0 down-channel 25 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[549.0]", + "options": [], + "type": "string_or_number", + "current_value": "549.0", + "updated_at": 1778229096 + }, + "cable ds-rf-port 93:0/0 down-channel 25 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229147 + }, + "cable ds-rf-port 93:0/0 down-channel 26 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229147 + }, + "cable ds-rf-port 93:0/0 down-channel 26 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229147 + }, + "cable ds-rf-port 93:0/0 down-channel 26 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[555.0]", + "options": [], + "type": "string_or_number", + "current_value": "555.0", + "updated_at": 1778229147 + }, + "cable ds-rf-port 93:0/0 down-channel 26 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229147 + }, + "cable ds-rf-port 93:0/0 down-channel 27 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229147 + }, + "cable ds-rf-port 93:0/0 down-channel 27 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229147 + }, + "cable ds-rf-port 93:0/0 down-channel 27 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[561.0]", + "options": [], + "type": "string_or_number", + "current_value": "561.0", + "updated_at": 1778229147 + }, + "cable ds-rf-port 93:0/0 down-channel 27 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229147 + }, + "cable ds-rf-port 93:0/0 down-channel 28 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229147 + }, + "cable ds-rf-port 93:0/0 down-channel 28 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229147 + }, + "cable ds-rf-port 93:0/0 down-channel 28 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[567.0]", + "options": [], + "type": "string_or_number", + "current_value": "567.0", + "updated_at": 1778229147 + }, + "cable ds-rf-port 93:0/0 down-channel 28 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229147 + }, + "cable ds-rf-port 93:0/0 down-channel 29 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229147 + }, + "cable ds-rf-port 93:0/0 down-channel 29 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229147 + }, + "cable ds-rf-port 93:0/0 down-channel 29 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[573.0]", + "options": [], + "type": "string_or_number", + "current_value": "573.0", + "updated_at": 1778229147 + }, + "cable ds-rf-port 93:0/0 down-channel 29 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229147 + }, + "cable ds-rf-port 93:0/0 down-channel 30 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229147 + }, + "cable ds-rf-port 93:0/0 down-channel 30 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229147 + }, + "cable ds-rf-port 93:0/0 down-channel 30 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[579.0]", + "options": [], + "type": "string_or_number", + "current_value": "579.0", + "updated_at": 1778229147 + }, + "cable ds-rf-port 93:0/0 down-channel 30 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229147 + }, + "cable ds-rf-port 93:0/0 down-channel 31 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229147 + }, + "cable ds-rf-port 93:0/0 down-channel 31 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229147 + }, + "cable ds-rf-port 93:0/0 down-channel 31 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[585.0]", + "options": [], + "type": "string_or_number", + "current_value": "585.0", + "updated_at": 1778229147 + }, + "cable ds-rf-port 93:0/0 down-channel 31 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229147 + }, + "cable ds-rf-port 93:0/0 down-channel 32 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229147 + }, + "cable ds-rf-port 93:0/0 down-channel 32 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229147 + }, + "cable ds-rf-port 93:0/0 down-channel 32 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[591.0]", + "options": [], + "type": "string_or_number", + "current_value": "591.0", + "updated_at": 1778229147 + }, + "cable ds-rf-port 93:0/0 down-channel 32 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229147 + }, + "cable ds-rf-port 93:0/0 down-channel 33 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229147 + }, + "cable ds-rf-port 93:0/0 down-channel 33 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229198 + }, + "cable ds-rf-port 93:0/0 down-channel 33 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[597.0]", + "options": [], + "type": "string_or_number", + "current_value": "597.0", + "updated_at": 1778229198 + }, + "cable ds-rf-port 93:0/0 down-channel 33 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229198 + }, + "cable ds-rf-port 93:0/0 down-channel 34 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229198 + }, + "cable ds-rf-port 93:0/0 down-channel 34 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229198 + }, + "cable ds-rf-port 93:0/0 down-channel 34 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[603.0]", + "options": [], + "type": "string_or_number", + "current_value": "603.0", + "updated_at": 1778229198 + }, + "cable ds-rf-port 93:0/0 down-channel 34 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229198 + }, + "cable ds-rf-port 93:0/0 down-channel 35 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229198 + }, + "cable ds-rf-port 93:0/0 down-channel 35 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229198 + }, + "cable ds-rf-port 93:0/0 down-channel 35 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[609.0]", + "options": [], + "type": "string_or_number", + "current_value": "609.0", + "updated_at": 1778229198 + }, + "cable ds-rf-port 93:0/0 down-channel 35 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229198 + }, + "cable ds-rf-port 93:0/0 down-channel 36 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229198 + }, + "cable ds-rf-port 93:0/0 down-channel 36 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229198 + }, + "cable ds-rf-port 93:0/0 down-channel 36 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[615.0]", + "options": [], + "type": "string_or_number", + "current_value": "615.0", + "updated_at": 1778229198 + }, + "cable ds-rf-port 93:0/0 down-channel 36 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229198 + }, + "cable ds-rf-port 93:0/0 down-channel 37 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229198 + }, + "cable ds-rf-port 93:0/0 down-channel 37 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229198 + }, + "cable ds-rf-port 93:0/0 down-channel 37 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[621.0]", + "options": [], + "type": "string_or_number", + "current_value": "621.0", + "updated_at": 1778229198 + }, + "cable ds-rf-port 93:0/0 down-channel 37 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229198 + }, + "cable ds-rf-port 93:0/0 down-channel 38 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229198 + }, + "cable ds-rf-port 93:0/0 down-channel 38 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229198 + }, + "cable ds-rf-port 93:0/0 down-channel 38 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[627.0]", + "options": [], + "type": "string_or_number", + "current_value": "627.0", + "updated_at": 1778229198 + }, + "cable ds-rf-port 93:0/0 down-channel 38 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229198 + }, + "cable ds-rf-port 93:0/0 down-channel 39 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229198 + }, + "cable ds-rf-port 93:0/0 down-channel 39 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229198 + }, + "cable ds-rf-port 93:0/0 down-channel 39 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[633.0]", + "options": [], + "type": "string_or_number", + "current_value": "633.0", + "updated_at": 1778229198 + }, + "cable ds-rf-port 93:0/0 down-channel 39 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229198 + }, + "cable ds-rf-port 93:0/0 down-channel 40 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229198 + }, + "cable ds-rf-port 93:0/0 down-channel 40 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229198 + }, + "cable ds-rf-port 93:0/0 down-channel 40 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[639.0]", + "options": [], + "type": "string_or_number", + "current_value": "639.0", + "updated_at": 1778229198 + }, + "cable ds-rf-port 93:0/0 down-channel 40 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229249 + }, + "cable ds-rf-port 93:0/0 down-channel 41 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229249 + }, + "cable ds-rf-port 93:0/0 down-channel 41 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229249 + }, + "cable ds-rf-port 93:0/0 down-channel 41 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[645.0]", + "options": [], + "type": "string_or_number", + "current_value": "645.0", + "updated_at": 1778229249 + }, + "cable ds-rf-port 93:0/0 down-channel 41 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229249 + }, + "cable ds-rf-port 93:0/0 down-channel 42 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229249 + }, + "cable ds-rf-port 93:0/0 down-channel 42 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229249 + }, + "cable ds-rf-port 93:0/0 down-channel 42 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[651.0]", + "options": [], + "type": "string_or_number", + "current_value": "651.0", + "updated_at": 1778229249 + }, + "cable ds-rf-port 93:0/0 down-channel 42 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229249 + }, + "cable ds-rf-port 93:0/0 down-channel 43 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229249 + }, + "cable ds-rf-port 93:0/0 down-channel 43 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229249 + }, + "cable ds-rf-port 93:0/0 down-channel 43 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[657.0]", + "options": [], + "type": "string_or_number", + "current_value": "657.0", + "updated_at": 1778229249 + }, + "cable ds-rf-port 93:0/0 down-channel 43 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229249 + }, + "cable ds-rf-port 93:0/0 down-channel 51 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229249 + }, + "cable ds-rf-port 93:0/0 down-channel 51 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229249 + }, + "cable ds-rf-port 93:0/0 down-channel 51 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[177.0]", + "options": [], + "type": "string_or_number", + "current_value": "177.0", + "updated_at": 1778229249 + }, + "cable ds-rf-port 93:0/0 down-channel 51 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229249 + }, + "cable ds-rf-port 93:0/0 down-channel 52 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229249 + }, + "cable ds-rf-port 93:0/0 down-channel 52 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229249 + }, + "cable ds-rf-port 93:0/0 down-channel 52 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[183.0]", + "options": [], + "type": "string_or_number", + "current_value": "183.0", + "updated_at": 1778229249 + }, + "cable ds-rf-port 93:0/0 down-channel 52 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229249 + }, + "cable ds-rf-port 93:0/0 down-channel 53 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229249 + }, + "cable ds-rf-port 93:0/0 down-channel 53 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229249 + }, + "cable ds-rf-port 93:0/0 down-channel 53 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[189.0]", + "options": [], + "type": "string_or_number", + "current_value": "189.0", + "updated_at": 1778229249 + }, + "cable ds-rf-port 93:0/0 down-channel 53 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229249 + }, + "cable ds-rf-port 93:0/0 down-channel 54 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229249 + }, + "cable ds-rf-port 93:0/0 down-channel 54 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229249 + }, + "cable ds-rf-port 93:0/0 down-channel 54 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[195.0]", + "options": [], + "type": "string_or_number", + "current_value": "195.0", + "updated_at": 1778229249 + }, + "cable ds-rf-port 93:0/0 down-channel 54 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229249 + }, + "cable ds-rf-port 93:0/0 down-channel 55 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229249 + }, + "cable ds-rf-port 93:0/0 down-channel 55 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229300 + }, + "cable ds-rf-port 93:0/0 down-channel 55 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[201.0]", + "options": [], + "type": "string_or_number", + "current_value": "201.0", + "updated_at": 1778229300 + }, + "cable ds-rf-port 93:0/0 down-channel 55 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229300 + }, + "cable ds-rf-port 93:0/0 down-channel 56 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229300 + }, + "cable ds-rf-port 93:0/0 down-channel 56 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229300 + }, + "cable ds-rf-port 93:0/0 down-channel 56 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[207.0]", + "options": [], + "type": "string_or_number", + "current_value": "207.0", + "updated_at": 1778229300 + }, + "cable ds-rf-port 93:0/0 down-channel 56 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229300 + }, + "cable ds-rf-port 93:0/0 down-channel 57 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229300 + }, + "cable ds-rf-port 93:0/0 down-channel 57 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229300 + }, + "cable ds-rf-port 93:0/0 down-channel 57 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[213.0]", + "options": [], + "type": "string_or_number", + "current_value": "213.0", + "updated_at": 1778229300 + }, + "cable ds-rf-port 93:0/0 down-channel 57 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229300 + }, + "cable ds-rf-port 93:0/0 down-channel 58 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229300 + }, + "cable ds-rf-port 93:0/0 down-channel 58 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229300 + }, + "cable ds-rf-port 93:0/0 down-channel 58 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[129.0]", + "options": [], + "type": "string_or_number", + "current_value": "129.0", + "updated_at": 1778229300 + }, + "cable ds-rf-port 93:0/0 down-channel 58 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229300 + }, + "cable ds-rf-port 93:0/0 down-channel 59 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229300 + }, + "cable ds-rf-port 93:0/0 down-channel 59 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229300 + }, + "cable ds-rf-port 93:0/0 down-channel 59 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[135.0]", + "options": [], + "type": "string_or_number", + "current_value": "135.0", + "updated_at": 1778229300 + }, + "cable ds-rf-port 93:0/0 down-channel 59 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229300 + }, + "cable ds-rf-port 93:0/0 down-channel 60 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229300 + }, + "cable ds-rf-port 93:0/0 down-channel 60 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229300 + }, + "cable ds-rf-port 93:0/0 down-channel 60 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[357.0]", + "options": [], + "type": "string_or_number", + "current_value": "357.0", + "updated_at": 1778229300 + }, + "cable ds-rf-port 93:0/0 down-channel 60 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229300 + }, + "cable ds-rf-port 93:0/0 down-channel 61 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229300 + }, + "cable ds-rf-port 93:0/0 down-channel 61 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229300 + }, + "cable ds-rf-port 93:0/0 down-channel 61 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[147.0]", + "options": [], + "type": "string_or_number", + "current_value": "147.0", + "updated_at": 1778229300 + }, + "cable ds-rf-port 93:0/0 down-channel 61 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229300 + }, + "cable ds-rf-port 93:0/0 down-channel 64 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229300 + }, + "cable ds-rf-port 93:0/0 down-channel 64 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229300 + }, + "cable ds-rf-port 93:0/0 down-channel 64 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[165.0]", + "options": [], + "type": "string_or_number", + "current_value": "165.0", + "updated_at": 1778229300 + }, + "cable ds-rf-port 93:0/0 down-channel 64 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229351 + }, + "cable ds-rf-port 93:0/0 down-channel 65 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229351 + }, + "cable ds-rf-port 93:0/0 down-channel 65 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229351 + }, + "cable ds-rf-port 93:0/0 down-channel 65 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[171.0]", + "options": [], + "type": "string_or_number", + "current_value": "171.0", + "updated_at": 1778229351 + }, + "cable ds-rf-port 93:0/0 down-channel 65 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229351 + }, + "cable ds-rf-port 93:0/0 down-channel 66 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229351 + }, + "cable ds-rf-port 93:0/0 down-channel 66 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229351 + }, + "cable ds-rf-port 93:0/0 down-channel 66 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[219.0]", + "options": [], + "type": "string_or_number", + "current_value": "219.0", + "updated_at": 1778229351 + }, + "cable ds-rf-port 93:0/0 down-channel 66 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229351 + }, + "cable ds-rf-port 93:0/0 down-channel 67 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229351 + }, + "cable ds-rf-port 93:0/0 down-channel 67 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229351 + }, + "cable ds-rf-port 93:0/0 down-channel 67 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[225.0]", + "options": [], + "type": "string_or_number", + "current_value": "225.0", + "updated_at": 1778229351 + }, + "cable ds-rf-port 93:0/0 down-channel 67 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229351 + }, + "cable ds-rf-port 93:0/0 down-channel 68 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229351 + }, + "cable ds-rf-port 93:0/0 down-channel 68 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229351 + }, + "cable ds-rf-port 93:0/0 down-channel 68 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[231.0]", + "options": [], + "type": "string_or_number", + "current_value": "231.0", + "updated_at": 1778229351 + }, + "cable ds-rf-port 93:0/0 down-channel 68 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229351 + }, + "cable ds-rf-port 93:0/0 down-channel 69 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229351 + }, + "cable ds-rf-port 93:0/0 down-channel 69 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229351 + }, + "cable ds-rf-port 93:0/0 down-channel 69 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[237.0]", + "options": [], + "type": "string_or_number", + "current_value": "237.0", + "updated_at": 1778229351 + }, + "cable ds-rf-port 93:0/0 down-channel 69 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229351 + }, + "cable ds-rf-port 93:0/0 down-channel 70 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229351 + }, + "cable ds-rf-port 93:0/0 down-channel 70 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229351 + }, + "cable ds-rf-port 93:0/0 down-channel 70 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[243.0]", + "options": [], + "type": "string_or_number", + "current_value": "243.0", + "updated_at": 1778229351 + }, + "cable ds-rf-port 93:0/0 down-channel 70 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229351 + }, + "cable ds-rf-port 93:0/0 down-channel 71 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229351 + }, + "cable ds-rf-port 93:0/0 down-channel 71 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229351 + }, + "cable ds-rf-port 93:0/0 down-channel 71 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[249.0]", + "options": [], + "type": "string_or_number", + "current_value": "249.0", + "updated_at": 1778229351 + }, + "cable ds-rf-port 93:0/0 down-channel 71 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229351 + }, + "cable ds-rf-port 93:0/0 down-channel 72 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229351 + }, + "cable ds-rf-port 93:0/0 down-channel 72 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229402 + }, + "cable ds-rf-port 93:0/0 down-channel 72 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[255.0]", + "options": [], + "type": "string_or_number", + "current_value": "255.0", + "updated_at": 1778229402 + }, + "cable ds-rf-port 93:0/0 down-channel 72 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229402 + }, + "cable ds-rf-port 93:0/0 down-channel 73 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229402 + }, + "cable ds-rf-port 93:0/0 down-channel 73 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229402 + }, + "cable ds-rf-port 93:0/0 down-channel 73 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[261.0]", + "options": [], + "type": "string_or_number", + "current_value": "261.0", + "updated_at": 1778229402 + }, + "cable ds-rf-port 93:0/0 down-channel 73 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229402 + }, + "cable ds-rf-port 93:0/0 down-channel 74 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229402 + }, + "cable ds-rf-port 93:0/0 down-channel 74 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229402 + }, + "cable ds-rf-port 93:0/0 down-channel 74 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[267.0]", + "options": [], + "type": "string_or_number", + "current_value": "267.0", + "updated_at": 1778229402 + }, + "cable ds-rf-port 93:0/0 down-channel 74 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229402 + }, + "cable ds-rf-port 93:0/0 down-channel 75 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229402 + }, + "cable ds-rf-port 93:0/0 down-channel 75 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229402 + }, + "cable ds-rf-port 93:0/0 down-channel 75 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[273.0]", + "options": [], + "type": "string_or_number", + "current_value": "273.0", + "updated_at": 1778229402 + }, + "cable ds-rf-port 93:0/0 down-channel 75 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229402 + }, + "cable ds-rf-port 93:0/0 down-channel 76 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229402 + }, + "cable ds-rf-port 93:0/0 down-channel 76 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229402 + }, + "cable ds-rf-port 93:0/0 down-channel 76 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[279.0]", + "options": [], + "type": "string_or_number", + "current_value": "279.0", + "updated_at": 1778229402 + }, + "cable ds-rf-port 93:0/0 down-channel 76 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229402 + }, + "cable ds-rf-port 93:0/0 down-channel 77 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229402 + }, + "cable ds-rf-port 93:0/0 down-channel 77 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229402 + }, + "cable ds-rf-port 93:0/0 down-channel 77 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[285.0]", + "options": [], + "type": "string_or_number", + "current_value": "285.0", + "updated_at": 1778229402 + }, + "cable ds-rf-port 93:0/0 down-channel 77 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229402 + }, + "cable ds-rf-port 93:0/0 down-channel 78 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229402 + }, + "cable ds-rf-port 93:0/0 down-channel 78 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229402 + }, + "cable ds-rf-port 93:0/0 down-channel 78 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[291.0]", + "options": [], + "type": "string_or_number", + "current_value": "291.0", + "updated_at": 1778229402 + }, + "cable ds-rf-port 93:0/0 down-channel 78 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229402 + }, + "cable ds-rf-port 93:0/0 down-channel 79 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229402 + }, + "cable ds-rf-port 93:0/0 down-channel 79 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229402 + }, + "cable ds-rf-port 93:0/0 down-channel 79 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[297.0]", + "options": [], + "type": "string_or_number", + "current_value": "297.0", + "updated_at": 1778229402 + }, + "cable ds-rf-port 93:0/0 down-channel 79 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229454 + }, + "cable ds-rf-port 93:0/0 down-channel 80 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229454 + }, + "cable ds-rf-port 93:0/0 down-channel 80 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229454 + }, + "cable ds-rf-port 93:0/0 down-channel 80 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[303.0]", + "options": [], + "type": "string_or_number", + "current_value": "303.0", + "updated_at": 1778229454 + }, + "cable ds-rf-port 93:0/0 down-channel 80 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229454 + }, + "cable ds-rf-port 93:0/0 down-channel 81 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229454 + }, + "cable ds-rf-port 93:0/0 down-channel 81 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229454 + }, + "cable ds-rf-port 93:0/0 down-channel 81 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[309.0]", + "options": [], + "type": "string_or_number", + "current_value": "309.0", + "updated_at": 1778229454 + }, + "cable ds-rf-port 93:0/0 down-channel 81 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229454 + }, + "cable ds-rf-port 93:0/0 down-channel 82 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229454 + }, + "cable ds-rf-port 93:0/0 down-channel 82 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229454 + }, + "cable ds-rf-port 93:0/0 down-channel 82 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[315.0]", + "options": [], + "type": "string_or_number", + "current_value": "315.0", + "updated_at": 1778229454 + }, + "cable ds-rf-port 93:0/0 down-channel 82 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229454 + }, + "cable ds-rf-port 93:0/0 down-channel 83 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229454 + }, + "cable ds-rf-port 93:0/0 down-channel 83 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229454 + }, + "cable ds-rf-port 93:0/0 down-channel 83 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[321.0]", + "options": [], + "type": "string_or_number", + "current_value": "321.0", + "updated_at": 1778229454 + }, + "cable ds-rf-port 93:0/0 down-channel 83 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229454 + }, + "cable ds-rf-port 93:0/0 down-channel 84 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229454 + }, + "cable ds-rf-port 93:0/0 down-channel 84 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229454 + }, + "cable ds-rf-port 93:0/0 down-channel 84 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[327.0]", + "options": [], + "type": "string_or_number", + "current_value": "327.0", + "updated_at": 1778229454 + }, + "cable ds-rf-port 93:0/0 down-channel 84 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229454 + }, + "cable ds-rf-port 93:0/0 down-channel 85 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229454 + }, + "cable ds-rf-port 93:0/0 down-channel 85 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229454 + }, + "cable ds-rf-port 93:0/0 down-channel 85 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[333.0]", + "options": [], + "type": "string_or_number", + "current_value": "333.0", + "updated_at": 1778229454 + }, + "cable ds-rf-port 93:0/0 down-channel 85 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229454 + }, + "cable ds-rf-port 93:0/0 down-channel 86 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229454 + }, + "cable ds-rf-port 93:0/0 down-channel 86 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229454 + }, + "cable ds-rf-port 93:0/0 down-channel 86 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[339.0]", + "options": [], + "type": "string_or_number", + "current_value": "339.0", + "updated_at": 1778229454 + }, + "cable ds-rf-port 93:0/0 down-channel 86 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229454 + }, + "cable ds-rf-port 93:0/0 down-channel 87 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229454 + }, + "cable ds-rf-port 93:0/0 down-channel 87 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229505 + }, + "cable ds-rf-port 93:0/0 down-channel 87 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[345.0]", + "options": [], + "type": "string_or_number", + "current_value": "345.0", + "updated_at": 1778229505 + }, + "cable ds-rf-port 93:0/0 down-channel 87 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229505 + }, + "cable ds-rf-port 93:0/0 down-channel 88 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229505 + }, + "cable ds-rf-port 93:0/0 down-channel 88 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229505 + }, + "cable ds-rf-port 93:0/0 down-channel 88 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[351.0]", + "options": [], + "type": "string_or_number", + "current_value": "351.0", + "updated_at": 1778229505 + }, + "cable ds-rf-port 93:0/0 down-channel 88 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229505 + }, + "cable ds-rf-port 93:0/0 down-channel 89 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229505 + }, + "cable ds-rf-port 93:0/0 down-channel 89 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229505 + }, + "cable ds-rf-port 93:0/0 down-channel 89 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[375.0]", + "options": [], + "type": "string_or_number", + "current_value": "375.0", + "updated_at": 1778229505 + }, + "cable ds-rf-port 93:0/0 down-channel 89 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229505 + }, + "cable ds-rf-port 93:0/0 down-channel 90 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229505 + }, + "cable ds-rf-port 93:0/0 down-channel 90 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229505 + }, + "cable ds-rf-port 93:0/0 down-channel 90 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[363.0]", + "options": [], + "type": "string_or_number", + "current_value": "363.0", + "updated_at": 1778229505 + }, + "cable ds-rf-port 93:0/0 down-channel 90 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229505 + }, + "cable ds-rf-port 93:0/0 down-channel 91 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229505 + }, + "cable ds-rf-port 93:0/0 down-channel 91 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229505 + }, + "cable ds-rf-port 93:0/0 down-channel 91 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[369.0]", + "options": [], + "type": "string_or_number", + "current_value": "369.0", + "updated_at": 1778229505 + }, + "cable ds-rf-port 93:0/0 down-channel 91 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229505 + }, + "cable ds-rf-port 93:0/0 down-channel 93 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229505 + }, + "cable ds-rf-port 93:0/0 down-channel 93 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229505 + }, + "cable ds-rf-port 93:0/0 down-channel 93 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[381.0]", + "options": [], + "type": "string_or_number", + "current_value": "381.0", + "updated_at": 1778229505 + }, + "cable ds-rf-port 93:0/0 down-channel 93 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229505 + }, + "cable ds-rf-port 93:0/0 down-channel 94 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229505 + }, + "cable ds-rf-port 93:0/0 down-channel 94 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229505 + }, + "cable ds-rf-port 93:0/0 down-channel 94 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[387.0]", + "options": [], + "type": "string_or_number", + "current_value": "387.0", + "updated_at": 1778229505 + }, + "cable ds-rf-port 93:0/0 down-channel 94 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229505 + }, + "cable ds-rf-port 93:0/0 down-channel 95 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229505 + }, + "cable ds-rf-port 93:0/0 down-channel 95 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229505 + }, + "cable ds-rf-port 93:0/0 down-channel 95 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[393.0]", + "options": [], + "type": "string_or_number", + "current_value": "393.0", + "updated_at": 1778229505 + }, + "cable ds-rf-port 93:0/0 down-channel 95 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229556 + }, + "cable ds-rf-port 93:0/0 down-channel 96 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229556 + }, + "cable ds-rf-port 93:0/0 down-channel 96 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229556 + }, + "cable ds-rf-port 93:0/0 down-channel 96 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[117.0]", + "options": [], + "type": "string_or_number", + "current_value": "117.0", + "updated_at": 1778229556 + }, + "cable ds-rf-port 93:0/0 down-channel 96 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229556 + }, + "cable ds-rf-port 93:0/0 down-channel 97 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229556 + }, + "cable ds-rf-port 93:0/0 down-channel 97 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229556 + }, + "cable ds-rf-port 93:0/0 down-channel 97 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[153.0]", + "options": [], + "type": "string_or_number", + "current_value": "153.0", + "updated_at": 1778229556 + }, + "cable ds-rf-port 93:0/0 down-channel 97 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229556 + }, + "cable ds-rf-port 93:0/0 down-channel 98 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229556 + }, + "cable ds-rf-port 93:0/0 down-channel 98 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229556 + }, + "cable ds-rf-port 93:0/0 down-channel 98 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[159.0]", + "options": [], + "type": "string_or_number", + "current_value": "159.0", + "updated_at": 1778229556 + }, + "cable ds-rf-port 93:0/0 down-channel 98 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229556 + }, + "cable ds-rf-port 93:0/0 ofdm-channel 0 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229556 + }, + "cable ds-rf-port 93:0/0 ofdm-channel 0 default-profile": { + "hint": "Description: Default OFDM channel profile\nPossible completions:\n[data-1] control data-1 ncp", + "options": [ + "control", + "data-1", + "ncp" + ], + "type": "list", + "current_value": "data-1", + "updated_at": 1778229556 + }, + "cable ds-rf-port 93:0/0 ofdm-channel 0 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778229556 + }, + "cable ds-rf-port 93:0/0 ofdm-channel 0 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778229556 + }, + "cable ds-rf-port 93:0/0 ofdm-channel 0 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778229556 + }, + "cable ds-rf-port 93:0/0 ofdm-channel 0 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [660.0]", + "options": [], + "type": "string_or_number", + "current_value": "660.0", + "updated_at": 1778229556 + }, + "cable ds-rf-port 93:0/0 ofdm-channel 0 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[810.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778229556 + }, + "cable ds-rf-port 93:0/0 ofdm-channel 0 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[690.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778229556 + }, + "cable ds-rf-port 93:0/0 ofdm-channel 0 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778229556 + }, + "cable ds-rf-port 93:0/0 ofdm-channel 0 profile control hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778229556 + }, + "cable ds-rf-port 93:0/0 ofdm-channel 0 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778229556 + }, + "cable ds-rf-port 93:0/0 ofdm-channel 0 profile data-1 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[0.0]", + "options": [], + "type": "string_or_number", + "current_value": "0.0", + "updated_at": 1778229556 + }, + "cable ds-rf-port 93:0/0 ofdm-channel 0 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778229556 + }, + "cable ds-rf-port 93:0/0 ofdm-channel 0 profile ncp hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778229556 + }, + "cable ds-rf-port 93:0/0 ofdm-channel 1 admin-state": { + "hint": "Description: Administrative State of the ofdm down stream channel [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229556 + }, + "cable ds-rf-port 93:0/0 ofdm-channel 1 auto-profile-change": { + "hint": "Description: Enable/disable automatic profile changes\nPossible completions:\n[disabled] disabled enabled", + "options": [ + "disabled", + "enabled" + ], + "type": "list", + "current_value": "disabled", + "updated_at": 1778229556 + }, + "cable ds-rf-port 93:0/0 ofdm-channel 1 default-profile": { + "hint": "Description: Default OFDM channel profile\nPossible completions:\n[data-1] control data-1 data-2 data-3 data-4 data-5 data-6 ncp", + "options": [ + "control", + "data-1", + "data-2", + "data-3", + "data-4", + "data-5", + "data-6", + "ncp" + ], + "type": "list", + "current_value": "data-1", + "updated_at": 1778229556 + }, + "cable ds-rf-port 93:0/0 ofdm-channel 1 lower-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[1] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "1", + "updated_at": 1778229607 + }, + "cable ds-rf-port 93:0/0 ofdm-channel 1 query-period-sec": { + "hint": "Description: Define period at which modems are queried for MER on each profile.\nPossible completions:\n[100]", + "options": [], + "type": "string_or_number", + "current_value": "100", + "updated_at": 1778229607 + }, + "cable ds-rf-port 93:0/0 ofdm-channel 1 subcarrier-spacing": { + "hint": "Description: The width of an OFDM channel\nPossible completions:\n[50khz] 25khz 50khz other", + "options": [ + "25khz", + "50khz", + "other" + ], + "type": "list", + "current_value": "50khz", + "updated_at": 1778229607 + }, + "cable ds-rf-port 93:0/0 ofdm-channel 1 unfit-profile-mins": { + "hint": "Description: Defines how long the modulation profile will be unavailable for selection.\nPossible completions:\n[0]", + "options": [], + "type": "string_or_number", + "current_value": "0", + "updated_at": 1778229607 + }, + "cable ds-rf-port 93:0/0 ofdm-channel 1 upper-guard-band-index": { + "hint": "Description: Width of guard band below lowest frequency active subcarrrier on a channel. If not present, first guardband in list is used\nPossible completions:\n[2] 1 2", + "options": [ + "1", + "2" + ], + "type": "list", + "current_value": "2", + "updated_at": 1778229607 + }, + "cable ds-rf-port 93:0/0 ofdm-channel 1 lower-bdry-freq-mhz": { + "hint": "Description: Set the lower boundary frequency for the Channel\nPossible completions:\n<108.000 .. 1194.000> [810.0]", + "options": [], + "type": "string_or_number", + "current_value": "810.0", + "updated_at": 1778229607 + }, + "cable ds-rf-port 93:0/0 ofdm-channel 1 upper-bdry-freq-mhz": { + "hint": "Description: Set the upper boundary frequency for the Channel\nPossible completions:\n<132.0 .. 1218.0> Upper boundary edge in MHz[1002.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778229607 + }, + "cable ds-rf-port 93:0/0 ofdm-channel 1 plc-blk-freq-mhz": { + "hint": "Description: The center frequency of the lowest subcarrier\nPossible completions:\n<108.000 .. 1218.000> PLC block frequency[957.0]", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778229607 + }, + "cable ds-rf-port 93:0/0 ofdm-channel 1 profile control default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778229607 + }, + "cable ds-rf-port 93:0/0 ofdm-channel 1 profile control hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778229607 + }, + "cable ds-rf-port 93:0/0 ofdm-channel 1 profile data-1 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam4096] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam4096", + "updated_at": 1778229607 + }, + "cable ds-rf-port 93:0/0 ofdm-channel 1 profile data-1 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778229607 + }, + "cable ds-rf-port 93:0/0 ofdm-channel 1 profile data-2 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam2048] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam2048", + "updated_at": 1778229607 + }, + "cable ds-rf-port 93:0/0 ofdm-channel 1 profile data-2 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778229607 + }, + "cable ds-rf-port 93:0/0 ofdm-channel 1 profile data-3 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam1024] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam1024", + "updated_at": 1778229607 + }, + "cable ds-rf-port 93:0/0 ofdm-channel 1 profile data-3 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778229607 + }, + "cable ds-rf-port 93:0/0 ofdm-channel 1 profile data-4 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam512] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam512", + "updated_at": 1778229607 + }, + "cable ds-rf-port 93:0/0 ofdm-channel 1 profile data-4 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778229607 + }, + "cable ds-rf-port 93:0/0 ofdm-channel 1 profile data-5 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam256] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam256", + "updated_at": 1778229607 + }, + "cable ds-rf-port 93:0/0 ofdm-channel 1 profile data-5 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778229607 + }, + "cable ds-rf-port 93:0/0 ofdm-channel 1 profile data-6 default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam64] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam64", + "updated_at": 1778229607 + }, + "cable ds-rf-port 93:0/0 ofdm-channel 1 profile data-6 hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778229607 + }, + "cable ds-rf-port 93:0/0 ofdm-channel 1 profile ncp default-modulation": { + "hint": "Description: Default modulation for this profile on all OFDM channel sub-carriers\nPossible completions:\n[qam16] qam16 qam64 qam128 qam256 qam512 qam1024 qam2048 qam4096 qam8192 qam16384 qpsk zero-bit-load", + "options": [ + "qam16", + "qam64", + "qam128", + "qam256", + "qam512", + "qam1024", + "qam2048", + "qam4096", + "qam8192", + "qam16384", + "qpsk", + "zero-bit-load" + ], + "type": "list", + "current_value": "qam16", + "updated_at": 1778229607 + }, + "cable ds-rf-port 93:0/0 ofdm-channel 1 profile ncp hysteresis-db": { + "hint": "Description: MER Hysteresis for switching profiles, in dB\nPossible completions:\n[1.0]", + "options": [], + "type": "string_or_number", + "current_value": "1.0", + "updated_at": 1778229607 + }, + "cable ds-rf-port 93:0/0 oob-channel 0 frequency-mhz": { + "hint": "Description: OOB channel center frequency\nPossible completions:\n[104.2]", + "options": [], + "type": "string_or_number", + "current_value": "104.2", + "updated_at": 1778229607 + }, + "cable ds-rf-port 93:0/0 oob-channel 0 type": { + "hint": "Description: Type of OOB channel\nPossible completions:\n[55-1] 55-1 ndf", + "options": [ + "55-1", + "ndf" + ], + "type": "list", + "current_value": "55-1", + "updated_at": 1778229607 + }, + "cable ds-rf-port 93:0/0 oob-channel 0 oob-core-id": { + "hint": "Description: The OOB Core Id\nPossible completions:\n [0] 0", + "options": [], + "type": "string_or_number", + "current_value": "0", + "updated_at": 1778229607 + }, + "cable ds-rf-port 93:0/0 oob-channel 0 controller": { + "hint": "Possible completions:\nbuffer Buffer levels in word(8 bytes) 0..1024", + "options": [], + "type": "string_or_number", + "current_value": null, + "updated_at": 1778229607 + }, + "cable ds-rf-port 99:0/0 admin-state": { + "hint": "Description: Administrative State of the DS RF port [default down]\nPossible completions:\n[up] down up", + "options": [ + "down", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229607 + }, + "cable ds-rf-port 99:0/0 max-occupied-bw-mhz": { + "hint": "Description: Maximum bandwidth occupied by this port in megahertz\nPossible completions:\n[1118.0]", + "options": [], + "type": "string_or_number", + "current_value": "1118.0", + "updated_at": 1778229607 + }, + "cable ds-rf-port 99:0/0 tilt-adjust": { + "hint": "Description: tilt-adjustment\nPossible completions:\n[15.0]", + "options": [], + "type": "string_or_number", + "current_value": "15.0", + "updated_at": 1778229658 + }, + "cable ds-rf-port 99:0/0 base-channel-power-dbmv": { + "hint": "Description: Base channel power level in TenthdB\nPossible completions:\n[47.5]", + "options": [], + "type": "string_or_number", + "current_value": "47.5", + "updated_at": 1778229658 + }, + "cable ds-rf-port 99:0/0 down-channel 0 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229658 + }, + "cable ds-rf-port 99:0/0 down-channel 0 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229658 + }, + "cable ds-rf-port 99:0/0 down-channel 0 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[399.0]", + "options": [], + "type": "string_or_number", + "current_value": "399.0", + "updated_at": 1778229658 + }, + "cable ds-rf-port 99:0/0 down-channel 0 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229658 + }, + "cable ds-rf-port 99:0/0 down-channel 1 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229658 + }, + "cable ds-rf-port 99:0/0 down-channel 1 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229658 + }, + "cable ds-rf-port 99:0/0 down-channel 1 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[405.0]", + "options": [], + "type": "string_or_number", + "current_value": "405.0", + "updated_at": 1778229658 + }, + "cable ds-rf-port 99:0/0 down-channel 1 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229658 + }, + "cable ds-rf-port 99:0/0 down-channel 2 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229658 + }, + "cable ds-rf-port 99:0/0 down-channel 2 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229658 + }, + "cable ds-rf-port 99:0/0 down-channel 2 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[411.0]", + "options": [], + "type": "string_or_number", + "current_value": "411.0", + "updated_at": 1778229658 + }, + "cable ds-rf-port 99:0/0 down-channel 2 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229658 + }, + "cable ds-rf-port 99:0/0 down-channel 3 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229658 + }, + "cable ds-rf-port 99:0/0 down-channel 3 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229658 + }, + "cable ds-rf-port 99:0/0 down-channel 3 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[417.0]", + "options": [], + "type": "string_or_number", + "current_value": "417.0", + "updated_at": 1778229658 + }, + "cable ds-rf-port 99:0/0 down-channel 3 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229658 + }, + "cable ds-rf-port 99:0/0 down-channel 4 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229658 + }, + "cable ds-rf-port 99:0/0 down-channel 4 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229658 + }, + "cable ds-rf-port 99:0/0 down-channel 4 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[423.0]", + "options": [], + "type": "string_or_number", + "current_value": "423.0", + "updated_at": 1778229658 + }, + "cable ds-rf-port 99:0/0 down-channel 4 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229658 + }, + "cable ds-rf-port 99:0/0 down-channel 5 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229658 + }, + "cable ds-rf-port 99:0/0 down-channel 5 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229658 + }, + "cable ds-rf-port 99:0/0 down-channel 5 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[429.0]", + "options": [], + "type": "string_or_number", + "current_value": "429.0", + "updated_at": 1778229658 + }, + "cable ds-rf-port 99:0/0 down-channel 5 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229658 + }, + "cable ds-rf-port 99:0/0 down-channel 6 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229658 + }, + "cable ds-rf-port 99:0/0 down-channel 6 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229658 + }, + "cable ds-rf-port 99:0/0 down-channel 6 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[435.0]", + "options": [], + "type": "string_or_number", + "current_value": "435.0", + "updated_at": 1778229658 + }, + "cable ds-rf-port 99:0/0 down-channel 6 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229658 + }, + "cable ds-rf-port 99:0/0 down-channel 7 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229709 + }, + "cable ds-rf-port 99:0/0 down-channel 7 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229709 + }, + "cable ds-rf-port 99:0/0 down-channel 7 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[441.0]", + "options": [], + "type": "string_or_number", + "current_value": "441.0", + "updated_at": 1778229709 + }, + "cable ds-rf-port 99:0/0 down-channel 7 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229709 + }, + "cable ds-rf-port 99:0/0 down-channel 8 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229709 + }, + "cable ds-rf-port 99:0/0 down-channel 8 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229709 + }, + "cable ds-rf-port 99:0/0 down-channel 8 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[447.0]", + "options": [], + "type": "string_or_number", + "current_value": "447.0", + "updated_at": 1778229709 + }, + "cable ds-rf-port 99:0/0 down-channel 8 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229709 + }, + "cable ds-rf-port 99:0/0 down-channel 9 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229709 + }, + "cable ds-rf-port 99:0/0 down-channel 9 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229709 + }, + "cable ds-rf-port 99:0/0 down-channel 9 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[453.0]", + "options": [], + "type": "string_or_number", + "current_value": "453.0", + "updated_at": 1778229709 + }, + "cable ds-rf-port 99:0/0 down-channel 9 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229709 + }, + "cable ds-rf-port 99:0/0 down-channel 10 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229709 + }, + "cable ds-rf-port 99:0/0 down-channel 10 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229709 + }, + "cable ds-rf-port 99:0/0 down-channel 10 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[459.0]", + "options": [], + "type": "string_or_number", + "current_value": "459.0", + "updated_at": 1778229709 + }, + "cable ds-rf-port 99:0/0 down-channel 10 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229709 + }, + "cable ds-rf-port 99:0/0 down-channel 11 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229709 + }, + "cable ds-rf-port 99:0/0 down-channel 11 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229709 + }, + "cable ds-rf-port 99:0/0 down-channel 11 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[465.0]", + "options": [], + "type": "string_or_number", + "current_value": "465.0", + "updated_at": 1778229709 + }, + "cable ds-rf-port 99:0/0 down-channel 11 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229709 + }, + "cable ds-rf-port 99:0/0 down-channel 12 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229709 + }, + "cable ds-rf-port 99:0/0 down-channel 12 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229709 + }, + "cable ds-rf-port 99:0/0 down-channel 12 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[471.0]", + "options": [], + "type": "string_or_number", + "current_value": "471.0", + "updated_at": 1778229709 + }, + "cable ds-rf-port 99:0/0 down-channel 12 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229709 + }, + "cable ds-rf-port 99:0/0 down-channel 13 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229709 + }, + "cable ds-rf-port 99:0/0 down-channel 13 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229709 + }, + "cable ds-rf-port 99:0/0 down-channel 13 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[477.0]", + "options": [], + "type": "string_or_number", + "current_value": "477.0", + "updated_at": 1778229709 + }, + "cable ds-rf-port 99:0/0 down-channel 13 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229709 + }, + "cable ds-rf-port 99:0/0 down-channel 14 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229709 + }, + "cable ds-rf-port 99:0/0 down-channel 14 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229709 + }, + "cable ds-rf-port 99:0/0 down-channel 14 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[483.0]", + "options": [], + "type": "string_or_number", + "current_value": "483.0", + "updated_at": 1778229760 + }, + "cable ds-rf-port 99:0/0 down-channel 14 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229760 + }, + "cable ds-rf-port 99:0/0 down-channel 15 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229760 + }, + "cable ds-rf-port 99:0/0 down-channel 15 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229760 + }, + "cable ds-rf-port 99:0/0 down-channel 15 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[489.0]", + "options": [], + "type": "string_or_number", + "current_value": "489.0", + "updated_at": 1778229760 + }, + "cable ds-rf-port 99:0/0 down-channel 15 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229760 + }, + "cable ds-rf-port 99:0/0 down-channel 16 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229760 + }, + "cable ds-rf-port 99:0/0 down-channel 16 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229760 + }, + "cable ds-rf-port 99:0/0 down-channel 16 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[495.0]", + "options": [], + "type": "string_or_number", + "current_value": "495.0", + "updated_at": 1778229760 + }, + "cable ds-rf-port 99:0/0 down-channel 16 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229760 + }, + "cable ds-rf-port 99:0/0 down-channel 17 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229760 + }, + "cable ds-rf-port 99:0/0 down-channel 17 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229760 + }, + "cable ds-rf-port 99:0/0 down-channel 17 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[501.0]", + "options": [], + "type": "string_or_number", + "current_value": "501.0", + "updated_at": 1778229760 + }, + "cable ds-rf-port 99:0/0 down-channel 17 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229760 + }, + "cable ds-rf-port 99:0/0 down-channel 18 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229760 + }, + "cable ds-rf-port 99:0/0 down-channel 18 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229760 + }, + "cable ds-rf-port 99:0/0 down-channel 18 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[507.0]", + "options": [], + "type": "string_or_number", + "current_value": "507.0", + "updated_at": 1778229760 + }, + "cable ds-rf-port 99:0/0 down-channel 18 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229760 + }, + "cable ds-rf-port 99:0/0 down-channel 19 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229760 + }, + "cable ds-rf-port 99:0/0 down-channel 19 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229760 + }, + "cable ds-rf-port 99:0/0 down-channel 19 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[513.0]", + "options": [], + "type": "string_or_number", + "current_value": "513.0", + "updated_at": 1778229760 + }, + "cable ds-rf-port 99:0/0 down-channel 19 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229760 + }, + "cable ds-rf-port 99:0/0 down-channel 20 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229760 + }, + "cable ds-rf-port 99:0/0 down-channel 20 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229760 + }, + "cable ds-rf-port 99:0/0 down-channel 20 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[519.0]", + "options": [], + "type": "string_or_number", + "current_value": "519.0", + "updated_at": 1778229760 + }, + "cable ds-rf-port 99:0/0 down-channel 20 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229760 + }, + "cable ds-rf-port 99:0/0 down-channel 21 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229760 + }, + "cable ds-rf-port 99:0/0 down-channel 21 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229760 + }, + "cable ds-rf-port 99:0/0 down-channel 21 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[525.0]", + "options": [], + "type": "string_or_number", + "current_value": "525.0", + "updated_at": 1778229760 + }, + "cable ds-rf-port 99:0/0 down-channel 21 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229760 + }, + "cable ds-rf-port 99:0/0 down-channel 22 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229811 + }, + "cable ds-rf-port 99:0/0 down-channel 22 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229811 + }, + "cable ds-rf-port 99:0/0 down-channel 22 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[531.0]", + "options": [], + "type": "string_or_number", + "current_value": "531.0", + "updated_at": 1778229811 + }, + "cable ds-rf-port 99:0/0 down-channel 22 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229811 + }, + "cable ds-rf-port 99:0/0 down-channel 23 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229811 + }, + "cable ds-rf-port 99:0/0 down-channel 23 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229811 + }, + "cable ds-rf-port 99:0/0 down-channel 23 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[537.0]", + "options": [], + "type": "string_or_number", + "current_value": "537.0", + "updated_at": 1778229811 + }, + "cable ds-rf-port 99:0/0 down-channel 23 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229811 + }, + "cable ds-rf-port 99:0/0 down-channel 24 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229811 + }, + "cable ds-rf-port 99:0/0 down-channel 24 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229811 + }, + "cable ds-rf-port 99:0/0 down-channel 24 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[543.0]", + "options": [], + "type": "string_or_number", + "current_value": "543.0", + "updated_at": 1778229811 + }, + "cable ds-rf-port 99:0/0 down-channel 24 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229811 + }, + "cable ds-rf-port 99:0/0 down-channel 25 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229811 + }, + "cable ds-rf-port 99:0/0 down-channel 25 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229811 + }, + "cable ds-rf-port 99:0/0 down-channel 25 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[549.0]", + "options": [], + "type": "string_or_number", + "current_value": "549.0", + "updated_at": 1778229811 + }, + "cable ds-rf-port 99:0/0 down-channel 25 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229811 + }, + "cable ds-rf-port 99:0/0 down-channel 26 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229811 + }, + "cable ds-rf-port 99:0/0 down-channel 26 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229811 + }, + "cable ds-rf-port 99:0/0 down-channel 26 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[555.0]", + "options": [], + "type": "string_or_number", + "current_value": "555.0", + "updated_at": 1778229811 + }, + "cable ds-rf-port 99:0/0 down-channel 26 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229811 + }, + "cable ds-rf-port 99:0/0 down-channel 27 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229811 + }, + "cable ds-rf-port 99:0/0 down-channel 27 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229811 + }, + "cable ds-rf-port 99:0/0 down-channel 27 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[561.0]", + "options": [], + "type": "string_or_number", + "current_value": "561.0", + "updated_at": 1778229811 + }, + "cable ds-rf-port 99:0/0 down-channel 27 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229811 + }, + "cable ds-rf-port 99:0/0 down-channel 28 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229811 + }, + "cable ds-rf-port 99:0/0 down-channel 28 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229811 + }, + "cable ds-rf-port 99:0/0 down-channel 28 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[567.0]", + "options": [], + "type": "string_or_number", + "current_value": "567.0", + "updated_at": 1778229811 + }, + "cable ds-rf-port 99:0/0 down-channel 28 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229811 + }, + "cable ds-rf-port 99:0/0 down-channel 29 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229811 + }, + "cable ds-rf-port 99:0/0 down-channel 29 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229811 + }, + "cable ds-rf-port 99:0/0 down-channel 29 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[573.0]", + "options": [], + "type": "string_or_number", + "current_value": "573.0", + "updated_at": 1778229862 + }, + "cable ds-rf-port 99:0/0 down-channel 29 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229862 + }, + "cable ds-rf-port 99:0/0 down-channel 30 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229862 + }, + "cable ds-rf-port 99:0/0 down-channel 30 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229862 + }, + "cable ds-rf-port 99:0/0 down-channel 30 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[579.0]", + "options": [], + "type": "string_or_number", + "current_value": "579.0", + "updated_at": 1778229862 + }, + "cable ds-rf-port 99:0/0 down-channel 30 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229862 + }, + "cable ds-rf-port 99:0/0 down-channel 31 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229862 + }, + "cable ds-rf-port 99:0/0 down-channel 31 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229862 + }, + "cable ds-rf-port 99:0/0 down-channel 31 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[585.0]", + "options": [], + "type": "string_or_number", + "current_value": "585.0", + "updated_at": 1778229862 + }, + "cable ds-rf-port 99:0/0 down-channel 31 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229862 + }, + "cable ds-rf-port 99:0/0 down-channel 32 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229862 + }, + "cable ds-rf-port 99:0/0 down-channel 32 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229862 + }, + "cable ds-rf-port 99:0/0 down-channel 32 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[591.0]", + "options": [], + "type": "string_or_number", + "current_value": "591.0", + "updated_at": 1778229862 + }, + "cable ds-rf-port 99:0/0 down-channel 32 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229862 + }, + "cable ds-rf-port 99:0/0 down-channel 33 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229862 + }, + "cable ds-rf-port 99:0/0 down-channel 33 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229862 + }, + "cable ds-rf-port 99:0/0 down-channel 33 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[597.0]", + "options": [], + "type": "string_or_number", + "current_value": "597.0", + "updated_at": 1778229862 + }, + "cable ds-rf-port 99:0/0 down-channel 33 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229862 + }, + "cable ds-rf-port 99:0/0 down-channel 34 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229862 + }, + "cable ds-rf-port 99:0/0 down-channel 34 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229862 + }, + "cable ds-rf-port 99:0/0 down-channel 34 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[603.0]", + "options": [], + "type": "string_or_number", + "current_value": "603.0", + "updated_at": 1778229862 + }, + "cable ds-rf-port 99:0/0 down-channel 34 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229862 + }, + "cable ds-rf-port 99:0/0 down-channel 35 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229862 + }, + "cable ds-rf-port 99:0/0 down-channel 35 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229862 + }, + "cable ds-rf-port 99:0/0 down-channel 35 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[609.0]", + "options": [], + "type": "string_or_number", + "current_value": "609.0", + "updated_at": 1778229862 + }, + "cable ds-rf-port 99:0/0 down-channel 35 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229862 + }, + "cable ds-rf-port 99:0/0 down-channel 36 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229862 + }, + "cable ds-rf-port 99:0/0 down-channel 36 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229862 + }, + "cable ds-rf-port 99:0/0 down-channel 36 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[615.0]", + "options": [], + "type": "string_or_number", + "current_value": "615.0", + "updated_at": 1778229862 + }, + "cable ds-rf-port 99:0/0 down-channel 36 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229862 + }, + "cable ds-rf-port 99:0/0 down-channel 37 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229913 + }, + "cable ds-rf-port 99:0/0 down-channel 37 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229913 + }, + "cable ds-rf-port 99:0/0 down-channel 37 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[621.0]", + "options": [], + "type": "string_or_number", + "current_value": "621.0", + "updated_at": 1778229913 + }, + "cable ds-rf-port 99:0/0 down-channel 37 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229913 + }, + "cable ds-rf-port 99:0/0 down-channel 38 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229913 + }, + "cable ds-rf-port 99:0/0 down-channel 38 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229913 + }, + "cable ds-rf-port 99:0/0 down-channel 38 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[627.0]", + "options": [], + "type": "string_or_number", + "current_value": "627.0", + "updated_at": 1778229913 + }, + "cable ds-rf-port 99:0/0 down-channel 38 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229913 + }, + "cable ds-rf-port 99:0/0 down-channel 39 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229913 + }, + "cable ds-rf-port 99:0/0 down-channel 39 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229913 + }, + "cable ds-rf-port 99:0/0 down-channel 39 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[633.0]", + "options": [], + "type": "string_or_number", + "current_value": "633.0", + "updated_at": 1778229913 + }, + "cable ds-rf-port 99:0/0 down-channel 39 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229913 + }, + "cable ds-rf-port 99:0/0 down-channel 40 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229913 + }, + "cable ds-rf-port 99:0/0 down-channel 40 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229913 + }, + "cable ds-rf-port 99:0/0 down-channel 40 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[639.0]", + "options": [], + "type": "string_or_number", + "current_value": "639.0", + "updated_at": 1778229913 + }, + "cable ds-rf-port 99:0/0 down-channel 40 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229913 + }, + "cable ds-rf-port 99:0/0 down-channel 41 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229913 + }, + "cable ds-rf-port 99:0/0 down-channel 41 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229913 + }, + "cable ds-rf-port 99:0/0 down-channel 41 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[645.0]", + "options": [], + "type": "string_or_number", + "current_value": "645.0", + "updated_at": 1778229913 + }, + "cable ds-rf-port 99:0/0 down-channel 41 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229913 + }, + "cable ds-rf-port 99:0/0 down-channel 42 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229913 + }, + "cable ds-rf-port 99:0/0 down-channel 42 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229913 + }, + "cable ds-rf-port 99:0/0 down-channel 42 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[651.0]", + "options": [], + "type": "string_or_number", + "current_value": "651.0", + "updated_at": 1778229913 + }, + "cable ds-rf-port 99:0/0 down-channel 42 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229913 + }, + "cable ds-rf-port 99:0/0 down-channel 43 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229913 + }, + "cable ds-rf-port 99:0/0 down-channel 43 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229913 + }, + "cable ds-rf-port 99:0/0 down-channel 43 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[657.0]", + "options": [], + "type": "string_or_number", + "current_value": "657.0", + "updated_at": 1778229913 + }, + "cable ds-rf-port 99:0/0 down-channel 43 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229913 + }, + "cable ds-rf-port 99:0/0 down-channel 51 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229913 + }, + "cable ds-rf-port 99:0/0 down-channel 51 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229913 + }, + "cable ds-rf-port 99:0/0 down-channel 51 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[177.0]", + "options": [], + "type": "string_or_number", + "current_value": "177.0", + "updated_at": 1778229964 + }, + "cable ds-rf-port 99:0/0 down-channel 51 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229964 + }, + "cable ds-rf-port 99:0/0 down-channel 52 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229964 + }, + "cable ds-rf-port 99:0/0 down-channel 52 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229964 + }, + "cable ds-rf-port 99:0/0 down-channel 52 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[183.0]", + "options": [], + "type": "string_or_number", + "current_value": "183.0", + "updated_at": 1778229964 + }, + "cable ds-rf-port 99:0/0 down-channel 52 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229964 + }, + "cable ds-rf-port 99:0/0 down-channel 53 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229964 + }, + "cable ds-rf-port 99:0/0 down-channel 53 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229964 + }, + "cable ds-rf-port 99:0/0 down-channel 53 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[189.0]", + "options": [], + "type": "string_or_number", + "current_value": "189.0", + "updated_at": 1778229964 + }, + "cable ds-rf-port 99:0/0 down-channel 53 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229964 + }, + "cable ds-rf-port 99:0/0 down-channel 54 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229964 + }, + "cable ds-rf-port 99:0/0 down-channel 54 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229964 + }, + "cable ds-rf-port 99:0/0 down-channel 54 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[195.0]", + "options": [], + "type": "string_or_number", + "current_value": "195.0", + "updated_at": 1778229964 + }, + "cable ds-rf-port 99:0/0 down-channel 54 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229964 + }, + "cable ds-rf-port 99:0/0 down-channel 55 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229964 + }, + "cable ds-rf-port 99:0/0 down-channel 55 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229964 + }, + "cable ds-rf-port 99:0/0 down-channel 55 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[201.0]", + "options": [], + "type": "string_or_number", + "current_value": "201.0", + "updated_at": 1778229964 + }, + "cable ds-rf-port 99:0/0 down-channel 55 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229964 + }, + "cable ds-rf-port 99:0/0 down-channel 56 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229964 + }, + "cable ds-rf-port 99:0/0 down-channel 56 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229964 + }, + "cable ds-rf-port 99:0/0 down-channel 56 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[207.0]", + "options": [], + "type": "string_or_number", + "current_value": "207.0", + "updated_at": 1778229964 + }, + "cable ds-rf-port 99:0/0 down-channel 56 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229964 + }, + "cable ds-rf-port 99:0/0 down-channel 57 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229964 + }, + "cable ds-rf-port 99:0/0 down-channel 57 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229964 + }, + "cable ds-rf-port 99:0/0 down-channel 57 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[213.0]", + "options": [], + "type": "string_or_number", + "current_value": "213.0", + "updated_at": 1778229964 + }, + "cable ds-rf-port 99:0/0 down-channel 57 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229964 + }, + "cable ds-rf-port 99:0/0 down-channel 58 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778229964 + }, + "cable ds-rf-port 99:0/0 down-channel 58 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778229964 + }, + "cable ds-rf-port 99:0/0 down-channel 58 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[129.0]", + "options": [], + "type": "string_or_number", + "current_value": "129.0", + "updated_at": 1778229964 + }, + "cable ds-rf-port 99:0/0 down-channel 58 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778229964 + }, + "cable ds-rf-port 99:0/0 down-channel 59 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778230015 + }, + "cable ds-rf-port 99:0/0 down-channel 59 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778230015 + }, + "cable ds-rf-port 99:0/0 down-channel 59 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[135.0]", + "options": [], + "type": "string_or_number", + "current_value": "135.0", + "updated_at": 1778230015 + }, + "cable ds-rf-port 99:0/0 down-channel 59 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778230015 + }, + "cable ds-rf-port 99:0/0 down-channel 60 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778230015 + }, + "cable ds-rf-port 99:0/0 down-channel 60 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778230015 + }, + "cable ds-rf-port 99:0/0 down-channel 60 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[357.0]", + "options": [], + "type": "string_or_number", + "current_value": "357.0", + "updated_at": 1778230015 + }, + "cable ds-rf-port 99:0/0 down-channel 60 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778230015 + }, + "cable ds-rf-port 99:0/0 down-channel 61 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778230015 + }, + "cable ds-rf-port 99:0/0 down-channel 61 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778230015 + }, + "cable ds-rf-port 99:0/0 down-channel 61 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[147.0]", + "options": [], + "type": "string_or_number", + "current_value": "147.0", + "updated_at": 1778230015 + }, + "cable ds-rf-port 99:0/0 down-channel 61 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778230015 + }, + "cable ds-rf-port 99:0/0 down-channel 64 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778230015 + }, + "cable ds-rf-port 99:0/0 down-channel 64 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778230015 + }, + "cable ds-rf-port 99:0/0 down-channel 64 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[165.0]", + "options": [], + "type": "string_or_number", + "current_value": "165.0", + "updated_at": 1778230015 + }, + "cable ds-rf-port 99:0/0 down-channel 64 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778230015 + }, + "cable ds-rf-port 99:0/0 down-channel 65 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778230015 + }, + "cable ds-rf-port 99:0/0 down-channel 65 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778230015 + }, + "cable ds-rf-port 99:0/0 down-channel 65 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[171.0]", + "options": [], + "type": "string_or_number", + "current_value": "171.0", + "updated_at": 1778230015 + }, + "cable ds-rf-port 99:0/0 down-channel 65 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778230015 + }, + "cable ds-rf-port 99:0/0 down-channel 66 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778230015 + }, + "cable ds-rf-port 99:0/0 down-channel 66 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778230015 + }, + "cable ds-rf-port 99:0/0 down-channel 66 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[219.0]", + "options": [], + "type": "string_or_number", + "current_value": "219.0", + "updated_at": 1778230015 + }, + "cable ds-rf-port 99:0/0 down-channel 66 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778230015 + }, + "cable ds-rf-port 99:0/0 down-channel 67 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778230015 + }, + "cable ds-rf-port 99:0/0 down-channel 67 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778230015 + }, + "cable ds-rf-port 99:0/0 down-channel 67 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[225.0]", + "options": [], + "type": "string_or_number", + "current_value": "225.0", + "updated_at": 1778230015 + }, + "cable ds-rf-port 99:0/0 down-channel 67 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778230015 + }, + "cable ds-rf-port 99:0/0 down-channel 68 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778230015 + }, + "cable ds-rf-port 99:0/0 down-channel 68 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778230015 + }, + "cable ds-rf-port 99:0/0 down-channel 68 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[231.0]", + "options": [], + "type": "string_or_number", + "current_value": "231.0", + "updated_at": 1778230066 + }, + "cable ds-rf-port 99:0/0 down-channel 68 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778230066 + }, + "cable ds-rf-port 99:0/0 down-channel 69 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778230066 + }, + "cable ds-rf-port 99:0/0 down-channel 69 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778230066 + }, + "cable ds-rf-port 99:0/0 down-channel 69 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[237.0]", + "options": [], + "type": "string_or_number", + "current_value": "237.0", + "updated_at": 1778230066 + }, + "cable ds-rf-port 99:0/0 down-channel 69 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778230066 + }, + "cable ds-rf-port 99:0/0 down-channel 70 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778230066 + }, + "cable ds-rf-port 99:0/0 down-channel 70 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778230066 + }, + "cable ds-rf-port 99:0/0 down-channel 70 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[243.0]", + "options": [], + "type": "string_or_number", + "current_value": "243.0", + "updated_at": 1778230066 + }, + "cable ds-rf-port 99:0/0 down-channel 70 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778230066 + }, + "cable ds-rf-port 99:0/0 down-channel 71 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778230066 + }, + "cable ds-rf-port 99:0/0 down-channel 71 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778230066 + }, + "cable ds-rf-port 99:0/0 down-channel 71 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[249.0]", + "options": [], + "type": "string_or_number", + "current_value": "249.0", + "updated_at": 1778230066 + }, + "cable ds-rf-port 99:0/0 down-channel 71 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778230066 + }, + "cable ds-rf-port 99:0/0 down-channel 72 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778230066 + }, + "cable ds-rf-port 99:0/0 down-channel 72 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778230066 + }, + "cable ds-rf-port 99:0/0 down-channel 72 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[255.0]", + "options": [], + "type": "string_or_number", + "current_value": "255.0", + "updated_at": 1778230066 + }, + "cable ds-rf-port 99:0/0 down-channel 72 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778230066 + }, + "cable ds-rf-port 99:0/0 down-channel 73 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778230066 + }, + "cable ds-rf-port 99:0/0 down-channel 73 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778230066 + }, + "cable ds-rf-port 99:0/0 down-channel 73 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[261.0]", + "options": [], + "type": "string_or_number", + "current_value": "261.0", + "updated_at": 1778230066 + }, + "cable ds-rf-port 99:0/0 down-channel 73 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778230066 + }, + "cable ds-rf-port 99:0/0 down-channel 74 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778230066 + }, + "cable ds-rf-port 99:0/0 down-channel 74 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778230066 + }, + "cable ds-rf-port 99:0/0 down-channel 74 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[267.0]", + "options": [], + "type": "string_or_number", + "current_value": "267.0", + "updated_at": 1778230066 + }, + "cable ds-rf-port 99:0/0 down-channel 74 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778230066 + }, + "cable ds-rf-port 99:0/0 down-channel 75 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778230066 + }, + "cable ds-rf-port 99:0/0 down-channel 75 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778230066 + }, + "cable ds-rf-port 99:0/0 down-channel 75 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[273.0]", + "options": [], + "type": "string_or_number", + "current_value": "273.0", + "updated_at": 1778230066 + }, + "cable ds-rf-port 99:0/0 down-channel 75 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778230066 + }, + "cable ds-rf-port 99:0/0 down-channel 76 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778230117 + }, + "cable ds-rf-port 99:0/0 down-channel 76 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778230117 + }, + "cable ds-rf-port 99:0/0 down-channel 76 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[279.0]", + "options": [], + "type": "string_or_number", + "current_value": "279.0", + "updated_at": 1778230117 + }, + "cable ds-rf-port 99:0/0 down-channel 76 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778230117 + }, + "cable ds-rf-port 99:0/0 down-channel 77 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778230117 + }, + "cable ds-rf-port 99:0/0 down-channel 77 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778230117 + }, + "cable ds-rf-port 99:0/0 down-channel 77 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[285.0]", + "options": [], + "type": "string_or_number", + "current_value": "285.0", + "updated_at": 1778230117 + }, + "cable ds-rf-port 99:0/0 down-channel 77 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778230117 + }, + "cable ds-rf-port 99:0/0 down-channel 78 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778230117 + }, + "cable ds-rf-port 99:0/0 down-channel 78 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778230117 + }, + "cable ds-rf-port 99:0/0 down-channel 78 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[291.0]", + "options": [], + "type": "string_or_number", + "current_value": "291.0", + "updated_at": 1778230117 + }, + "cable ds-rf-port 99:0/0 down-channel 78 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778230117 + }, + "cable ds-rf-port 99:0/0 down-channel 79 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778230117 + }, + "cable ds-rf-port 99:0/0 down-channel 79 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778230117 + }, + "cable ds-rf-port 99:0/0 down-channel 79 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[297.0]", + "options": [], + "type": "string_or_number", + "current_value": "297.0", + "updated_at": 1778230117 + }, + "cable ds-rf-port 99:0/0 down-channel 79 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778230117 + }, + "cable ds-rf-port 99:0/0 down-channel 80 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778230117 + }, + "cable ds-rf-port 99:0/0 down-channel 80 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778230117 + }, + "cable ds-rf-port 99:0/0 down-channel 80 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[303.0]", + "options": [], + "type": "string_or_number", + "current_value": "303.0", + "updated_at": 1778230117 + }, + "cable ds-rf-port 99:0/0 down-channel 80 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778230117 + }, + "cable ds-rf-port 99:0/0 down-channel 81 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778230117 + }, + "cable ds-rf-port 99:0/0 down-channel 81 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778230117 + }, + "cable ds-rf-port 99:0/0 down-channel 81 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[309.0]", + "options": [], + "type": "string_or_number", + "current_value": "309.0", + "updated_at": 1778230117 + }, + "cable ds-rf-port 99:0/0 down-channel 81 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778230117 + }, + "cable ds-rf-port 99:0/0 down-channel 82 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778230117 + }, + "cable ds-rf-port 99:0/0 down-channel 82 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778230117 + }, + "cable ds-rf-port 99:0/0 down-channel 82 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[315.0]", + "options": [], + "type": "string_or_number", + "current_value": "315.0", + "updated_at": 1778230117 + }, + "cable ds-rf-port 99:0/0 down-channel 82 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778230117 + }, + "cable ds-rf-port 99:0/0 down-channel 83 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778230117 + }, + "cable ds-rf-port 99:0/0 down-channel 83 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778230117 + }, + "cable ds-rf-port 99:0/0 down-channel 83 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[321.0]", + "options": [], + "type": "string_or_number", + "current_value": "321.0", + "updated_at": 1778230168 + }, + "cable ds-rf-port 99:0/0 down-channel 83 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778230168 + }, + "cable ds-rf-port 99:0/0 down-channel 84 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778230168 + }, + "cable ds-rf-port 99:0/0 down-channel 84 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778230168 + }, + "cable ds-rf-port 99:0/0 down-channel 84 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[327.0]", + "options": [], + "type": "string_or_number", + "current_value": "327.0", + "updated_at": 1778230168 + }, + "cable ds-rf-port 99:0/0 down-channel 84 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778230168 + }, + "cable ds-rf-port 99:0/0 down-channel 85 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778230168 + }, + "cable ds-rf-port 99:0/0 down-channel 85 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778230168 + }, + "cable ds-rf-port 99:0/0 down-channel 85 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[333.0]", + "options": [], + "type": "string_or_number", + "current_value": "333.0", + "updated_at": 1778230168 + }, + "cable ds-rf-port 99:0/0 down-channel 85 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778230168 + }, + "cable ds-rf-port 99:0/0 down-channel 86 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778230168 + }, + "cable ds-rf-port 99:0/0 down-channel 86 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778230168 + }, + "cable ds-rf-port 99:0/0 down-channel 86 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[339.0]", + "options": [], + "type": "string_or_number", + "current_value": "339.0", + "updated_at": 1778230168 + }, + "cable ds-rf-port 99:0/0 down-channel 86 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778230168 + }, + "cable ds-rf-port 99:0/0 down-channel 87 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778230168 + }, + "cable ds-rf-port 99:0/0 down-channel 87 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778230168 + }, + "cable ds-rf-port 99:0/0 down-channel 87 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[345.0]", + "options": [], + "type": "string_or_number", + "current_value": "345.0", + "updated_at": 1778230168 + }, + "cable ds-rf-port 99:0/0 down-channel 87 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778230168 + }, + "cable ds-rf-port 99:0/0 down-channel 88 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778230168 + }, + "cable ds-rf-port 99:0/0 down-channel 88 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778230168 + }, + "cable ds-rf-port 99:0/0 down-channel 88 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[351.0]", + "options": [], + "type": "string_or_number", + "current_value": "351.0", + "updated_at": 1778230168 + }, + "cable ds-rf-port 99:0/0 down-channel 88 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778230168 + }, + "cable ds-rf-port 99:0/0 down-channel 89 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778230168 + }, + "cable ds-rf-port 99:0/0 down-channel 89 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778230168 + }, + "cable ds-rf-port 99:0/0 down-channel 89 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[375.0]", + "options": [], + "type": "string_or_number", + "current_value": "375.0", + "updated_at": 1778230168 + }, + "cable ds-rf-port 99:0/0 down-channel 89 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778230168 + }, + "cable ds-rf-port 99:0/0 down-channel 90 admin-state": { + "hint": "Description: Administrative State of the down channel [default down]\nPossible completions:\n[up] down testing up", + "options": [ + "down", + "testing", + "up" + ], + "type": "list", + "current_value": "up", + "updated_at": 1778230168 + }, + "cable ds-rf-port 99:0/0 down-channel 90 docsis-phy-profile": { + "hint": "Description: References a downstream traffic profile\nPossible completions:\n[3]\n0\n1\n2\n3\n4\n5\n6 FDD_QAM256_B", + "options": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ], + "type": "list", + "current_value": "3", + "updated_at": 1778230168 + }, + "cable ds-rf-port 99:0/0 down-channel 90 frequency-mhz": { + "hint": "Description: Configured center frequency of the channel\nPossible completions:\n[363.0]", + "options": [], + "type": "string_or_number", + "current_value": "363.0", + "updated_at": 1778230168 + }, + "cable ds-rf-port 99:0/0 down-channel 90 provisioned-attr-mask": { + "hint": "Description: Provisioned Attribute Mask\nPossible completions:\n[low-latency] bonded high-availability low-latency operator-16 operator-17 operator-18 operator-19 operator-20\noperator-21 operator-22 operator-23 operator-24 operator-25 operator-26 operator-27 operator-28 operator-29\noperator-30 operator-31 reserved-3 reserved-4 reserved-5 reserved-6 reserved-7 reserved-8 reserved-9\nreserved-10 reserved-11 reserved-12 reserved-13 reserved-14 reserved-15", + "options": [ + "bonded", + "operator-21", + "operator-30", + "reserved-10", + "low-latency" + ], + "type": "list", + "current_value": "low-latency", + "updated_at": 1778230168 + } +} \ No newline at end of file diff --git a/cmts_scraper.py b/cmts_scraper.py new file mode 100644 index 0000000..d174dc8 --- /dev/null +++ b/cmts_scraper.py @@ -0,0 +1,267 @@ +# --- cmts_scraper.py --- +import asyncio +import asyncssh +import re +import json +import os +import time + +def parse_question_mark_output(output: str) -> dict: + """解析 '?' 回傳內容,支援無 Description、子命令判定與 dhcp-relay 混合欄位""" + hint_lines = [] + options = [] + current_value = None + format_desc = None + is_format_only = False + + state = "INIT" + has_description = False + has_bracket_value = False + + # 🌟 Case-5 特殊處理:dhcp-relay 混合型欄位 (選項 + IP輸入) + # 直接在開頭掃描完整輸出,若包含 dhcp-relay,強制轉為純文字輸入框 + if "dhcp-relay" in output.lower(): + is_format_only = True + format_desc = "IP address or options" + + for line in output.splitlines(): + line = line.strip() + # 過濾雜訊與終端機提示字元 + if not line or line.startswith('admin@') or line.startswith('cable') or line.startswith('%') or line.startswith('^'): + continue + + if line.startswith('Description:'): + state = "DESC" + has_description = True + hint_lines.append(line) + continue + + if line.startswith('Possible completions:'): + state = "COMPLETIONS" + # 🌟 解除限制:無論有沒有 Description,都把這行加進 hint + hint_lines.append(line) + continue + + if state == "DESC": + hint_lines.append(line) + + elif state == "COMPLETIONS": + # Case 1~4: 無 Description 時,將後續選項說明也納入提示 + # 🌟 解除限制:無論有沒有 Description,都把這行加進 hint + hint_lines.append(line) + + # 規則 1: <格式說明>[當前值] + match_format = re.search(r"<([^>]+)>\s*(?:\[([^\]]+)\])?", line) + if match_format: + is_format_only = True + format_desc = match_format.group(1).strip() + if match_format.group(2): + current_value = match_format.group(2).strip() + continue + + # 規則 1.5: 型態, 最小值 .. 最大值 + match_range = re.search(r"^\s*([a-zA-Z0-9_]+),\s*(\d+)\s*\.\.\s*(\d+)\s*$", line) + if match_range: + is_format_only = True + format_desc = f"{match_range.group(1)} ({match_range.group(2)} .. {match_range.group(3)})" + continue + + # 規則 1.6: IP address 等純文字關鍵字 + match_keyword = re.search(r"^(IP address|IPv4 address|IPv6 address|MAC address)$", line, re.IGNORECASE) + if match_keyword: + is_format_only = True + format_desc = match_keyword.group(1) + continue + + # 規則 2: 選項列表處理 + match_current = re.search(r"^\[([^\]]+)\]", line) + if match_current: + has_bracket_value = True # 標記:這是一個帶有現值的標準選項清單 + if not current_value: + current_value = match_current.group(1).strip() + clean_line = re.sub(r"^\[[^\]]+\]", "", line).strip() + else: + clean_line = line.strip() + + # 🌟 Case-6 防呆:過濾垂直列表的說明文字 + # 利用「3 個以上的連續空白」作為選項與說明文字的分界線 + if re.search(r"\s{3,}", clean_line): + clean_line = re.split(r"\s{3,}", clean_line)[0] + + parts = clean_line.split() + for p in parts: + if p and p not in ["|", ".."]: + options.append(p) + + # 🌟 Case 2, 3, 4: 子命令防呆機制 + # 若在選項區塊從未發現 [現值],且非已知格式,判定為子命令,強制轉純文字 + if state == "COMPLETIONS" and not has_bracket_value and not is_format_only and options: + is_format_only = True + options = [] + + # 確保現值一定包含在選項中(如果它是一般的下拉選單) + if current_value and options and current_value not in options: + options.append(current_value) + + hint_text = "\n".join(hint_lines).strip() + + return { + "hint": hint_text, + # 若為純文字模式,強制回傳空陣列,確保前端正確渲染為 input + "options": list(dict.fromkeys(options)) if not is_format_only else [], + "current_value": current_value, + "format_desc": format_desc, + "is_format_only": is_format_only + } + +def parse_device_response(output: str) -> dict: + """支援多種編輯狀態格式解析""" + match = re.search(r"(?:\[(.*?)\]|\(<(.*?)>\))\s*\((.*?)\):", output) + + if match: + enum_content = match.group(1) + desc_content = match.group(2) + current_value = match.group(3).strip() + + if enum_content: + if enum_content.strip().lower() == "list": + return {"type": "list", "options": [], "current_value": current_value} + else: + return { + "type": "enum", + "options": [opt.strip() for opt in enum_content.split(",") if opt.strip()], + "current_value": current_value + } + elif desc_content: + return { + "type": "string_or_number", + "options": [], + "current_value": current_value, + "format_desc": desc_content.strip() + } + + return {"type": "unknown", "options": [], "current_value": None, "raw_output": output.strip()} + +async def sync_cmts_leaves_async(host, username, password, leaf_paths: list) -> dict: + try: + result_data = {} + BATCH_SIZE = 30 + batches = [leaf_paths[i:i + BATCH_SIZE] for i in range(0, len(leaf_paths), BATCH_SIZE)] + + for batch_idx, batch in enumerate(batches): + print(f"🔄 正在處理第 {batch_idx + 1}/{len(batches)} 批次 (共 {len(batch)} 個路徑)...") + conn = None + + try: + conn = await asyncssh.connect(host, username=username, password=password, known_hosts=None) + process = await conn.create_process(term_type='xterm-256color', term_size=(200, 24), encoding='utf-8') + + async def read_until_quiet(timeout=1.0): + output = "" + while True: + try: + chunk = await asyncio.wait_for(process.stdout.read(4096), timeout=timeout) + if not chunk: break + output += chunk + if "--More--" in chunk or "More" in chunk: + process.stdin.write(" ") + await process.stdin.drain() + except asyncio.TimeoutError: + break + return output + + process.stdin.write("config\n") + await process.stdin.drain() + await read_until_quiet(timeout=1.5) + + for path in batch: + # --- 步驟 1:發送 '?' 查詢 --- + command_to_send = f"{path} ?" + process.stdin.write(command_to_send) + await process.stdin.drain() + + output_question = await read_until_quiet(timeout=1.0) + q_data = parse_question_mark_output(output_question) + + backspaces = "\x08" * (len(command_to_send) + 5) + process.stdin.write(backspaces) + await process.stdin.drain() + await read_until_quiet(timeout=0.5) + + parsed_data = { + "hint": q_data["hint"], + "options": q_data["options"], + "type": "list" if q_data["options"] else "unknown", + "current_value": q_data.get("current_value") + } + + # --- 步驟 2:判斷是否需要發送 Enter --- + # 🌟 配合新規則:如果 '?' 已經明確告訴我們這是 <格式> 欄位,直接跳過 Enter! + if q_data.get("is_format_only"): + parsed_data["type"] = "string_or_number" + # if q_data.get("format_desc"): + # parsed_data["hint"] += f"\nFormat: {q_data['format_desc']}" + + elif not q_data["options"]: + # 原本的 Enter 邏輯 + process.stdin.write(f"{path}\n") + await process.stdin.drain() + + output_enter = await read_until_quiet(timeout=1.0) + enter_data = parse_device_response(output_enter) + + parsed_data["type"] = enter_data["type"] + parsed_data["options"] = enter_data["options"] + parsed_data["current_value"] = enter_data["current_value"] + + # if "format_desc" in enter_data: + # parsed_data["hint"] += f"\nFormat: {enter_data['format_desc']}" + + if enter_data["type"] != "unknown": + process.stdin.write("\x03") + await process.stdin.drain() + else: + print(f"⚠️ [Debug] 未知格式 ({path}):\n{enter_data['raw_output']}") + process.stdin.write("\n") + await process.stdin.drain() + + await read_until_quiet(timeout=0.5) + + result_data[path] = parsed_data + + process.stdin.write("exit\n") + await process.stdin.drain() + await read_until_quiet(timeout=1.0) + + except Exception as e: + print(f"❌ 第 {batch_idx + 1} 批次發生錯誤: {str(e)}") + continue + finally: + if conn: conn.close() + + try: + cache_file = "cmts_leaf_options_cache.json" + cache_data = {} + if os.path.exists(cache_file): + with open(cache_file, "r", encoding="utf-8") as f: + cache_data = json.load(f) + + current_ts = int(time.time()) + for p in batch: + if p in result_data: + result_data[p]["updated_at"] = current_ts + cache_data[p] = result_data[p] + + with open(cache_file, "w", encoding="utf-8") as f: + json.dump(cache_data, f, indent=4, ensure_ascii=False) + print(f"💾 [Debug] 第 {batch_idx + 1}/{len(batches)} 批次已提早寫入快取檔!") + except Exception as e: + print(f"⚠️ 提早寫入快取失敗: {e}") + + if batch_idx < len(batches) - 1: + await asyncio.sleep(2) + + return {"status": "success", "data": result_data} + + except Exception as e: + return {"status": "error", "message": f"AsyncSSH 爬蟲錯誤: {str(e)}"} diff --git a/index.html b/index.html index 1b7628a..7cc17e7 100644 --- a/index.html +++ b/index.html @@ -252,6 +252,22 @@